diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index a9959af..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.claude/settings.local.json b/.claude/settings.local.json deleted file mode 100644 index d137dd7..0000000 --- a/.claude/settings.local.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "permissions": { - "allow": [ - "Bash(curl -s http://localhost:8080/api/targeting/analysis -X POST -H \"Content-Type: application/json\" -d '{\"topic\":\"test\"}')", - "Bash(curl -s -X POST http://localhost:8080/api/targeting/analysis -H 'Content-Type: application/json' -d '{\"topic\":\"\"}')", - "Bash(curl -s -X POST http://localhost:8080/api/targeting/analysis -H 'Content-Type: application/json' -d '{\"topic\":\"ab\"}')", - "Bash(curl -s -X POST http://localhost:8080/api/targeting/analysis -H 'Content-Type: application/json' -d '{}')", - "Bash(curl -s -X POST http://localhost:8080/api/targeting/strategy -H 'Content-Type: application/json' -d '{\"analysis\": null}')", - "Bash(curl -s -X POST http://localhost:8080/api/targeting/creative -H 'Content-Type: application/json' -d '{\"captionIdea\": \"\"}')" - ] - } -} diff --git a/.codex b/.codex deleted file mode 100644 index e69de29..0000000 diff --git a/.cursor/plans/detaillevel_prompts_4fa4e244.plan.md b/.cursor/plans/detaillevel_prompts_4fa4e244.plan.md deleted file mode 100644 index 5f21efc..0000000 --- a/.cursor/plans/detaillevel_prompts_4fa4e244.plan.md +++ /dev/null @@ -1,93 +0,0 @@ ---- -name: DetailLevel prompts -overview: Адаптировать генерацию промптов и выбор модели/лимитов по уровню DetailLevel для JSON-аналитики (get*Analysis) и текстовых секций (genSection*), сохранив текущий режим СТАНДАРТНО как baseline. -todos: - - id: inspect-json-methods - content: Пройти по getAudienceAnalysis/getCompetitorAnalysis/getSeasonalityAndMarket/getStrategyAndFunnel и определить точки для вставки detailLevel-ветвления + вынесения общих частей промпта - status: pending - - id: update-text-directives - content: Обновить appendDetailLevelDirectives/buildSystemPromptForSection под новые требования КРАТКО (150-250, bullet-only, soften placeholders) и ПОДРОБНО (1000-1500, академичность, 3 примера, смежные рынки, прогноз 3-5 лет, LaTeX формулы) - status: pending - - id: model-routing - content: "В genSection* и get*Analysis внедрить выбор модели по DetailLevel: КРАТКО→mini, ПОДРОБНО→text, СТАНДАРТНО→как сейчас" - status: pending - dependencies: - - update-text-directives - - inspect-json-methods - - id: max-tokens-detailed - content: Скорректировать maxTokensOverride для ПОДРОБНО в generateWithRetryForSection и добавить override в JSON get*Analysis вызовы (8000-12000, например 12000) - status: pending - dependencies: - - model-routing - - id: smoketest-3-levels - content: "Сделать короткий ручной smoketest: один запрос, три уровня, проверить объем/сегменты/плейсхолдеры/модель" - status: pending - dependencies: - - max-tokens-detailed ---- - -# План внедрения DetailLevel (КРАТКО/СТАНДАРТНО/ПОДРОБНО) - -## Цели - -- **КРАТКО**: экономим токены — краткие инструкции, меньше сегментов в JSON, текст 150–250 слов, только bullet points, модель всегда `miniModelName`. -- **СТАНДАРТНО**: **без изменений** (текущие промпты/модели/объемы принимаем baseline). -- **ПОДРОБНО**: максимальная глубина — больше сегментов в JSON + доп. поля (гипотезы/мини-кейсы), текст 1000–1500 слов, академические требования, больше формул LaTeX, модель всегда `textModelName`, увеличенный `maxTokens`. - -## Где менять код - -- Основная логика промптов и вызовов модели: [src/main/java/kz/konturai/parser/service/MarketingAnalysisService.java](/Users/magzhanzhumabaev/Desktop/kt%20cloud/parser/src/main/java/kz/konturai/parser/service/MarketingAnalysisService.java) -- API вызовы и параметры `max_tokens`: [src/main/java/kz/konturai/parser/service/OpenAIAnalyticsService.java](/Users/magzhanzhumabaev/Desktop/kt%20cloud/parser/src/main/java/kz/konturai/parser/service/OpenAIAnalyticsService.java) -- Источник уровня: `MarketingAnalysisRequest.getDetailLevelEnum()` в [src/main/java/kz/konturai/parser/dto/MarketingAnalysisRequest.java](/Users/magzhanzhumabaev/Desktop/kt%20cloud/parser/src/main/java/kz/konturai/parser/dto/MarketingAnalysisRequest.java) - -## Изменения для текстовых секций (genSection*) - -- **Централизовать требования по уровню** в `MarketingAnalysisService.appendDetailLevelDirectives(...)`: -- **КРАТКО**: добавить явное требование **150–250 слов**, **только bullet points**, запрет вводных/«консалтинговых оборотов», и правило по плейсхолдерам: **вставлять `[[CHART_...]]/[[TABLE_...]] только если в JSON реально есть данные/раздел этого требует**. -- **ПОДРОБНО**: добавить жесткие требования: - - объем **1000–1500 слов**; - - «глубокий академический анализ»; - - **для каждого вывода — 3 конкретных примера реализации**; - - **смежные рынки** и **прогноз 3–5 лет**; - - больше расчетов в LaTeX: **CAC, LTV, ROI, Payback Period**. -- **Выбор модели по уровню** в каждом `genSection*` (там, где сейчас жестко задан `miniModelName` или mix): -- **КРАТКО → всегда `miniModelName`** -- **ПОДРОБНО → всегда `textModelName`** -- **СТАНДАРТНО → оставить текущую модельную логику как есть** (например, `genSectionSummary/product` сейчас на `miniModelName`, `market/audience/competitors/strategy` — на `textModelName`). -- Технически: добавить небольшой helper вроде `selectModelForTextSection(detailLevel, currentPrimaryModel, currentFallbackModel)` и использовать его при вызове `generateWithRetryForSection(...)`. - -## Изменения для JSON-методов (get*Analysis) - -Методы: `getAudienceAnalysis`, `getCompetitorAnalysis`, `getSeasonalityAndMarket`, `getStrategyAndFunnel`. - -- Добавить `DetailLevel detailLevel = request.getDetailLevelEnum()` и ветвление (switch/if): -- **КРАТКО**: - - сократить инструкции; - - заменить «минимум 4 сегмента» → **«2–3 ключевых сегмента»**; - - заменить требования к полям (motivation/triggers/barriers/contentStrategy и т.п.) с 3–4 предложений → **1 емкое предложение**; - - модель **всегда `miniModelName`**. -- **СТАНДАРТНО**: оставить текущий prompt builder без изменений. -- **ПОДРОБНО**: - - требовать **5–6 сегментов** (где применимо) и более глубокую детализацию; - - расширить JSON-схему (без ломания текущих полей) добавив: - - top-level: `hypotheses[]`, `miniCases[]` внутри соответствующей секции (например `audienceAnalysis.hypotheses`, `competitorAnalysis.miniCases`); - - per-item: например `segments[].hypothesis`, `segments[].miniCase`, `competitorsDetails[].miniCase`; - - модель **всегда `textModelName`**. -- **Вынести базовые части промптов** в общие методы/константы, чтобы не дублировать текст: -- базовый «Ты — ...», правила «только JSON», блок входных данных; -- отдельные функции для добавления level-specific требований (segment count / sentence counts / extra fields). - -## Max tokens для ПОДРОБНО - -- Сейчас в `generateWithRetryForSection(...)` уже есть `maxTokensOverride` для `DetailLevel.ПОДРОБНО`, но он равен `REPORT_BASE_MAX_TOKENS * 2`. -- Привести к требованию: **установить override в диапазоне 8000–12000** (например, **12000**) для ПОДРОБНО, чтобы ответы не обрезались и не упираться в потенциальные лимиты модели. -- Для JSON-методов, которые вызывают `openAIAnalyticsService.generateWithInstructionWithModel(...)` без override, добавить `maxTokensOverride` (минимум для ПОДРОБНО), чтобы подробный JSON не резался. - -## Проверка совместимости - -- Убедиться, что существующие поля, которые используются в `genSection*` (например `audienceAnalysis.ageGroups`, `competitorAnalysis.marketShareChart`) **не меняются**, а новые поля добавляются как опциональные. - -## Быстрый smoketest (локально) - -- Прогнать генерацию отчета для 3 режимов на одном и том же входе и сравнить: -- модель (`gpt-4o-mini` vs `gpt-4o`), \ No newline at end of file diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..ce85e44 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,36 @@ +# Keep the build context small and free of anything that must not reach the image. +# NOTE: src/main/resources/keys/google-key.json is deliberately NOT ignored — it is +# gitignored but must be present at build time. See docs/configuration.md. + +.git +.gitea +.gitignore +.gitattributes + +# Local Maven cache and build output — the image builds these itself +.m2 +target + +# Documentation and helper scripts are not needed in the image +docs +scripts +README.md +*.md + +# Local environment files — configuration is injected at runtime +.env +.env.* +!.env.example + +# Editor / AI tooling +.claude +.cursor +.qwen +.codex +.idea +.vscode +*.iml + +# OS noise +.DS_Store +Thumbs.db diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..66c37b9 --- /dev/null +++ b/.env.example @@ -0,0 +1,91 @@ +# ============================================================================= +# Marketing Parser — environment configuration template +# ----------------------------------------------------------------------------- +# Copy to .env for local development, or to .env.production on the server. +# Both are gitignored. NEVER commit a filled-in copy. +# +# REQUIRED — the application will not start without it. +# OPTIONAL — has a working default in application.properties; override as needed. +# +# Load locally with: set -a && source .env && set +a +# ============================================================================= + +# --- MongoDB ----------------------------------------------------------------- +MONGODB_HOST=localhost # OPTIONAL (default: localhost) +MONGODB_PORT=27017 # OPTIONAL (default: 27017) +MONGODB_DATABASE=parser_db # OPTIONAL (default: parser_db) +MONGODB_AUTH_DATABASE=admin # OPTIONAL (default: admin) +MONGODB_USERNAME= # REQUIRED +MONGODB_PASSWORD= # REQUIRED + +# --- MinIO object storage (generated reports and images) --------------------- +MINIO_ENDPOINT= # REQUIRED e.g. http://minio.internal:9000 +MINIO_ACCESS_KEY= # REQUIRED +MINIO_SECRET_KEY= # REQUIRED +MINIO_BUCKET_NAME=konturai # OPTIONAL (default: konturai) + +# --- Application security ---------------------------------------------------- +# Both must be base64-encoded and at least 256 bits. Generate with: +# openssl rand -base64 32 +JWT_SECRET_BASE64= # REQUIRED — must match the issuing auth service +ENCRYPTION_SECRET_KEY= # REQUIRED — encrypts stored social media credentials + +# --- OpenAI ------------------------------------------------------------------ +OPENAI_API_KEY= # REQUIRED + +# --- Ollama (self-hosted text model) ----------------------------------------- +OLLAMA_HOST=http://localhost:11434 # OPTIONAL (default: http://localhost:11434) +OLLAMA_MODEL=gemma3:1b # OPTIONAL (default: gemma3:1b) + +# --- Serper (Google search API) ---------------------------------------------- +SERPER_API_KEY= # REQUIRED + +# --- Deep research service --------------------------------------------------- +DEEP_RESEARCH_API_URL= # REQUIRED e.g. http://research.internal:3051 + +# --- Google Vertex AI (Imagen / Veo) ----------------------------------------- +# Also requires the service-account JSON at src/main/resources/keys/google-key.json +GOOGLE_CLOUD_PROJECT_ID= # REQUIRED +GOOGLE_CLOUD_LOCATION=us-central1 # OPTIONAL (default: us-central1) +IMAGE_GENERATION_PROVIDER=nano-banana # OPTIONAL — nano-banana | openai + +# --- Facebook posting -------------------------------------------------------- +FACEBOOK_APP_ID= # REQUIRED +FACEBOOK_APP_SECRET= # REQUIRED +FACEBOOK_PAGE_ID= # REQUIRED +FACEBOOK_PAGE_TOKEN= # REQUIRED — long-lived page access token + +# --- Facebook hot leads collector -------------------------------------------- +FACEBOOK_LEADS_PAGE_ID= # REQUIRED +FACEBOOK_LEADS_ACCESS_TOKEN= # REQUIRED +FACEBOOK_LEADS_CRON=0 */15 * * * * # OPTIONAL (default: every 15 minutes) +FACEBOOK_LEADS_GRAPH_API_VERSION=v19.0 # OPTIONAL +FACEBOOK_LEADS_TIMEOUT_MS=30000 # OPTIONAL +FACEBOOK_LEADS_POSTS_PAGE_SIZE=25 # OPTIONAL +FACEBOOK_LEADS_COMMENTS_PAGE_SIZE=100 # OPTIONAL + +# --- Facebook leads -> call centre sync -------------------------------------- +FACEBOOK_LEADS_CALL_CENTER_ENABLED=true # OPTIONAL (default: true) +FACEBOOK_LEADS_CALL_CENTER_BASE_URL= # OPTIONAL (default: http://localhost:8080) +FACEBOOK_LEADS_CALL_CENTER_AUTH_USERNAME= # REQUIRED when the sync is enabled +FACEBOOK_LEADS_CALL_CENTER_AUTH_PASSWORD= # REQUIRED when the sync is enabled +# Remaining FACEBOOK_LEADS_CALL_CENTER_* values (paths, actor, queue, timeout, +# subject prefix) have defaults in application.properties. + +# --- Mail (report delivery) -------------------------------------------------- +MAIL_HOST=smtp.gmail.com # OPTIONAL (default: smtp.gmail.com) +MAIL_PORT=587 # OPTIONAL (default: 587) +MAIL_USERNAME= # REQUIRED +MAIL_PASSWORD= # REQUIRED — Gmail app password, not the account password + +# --- Schedulers -------------------------------------------------------------- +PARSER_SCHEDULER_ENABLED=false # OPTIONAL (default: false) +POSTING_SCHEDULER_ENABLED=true # OPTIONAL (default: true) + +# --- CORS -------------------------------------------------------------------- +CORS_ALLOWED_ORIGINS=https://konturai.kz,https://www.konturai.kz # OPTIONAL +CORS_ALLOWED_METHODS=GET,POST,PUT,PATCH,DELETE,OPTIONS # OPTIONAL +CORS_ALLOWED_HEADERS=* # OPTIONAL +CORS_EXPOSED_HEADERS=Location,Content-Disposition # OPTIONAL +CORS_ALLOW_CREDENTIALS=true # OPTIONAL +CORS_MAX_AGE_SECONDS=3600 # OPTIONAL diff --git a/.gitignore b/.gitignore index a0e6cac..1c2394b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,25 +1,50 @@ -HELP.md +### Build output ### target/ -.mvn/wrapper/maven-wrapper.jar +build/ !**/src/main/**/target/ !**/src/test/**/target/ +!**/src/main/**/build/ +!**/src/test/**/build/ -### OS / local workspace ### -.DS_Store -.codex -.claude/ -.cursor/ +### Maven ### +.mvn/wrapper/maven-wrapper.jar .m2/ +HELP.md -### Logs / env ### -*.log +### Secrets & credentials ### +# Never commit real credentials. See docs/configuration.md and .env.example. .env .env.* +!.env.example +*.pem +*.p12 +*.key +google-key.json +**/keys/google-key.json +src/main/resources/application-local.properties -### Local secrets ### -/google-key.json +### Logs ### +*.log +logs/ -### STS ### +### OS ### +.DS_Store +Thumbs.db + +### AI / editor tooling ### +.claude/ +.cursor/ +.codex +.qwen/ +.aider* + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### Eclipse / STS ### .apt_generated .classpath .factorypath @@ -28,21 +53,12 @@ target/ .springBeans .sts4-cache -### IntelliJ IDEA ### -.idea -*.iws -*.iml -*.ipr - ### NetBeans ### /nbproject/private/ /nbbuild/ /dist/ /nbdist/ /.nb-gradle/ -build/ -!**/src/main/**/build/ -!**/src/test/**/build/ ### VS Code ### .vscode/ diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index d3feebb..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,59 +0,0 @@ -image: eclipse-temurin:21-jdk - -variables: - MAVEN_OPTS: "-Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository" - DEPLOY_DIR: "/home/gitlab-runner/deploy/marketing-parser" - PARSER_IMAGE_NAME: "marketing-parser-app" - PARSER_CONTAINER_NAME: "konturai-parser-app" - -stages: - - test - - deploy - -cache: - key: ${CI_COMMIT_REF_SLUG} - paths: - - .m2/repository - -test: - stage: test - tags: - - marketing-parser-prod - before_script: - - export JAVA_HOME="$(dirname "$(dirname "$(readlink -f "$(command -v java)")")")" - - chmod +x mvnw - script: - - ./mvnw --batch-mode clean verify - artifacts: - when: always - paths: - - target/site/jacoco/ - reports: - junit: - - target/surefire-reports/TEST-*.xml - -deploy_production: - stage: deploy - needs: - - test - tags: - - marketing-parser-prod - variables: - DOCKER_HOST: "" - DOCKER_TLS_VERIFY: "" - DOCKER_CERT_PATH: "" - DOCKER_TLS_CERTDIR: "" - COMPOSE_FILE: "$DEPLOY_DIR/deployment/docker-compose.server.yml" - COMPOSE_PROJECT_NAME: "marketing-parser" - rules: - - if: '$CI_PIPELINE_SOURCE == "push"' - - if: '$CI_PIPELINE_SOURCE == "web"' - before_script: - - command -v bash >/dev/null - - command -v docker >/dev/null - - command -v rsync >/dev/null - script: - - bash scripts/deploy_gitlab.sh - environment: - name: production - resource_group: marketing-parser-production diff --git a/.m2/repository/ch/qos/logback/logback-classic/1.5.18/_remote.repositories b/.m2/repository/ch/qos/logback/logback-classic/1.5.18/_remote.repositories deleted file mode 100644 index 2e2e910..0000000 --- a/.m2/repository/ch/qos/logback/logback-classic/1.5.18/_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. -#Thu Apr 02 20:38:35 UTC 2026 -logback-classic-1.5.18.jar>central= -logback-classic-1.5.18.pom>central= diff --git a/.m2/repository/ch/qos/logback/logback-classic/1.5.18/logback-classic-1.5.18.jar b/.m2/repository/ch/qos/logback/logback-classic/1.5.18/logback-classic-1.5.18.jar deleted file mode 100644 index 7e99f4e..0000000 Binary files a/.m2/repository/ch/qos/logback/logback-classic/1.5.18/logback-classic-1.5.18.jar and /dev/null differ diff --git a/.m2/repository/ch/qos/logback/logback-classic/1.5.18/logback-classic-1.5.18.jar.sha1 b/.m2/repository/ch/qos/logback/logback-classic/1.5.18/logback-classic-1.5.18.jar.sha1 deleted file mode 100644 index 7a4567f..0000000 --- a/.m2/repository/ch/qos/logback/logback-classic/1.5.18/logback-classic-1.5.18.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fc371f3fc97a639de2d67947cffb7518ec5e3d40 \ No newline at end of file diff --git a/.m2/repository/ch/qos/logback/logback-classic/1.5.18/logback-classic-1.5.18.pom b/.m2/repository/ch/qos/logback/logback-classic/1.5.18/logback-classic-1.5.18.pom deleted file mode 100644 index a3aa9bf..0000000 --- a/.m2/repository/ch/qos/logback/logback-classic/1.5.18/logback-classic-1.5.18.pom +++ /dev/null @@ -1,352 +0,0 @@ - - - - 4.0.0 - - - ch.qos.logback - logback-parent - 1.5.18 - - - 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.issue.github450=ch.qos.logback.core - --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 - ch.qos.logback.classic.issue.github450.SLF4JIssue450Test - - - - - - singleJVM - - test - - - 4 - false - - --add-opens ch.qos.logback.classic/ch.qos.logback.classic.issue.github450=ch.qos.logback.core - - - org.slf4j.implTest.MultithreadedInitializationTest.java - org.slf4j.implTest.InitializationOutputTest.java - ch.qos.logback.classic.util.ContextInitializerTest.java - ch.qos.logback.classic.spi.InvocationTest.java - ch.qos.logback.classic.issue.github450.SLF4JIssue450Test - - - - - - - - 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/.m2/repository/ch/qos/logback/logback-classic/1.5.18/logback-classic-1.5.18.pom.sha1 b/.m2/repository/ch/qos/logback/logback-classic/1.5.18/logback-classic-1.5.18.pom.sha1 deleted file mode 100644 index ab371d9..0000000 --- a/.m2/repository/ch/qos/logback/logback-classic/1.5.18/logback-classic-1.5.18.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -19f6cb01d310be728155db4abf63d8395a6a0b45 \ No newline at end of file diff --git a/.m2/repository/ch/qos/logback/logback-core/1.5.18/_remote.repositories b/.m2/repository/ch/qos/logback/logback-core/1.5.18/_remote.repositories deleted file mode 100644 index 4db27da..0000000 --- a/.m2/repository/ch/qos/logback/logback-core/1.5.18/_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. -#Thu Apr 02 20:38:35 UTC 2026 -logback-core-1.5.18.jar>central= -logback-core-1.5.18.pom>central= diff --git a/.m2/repository/ch/qos/logback/logback-core/1.5.18/logback-core-1.5.18.jar b/.m2/repository/ch/qos/logback/logback-core/1.5.18/logback-core-1.5.18.jar deleted file mode 100644 index fba569c..0000000 Binary files a/.m2/repository/ch/qos/logback/logback-core/1.5.18/logback-core-1.5.18.jar and /dev/null differ diff --git a/.m2/repository/ch/qos/logback/logback-core/1.5.18/logback-core-1.5.18.jar.sha1 b/.m2/repository/ch/qos/logback/logback-core/1.5.18/logback-core-1.5.18.jar.sha1 deleted file mode 100644 index 1d6b57c..0000000 --- a/.m2/repository/ch/qos/logback/logback-core/1.5.18/logback-core-1.5.18.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -6c0375624f6f36b4e089e2488ba21334a11ef13f \ No newline at end of file diff --git a/.m2/repository/ch/qos/logback/logback-core/1.5.18/logback-core-1.5.18.pom b/.m2/repository/ch/qos/logback/logback-core/1.5.18/logback-core-1.5.18.pom deleted file mode 100644 index e9a535d..0000000 --- a/.m2/repository/ch/qos/logback/logback-core/1.5.18/logback-core-1.5.18.pom +++ /dev/null @@ -1,224 +0,0 @@ - - - - 4.0.0 - - - ch.qos.logback - logback-parent - 1.5.18 - - - 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 - - - - org.tukaani - xz - - provided - 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-compiler-plugin - ${maven-compiler-plugin.version} - - - - default-compile - - compile - - - ${jdk.version} - - - - - java21-compile - compile - - compile - - - 21 - - ${project.basedir}/src/main/java21 - - true - - - - - default-testCompile - test-compile - - - **/COWArrayListConcurrencyTest.java - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - - default-test - - - - - --add-opens ch.qos.logback.core/ch.qos.logback.core.testUtil=java.naming - - --add-reads ch.qos.logback.core=ALL-UNNAMED - - classes - 20 - - 5 - true - plain - false - - true - - **/All*Test.java - **/PackageTest.java - - **/ConsoleAppenderTest.java - ch.qos.logback.core.blackbox.rolling.helper.JDKOnlyCompressTest - - - - org.tukaani:xz - - - - - - - - - - - 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 - - - - - - true - 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, - org.tukaani.xz;resolution:=optional, - * - - - - - - - - diff --git a/.m2/repository/ch/qos/logback/logback-core/1.5.18/logback-core-1.5.18.pom.sha1 b/.m2/repository/ch/qos/logback/logback-core/1.5.18/logback-core-1.5.18.pom.sha1 deleted file mode 100644 index 0826792..0000000 --- a/.m2/repository/ch/qos/logback/logback-core/1.5.18/logback-core-1.5.18.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b08ee05116e297660d31f7303dca7a34f80dc78b \ No newline at end of file diff --git a/.m2/repository/ch/qos/logback/logback-parent/1.5.18/_remote.repositories b/.m2/repository/ch/qos/logback/logback-parent/1.5.18/_remote.repositories deleted file mode 100644 index 427721c..0000000 --- a/.m2/repository/ch/qos/logback/logback-parent/1.5.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. -#Thu Apr 02 20:37:43 UTC 2026 -logback-parent-1.5.18.pom>central= diff --git a/.m2/repository/ch/qos/logback/logback-parent/1.5.18/logback-parent-1.5.18.pom b/.m2/repository/ch/qos/logback/logback-parent/1.5.18/logback-parent-1.5.18.pom deleted file mode 100644 index a953c1c..0000000 --- a/.m2/repository/ch/qos/logback/logback-parent/1.5.18/logback-parent-1.5.18.pom +++ /dev/null @@ -1,564 +0,0 @@ - - - - 4.0.0 - - - ch.qos.logback - logback-parent - 1.5.18 - 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 - - - - - 2025-03-18T12:42:00Z - - - 11 - - ${jdk.version} - UTF-8 - - 5.9.1 - 5.9.1 - 5.9.1 - 1.10.5 - 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.17 - 0.8.1 - 1.1.0 - 2.15.0 - 1.10 - - - 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.6.0 - 3.0.0-M4 - 3.0.0-M1 - 3.2.0 - 5.1.9 - 3.1.0 - 1.10.13 - 2.7 - 12.0.13 - - - - - 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.tukaani - xz - ${xz.version} - - - 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.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.apache.maven.plugins - maven-compiler-plugin - - - ${jdk.version} - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - test-jar - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - default-cli - - aggregate - - - - - - true - none - - logback-core-blackbox,logback-classic-blackbox,logback-examples - - - -Xdoclint:none - - - - - 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.* - - - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${maven-jxr-plugin.version} - - true - - false - - - - - - - - - - - sonatype-nexus-staging - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - - - - - - - - - - - - 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/.m2/repository/ch/qos/logback/logback-parent/1.5.18/logback-parent-1.5.18.pom.sha1 b/.m2/repository/ch/qos/logback/logback-parent/1.5.18/logback-parent-1.5.18.pom.sha1 deleted file mode 100644 index b288c22..0000000 --- a/.m2/repository/ch/qos/logback/logback-parent/1.5.18/logback-parent-1.5.18.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1e510753b365bdd014c4c95fda03ecb432c10210 \ No newline at end of file diff --git a/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/_remote.repositories b/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/_remote.repositories deleted file mode 100644 index 1d6d084..0000000 --- a/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.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. -#Thu Apr 02 20:38:35 UTC 2026 -simple-xml-safe-2.7.1.jar>central= -simple-xml-safe-2.7.1.pom>central= diff --git a/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/simple-xml-safe-2.7.1.jar b/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/simple-xml-safe-2.7.1.jar deleted file mode 100644 index d4ce9f1..0000000 Binary files a/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/simple-xml-safe-2.7.1.jar and /dev/null differ diff --git a/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/simple-xml-safe-2.7.1.jar.sha1 b/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/simple-xml-safe-2.7.1.jar.sha1 deleted file mode 100644 index a874f4a..0000000 --- a/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/simple-xml-safe-2.7.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -045fda5ac6087bc82a209d8cdb73f8d0dbdcfc7b \ No newline at end of file diff --git a/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/simple-xml-safe-2.7.1.pom b/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/simple-xml-safe-2.7.1.pom deleted file mode 100644 index 072972a..0000000 --- a/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/simple-xml-safe-2.7.1.pom +++ /dev/null @@ -1,39 +0,0 @@ - - - 4.0.0 - com.carrotsearch.thirdparty - simple-xml-safe - 2.7.1 - Simple XML (safe) - A fork of Niall Gallagher's simple-xml library with web-safe defaults - https://github.com/dweiss/simplexml - 2019 - - Carrot Search s.c. - https://www.carrotsearch.com - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - niallg - Niall Gallagher - niallg@users.sf.net - - - dawid.weiss - Dawid Weiss - dawid.weiss@carrotsearch.com - - - - scm:git:git@github.com:dweiss/simplexml.git - scm:git:git@github.com:dweiss/simplexml.git - https://github.com/dweiss/simplexml - - diff --git a/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/simple-xml-safe-2.7.1.pom.sha1 b/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/simple-xml-safe-2.7.1.pom.sha1 deleted file mode 100644 index 543059f..0000000 --- a/.m2/repository/com/carrotsearch/thirdparty/simple-xml-safe/2.7.1/simple-xml-safe-2.7.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e984822c5459d808e92257dafffa1d69c80db620 \ No newline at end of file diff --git a/.m2/repository/com/datastax/oss/java-driver-bom/4.17.0/_remote.repositories b/.m2/repository/com/datastax/oss/java-driver-bom/4.17.0/_remote.repositories deleted file mode 100644 index 5bc4eec..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:10 UTC 2026 -java-driver-bom-4.17.0.pom>central= diff --git a/.m2/repository/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom b/.m2/repository/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom deleted file mode 100644 index 0696295..0000000 --- a/.m2/repository/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/.m2/repository/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.sha1 b/.m2/repository/com/datastax/oss/java-driver-bom/4.17.0/java-driver-bom-4.17.0.pom.sha1 deleted file mode 100644 index 8e0bd98..0000000 --- a/.m2/repository/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/.m2/repository/com/fasterxml/classmate/1.7.0/_remote.repositories b/.m2/repository/com/fasterxml/classmate/1.7.0/_remote.repositories deleted file mode 100644 index d817253..0000000 --- a/.m2/repository/com/fasterxml/classmate/1.7.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. -#Thu Apr 02 20:38:35 UTC 2026 -classmate-1.7.0.jar>central= -classmate-1.7.0.pom>central= diff --git a/.m2/repository/com/fasterxml/classmate/1.7.0/classmate-1.7.0.jar b/.m2/repository/com/fasterxml/classmate/1.7.0/classmate-1.7.0.jar deleted file mode 100644 index 984a779..0000000 Binary files a/.m2/repository/com/fasterxml/classmate/1.7.0/classmate-1.7.0.jar and /dev/null differ diff --git a/.m2/repository/com/fasterxml/classmate/1.7.0/classmate-1.7.0.jar.sha1 b/.m2/repository/com/fasterxml/classmate/1.7.0/classmate-1.7.0.jar.sha1 deleted file mode 100644 index 990ddee..0000000 --- a/.m2/repository/com/fasterxml/classmate/1.7.0/classmate-1.7.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0e98374da1f2143ac8e6e0a95036994bb19137a3 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/classmate/1.7.0/classmate-1.7.0.pom b/.m2/repository/com/fasterxml/classmate/1.7.0/classmate-1.7.0.pom deleted file mode 100644 index f9a85df..0000000 --- a/.m2/repository/com/fasterxml/classmate/1.7.0/classmate-1.7.0.pom +++ /dev/null @@ -1,202 +0,0 @@ - - 4.0.0 - - com.fasterxml - oss-parent - 56 - - classmate - ClassMate - 1.7.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.7.0 - - - - tatu - Tatu Saloranta - tatu@fasterxml.com - - - blangel - Brian Langel - blangel@ocheyedan.net - - - - - UTF-8 - 1.8 - - com.fasterxml.classmate;version=${project.version}, -com.fasterxml.classmate.*;version=${project.version} - - com.fasterxml.classmate.util.* - - - - - - 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 - - - - - maven-compiler-plugin - - ${version.jdk} - ${version.jdk} - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${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 - - - - - - - - - org.jacoco - jacoco-maven-plugin - - - - prepare-agent - - - - - report - test - - report - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/failing/*.java - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/.m2/repository/com/fasterxml/classmate/1.7.0/classmate-1.7.0.pom.sha1 b/.m2/repository/com/fasterxml/classmate/1.7.0/classmate-1.7.0.pom.sha1 deleted file mode 100644 index fe5875e..0000000 --- a/.m2/repository/com/fasterxml/classmate/1.7.0/classmate-1.7.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -521b014f7861112ad5f32b2cc4ec68fb4b33e93a \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/_remote.repositories b/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/_remote.repositories deleted file mode 100644 index 736d651..0000000 --- a/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.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. -#Thu Apr 02 20:38:35 UTC 2026 -jackson-annotations-2.19.2.jar>central= -jackson-annotations-2.19.2.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/jackson-annotations-2.19.2.jar b/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/jackson-annotations-2.19.2.jar deleted file mode 100644 index 6272a19..0000000 Binary files a/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/jackson-annotations-2.19.2.jar and /dev/null differ diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/jackson-annotations-2.19.2.jar.sha1 b/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/jackson-annotations-2.19.2.jar.sha1 deleted file mode 100644 index 8241461..0000000 --- a/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/jackson-annotations-2.19.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0c5381f11988ae3d424b197a26087d86067b6d7d \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/jackson-annotations-2.19.2.pom b/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/jackson-annotations-2.19.2.pom deleted file mode 100644 index 46fe346..0000000 --- a/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/jackson-annotations-2.19.2.pom +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - - - 4.0.0 - - com.fasterxml.jackson - - jackson-parent - 2.19.3 - - - com.fasterxml.jackson.core - jackson-annotations - Jackson-annotations - 2.19.2 - 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.19.2 - - - - - 1.6 - 1.6 - - 1.6 - 1.6 - - com.fasterxml.jackson.annotation.*;version=${project.version} - - - 2025-07-18T17:34:01Z - - - - - org.junit.jupiter - junit-jupiter - ${version.junit5} - test - - - - - - - - central-snapshots - Sonatype Central Portal (snapshots) - https://central.sonatype.com/repository/maven-snapshots - false - true - - - - - - - - - - org.moditect - moditect-maven-plugin - - - add-module-infos - package - - add-module-info - - - true - - src/moditect/module-info.java - - - - - - - - - org.sonatype.central - central-publishing-maven-plugin - - - - - 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 - - - - - - - - org.gradlex - gradle-module-metadata-maven-plugin - 1.0 - - - - gmm - - - - - - - com.fasterxml.jackson - jackson-bom - ${project.version} - - - - - - - - diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/jackson-annotations-2.19.2.pom.sha1 b/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/jackson-annotations-2.19.2.pom.sha1 deleted file mode 100644 index 396d524..0000000 --- a/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.19.2/jackson-annotations-2.19.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2f22c166771e03bb0dc6423045ae4c33144ba1ac \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/_remote.repositories b/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/_remote.repositories deleted file mode 100644 index 566e220..0000000 --- a/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.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. -#Thu Apr 02 20:38:35 UTC 2026 -jackson-core-2.19.2.jar>central= -jackson-core-2.19.2.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/jackson-core-2.19.2.jar b/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/jackson-core-2.19.2.jar deleted file mode 100644 index 3a8ef59..0000000 Binary files a/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/jackson-core-2.19.2.jar and /dev/null differ diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/jackson-core-2.19.2.jar.sha1 b/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/jackson-core-2.19.2.jar.sha1 deleted file mode 100644 index 7971119..0000000 --- a/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/jackson-core-2.19.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -50f3b4bd59b9ff51a0ed493e7b5abaf5c39709bf \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/jackson-core-2.19.2.pom b/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/jackson-core-2.19.2.pom deleted file mode 100644 index 99a87e3..0000000 --- a/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/jackson-core-2.19.2.pom +++ /dev/null @@ -1,236 +0,0 @@ - - - - jackson-base - com.fasterxml.jackson - 2.19.2 - ../pom.xml/pom.xml - - 4.0.0 - com.fasterxml.jackson.core - jackson-core - Jackson-core - 2.19.2 - 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.19.2 - https://github.com/FasterXML/jackson-core - - - - - org.jacoco - jacoco-maven-plugin - - - - prepare-agent - - - - report - verify - - report - - - - - - maven-enforcer-plugin - - - enforce-properties - validate - - enforce - - - - enforce-jacoco-exec - verify - - enforce - - - - - - ${project.build.directory}/jacoco.exec - - - - ${jacocoStrict} - - - - - - maven-site-plugin - - - maven-surefire-plugin - ${version.plugin.surefire} - - ${surefire.redirectTestOutputToFile} - - - - com.google.code.maven-replacer-plugin - replacer - - - org.cyclonedx - cyclonedx-maven-plugin - - - package - - makeAggregateBom - - - - - - org.moditect - moditect-maven-plugin - - - org.codehaus.mojo - build-helper-maven-plugin - - - maven-shade-plugin - - - shade-jackson-core - package - - shade - - - - - ch.randelshofer:fastdoubleparser - - META-INF/LICENSE - META-INF/MANIFEST.MF - META-INF/versions/**/module-info.* - META-INF/versions/22/** - - - - - - ch/randelshofer/fastdoubleparser - com/fasterxml/jackson/core/internal/shaded/fdp/v${project.version.underscore} - - - 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/internal/shaded/fdp/v${project.version.underscore} - - - META-INF/versions/17/ch/randelshofer/fastdoubleparser - META-INF/versions/17/com/fasterxml/jackson/core/internal/shaded/fdp/v${project.version.underscore} - - - META-INF/versions/21/ch/randelshofer/fastdoubleparser - META-INF/versions/21/com/fasterxml/jackson/core/internal/shaded/fdp/v${project.version.underscore} - - - - - - - true - true - true - - - - org.gradlex - gradle-module-metadata-maven-plugin - - - - ch.randelshofer - fastdoubleparser - - - - - - maven-jar-plugin - - - - true - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${version.plugin.animal-sniffer} - - - com.toasttab.android - gummy-bears-api-${version.android.sdk} - ${version.android.sdk.signature} - - - - - - - - - false - - - central-snapshots - Sonatype Central Portal (snapshots) - https://central.sonatype.com/repository/maven-snapshots - - - - 2025-07-18T17:39:28Z - 0.5.1 - com.fasterxml.jackson.core;version=${project.version}, -com.fasterxml.jackson.core.*;version=${project.version} - true - com/fasterxml/jackson/core/json - !ch.randelshofer.fastdoubleparser, * - 26 - 1.23 - ${project.groupId}.json - - diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/jackson-core-2.19.2.pom.sha1 b/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/jackson-core-2.19.2.pom.sha1 deleted file mode 100644 index 17ec768..0000000 --- a/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.19.2/jackson-core-2.19.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -079310ba6c4bce4a3b1206916dfacd73952d8458 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/_remote.repositories b/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/_remote.repositories deleted file mode 100644 index 5194cfa..0000000 --- a/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.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. -#Thu Apr 02 20:38:35 UTC 2026 -jackson-databind-2.19.2.jar>central= -jackson-databind-2.19.2.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/jackson-databind-2.19.2.jar b/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/jackson-databind-2.19.2.jar deleted file mode 100644 index 86cbd6a..0000000 Binary files a/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/jackson-databind-2.19.2.jar and /dev/null differ diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/jackson-databind-2.19.2.jar.sha1 b/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/jackson-databind-2.19.2.jar.sha1 deleted file mode 100644 index 11e44ed..0000000 --- a/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/jackson-databind-2.19.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -46509399d28f57ca32c6bb4b0d4e10e8f062051e \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/jackson-databind-2.19.2.pom b/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/jackson-databind-2.19.2.pom deleted file mode 100644 index a7b906b..0000000 --- a/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/jackson-databind-2.19.2.pom +++ /dev/null @@ -1,593 +0,0 @@ - - - - - - - - 4.0.0 - - com.fasterxml.jackson - jackson-base - 2.19.2 - - com.fasterxml.jackson.core - jackson-databind - 2.19.2 - 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.19.2 - - - - - 1.8 - 1.8 - - - 26 - 0.12.0 - - 1.15.10 - 4.11.0 - - - false - - - com.fasterxml.jackson.databind.*;version=${project.version} - - - org.w3c.dom.bootstrap;resolution:=optional, - * - - - - com/fasterxml/jackson/databind/cfg - com.fasterxml.jackson.databind.cfg - - - 2025-07-18T17:49:02Z - - - - - - - net.bytebuddy - byte-buddy - ${version.bytebuddy} - - - net.bytebuddy - byte-buddy-agent - ${version.bytebuddy} - - - - - - - com.fasterxml.jackson.core - jackson-annotations - - ${jackson.version.annotations} - - - com.fasterxml.jackson.core - jackson-core - ${jackson.version.core} - - - - - org.junit.jupiter - junit-jupiter - test - - - org.junit.jupiter - junit-jupiter-api - test - - - org.assertj - assertj-core - 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 - - - - - org.mockito - mockito-core - ${version.mockito} - test - - - org.mockito - mockito-inline - ${version.mockito} - test - - - - - org.junit.platform - junit-platform-suite-engine - 1.10.2 - test - - - io.micronaut.test - micronaut-test-type-pollution - 4.6.2 - test - - - - - - - - central-snapshots - Sonatype Central Portal (snapshots) - https://central.sonatype.com/repository/maven-snapshots - false - true - - - - - - - org.jacoco - jacoco-maven-plugin - - - - prepare-agent - - - - - report - verify - - report - - - - - - - - maven-enforcer-plugin - - - enforce-properties - validate - enforce - - - enforce-jacoco-exec - verify - - enforce - - - - - - ${project.build.directory}/jacoco.exec - - - - ${jacocoStrict} - - - - - - - org.apache.maven.plugins - ${version.plugin.surefire} - maven-surefire-plugin - - - javax.measure:jsr-275 - - - com.fasterxml.jackson.databind.MapperFootprintTest - - com.fasterxml.jackson.databind.PrimarySuite - - 4 - classes - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - https://javadoc.io/doc/com.fasterxml.jackson.core/jackson-annotations/2.18.4 - https://javadoc.io/doc/com.fasterxml.jackson.core/jackson-core/2.18.4 - - - - - - - com.google.code.maven-replacer-plugin - replacer - - - - - org.moditect - moditect-maven-plugin - - - - org.codehaus.mojo - build-helper-maven-plugin - - - - org.gradlex - 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 - - - - - java11 - - 11 - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-test-source - generate-test-sources - - add-test-source - - - - src/test-jdk11/java - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - true - - - 11 - 11 - - -parameters - - true - true - - - - - - - - java17 - - 17 - - - --add-opens=java.base/java.util=ALL-UNNAMED - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-test-source - generate-test-sources - - add-test-source - - - - src/test-jdk11/java - src/test-jdk17/java - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - true - - - 17 - 17 - - -parameters - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - type-pollution-test - test - - test - - - com.fasterxml.jackson.databind.typepollution.TypePollutionSuite - 1 - - - - - - - - - - java21 - - [21,) - - - --add-opens=java.base/java.util=ALL-UNNAMED - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-test-source - generate-test-sources - - add-test-source - - - - src/test-jdk11/java - src/test-jdk17/java - src/test-jdk21/java - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - true - - - 21 - 21 - - -parameters - - - - - - - - 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/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/jackson-databind-2.19.2.pom.sha1 b/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/jackson-databind-2.19.2.pom.sha1 deleted file mode 100644 index 2c6b644..0000000 --- a/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.19.2/jackson-databind-2.19.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5af3c410ae3078d1bc4fdedb13ed6b3b310124a6 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/_remote.repositories b/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/_remote.repositories deleted file mode 100644 index 499c676..0000000 --- a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.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. -#Thu Apr 02 20:38:35 UTC 2026 -jackson-dataformat-yaml-2.19.2.jar>central= -jackson-dataformat-yaml-2.19.2.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/jackson-dataformat-yaml-2.19.2.jar b/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/jackson-dataformat-yaml-2.19.2.jar deleted file mode 100644 index 4617dde..0000000 Binary files a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/jackson-dataformat-yaml-2.19.2.jar and /dev/null differ diff --git a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/jackson-dataformat-yaml-2.19.2.jar.sha1 b/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/jackson-dataformat-yaml-2.19.2.jar.sha1 deleted file mode 100644 index 786ac30..0000000 --- a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/jackson-dataformat-yaml-2.19.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ba1079940daa609061e46c80b72c5546c4718401 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/jackson-dataformat-yaml-2.19.2.pom b/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/jackson-dataformat-yaml-2.19.2.pom deleted file mode 100644 index 33617ee..0000000 --- a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/jackson-dataformat-yaml-2.19.2.pom +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - 4.0.0 - - com.fasterxml.jackson.dataformat - jackson-dataformats-text - 2.19.2 - - jackson-dataformat-yaml - jar - Jackson-dataformat-YAML - Support for reading and writing YAML-encoded data via Jackson abstractions. - - https://github.com/FasterXML/jackson-dataformats-text - - - com/fasterxml/jackson/dataformat/yaml - ${project.groupId}.yaml - - - - - - com.fasterxml.jackson.core - jackson-databind - - - - - org.yaml - snakeyaml - 2.4 - - - - - - - - - - com.google.code.maven-replacer-plugin - replacer - - - process-packageVersion - generate-sources - - - - - - org.moditect - moditect-maven-plugin - - - - - org.gradlex - gradle-module-metadata-maven-plugin - - - - diff --git a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/jackson-dataformat-yaml-2.19.2.pom.sha1 b/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/jackson-dataformat-yaml-2.19.2.pom.sha1 deleted file mode 100644 index eb2f3d6..0000000 --- a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.2/jackson-dataformat-yaml-2.19.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b5356e6cf7d94a4285d0ce7e474f734224613b1f \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.19.2/_remote.repositories b/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.19.2/_remote.repositories deleted file mode 100644 index 0ed469d..0000000 --- a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.19.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. -#Thu Apr 02 20:38:15 UTC 2026 -jackson-dataformats-text-2.19.2.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.19.2/jackson-dataformats-text-2.19.2.pom b/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.19.2/jackson-dataformats-text-2.19.2.pom deleted file mode 100644 index 443851a..0000000 --- a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.19.2/jackson-dataformats-text-2.19.2.pom +++ /dev/null @@ -1,101 +0,0 @@ - - 4.0.0 - - com.fasterxml.jackson - jackson-base - 2.19.2 - - com.fasterxml.jackson.dataformat - jackson-dataformats-text - Jackson dataformats: Text - 2.19.2 - 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.19.2 - - - https://github.com/FasterXML/jackson-dataformats-text/issues - - - - - 2025-07-18T17:59:23Z - - - - - - com.fasterxml.jackson.core - jackson-core - - - - - org.junit.jupiter - junit-jupiter - test - - - org.junit.jupiter - junit-jupiter-api - test - - - org.assertj - assertj-core - test - - - - - - - - central-snapshots - Sonatype Central Portal (snapshots) - https://central.sonatype.com/repository/maven-snapshots - false - true - - - - - - - - - com.google.code.maven-replacer-plugin - replacer - - - process-packageVersion - generate-sources - - - - - - - diff --git a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.19.2/jackson-dataformats-text-2.19.2.pom.sha1 b/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.19.2/jackson-dataformats-text-2.19.2.pom.sha1 deleted file mode 100644 index 4627f7f..0000000 --- a/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.19.2/jackson-dataformats-text-2.19.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8c5e45b447660cea182ed3394b0e13c6f42977d2 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/_remote.repositories b/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/_remote.repositories deleted file mode 100644 index 7fdfaca..0000000 --- a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.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. -#Thu Apr 02 20:38:35 UTC 2026 -jackson-datatype-jdk8-2.19.2.jar>central= -jackson-datatype-jdk8-2.19.2.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/jackson-datatype-jdk8-2.19.2.jar b/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/jackson-datatype-jdk8-2.19.2.jar deleted file mode 100644 index 0b4f5de..0000000 Binary files a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/jackson-datatype-jdk8-2.19.2.jar and /dev/null differ diff --git a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/jackson-datatype-jdk8-2.19.2.jar.sha1 b/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/jackson-datatype-jdk8-2.19.2.jar.sha1 deleted file mode 100644 index c7e0f9d..0000000 --- a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/jackson-datatype-jdk8-2.19.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a720d3946c3a1ab04b780f3b3163d62eee6948a0 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/jackson-datatype-jdk8-2.19.2.pom b/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/jackson-datatype-jdk8-2.19.2.pom deleted file mode 100644 index f2d82fd..0000000 --- a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/jackson-datatype-jdk8-2.19.2.pom +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - 4.0.0 - - com.fasterxml.jackson.module - jackson-modules-java8 - 2.19.2 - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - Jackson datatype: jdk8 - bundle - Add-on module for Jackson (https://github.com/FasterXML/jackson) 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.google.code.maven-replacer-plugin - replacer - - - process-packageVersion - generate-sources - - - - - - org.moditect - moditect-maven-plugin - - - - - org.gradlex - gradle-module-metadata-maven-plugin - - - - diff --git a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/jackson-datatype-jdk8-2.19.2.pom.sha1 b/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/jackson-datatype-jdk8-2.19.2.pom.sha1 deleted file mode 100644 index fe82652..0000000 --- a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.19.2/jackson-datatype-jdk8-2.19.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4ad2be64aee86a3fcbd341c6d250c62bd49cb626 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/_remote.repositories b/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/_remote.repositories deleted file mode 100644 index ddb993c..0000000 --- a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.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. -#Thu Apr 02 20:38:35 UTC 2026 -jackson-datatype-jsr310-2.19.2.jar>central= -jackson-datatype-jsr310-2.19.2.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/jackson-datatype-jsr310-2.19.2.jar b/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/jackson-datatype-jsr310-2.19.2.jar deleted file mode 100644 index 7141cdc..0000000 Binary files a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/jackson-datatype-jsr310-2.19.2.jar and /dev/null differ diff --git a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/jackson-datatype-jsr310-2.19.2.jar.sha1 b/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/jackson-datatype-jsr310-2.19.2.jar.sha1 deleted file mode 100644 index e9a65d5..0000000 --- a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/jackson-datatype-jsr310-2.19.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -72e73f048b36d9df82aef146bf8b2ae63b2e28e2 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/jackson-datatype-jsr310-2.19.2.pom b/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/jackson-datatype-jsr310-2.19.2.pom deleted file mode 100644 index 3a56fae..0000000 --- a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/jackson-datatype-jsr310-2.19.2.pom +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - 4.0.0 - - com.fasterxml.jackson.module - jackson-modules-java8 - 2.19.2 - - 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.junit.jupiter - junit-jupiter - test - - - org.junit.jupiter - junit-jupiter-api - test - - - - - - - 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 - - - - - org.moditect - moditect-maven-plugin - - - - - org.gradlex - gradle-module-metadata-maven-plugin - - - - diff --git a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/jackson-datatype-jsr310-2.19.2.pom.sha1 b/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/jackson-datatype-jsr310-2.19.2.pom.sha1 deleted file mode 100644 index 84a865a..0000000 --- a/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.19.2/jackson-datatype-jsr310-2.19.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -612bf269e8469c9fc77d369ec70f9eeb3d5e709e \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/jackson-base/2.19.2/_remote.repositories b/.m2/repository/com/fasterxml/jackson/jackson-base/2.19.2/_remote.repositories deleted file mode 100644 index 034529d..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-base/2.19.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. -#Thu Apr 02 20:37:45 UTC 2026 -jackson-base-2.19.2.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/jackson-base/2.19.2/jackson-base-2.19.2.pom b/.m2/repository/com/fasterxml/jackson/jackson-base/2.19.2/jackson-base-2.19.2.pom deleted file mode 100644 index 9285701..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-base/2.19.2/jackson-base-2.19.2.pom +++ /dev/null @@ -1,332 +0,0 @@ - - - 4.0.0 - - com.fasterxml.jackson - jackson-bom - 2.19.2 - - 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 - - - - - ${project.groupId} - ${project.artifactId} - ${project.version} - - - ${project.parent.version} - - - 2025-07-18T17:31:22Z - - - - - - - javax.activation - javax.activation-api - ${javax.activation.version} - - - - - org.assertj - assertj-core - ${version.assertj} - test - - - - junit - junit - ${version.junit} - test - - - - - org.junit - junit-bom - ${version.junit5} - pom - import - - - - - - - - - - - - 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! - - - - - - 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 - - - - - org.gradlex - gradle-module-metadata-maven-plugin - 1.2 - - - - 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 - - - - - - - - regex-property - - - regex-property - - - project.version.underscore - ${project.version} - \. - _ - true - - - - - - - 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.central - central-publishing-maven-plugin - - - - - - - - - diff --git a/.m2/repository/com/fasterxml/jackson/jackson-base/2.19.2/jackson-base-2.19.2.pom.sha1 b/.m2/repository/com/fasterxml/jackson/jackson-base/2.19.2/jackson-base-2.19.2.pom.sha1 deleted file mode 100644 index 51d7ee7..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-base/2.19.2/jackson-base-2.19.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cafb77796de66f19bcca01fd88f0dff6ecc15352 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.15.4/_remote.repositories b/.m2/repository/com/fasterxml/jackson/jackson-bom/2.15.4/_remote.repositories deleted file mode 100644 index 98f0ea8..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:10 UTC 2026 -jackson-bom-2.15.4.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom b/.m2/repository/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom deleted file mode 100644 index f500686..0000000 --- a/.m2/repository/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/.m2/repository/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.sha1 b/.m2/repository/com/fasterxml/jackson/jackson-bom/2.15.4/jackson-bom-2.15.4.pom.sha1 deleted file mode 100644 index 020720d..0000000 --- a/.m2/repository/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/.m2/repository/com/fasterxml/jackson/jackson-bom/2.17.2/_remote.repositories b/.m2/repository/com/fasterxml/jackson/jackson-bom/2.17.2/_remote.repositories deleted file mode 100644 index c0bf1f8..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.17.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. -#Thu Apr 02 20:37:44 UTC 2026 -jackson-bom-2.17.2.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.17.2/jackson-bom-2.17.2.pom b/.m2/repository/com/fasterxml/jackson/jackson-bom/2.17.2/jackson-bom-2.17.2.pom deleted file mode 100644 index 04babd2..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.17.2/jackson-bom-2.17.2.pom +++ /dev/null @@ -1,456 +0,0 @@ - - - 4.0.0 - - - com.fasterxml.jackson - jackson-parent - - 2.17 - - - jackson-bom - Jackson BOM - Bill of Materials pom for getting full, complete set of compatible versions -of Jackson components maintained by FasterXML.com - - 2.17.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.17.2 - - - - 2.17.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 - - - 2024-07-05T16:48:23Z - - - - - - - - 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-extension-javatime - ${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-guice7 - ${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/.m2/repository/com/fasterxml/jackson/jackson-bom/2.17.2/jackson-bom-2.17.2.pom.sha1 b/.m2/repository/com/fasterxml/jackson/jackson-bom/2.17.2/jackson-bom-2.17.2.pom.sha1 deleted file mode 100644 index 70e7d5c..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.17.2/jackson-bom-2.17.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e772457e00739867a8f382ef0a8c4dcb03558772 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.0/_remote.repositories b/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.0/_remote.repositories deleted file mode 100644 index e209d06..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.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. -#Thu Apr 02 20:37:53 UTC 2026 -jackson-bom-2.19.0.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.0/jackson-bom-2.19.0.pom b/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.0/jackson-bom-2.19.0.pom deleted file mode 100644 index f62df49..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.0/jackson-bom-2.19.0.pom +++ /dev/null @@ -1,483 +0,0 @@ - - - 4.0.0 - - - com.fasterxml.jackson - jackson-parent - - 2.19 - - - jackson-bom - Jackson BOM - Bill of Materials pom for getting full, complete set of compatible versions -of Jackson components maintained by FasterXML.com - - 2.19.0 - 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.19.0 - - - - 2.19.0 - - - ${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 - - - 7.1.0 - 4.2.2 - - - 2025-04-24T23:06:13Z - - - - - - - - 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-javax-money - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - ${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-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-moneta - ${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-extension-javatime - ${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-guice7 - ${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} - - - - - org.codehaus.woodstox - stax2-api - ${stax2.version} - - - com.fasterxml.woodstox - woodstox-core - ${woodstox.version} - - - - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - - - diff --git a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.0/jackson-bom-2.19.0.pom.sha1 b/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.0/jackson-bom-2.19.0.pom.sha1 deleted file mode 100644 index b4194ce..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.0/jackson-bom-2.19.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ec121171363de232dfffa94bbf0284284a65ea29 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.2/_remote.repositories b/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.2/_remote.repositories deleted file mode 100644 index c75a7bf..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.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. -#Thu Apr 02 20:37:35 UTC 2026 -jackson-bom-2.19.2.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.2/jackson-bom-2.19.2.pom b/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.2/jackson-bom-2.19.2.pom deleted file mode 100644 index c19e4f2..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.2/jackson-bom-2.19.2.pom +++ /dev/null @@ -1,495 +0,0 @@ - - - 4.0.0 - - - com.fasterxml.jackson - jackson-parent - - 2.19.3 - - - jackson-bom - Jackson BOM - Bill of Materials pom for getting full, complete set of compatible versions -of Jackson components maintained by FasterXML.com - - 2.19.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.19.2 - - - - 2.19.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 - - - 7.1.1 - 4.2.2 - - - 2025-07-18T17:31:22Z - - - - - - - - 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-javax-money - ${jackson.version.datatype} - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - ${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-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-moneta - ${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-extension-javatime - ${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-guice7 - ${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} - - - - - - - - - - - - - - - central-snapshots - Sonatype Central Portal (snapshots) - https://central.sonatype.com/repository/maven-snapshots - false - true - - - diff --git a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.2/jackson-bom-2.19.2.pom.sha1 b/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.2/jackson-bom-2.19.2.pom.sha1 deleted file mode 100644 index 248b42b..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-bom/2.19.2/jackson-bom-2.19.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -211187097ff21c52712888816473a931bd3337ed \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.15/_remote.repositories b/.m2/repository/com/fasterxml/jackson/jackson-parent/2.15/_remote.repositories deleted file mode 100644 index 5560790..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:11 UTC 2026 -jackson-parent-2.15.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom b/.m2/repository/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom deleted file mode 100644 index 51cb2db..0000000 --- a/.m2/repository/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/.m2/repository/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.sha1 b/.m2/repository/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom.sha1 deleted file mode 100644 index 2f7d82b..0000000 --- a/.m2/repository/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/.m2/repository/com/fasterxml/jackson/jackson-parent/2.17/_remote.repositories b/.m2/repository/com/fasterxml/jackson/jackson-parent/2.17/_remote.repositories deleted file mode 100644 index 11cfd35..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.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. -#Thu Apr 02 20:37:44 UTC 2026 -jackson-parent-2.17.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom b/.m2/repository/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom deleted file mode 100644 index b08540a..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom +++ /dev/null @@ -1,169 +0,0 @@ - - - 4.0.0 - - - com.fasterxml - oss-parent - 58 - - - com.fasterxml.jackson - jackson-parent - 2.17 - 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.17 - - - - - - 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 - - 2024-03-12T03:33:51Z - - - - - - - - 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/.m2/repository/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom.sha1 b/.m2/repository/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom.sha1 deleted file mode 100644 index 523b189..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -df97fedb1aae67d608a69fa9262410247f3d31af \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19.3/_remote.repositories b/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19.3/_remote.repositories deleted file mode 100644 index a2a4509..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19.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. -#Thu Apr 02 20:37:35 UTC 2026 -jackson-parent-2.19.3.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19.3/jackson-parent-2.19.3.pom b/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19.3/jackson-parent-2.19.3.pom deleted file mode 100644 index 6d80b72..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19.3/jackson-parent-2.19.3.pom +++ /dev/null @@ -1,186 +0,0 @@ - - - 4.0.0 - - - com.fasterxml - oss-parent - 69 - - - com.fasterxml.jackson - jackson-parent - 2.19.3 - 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.19.3 - - - - - - 1.8 - 1.8 - ${javac.src.version} - ${javac.target.version} - - lines,source,vars - - - 1.1.0 - - - ${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in - ${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java - - 2025-07-18T17:25:14Z - - - - - - - - - - - central-snapshots - Sonatype Central Portal (snapshots) - https://central.sonatype.com/repository/maven-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/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19.3/jackson-parent-2.19.3.pom.sha1 b/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19.3/jackson-parent-2.19.3.pom.sha1 deleted file mode 100644 index 3077133..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19.3/jackson-parent-2.19.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -245bf64cfc64c18297bda88c0fff3a6b350cec96 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19/_remote.repositories b/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19/_remote.repositories deleted file mode 100644 index 87694f1..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-parent/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. -#Thu Apr 02 20:37:53 UTC 2026 -jackson-parent-2.19.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19/jackson-parent-2.19.pom b/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19/jackson-parent-2.19.pom deleted file mode 100644 index bb84b47..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19/jackson-parent-2.19.pom +++ /dev/null @@ -1,173 +0,0 @@ - - - 4.0.0 - - - com.fasterxml - oss-parent - 65 - - - com.fasterxml.jackson - jackson-parent - 2.19 - 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.19 - - - - - - 1.8 - 1.8 - ${javac.src.version} - ${javac.target.version} - - lines,source,vars - - - 1.1.0 - - - ${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in - ${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java - - 2025-04-24T22:57:16Z - - - - - - - - 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/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19/jackson-parent-2.19.pom.sha1 b/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19/jackson-parent-2.19.pom.sha1 deleted file mode 100644 index a29515a..0000000 --- a/.m2/repository/com/fasterxml/jackson/jackson-parent/2.19/jackson-parent-2.19.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -340d20743e576b41f89a87f4e263bf933145273f \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/_remote.repositories b/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/_remote.repositories deleted file mode 100644 index 88906f2..0000000 --- a/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.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. -#Thu Apr 02 20:38:35 UTC 2026 -jackson-module-parameter-names-2.19.2.jar>central= -jackson-module-parameter-names-2.19.2.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/jackson-module-parameter-names-2.19.2.jar b/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/jackson-module-parameter-names-2.19.2.jar deleted file mode 100644 index 86dfa97..0000000 Binary files a/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/jackson-module-parameter-names-2.19.2.jar and /dev/null differ diff --git a/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/jackson-module-parameter-names-2.19.2.jar.sha1 b/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/jackson-module-parameter-names-2.19.2.jar.sha1 deleted file mode 100644 index 6d9c652..0000000 --- a/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/jackson-module-parameter-names-2.19.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3c4ce467c11364c72ec4967c570fd5a2d1be1d0b \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/jackson-module-parameter-names-2.19.2.pom b/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/jackson-module-parameter-names-2.19.2.pom deleted file mode 100644 index 90c2425..0000000 --- a/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/jackson-module-parameter-names-2.19.2.pom +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - 4.0.0 - - com.fasterxml.jackson.module - jackson-modules-java8 - 2.19.2 - - jackson-module-parameter-names - Jackson-module-parameter-names - bundle - Add-on module for Jackson (https://github.com/FasterXML/jackson) 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 - - 4.5.0 - - - - - org.assertj - assertj-core - 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 - true - - ${javac.src.version} - ${javac.target.version} - 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} - - - - org.moditect - moditect-maven-plugin - - - - - org.gradlex - gradle-module-metadata-maven-plugin - - - - diff --git a/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/jackson-module-parameter-names-2.19.2.pom.sha1 b/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/jackson-module-parameter-names-2.19.2.pom.sha1 deleted file mode 100644 index 6067824..0000000 --- a/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.19.2/jackson-module-parameter-names-2.19.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -63770ba02ae233453fee96ab2bf57287710c27d6 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/jackson/module/jackson-modules-java8/2.19.2/_remote.repositories b/.m2/repository/com/fasterxml/jackson/module/jackson-modules-java8/2.19.2/_remote.repositories deleted file mode 100644 index 642752c..0000000 --- a/.m2/repository/com/fasterxml/jackson/module/jackson-modules-java8/2.19.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. -#Thu Apr 02 20:37:46 UTC 2026 -jackson-modules-java8-2.19.2.pom>central= diff --git a/.m2/repository/com/fasterxml/jackson/module/jackson-modules-java8/2.19.2/jackson-modules-java8-2.19.2.pom b/.m2/repository/com/fasterxml/jackson/module/jackson-modules-java8/2.19.2/jackson-modules-java8-2.19.2.pom deleted file mode 100644 index e4a5751..0000000 --- a/.m2/repository/com/fasterxml/jackson/module/jackson-modules-java8/2.19.2/jackson-modules-java8-2.19.2.pom +++ /dev/null @@ -1,90 +0,0 @@ - - 4.0.0 - - com.fasterxml.jackson - jackson-base - 2.19.2 - - com.fasterxml.jackson.module - jackson-modules-java8 - Jackson modules: Java 8 - 2.19.2 - 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.19.2 - - - https://github.com/FasterXML/jackson-modules-java8/issues - - - - - com.fasterxml.jackson.core - jackson-core - - - com.fasterxml.jackson.core - jackson-databind - - - - - org.junit.jupiter - junit-jupiter - test - - - org.junit.jupiter - junit-jupiter-api - test - - - - - - - - central-snapshots - Sonatype Central Portal (snapshots) - https://central.sonatype.com/repository/maven-snapshots - false - true - - - - - - - - - com.google.code.maven-replacer-plugin - replacer - - - process-packageVersion - generate-sources - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - - - diff --git a/.m2/repository/com/fasterxml/jackson/module/jackson-modules-java8/2.19.2/jackson-modules-java8-2.19.2.pom.sha1 b/.m2/repository/com/fasterxml/jackson/module/jackson-modules-java8/2.19.2/jackson-modules-java8-2.19.2.pom.sha1 deleted file mode 100644 index 9e3c81f..0000000 --- a/.m2/repository/com/fasterxml/jackson/module/jackson-modules-java8/2.19.2/jackson-modules-java8-2.19.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9d6e70173389229ccebbe10c9ac3ce69ac364629 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/oss-parent/50/_remote.repositories b/.m2/repository/com/fasterxml/oss-parent/50/_remote.repositories deleted file mode 100644 index 4c34c80..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:11 UTC 2026 -oss-parent-50.pom>central= diff --git a/.m2/repository/com/fasterxml/oss-parent/50/oss-parent-50.pom b/.m2/repository/com/fasterxml/oss-parent/50/oss-parent-50.pom deleted file mode 100644 index 1a14a57..0000000 --- a/.m2/repository/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/.m2/repository/com/fasterxml/oss-parent/50/oss-parent-50.pom.sha1 b/.m2/repository/com/fasterxml/oss-parent/50/oss-parent-50.pom.sha1 deleted file mode 100644 index 10f9f2c..0000000 --- a/.m2/repository/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/.m2/repository/com/fasterxml/oss-parent/56/_remote.repositories b/.m2/repository/com/fasterxml/oss-parent/56/_remote.repositories deleted file mode 100644 index 869b533..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:01 UTC 2026 -oss-parent-56.pom>central= diff --git a/.m2/repository/com/fasterxml/oss-parent/56/oss-parent-56.pom b/.m2/repository/com/fasterxml/oss-parent/56/oss-parent-56.pom deleted file mode 100644 index 39d67a5..0000000 --- a/.m2/repository/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/.m2/repository/com/fasterxml/oss-parent/56/oss-parent-56.pom.sha1 b/.m2/repository/com/fasterxml/oss-parent/56/oss-parent-56.pom.sha1 deleted file mode 100644 index b95b422..0000000 --- a/.m2/repository/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/.m2/repository/com/fasterxml/oss-parent/58/_remote.repositories b/.m2/repository/com/fasterxml/oss-parent/58/_remote.repositories deleted file mode 100644 index 75c808b..0000000 --- a/.m2/repository/com/fasterxml/oss-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. -#Thu Apr 02 20:37:44 UTC 2026 -oss-parent-58.pom>central= diff --git a/.m2/repository/com/fasterxml/oss-parent/58/oss-parent-58.pom b/.m2/repository/com/fasterxml/oss-parent/58/oss-parent-58.pom deleted file mode 100644 index 10a835a..0000000 --- a/.m2/repository/com/fasterxml/oss-parent/58/oss-parent-58.pom +++ /dev/null @@ -1,661 +0,0 @@ - - - - 4.0.0 - - com.fasterxml - oss-parent - 58 - 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-58 - - - 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 - - 2024-02-19T21:48:46Z - - ${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.12.1 - 3.1.1 - 3.4.1 - 3.1.0 - - 3.1.1 - 0.8.11 - 3.3.0 - - 3.6.2 - - - 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.5 - - 3.2.0 - - - - - 4.13.2 - - - 5.10.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.5.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.5.0 - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.3.2 - - - - 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/.m2/repository/com/fasterxml/oss-parent/58/oss-parent-58.pom.sha1 b/.m2/repository/com/fasterxml/oss-parent/58/oss-parent-58.pom.sha1 deleted file mode 100644 index 5bfeee0..0000000 --- a/.m2/repository/com/fasterxml/oss-parent/58/oss-parent-58.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0ed9e5d9e7cad24fce51b18455e0cf5ccd2c94b6 \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/oss-parent/65/_remote.repositories b/.m2/repository/com/fasterxml/oss-parent/65/_remote.repositories deleted file mode 100644 index f6e33dc..0000000 --- a/.m2/repository/com/fasterxml/oss-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. -#Thu Apr 02 20:37:53 UTC 2026 -oss-parent-65.pom>central= diff --git a/.m2/repository/com/fasterxml/oss-parent/65/oss-parent-65.pom b/.m2/repository/com/fasterxml/oss-parent/65/oss-parent-65.pom deleted file mode 100644 index fc73cc4..0000000 --- a/.m2/repository/com/fasterxml/oss-parent/65/oss-parent-65.pom +++ /dev/null @@ -1,627 +0,0 @@ - - - - 4.0.0 - - com.fasterxml - oss-parent - 65 - 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-65 - - - 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 - - 2025-04-23T18:58:37Z - - ${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.4.1 - 2.9.1 - 3.8.1 - 2.7 - 3.14.0 - 3.1.4 - 3.5.0 - 3.2.7 - - 3.1.4 - 0.8.13 - 3.4.2 - - 3.11.2 - - 1.2.2.Final - - 3.26.0 - 3.1.1 - 1.5.3 - 3.3.1 - - 2.1.0 - 3.6.0 - 4.0.0-M16 - - 3.3.1 - - 3.5.3 - - 3.3.2 - - - - - 4.13.2 - - - 5.11.4 - - 3.27.2 - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.6.0 - - - org.apache.maven.plugins - maven-clean-plugin - ${version.plugin.clean} - - - org.cyclonedx - cyclonedx-maven-plugin - ${version.plugin.cyclonedx} - - - 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.8 - - - - ${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} - - com.google.doclava - doclava - 1.0.6 - - - - - default - - javadoc - - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.6.0 - - - - org.codehaus.mojo - jdepend-maven-plugin - 2.1 - - - - 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 - - - - - - - - - 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/.m2/repository/com/fasterxml/oss-parent/65/oss-parent-65.pom.sha1 b/.m2/repository/com/fasterxml/oss-parent/65/oss-parent-65.pom.sha1 deleted file mode 100644 index ff4bebf..0000000 --- a/.m2/repository/com/fasterxml/oss-parent/65/oss-parent-65.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -aec6ca8a54aa46868bf415cf95b2464c64d8228f \ No newline at end of file diff --git a/.m2/repository/com/fasterxml/oss-parent/69/_remote.repositories b/.m2/repository/com/fasterxml/oss-parent/69/_remote.repositories deleted file mode 100644 index 62bbef1..0000000 --- a/.m2/repository/com/fasterxml/oss-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. -#Thu Apr 02 20:37:35 UTC 2026 -oss-parent-69.pom>central= diff --git a/.m2/repository/com/fasterxml/oss-parent/69/oss-parent-69.pom b/.m2/repository/com/fasterxml/oss-parent/69/oss-parent-69.pom deleted file mode 100644 index 7f88f76..0000000 --- a/.m2/repository/com/fasterxml/oss-parent/69/oss-parent-69.pom +++ /dev/null @@ -1,652 +0,0 @@ - - - - 4.0.0 - - com.fasterxml - oss-parent - 69 - 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-69 - - - GitHub Issue Management - https://github.com/FasterXML/${project.artifactId}/issues - - - - - - - - central-snapshots - Sonatype Central Portal Repository (snapshots) - https://central.sonatype.com/repository/maven-snapshots - - - - central - Sonatype Central Portal Repository (releases) - https://central.sonatype.com/api/v1/publisher - - - - - - UTF-8 - UTF-8 - UTF-8 - - 2025-07-08T01:10:11Z - - ${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 - - 0.8.0 - - 3.5.0 - 2.9.1 - 3.8.1 - 2.7 - 3.14.0 - 3.1.4 - 3.6.0 - 3.2.8 - - 3.1.4 - 0.8.13 - 3.4.2 - - 3.11.2 - - 1.2.2.Final - - 3.27.0 - 3.1.1 - 1.5.3 - 3.3.1 - - 2.1.0 - 3.6.0 - 4.0.0-M16 - - 3.3.1 - - 3.5.3 - - 3.3.2 - - - - - 4.13.2 - - - 5.11.4 - - 3.27.2 - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.6.0 - - - org.apache.maven.plugins - maven-clean-plugin - ${version.plugin.clean} - - - org.cyclonedx - cyclonedx-maven-plugin - ${version.plugin.cyclonedx} - - - 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.sonatype.central - central-publishing-maven-plugin - ${version.plugin.central-publishing} - - - - - - - - - - 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.8 - - - - ${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.sonatype.central - central-publishing-maven-plugin - true - - Deployment-${project.artifactId} - central - - - - - - - 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} - - com.google.doclava - doclava - 1.0.6 - - - - - default - - javadoc - - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.6.0 - - - - org.codehaus.mojo - jdepend-maven-plugin - 2.1 - - - - 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 - - - - - - - - - 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/.m2/repository/com/fasterxml/oss-parent/69/oss-parent-69.pom.sha1 b/.m2/repository/com/fasterxml/oss-parent/69/oss-parent-69.pom.sha1 deleted file mode 100644 index e8ab21e..0000000 --- a/.m2/repository/com/fasterxml/oss-parent/69/oss-parent-69.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -49119ef1bd90dce5e2ee8cba3730cbfb66067e41 \ No newline at end of file diff --git a/.m2/repository/com/github/librepdf/openpdf-parent/1.3.40/_remote.repositories b/.m2/repository/com/github/librepdf/openpdf-parent/1.3.40/_remote.repositories deleted file mode 100644 index e70bbaf..0000000 --- a/.m2/repository/com/github/librepdf/openpdf-parent/1.3.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. -#Thu Apr 02 20:38:03 UTC 2026 -openpdf-parent-1.3.40.pom>central= diff --git a/.m2/repository/com/github/librepdf/openpdf-parent/1.3.40/openpdf-parent-1.3.40.pom b/.m2/repository/com/github/librepdf/openpdf-parent/1.3.40/openpdf-parent-1.3.40.pom deleted file mode 100644 index af5fc4c..0000000 --- a/.m2/repository/com/github/librepdf/openpdf-parent/1.3.40/openpdf-parent-1.3.40.pom +++ /dev/null @@ -1,465 +0,0 @@ - - - 4.0.0 - - com.github.librepdf - openpdf-parent - 1.3.40 - pom - - - OpenPDF - Free and Open PDF - Open and Free PDF library. - https://github.com/LibrePDF/OpenPDF - - - GNU Lesser General Public License (LGPL), Version 2.1 - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html - repo - - - Mozilla Public License Version 2.0 - https://www.mozilla.org/en-US/MPL/2.0/ - repo - - - - - - The OpenPDF Project - https://github.com/librepdf - - - - - openpdf - pdf-swing - pdf-toolbox - openpdf-fonts-extra - - - - scm:git:https://github.com/LibrePDF/OpenPDF - scm:git:https://github.com/LibrePDF/OpenPDF - scm:git:https://github.com/LibrePDF/OpenPDF - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - - com.github.librepdf.openpdf.parent - 11 - UTF-8 - UTF-8 - - - 5.1.9 - 3.3.1 - 3.3.2 - 3.12.1 - 3.1.0 - 3.3.0 - 3.6.3 - 3.0.1 - 2.4 - 3.3.0 - false - 1.6.13 - 1.2.1 - 1.3.7 - - - 1.77 - 2.15.1 - 2.1.4 - 2.9 - 6.0.0 - 1.0.24 - 1.5.4 - 1.0.5 - - - 3.25.3 - 2.2 - 0.8.11 - 5.10.2 - 4.11.0 - 5.9.0 - - 10.13.0 - 3.3.2 - - - - - - org.bouncycastle - bcprov-jdk18on - ${bouncycastle.version} - - - org.bouncycastle - bcpkix-jdk18on - ${bouncycastle.version} - - - org.apache.xmlgraphics - fop - ${fop.version} - - - commons-io - commons-io - ${commons-io.version} - - - org.jfree - jfreechart - ${jfreechart.version} - - - org.jfree - jcommon - ${jcommon.version} - - - org.swinglabs - pdf-renderer - ${pdf-renderer.version} - - - org.dom4j - dom4j - ${dom4j.version} - - - jakarta.servlet - jakarta.servlet-api - ${jakarta.servlet-api.version} - - - - org.assertj - assertj-core - ${assertj.version} - test - - - org.junit.jupiter - junit-jupiter-api - ${junit.version} - test - - - org.junit.jupiter - junit-jupiter-params - ${junit.version} - test - - - org.hamcrest - hamcrest - ${hamcrest.version} - test - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${maven-checkstyle-plugin.version} - - checkstyle.xml - true - - - - com.puppycrawl.tools - checkstyle - ${checkstyle.version} - - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - attach-sources - verify - - jar-no-fork - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - 8 - - - - attach-javadocs - - jar - - - - -Xdoclint:none - - - - - - - maven-clean-plugin - ${maven-clean-plugin.version} - - - - ./out - false - - - ./test - false - - - ./target - false - - - . - - *.rtf - *.pdf - *.html - - false - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven.compiler.plugin.version} - - ${java.version} - ${java.version} - - -Xlint:unchecked - - - - - org.apache.maven.plugins - maven-release-plugin - ${maven-release-plugin.version} - - true - - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - ${java-module-name} - true - - - - - - org.apache.maven.plugins - maven-repository-plugin - ${maven-repository-plugin.version} - - - - org.apache.maven.plugins - maven-gpg-plugin - ${maven-gpg-plugin.version} - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${nexus-staging-maven-plugin.version} - true - - ossrh - https://oss.sonatype.org/ - false - - - - org.apache.felix - maven-bundle-plugin - ${maven-bundle-plugin.version} - true - - - bundle-manifest - process-classes - - - manifest - - - - - - true - - - - eu.stamp-project - pitmp-maven-plugin - ${pitmp-maven-plugin.version} - - - org.pitest - pitest-junit5-plugin - ${pitest-junit5-plugin.version} - - - - org.bouncycastle - bcprov-jdk18on - ${bouncycastle.version} - - - - - java.util.logging - org.apache.log4j - org.slf4j - org.apache.commons.logging - - ${project.build.directory}/pitest - ${project.build.directory}/pitest - - - - org.jacoco - jacoco-maven-plugin - ${jacoco-maven-plugin.version} - - - - prepare-agent - - - - report - prepare-package - - report - - - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - - checkstyle - - - - - - org.apache.maven.plugins - maven-jxr-plugin - ${maven-jxr-plugin.version} - - - - - - - jdk11-plus - - [11,) - - - - - org.mockito - mockito-core - ${mockito5.version} - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven.compiler.plugin.version} - - 11 - - - - compile-java-11 - - compile - - - 11 - - ${project.basedir}/src/main/java - - true - - - - - - - - - diff --git a/.m2/repository/com/github/librepdf/openpdf-parent/1.3.40/openpdf-parent-1.3.40.pom.sha1 b/.m2/repository/com/github/librepdf/openpdf-parent/1.3.40/openpdf-parent-1.3.40.pom.sha1 deleted file mode 100644 index f330205..0000000 --- a/.m2/repository/com/github/librepdf/openpdf-parent/1.3.40/openpdf-parent-1.3.40.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ecf7dcf14f0c1dcbe450085ef7f715d866989d12 \ No newline at end of file diff --git a/.m2/repository/com/github/librepdf/openpdf/1.3.40/_remote.repositories b/.m2/repository/com/github/librepdf/openpdf/1.3.40/_remote.repositories deleted file mode 100644 index 07bfd91..0000000 --- a/.m2/repository/com/github/librepdf/openpdf/1.3.40/_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. -#Thu Apr 02 20:38:35 UTC 2026 -openpdf-1.3.40.jar>central= -openpdf-1.3.40.pom>central= diff --git a/.m2/repository/com/github/librepdf/openpdf/1.3.40/openpdf-1.3.40.jar b/.m2/repository/com/github/librepdf/openpdf/1.3.40/openpdf-1.3.40.jar deleted file mode 100644 index c59fb0c..0000000 Binary files a/.m2/repository/com/github/librepdf/openpdf/1.3.40/openpdf-1.3.40.jar and /dev/null differ diff --git a/.m2/repository/com/github/librepdf/openpdf/1.3.40/openpdf-1.3.40.jar.sha1 b/.m2/repository/com/github/librepdf/openpdf/1.3.40/openpdf-1.3.40.jar.sha1 deleted file mode 100644 index f2adf14..0000000 --- a/.m2/repository/com/github/librepdf/openpdf/1.3.40/openpdf-1.3.40.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -aee87c449ebc4ccc8501c8cab95f68ad071a20df \ No newline at end of file diff --git a/.m2/repository/com/github/librepdf/openpdf/1.3.40/openpdf-1.3.40.pom b/.m2/repository/com/github/librepdf/openpdf/1.3.40/openpdf-1.3.40.pom deleted file mode 100644 index 2b146cc..0000000 --- a/.m2/repository/com/github/librepdf/openpdf/1.3.40/openpdf-1.3.40.pom +++ /dev/null @@ -1,104 +0,0 @@ - - - 4.0.0 - - - com.github.librepdf - openpdf-parent - 1.3.40 - - - openpdf - - - com.github.librepdf.openpdf - - - - - com.ibm.icu - icu4j - 74.2 - true - - - org.bouncycastle - bcprov-jdk18on - true - - - org.bouncycastle - bcpkix-jdk18on - true - - - org.apache.xmlgraphics - fop - true - - - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - org.mockito - mockito-core - test - - - org.hamcrest - hamcrest - test - - - commons-io - commons-io - test - - - org.verapdf - validation-model - 1.24.1 - true - test - - - - - - - src/main/resources - - - src/main/resources-filtered - true - - - ../src/main/resources - - - - - org.apache.felix - maven-bundle-plugin - - - true - - - - - diff --git a/.m2/repository/com/github/librepdf/openpdf/1.3.40/openpdf-1.3.40.pom.sha1 b/.m2/repository/com/github/librepdf/openpdf/1.3.40/openpdf-1.3.40.pom.sha1 deleted file mode 100644 index 6b870e4..0000000 --- a/.m2/repository/com/github/librepdf/openpdf/1.3.40/openpdf-1.3.40.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d1187d8c00628fd22029533249a35cb723ef4071 \ No newline at end of file diff --git a/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/_remote.repositories b/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/_remote.repositories deleted file mode 100644 index 3e1ace8..0000000 --- a/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/_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. -#Thu Apr 02 20:43:08 UTC 2026 -zstd-jni-1.5.5-11.jar>central= -zstd-jni-1.5.5-11.pom>central= diff --git a/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.jar b/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.jar deleted file mode 100644 index 46759d4..0000000 Binary files a/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.jar and /dev/null differ diff --git a/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.jar.sha1 b/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.jar.sha1 deleted file mode 100644 index 5e1a838..0000000 --- a/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ca6ab366315e179dd80645aad4a60bab959c6523 \ No newline at end of file diff --git a/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.pom b/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.pom deleted file mode 100644 index 282fa0d..0000000 --- a/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.pom +++ /dev/null @@ -1,51 +0,0 @@ - - - 4.0.0 - com.github.luben - zstd-jni - jar - JNI bindings for Zstd native library that provides fast and high compression lossless algorithm for Java and all JVM languages. - 1.5.5-11 - - - BSD 2-Clause License - https://opensource.org/licenses/BSD-2-Clause - repo - - - zstd-jni - - com.github.luben - - https://github.com/luben/zstd-jni - - git@github.com:luben/zstd-jni.git - scm:git:git@github.com:luben/zstd-jni.git - - - - karavelov - Luben Karavelov - karavelov@gmail.com - com.github.luben - https://github.com/luben - - - - strict - - - - org.scalatest - scalatest_2.13 - 3.2.17 - test - - - org.scalatestplus - scalacheck-1-17_2.13 - 3.2.17.0 - test - - - \ No newline at end of file diff --git a/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.pom.sha1 b/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.pom.sha1 deleted file mode 100644 index 418f2c3..0000000 --- a/.m2/repository/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d394d7050319c1ebcc7b177a751a13645deff523 \ No newline at end of file diff --git a/.m2/repository/com/github/virtuald/curvesapi/1.08/_remote.repositories b/.m2/repository/com/github/virtuald/curvesapi/1.08/_remote.repositories deleted file mode 100644 index 924c40a..0000000 --- a/.m2/repository/com/github/virtuald/curvesapi/1.08/_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. -#Thu Apr 02 20:38:35 UTC 2026 -curvesapi-1.08.jar>central= -curvesapi-1.08.pom>central= diff --git a/.m2/repository/com/github/virtuald/curvesapi/1.08/curvesapi-1.08.jar b/.m2/repository/com/github/virtuald/curvesapi/1.08/curvesapi-1.08.jar deleted file mode 100644 index 18fb71b..0000000 Binary files a/.m2/repository/com/github/virtuald/curvesapi/1.08/curvesapi-1.08.jar and /dev/null differ diff --git a/.m2/repository/com/github/virtuald/curvesapi/1.08/curvesapi-1.08.jar.sha1 b/.m2/repository/com/github/virtuald/curvesapi/1.08/curvesapi-1.08.jar.sha1 deleted file mode 100644 index 9e9e571..0000000 --- a/.m2/repository/com/github/virtuald/curvesapi/1.08/curvesapi-1.08.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3d3d36568154059825089b289dcfca481fe44e2c \ No newline at end of file diff --git a/.m2/repository/com/github/virtuald/curvesapi/1.08/curvesapi-1.08.pom b/.m2/repository/com/github/virtuald/curvesapi/1.08/curvesapi-1.08.pom deleted file mode 100644 index c5aabd4..0000000 --- a/.m2/repository/com/github/virtuald/curvesapi/1.08/curvesapi-1.08.pom +++ /dev/null @@ -1,134 +0,0 @@ - - 4.0.0 - com.github.virtuald - curvesapi - 1.08 - 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.7 - 1.7 - - - - org.apache.maven.plugins - maven-jar-plugin - - - - com.github.virtuald.curvesapi - - - - - - - - - - release - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - 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.13.2 - test - - - - diff --git a/.m2/repository/com/github/virtuald/curvesapi/1.08/curvesapi-1.08.pom.sha1 b/.m2/repository/com/github/virtuald/curvesapi/1.08/curvesapi-1.08.pom.sha1 deleted file mode 100644 index 01b315c..0000000 --- a/.m2/repository/com/github/virtuald/curvesapi/1.08/curvesapi-1.08.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6be73cb9497beb1c595f6a8c1904cf0b07847625 \ No newline at end of file diff --git a/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/_remote.repositories b/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/_remote.repositories deleted file mode 100644 index 7efbef1..0000000 --- a/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.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. -#Thu Apr 02 20:38:35 UTC 2026 -google-auth-library-credentials-1.23.0.jar>central= -google-auth-library-credentials-1.23.0.pom>central= diff --git a/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/google-auth-library-credentials-1.23.0.jar b/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/google-auth-library-credentials-1.23.0.jar deleted file mode 100644 index 9343339..0000000 Binary files a/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/google-auth-library-credentials-1.23.0.jar and /dev/null differ diff --git a/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/google-auth-library-credentials-1.23.0.jar.sha1 b/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/google-auth-library-credentials-1.23.0.jar.sha1 deleted file mode 100644 index 0941cbb..0000000 --- a/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/google-auth-library-credentials-1.23.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a50ee3611922a0eea9d421c6ddb1db031972a7dc \ No newline at end of file diff --git a/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/google-auth-library-credentials-1.23.0.pom b/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/google-auth-library-credentials-1.23.0.pom deleted file mode 100644 index 224af9b..0000000 --- a/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/google-auth-library-credentials-1.23.0.pom +++ /dev/null @@ -1,59 +0,0 @@ - - - 4.0.0 - - com.google.auth - google-auth-library-parent - 1.23.0 - ../pom.xml - - - google-auth-library-credentials - Google Auth Library for Java - Credentials - - - - ossrh - https://google.oss.sonatype.org/content/repositories/snapshots - - - - - java - javatests - - - org.sonatype.plugins - nexus-staging-maven-plugin - - - org.apache.maven.plugins - maven-source-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - - com.google.auth - - - - - - - - - - junit - junit - test - - - - diff --git a/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/google-auth-library-credentials-1.23.0.pom.sha1 b/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/google-auth-library-credentials-1.23.0.pom.sha1 deleted file mode 100644 index faa1109..0000000 --- a/.m2/repository/com/google/auth/google-auth-library-credentials/1.23.0/google-auth-library-credentials-1.23.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -83bc8a3089601c93f2b52daf5a33fc867a1f239b \ No newline at end of file diff --git a/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/_remote.repositories b/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/_remote.repositories deleted file mode 100644 index 17693fa..0000000 --- a/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.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. -#Thu Apr 02 20:38:35 UTC 2026 -google-auth-library-oauth2-http-1.23.0.jar>central= -google-auth-library-oauth2-http-1.23.0.pom>central= diff --git a/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/google-auth-library-oauth2-http-1.23.0.jar b/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/google-auth-library-oauth2-http-1.23.0.jar deleted file mode 100644 index 08c92a6..0000000 Binary files a/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/google-auth-library-oauth2-http-1.23.0.jar and /dev/null differ diff --git a/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/google-auth-library-oauth2-http-1.23.0.jar.sha1 b/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/google-auth-library-oauth2-http-1.23.0.jar.sha1 deleted file mode 100644 index a8d8aa9..0000000 --- a/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/google-auth-library-oauth2-http-1.23.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f9ebd75a55b8e2cfa62e1f66d04a62b46a2f3b70 \ No newline at end of file diff --git a/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/google-auth-library-oauth2-http-1.23.0.pom b/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/google-auth-library-oauth2-http-1.23.0.pom deleted file mode 100644 index 7c3068d..0000000 --- a/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/google-auth-library-oauth2-http-1.23.0.pom +++ /dev/null @@ -1,237 +0,0 @@ - - - 4.0.0 - - - com.google.auth - google-auth-library-parent - 1.23.0 - ../pom.xml - - - google-auth-library-oauth2-http - Google Auth Library for Java - OAuth2 HTTP - - - - ossrh - https://google.oss.sonatype.org/content/repositories/snapshots - - - - - - junit47 - - true - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - - **/IT*.java - **/functional/*.java - - sponge_log - - - - org.apache.maven.surefire - surefire-junit47 - ${surefire.version} - - - - - - - - native-test - - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - - **/IT*.java - **/functional/*.java - - - - - - - - - - java - - - resources - true - - - javatests - - - testresources - - - - - org.apache.maven.plugins - maven-resources-plugin - - - - resources - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - - - org.apache.maven.plugins - maven-source-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - org.apache.maven.plugins - maven-dependency-plugin - - com.google.auto.value:auto-value - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - true - - - com.google.auth.oauth2 - - - - - - - test-jar - - - false - testlib - - **/Mock* - **/*TestUtil* - **/BaseSerializationTest* - - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - 3.2.1 - - 1200 - sponge_log - - **/IT*.java - **/functional/*.java - - - - - - integration-test - verify - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - - **/IT*.java - **/functional/*.java - - sponge_log - - - - - - - - com.google.auto.value - auto-value-annotations - - - com.google.code.findbugs - jsr305 - - - com.google.auth - google-auth-library-credentials - - - com.google.http-client - google-http-client - - - com.google.http-client - google-http-client-gson - - - com.google.guava - guava - - - com.google.errorprone - error_prone_annotations - compile - - - junit - junit - test - - - org.hamcrest - hamcrest-core - 1.3 - test - - - org.mockito - mockito-core - 4.11.0 - test - - - diff --git a/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/google-auth-library-oauth2-http-1.23.0.pom.sha1 b/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/google-auth-library-oauth2-http-1.23.0.pom.sha1 deleted file mode 100644 index fd5643d..0000000 --- a/.m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/google-auth-library-oauth2-http-1.23.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cf2d55817546a71bcde99ded6478b94bb685a205 \ No newline at end of file diff --git a/.m2/repository/com/google/auth/google-auth-library-parent/1.23.0/_remote.repositories b/.m2/repository/com/google/auth/google-auth-library-parent/1.23.0/_remote.repositories deleted file mode 100644 index 53fb288..0000000 --- a/.m2/repository/com/google/auth/google-auth-library-parent/1.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. -#Thu Apr 02 20:37:47 UTC 2026 -google-auth-library-parent-1.23.0.pom>central= diff --git a/.m2/repository/com/google/auth/google-auth-library-parent/1.23.0/google-auth-library-parent-1.23.0.pom b/.m2/repository/com/google/auth/google-auth-library-parent/1.23.0/google-auth-library-parent-1.23.0.pom deleted file mode 100644 index a055fb7..0000000 --- a/.m2/repository/com/google/auth/google-auth-library-parent/1.23.0/google-auth-library-parent-1.23.0.pom +++ /dev/null @@ -1,480 +0,0 @@ - - - 4.0.0 - com.google.auth - google-auth-library-parent - 1.23.0 - pom - Google Auth Library for Java - Client libraries providing authentication and - authorization to enable calling Google APIs. - - https://github.com/googleapis/google-auth-library-java - - - com.google.cloud - google-cloud-shared-config - 1.6.1 - - - - - sonatype-nexus-snapshots - https://google.oss.sonatype.org/content/repositories/snapshots - - - googleapis.dev - Google self-hosted documentation site - https://googleapis.dev/java/google-auth-library/${project.version} - - - - - - BSD New license - http://opensource.org/licenses/BSD-3-Clause - repo - - - - - Google - http://www.google.com/ - - - - - - Jeff Ching - chingor@google.com - Google - - - - - credentials - oauth2_http - appengine - bom - - - - scm:git:https://github.com/googleapis/google-auth-library-java.git - scm:git:https://github.com/googleapis/google-auth-library-java.git - - https://github.com/googleapis/google-auth-library-java - - - - UTF-8 - 1.43.3 - 4.13.2 - 32.0.0-android - 2.0.21 - 3.0.2 - false - 2.18.0 - - - - - - com.google.auth - google-auth-library-credentials - ${project.version} - - - com.google.auth - google-auth-library-oauth2-http - ${project.version} - - - com.google.auth - google-auth-library-cloudshell - ${project.version} - - - com.google.http-client - google-http-client-bom - ${project.google.http.version} - pom - import - - - com.google.appengine - appengine-api-1.0-sdk - ${project.appengine.version} - - - com.google.guava - guava - ${project.guava.version} - - - com.google.code.findbugs - jsr305 - ${project.findbugs.version} - - - junit - junit - ${project.junit.version} - test - - - com.google.appengine - appengine - ${project.appengine.version} - test - - - com.google.auth - google-auth-library-oauth2-http - ${project.version} - test-jar - testlib - - - com.google.errorprone - error_prone_annotations - ${project.error-prone.version} - compile - - - - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://google.oss.sonatype.org/ - ${deploy.autorelease} - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.0 - - 8 - false - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - test-jar - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.0.0-M7 - - sponge_log - - - - org.apache.maven.plugins - maven-dependency-plugin - 3.6.1 - - - org.codehaus.mojo - clirr-maven-plugin - 2.8 - - - - - - maven-compiler-plugin - 3.11.0 - - 1.8 - 1.8 - UTF-8 - - - - org.sonatype.plugins - nexus-staging-maven-plugin - - - org.apache.maven.plugins - maven-source-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.3.1 - - - checkstyle - validate - - check - - - java.header - license-checks.xml - true - true - error - true - true - - - src/main - - - src/test - - com.google.auth.oauth2.ExternalAccountCredentials - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - true - - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - - prepare-agent - - - - report - test - - report - - - - - - org.codehaus.mojo - clirr-maven-plugin - - clirr-ignored-differences.xml - true - - - - - check - - - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.0 - - - html - - aggregate - javadoc - - - - - false - none - 8 - ${project.build.directory}/javadoc - Google Auth Library for Java ${project.version} - ${basedir}/overview.html - - - google-auth-library-credentials - com.google.auth* - - - google-auth-library-oauth2-http - com.google.auth.http*:com.google.auth.oauth2* - - - google-auth-library-appengine - com.google.auth.appengine* - - - - http://download.oracle.com/javase/7/docs/api/ - http://cloud.google.com/appengine/docs/java/javadoc - - google-auth-library ${project.version} - - - - - - - - release-sign-artifacts - - - performRelease - 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.0 - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - - docFX - - - - docFX - - - - - java-docfx-doclet-1.9.0 - ${project.build.directory}/docfx-yml - ${project.artifactId} - - - 8 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.0 - - com.microsoft.doclet.DocFxDoclet - false - - ${env.KOKORO_GFILE_DIR}/${docletName}.jar - - -outputpath ${outputpath} - -projectname ${projectname} - -excludeclasses ${excludeclasses}: - -excludepackages ${excludePackages}: - - none - protected - true - ${source} - - ${sourceFileExclude} - - false - - - - - - - diff --git a/.m2/repository/com/google/auth/google-auth-library-parent/1.23.0/google-auth-library-parent-1.23.0.pom.sha1 b/.m2/repository/com/google/auth/google-auth-library-parent/1.23.0/google-auth-library-parent-1.23.0.pom.sha1 deleted file mode 100644 index 713eaa5..0000000 --- a/.m2/repository/com/google/auth/google-auth-library-parent/1.23.0/google-auth-library-parent-1.23.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0fc81beeb3b17f8834f96b622228262646a8fb2a \ No newline at end of file diff --git a/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/_remote.repositories b/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/_remote.repositories deleted file mode 100644 index 900595f..0000000 --- a/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/_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. -#Thu Apr 02 20:38:35 UTC 2026 -auto-value-annotations-1.10.4.jar>central= -auto-value-annotations-1.10.4.pom>central= diff --git a/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.jar b/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.jar deleted file mode 100644 index 159476b..0000000 Binary files a/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.jar and /dev/null differ diff --git a/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.jar.sha1 b/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.jar.sha1 deleted file mode 100644 index fcd5085..0000000 --- a/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -9679de8286eb0a151db6538ba297a8951c4a1224 \ No newline at end of file diff --git a/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.pom b/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.pom deleted file mode 100644 index c32cfa0..0000000 --- a/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - 4.0.0 - - - com.google.auto.value - auto-value-parent - 1.10.4 - - - auto-value-annotations - 1.10.4 - AutoValue Annotations - - Immutable value-type code generation for Java 1.7+. - - https://github.com/google/auto/tree/main/value - - - 1.7 - - - - http://github.com/google/auto - scm:git:git://github.com/google/auto.git - scm:git:ssh://git@github.com/google/auto.git - HEAD - - - ../src/main/java - - - org.apache.maven.plugins - maven-compiler-plugin - - - com/google/auto/value/* - com/google/auto/value/extension/memoized/* - com/google/auto/value/extension/serializable/* - com/google/auto/value/extension/toprettystring/* - - - - - org.apache.maven.plugins - maven-jar-plugin - - - org.apache.maven.plugins - maven-invoker-plugin - - - - - - disable-java8-doclint - - [1.8,) - - - -Xdoclint:none - - - - diff --git a/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.pom.sha1 b/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.pom.sha1 deleted file mode 100644 index 6b63f23..0000000 --- a/.m2/repository/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1625b4e3671cc5ef044f7e0ed98c15bbfeba13bb \ No newline at end of file diff --git a/.m2/repository/com/google/auto/value/auto-value-parent/1.10.4/_remote.repositories b/.m2/repository/com/google/auto/value/auto-value-parent/1.10.4/_remote.repositories deleted file mode 100644 index bec977f..0000000 --- a/.m2/repository/com/google/auto/value/auto-value-parent/1.10.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. -#Thu Apr 02 20:37:48 UTC 2026 -auto-value-parent-1.10.4.pom>central= diff --git a/.m2/repository/com/google/auto/value/auto-value-parent/1.10.4/auto-value-parent-1.10.4.pom b/.m2/repository/com/google/auto/value/auto-value-parent/1.10.4/auto-value-parent-1.10.4.pom deleted file mode 100644 index 6703fab..0000000 --- a/.m2/repository/com/google/auto/value/auto-value-parent/1.10.4/auto-value-parent-1.10.4.pom +++ /dev/null @@ -1,262 +0,0 @@ - - - - 4.0.0 - - com.google.auto.value - auto-value-parent - 1.10.4 - AutoValue Parent - - Immutable value-type code generation for Java 7+. - - pom - https://github.com/google/auto/tree/main/value - - - UTF-8 - 1.8 - 32.1.2-jre - 1.1.5 - - - - http://github.com/google/auto - scm:git:git://github.com/google/auto.git - scm:git:ssh://git@github.com/google/auto.git - HEAD - - - - GitHub Issues - http://github.com/google/auto/issues - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Google LLC - http://www.google.com - - - - - eamonnmcmanus - Éamonn McManus - emcmanus@google.com - Google - http://www.google.com - - owner - developer - - -8 - - - - - annotations - processor - src/it/functional - src/it/gwtserializer - - - - - 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.google.guava - guava - ${guava.version} - - - com.google.guava - guava-gwt - ${guava.version} - - - com.squareup - javapoet - 1.13.0 - - - - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - com.google.guava - guava-testlib - ${guava.version} - - - com.google.testing.compile - compile-testing - 0.21.0 - - - com.google.truth - truth - ${truth.version} - - - com.google.truth.extensions - truth-java8-extension - ${truth.version} - - - junit - junit - 4.13.2 - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - ${java.version} - ${java.version} - -Xlint:all - true - true - - - - org.codehaus.plexus - plexus-java - 1.1.2 - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-invoker-plugin - 3.6.0 - - true - ${project.build.directory}/it - ${project.build.directory}/it-repo - - */pom.xml - - true - - - - integration-test - - install - run - - - - - - org.immutables.tools - maven-shade-plugin - 4 - - - - - - - sonatype-oss-release - - - - 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 - - false - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - sign-artifacts - verify - - sign - - - - - - - - - diff --git a/.m2/repository/com/google/auto/value/auto-value-parent/1.10.4/auto-value-parent-1.10.4.pom.sha1 b/.m2/repository/com/google/auto/value/auto-value-parent/1.10.4/auto-value-parent-1.10.4.pom.sha1 deleted file mode 100644 index a3f6f74..0000000 --- a/.m2/repository/com/google/auto/value/auto-value-parent/1.10.4/auto-value-parent-1.10.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -08d4397fc90a6bd37db513aee267d40b7639db13 \ No newline at end of file diff --git a/.m2/repository/com/google/cloud/google-cloud-shared-config/1.6.1/_remote.repositories b/.m2/repository/com/google/cloud/google-cloud-shared-config/1.6.1/_remote.repositories deleted file mode 100644 index e89b72d..0000000 --- a/.m2/repository/com/google/cloud/google-cloud-shared-config/1.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. -#Thu Apr 02 20:37:47 UTC 2026 -google-cloud-shared-config-1.6.1.pom>central= diff --git a/.m2/repository/com/google/cloud/google-cloud-shared-config/1.6.1/google-cloud-shared-config-1.6.1.pom b/.m2/repository/com/google/cloud/google-cloud-shared-config/1.6.1/google-cloud-shared-config-1.6.1.pom deleted file mode 100644 index 2944d6c..0000000 --- a/.m2/repository/com/google/cloud/google-cloud-shared-config/1.6.1/google-cloud-shared-config-1.6.1.pom +++ /dev/null @@ -1,859 +0,0 @@ - - - 4.0.0 - com.google.cloud - google-cloud-shared-config - pom - 1.6.1 - Google Cloud - https://github.com/googleapis/java-shared-config - - Shared build configuration for Google Cloud Java libraries. - - - - chingor13 - Jeff Ching - chingor@google.com - Google - - Developer - - - - - Google LLC - - - scm:git:git@github.com:googleapis/java-shared-config.git - scm:git:git@github.com:googleapis/java-shared-config.git - - https://github.com/googleapis/java-shared-config - HEAD - - - - https://github.com/googleapis/java-shared-config/issues - GitHub Issues - - - - - sonatype-nexus-snapshots - https://google.oss.sonatype.org/content/repositories/snapshots - - - sonatype-nexus-staging - https://google.oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - UTF-8 - - ${project.artifactId} - false - true - 1.10.4 - 3.2.1 - 22.3.3 - /java/docs/reference/ - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://google.oss.sonatype.org/ - false - 15 - - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - - **/*SmokeTest.java - **/IT*.java - - sponge_log - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.1 - - - org.codehaus.mojo - extra-enforcer-rules - 1.7.0 - - - - - org.codehaus.mojo - exec-maven-plugin - 3.1.0 - - - -1 - - - - org.apache.maven.plugins - maven-failsafe-plugin - - ${surefire.version} - - 3600 - sponge_log - - **/IT*.java - **/*SmokeTest.java - - - - - org.apache.maven.surefire - surefire-junit47 - ${surefire.version} - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - true - true - - true - true - - - ${project.artifactId} - ${project.groupId} - ${project.version} - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - 1.8 - 1.8 - UTF-8 - -Xlint:unchecked - -Xlint:deprecation - true - - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - true - - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.5.0 - - - javax.annotation:javax.annotation-api - - - - - io.grpc:* - - com.google.protobuf:* - - com.google.api.grpc:* - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.4.0 - - - org.codehaus.mojo - clirr-maven-plugin - 2.8 - - - com.coveo - fmt-maven-plugin - 2.9 - - - true - - - - com.google.googlejavaformat - google-java-format - 1.7 - - - - - org.codehaus.mojo - flatten-maven-plugin - 1.3.0 - - - - flatten - process-resources - - flatten - - - - - flatten.clean - clean - - clean - - - - - oss - all - - remove - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce - - enforce - - - - - [3.0,) - - - [1.7,) - - - - - compile - provided - - true - true - - - - - - - - org.codehaus.mojo - exec-maven-plugin - - - - java - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.sonatype.plugins - nexus-staging-maven-plugin - - - org.apache.maven.plugins - maven-site-plugin - - - org.jacoco - jacoco-maven-plugin - - - - prepare-agent - - - - report - test - - report - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-main-proto-resources - generate-resources - - add-resource - - - - - src/main/proto - - - - - - add-test-proto-resources - generate-test-resources - - add-test-resource - - - - - src/test/proto - - - - - - - - org.codehaus.mojo - clirr-maven-plugin - - clirr-ignored-differences.xml - true - - - - - check - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.23 - - - java8 - - check - - - - org.codehaus.mojo.signature - java18 - 1.0 - - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.4.5 - - - - index - dependency-info - team - ci-management - issue-management - licenses - scm - dependency-management - distribution-management - summary - modules - - - - - true - ${site.installationModule} - jar - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.5.0 - - - html - - javadoc - aggregate - aggregate-jar - - - - - none - protected - true - ${project.build.directory}/javadoc - - - Test helpers packages - com.google.cloud.testing - - - SPI packages - com.google.cloud.spi* - - - - - https://googleapis.dev/java/api-common/ - https://googleapis.dev/java/gax/ - https://googleapis.dev/java/google-auth-library/ - - https://developers.google.com/protocol-buffers/docs/reference/java/ - https://googleapis.github.io/common-protos-java/apidocs/ - https://grpc.io/grpc-java/javadoc/ - - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.3.1 - - true - - - - aggregate - ${report.jxr.inherited} - - jxr - aggregate - - - - - - - - - - - - com.google.auto.value - auto-value-annotations - ${auto-value.version} - - - - org.graalvm.sdk - graal-sdk - ${graal-sdk.version} - - - - - - - release - - - performRelease - - - - - - 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 - - - attach-javadocs - - jar - - - none - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - allow-snapshots - - - sonatype-snapshots - https://google.oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - checkstyle-tests - - [1.11,) - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.3.1 - - - com.puppycrawl.tools - checkstyle - 10.12.4 - - - - - checkstyle - validate - - check - - - java.header - license-checks.xml - true - true - error - true - true - - - src/main - - - src/test - - - - - - - - - - - enable-integration-tests - - false - - - - - - docFX - - - - docFX - - - - - java-docfx-doclet-1.9.0 - ${env.KOKORO_GFILE_DIR}/${docletName}.jar - ${project.build.directory}/docfx-yml - ${project.artifactId} - - - 8 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.5.0 - - com.microsoft.doclet.DocFxDoclet - false - - -outputpath ${outputpath} - -projectname ${projectname} - -excludeclasses ${excludeclasses}: - -excludepackages ${excludePackages}: - - none - protected - true - ${source} - - ${sourceFileExclude} - - - - - - - - - autovalue-java8 - - [1.8,) - - ${basedir}/EnableAutoValue.txt - - - - - - maven-compiler-plugin - - - - com.google.auto.value - auto-value - ${auto-value.version} - - - - com.google.auto.service - auto-service-annotations - 1.1.1 - - - - - - - - - - - native - - - - org.opentest4j - opentest4j - 1.3.0 - - - org.junit.vintage - junit-vintage-engine - 5.9.3 - test - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - org.junit.vintage - junit-vintage-engine - 5.9.3 - - - - - - - **/IT*.java - - **/*ClientTest.java - - - - - - org.graalvm.buildtools - native-maven-plugin - 0.9.23 - true - - - test-native - - test - - test - - - - - --no-fallback - --no-server - - - - - - - - - - compiler-release-8 - - [9,] - - - 8 - - - - diff --git a/.m2/repository/com/google/cloud/google-cloud-shared-config/1.6.1/google-cloud-shared-config-1.6.1.pom.sha1 b/.m2/repository/com/google/cloud/google-cloud-shared-config/1.6.1/google-cloud-shared-config-1.6.1.pom.sha1 deleted file mode 100644 index 58a0a5b..0000000 --- a/.m2/repository/com/google/cloud/google-cloud-shared-config/1.6.1/google-cloud-shared-config-1.6.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -52439b420dd9f049152c0ea00a64349381921ceb \ No newline at end of file diff --git a/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/_remote.repositories b/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/_remote.repositories deleted file mode 100644 index bec8f27..0000000 --- a/.m2/repository/com/google/code/findbugs/jsr305/3.0.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. -#Thu Apr 02 20:38:35 UTC 2026 -jsr305-3.0.2.jar>central= -jsr305-3.0.2.pom>central= diff --git a/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar b/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar deleted file mode 100644 index 59222d9..0000000 Binary files a/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar and /dev/null differ diff --git a/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar.sha1 b/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar.sha1 deleted file mode 100644 index c5c92d8..0000000 --- a/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -25ea2e8b0c338a877313bd4672d3fe056ea78f0d \ No newline at end of file diff --git a/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom b/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom deleted file mode 100644 index 3a6e2c6..0000000 --- a/.m2/repository/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/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom.sha1 b/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom.sha1 deleted file mode 100644 index f650c32..0000000 --- a/.m2/repository/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/.m2/repository/com/google/code/gson/gson-parent/2.13.1/_remote.repositories b/.m2/repository/com/google/code/gson/gson-parent/2.13.1/_remote.repositories deleted file mode 100644 index 51c5ebf..0000000 --- a/.m2/repository/com/google/code/gson/gson-parent/2.13.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. -#Thu Apr 02 20:37:52 UTC 2026 -gson-parent-2.13.1.pom>central= diff --git a/.m2/repository/com/google/code/gson/gson-parent/2.13.1/gson-parent-2.13.1.pom b/.m2/repository/com/google/code/gson/gson-parent/2.13.1/gson-parent-2.13.1.pom deleted file mode 100644 index d993c52..0000000 --- a/.m2/repository/com/google/code/gson/gson-parent/2.13.1/gson-parent-2.13.1.pom +++ /dev/null @@ -1,608 +0,0 @@ - - - - 4.0.0 - - com.google.code.gson - gson-parent - 2.13.1 - pom - - Gson Parent - Gson JSON library - https://github.com/google/gson - - - gson - test-jpms - test-graal-native-image - test-shrinker - extras - metrics - proto - - - - UTF-8 - 8 - 11 - - - - 2025-04-24T01:02:41Z - - - - false - - ${gson.isTestModule} - - - - - https://github.com/google/gson/ - scm:git:https://github.com/google/gson.git - scm:git:git@github.com:google/gson.git - gson-parent-2.13.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 - - - - com.google.truth - truth - 1.4.4 - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.5.0 - - - enforce-versions - - enforce - - - - - - [3.3.1,) - - - - - - - [11,22) - - - - - - - - - - com.diffplug.spotless - spotless-maven-plugin - 2.44.4 - - - - check - - - - - - - - - - *.md - *.xml - .github/**/*.yml - .gitignore - - - - - - true - - 2 - - - - - - - - src/test/java/com/google/gson/functional/Java17RecordTest.java - src/test/java/com/google/gson/native_test/Java17RecordReflectionTest.java - - - - true - true - true - - - - - - - - - - org.apache.maven.plugins - maven-artifact-plugin - 3.6.0 - - - - - buildinfo - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.14.0 - - true - true - true - - - -XDcompilePolicy=simple - --should-stop=ifError=FLOW - -Xplugin:ErrorProne - -XepExcludedPaths:.*/generated-test-sources/protobuf/.* - -Xep:NotJavadoc:OFF - - -XepAllSuggestionsAsWarnings - - -Xep:AnnotationPosition - -Xep:AssertFalse - -Xep:ClassName - -Xep:ClassNamedLikeTypeParameter:WARN - -Xep:ComparisonContractViolated - -Xep:ConstantField:WARN - -Xep:DepAnn - -Xep:DifferentNameButSame - -Xep:EmptyIf - -Xep:EqualsBrokenForNull - -Xep:ForEachIterable:WARN - -Xep:FunctionalInterfaceClash - -Xep:InitializeInline - -Xep:InterfaceWithOnlyStatics - -Xep:LambdaFunctionalInterface:WARN - -Xep:LongLiteralLowerCaseSuffix - -Xep:MemberName - -Xep:MissingBraces:WARN - -Xep:MissingDefault - -Xep:MixedArrayDimensions:WARN - -Xep:MultiVariableDeclaration:WARN - -Xep:MultipleTopLevelClasses:WARN - -Xep:NonCanonicalStaticMemberImport - -Xep:NonFinalStaticField - -Xep:PackageLocation:WARN - -Xep:PatternMatchingInstanceof:OFF - -Xep:PrimitiveArrayPassedToVarargsMethod - -Xep:PrivateConstructorForUtilityClass:WARN - -Xep:RemoveUnusedImports:WARN - -Xep:StatementSwitchToExpressionSwitch:OFF - -Xep:StaticQualifiedUsingExpression - -Xep:StringConcatToTextBlock:OFF - -Xep:SwitchDefault:WARN - -Xep:SystemExitOutsideMain - -Xep:SystemOut - -Xep:TestExceptionChecker - -Xep:ThrowSpecificExceptions:OFF - -Xep:TryFailRefactoring:OFF - -Xep:TypeParameterNaming:WARN - -Xep:UnescapedEntity - -Xep:UngroupedOverloads:WARN - -Xep:UnnecessarilyFullyQualified - -Xep:UnnecessarilyUsedValue - -Xep:UnnecessaryBoxedVariable:WARN - -Xep:UnnecessaryDefaultInEnumSwitch - -Xep:UnnecessaryFinal - -Xep:UnnecessaryStaticImport:WARN - -Xep:UnusedException - -Xep:UrlInSee - -Xep:UseCorrectAssertInTests - -Xep:UseEnumSwitch:WARN - -Xep:WildcardImport:WARN - -Xep:YodaCondition - - - -Xlint:all,-options - - - - com.google.errorprone - error_prone_core - 2.38.0 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.11.2 - - ${gson.isTestModule} - - - 11 - - all,-missing - - false - - https://docs.oracle.com/en/java/javase/11/docs/api/ - https://errorprone.info/api/latest/ - - - false - - true - true - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.5.3 - - - org.apache.maven.plugins - maven-failsafe-plugin - 3.5.3 - - - org.apache.maven.plugins - maven-jar-plugin - 3.4.2 - - - org.apache.maven.plugins - maven-install-plugin - 3.1.4 - - ${gson.isTestModule} - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.1 - - ${gson.isTestModule} - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.2.7 - - ${gson.isTestModule} - - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.4 - - ${gson.isInternalModule} - - - - org.apache.maven.plugins - maven-release-plugin - 3.1.1 - - true - - false - release - - - - clean verify - antrun:run@replace-version-placeholders - antrun:run@replace-old-version-references - antrun:run@git-add-changed - - - - - org.apache.maven.plugins - 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.23.1 - - ${gson.isTestModule} - - - - ${project.groupId} - ${project.artifactId} - - 0.0.0-JAPICMP-OLD - - - - - - - true - true - - com.google.gson.internal - - true - true - true - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.24 - - - check-android-compatibility - - check - - - ${gson.isTestModule} - - - - net.sf.androidscents.signature - android-api-level-21 - 5.0.1_r2 - - - - - - - - - - - - - disable-error-prone - - [,17) - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - -Xlint:all,-options - - - - - - - - - - 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/.m2/repository/com/google/code/gson/gson-parent/2.13.1/gson-parent-2.13.1.pom.sha1 b/.m2/repository/com/google/code/gson/gson-parent/2.13.1/gson-parent-2.13.1.pom.sha1 deleted file mode 100644 index d76203d..0000000 --- a/.m2/repository/com/google/code/gson/gson-parent/2.13.1/gson-parent-2.13.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -79b467d9dda2a8fa33bd352ffbf30e7d17de8f02 \ No newline at end of file diff --git a/.m2/repository/com/google/code/gson/gson/2.13.1/_remote.repositories b/.m2/repository/com/google/code/gson/gson/2.13.1/_remote.repositories deleted file mode 100644 index 098605f..0000000 --- a/.m2/repository/com/google/code/gson/gson/2.13.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. -#Thu Apr 02 20:38:35 UTC 2026 -gson-2.13.1.jar>central= -gson-2.13.1.pom>central= diff --git a/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.jar b/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.jar deleted file mode 100644 index 159b930..0000000 Binary files a/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.jar and /dev/null differ diff --git a/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.jar.sha1 b/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.jar.sha1 deleted file mode 100644 index 9cdfa14..0000000 --- a/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -853ce06c11316b33a8eae5e9095da096a9528b8f \ No newline at end of file diff --git a/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.pom b/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.pom deleted file mode 100644 index 84ccfa5..0000000 --- a/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.pom +++ /dev/null @@ -1,352 +0,0 @@ - - - - 4.0.0 - - - com.google.code.gson - gson-parent - 2.13.1 - - - gson - Gson - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - 2025-04-24T01:02:41Z - - **/Java17* - - - - - - com.google.errorprone - error_prone_annotations - 2.38.0 - - - - junit - junit - test - - - com.google.truth - truth - test - - - com.google.guava - guava-testlib - 33.4.8-jre - test - - - com.google.guava - guava - 33.4.8-jre - test - - - - - - - - org.codehaus.mojo - templating-maven-plugin - 3.0.0 - - - filtering-java-templates - - filter-sources - - - ${project.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 - - - - --illegal-access=deny - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - - 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.7.0 - - - obfuscate-test-class - process-test-classes - - proguard - - - - - - - com.guardsquare - proguard-base - 7.7.0 - - - com.guardsquare - proguard-core - 9.1.10 - - - - true - test-classes-obfuscated-injar - test-classes-obfuscated-outjar - **/*.class - ${project.basedir}/src/test/resources/testcases-proguard.conf - - ${project.build.directory}/classes - ${java.home}/jmods/java.base.jmod - - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - 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.2.2.Final - - - 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/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.pom.sha1 b/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.pom.sha1 deleted file mode 100644 index ebefdfd..0000000 --- a/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -75c68fafbbc6c1abc95a60a5953cac165e102d5a \ No newline at end of file diff --git a/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/_remote.repositories b/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/_remote.repositories deleted file mode 100644 index 784ae47..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.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. -#Thu Apr 02 20:38:35 UTC 2026 -error_prone_annotations-2.18.0.jar>central= -error_prone_annotations-2.18.0.pom>central= diff --git a/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar b/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar deleted file mode 100644 index e072fe0..0000000 Binary files a/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar and /dev/null differ diff --git a/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar.sha1 b/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar.sha1 deleted file mode 100644 index 2a679af..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -89b684257096f548fa39a7df9fdaa409d4d4df91 \ No newline at end of file diff --git a/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom b/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom deleted file mode 100644 index 6858876..0000000 --- a/.m2/repository/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/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom.sha1 b/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom.sha1 deleted file mode 100644 index a60726e..0000000 --- a/.m2/repository/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/.m2/repository/com/google/errorprone/error_prone_annotations/2.21.1/_remote.repositories b/.m2/repository/com/google/errorprone/error_prone_annotations/2.21.1/_remote.repositories deleted file mode 100644 index 9d58abd..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:03 UTC 2026 -error_prone_annotations-2.21.1.pom>central= diff --git a/.m2/repository/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom b/.m2/repository/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom deleted file mode 100644 index 8419ea9..0000000 --- a/.m2/repository/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/.m2/repository/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom.sha1 b/.m2/repository/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom.sha1 deleted file mode 100644 index 4a92989..0000000 --- a/.m2/repository/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/.m2/repository/com/google/errorprone/error_prone_annotations/2.3.4/_remote.repositories b/.m2/repository/com/google/errorprone/error_prone_annotations/2.3.4/_remote.repositories deleted file mode 100644 index 9df909f..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:51 UTC 2026 -error_prone_annotations-2.3.4.pom>central= diff --git a/.m2/repository/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom b/.m2/repository/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom deleted file mode 100644 index 9b7753b..0000000 --- a/.m2/repository/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/.m2/repository/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom.sha1 b/.m2/repository/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom.sha1 deleted file mode 100644 index 6bd13db..0000000 --- a/.m2/repository/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/.m2/repository/com/google/errorprone/error_prone_annotations/2.38.0/_remote.repositories b/.m2/repository/com/google/errorprone/error_prone_annotations/2.38.0/_remote.repositories deleted file mode 100644 index 6e51869..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_annotations/2.38.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. -#Thu Apr 02 20:37:52 UTC 2026 -error_prone_annotations-2.38.0.pom>central= diff --git a/.m2/repository/com/google/errorprone/error_prone_annotations/2.38.0/error_prone_annotations-2.38.0.pom b/.m2/repository/com/google/errorprone/error_prone_annotations/2.38.0/error_prone_annotations-2.38.0.pom deleted file mode 100644 index 9cfb72d..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_annotations/2.38.0/error_prone_annotations-2.38.0.pom +++ /dev/null @@ -1,129 +0,0 @@ - - - - - 4.0.0 - - - com.google.errorprone - error_prone_parent - 2.38.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 - - - - - - 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/.m2/repository/com/google/errorprone/error_prone_annotations/2.38.0/error_prone_annotations-2.38.0.pom.sha1 b/.m2/repository/com/google/errorprone/error_prone_annotations/2.38.0/error_prone_annotations-2.38.0.pom.sha1 deleted file mode 100644 index 70590f9..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_annotations/2.38.0/error_prone_annotations-2.38.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4afcfab3ddcad998e67cb7d8c30a748530834c69 \ No newline at end of file diff --git a/.m2/repository/com/google/errorprone/error_prone_annotations/2.5.1/_remote.repositories b/.m2/repository/com/google/errorprone/error_prone_annotations/2.5.1/_remote.repositories deleted file mode 100644 index c2100f8..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_annotations/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. -#Thu Apr 02 20:37:50 UTC 2026 -error_prone_annotations-2.5.1.pom>central= diff --git a/.m2/repository/com/google/errorprone/error_prone_annotations/2.5.1/error_prone_annotations-2.5.1.pom b/.m2/repository/com/google/errorprone/error_prone_annotations/2.5.1/error_prone_annotations-2.5.1.pom deleted file mode 100644 index 0021d02..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_annotations/2.5.1/error_prone_annotations-2.5.1.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - - - 4.0.0 - - - com.google.errorprone - error_prone_parent - 2.5.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 - - 1.7 - 1.7 - - - - maven-jar-plugin - - - - com.google.errorprone.annotations - - - - - - - diff --git a/.m2/repository/com/google/errorprone/error_prone_annotations/2.5.1/error_prone_annotations-2.5.1.pom.sha1 b/.m2/repository/com/google/errorprone/error_prone_annotations/2.5.1/error_prone_annotations-2.5.1.pom.sha1 deleted file mode 100644 index 79d55d1..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_annotations/2.5.1/error_prone_annotations-2.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d759b1b643583e30d8bb6bb55f4ad434f26c44a4 \ No newline at end of file diff --git a/.m2/repository/com/google/errorprone/error_prone_parent/2.18.0/_remote.repositories b/.m2/repository/com/google/errorprone/error_prone_parent/2.18.0/_remote.repositories deleted file mode 100644 index 26f8ec3..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:49 UTC 2026 -error_prone_parent-2.18.0.pom>central= diff --git a/.m2/repository/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom b/.m2/repository/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom deleted file mode 100644 index 617e038..0000000 --- a/.m2/repository/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/.m2/repository/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom.sha1 b/.m2/repository/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom.sha1 deleted file mode 100644 index 7d37572..0000000 --- a/.m2/repository/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/.m2/repository/com/google/errorprone/error_prone_parent/2.21.1/_remote.repositories b/.m2/repository/com/google/errorprone/error_prone_parent/2.21.1/_remote.repositories deleted file mode 100644 index 6228209..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:03 UTC 2026 -error_prone_parent-2.21.1.pom>central= diff --git a/.m2/repository/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom b/.m2/repository/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom deleted file mode 100644 index 5ad995d..0000000 --- a/.m2/repository/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/.m2/repository/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom.sha1 b/.m2/repository/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom.sha1 deleted file mode 100644 index e7f7f6c..0000000 --- a/.m2/repository/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/.m2/repository/com/google/errorprone/error_prone_parent/2.3.4/_remote.repositories b/.m2/repository/com/google/errorprone/error_prone_parent/2.3.4/_remote.repositories deleted file mode 100644 index 12646cf..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:51 UTC 2026 -error_prone_parent-2.3.4.pom>central= diff --git a/.m2/repository/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom b/.m2/repository/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom deleted file mode 100644 index f5a7fb9..0000000 --- a/.m2/repository/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/.m2/repository/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom.sha1 b/.m2/repository/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom.sha1 deleted file mode 100644 index 72490df..0000000 --- a/.m2/repository/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/.m2/repository/com/google/errorprone/error_prone_parent/2.38.0/_remote.repositories b/.m2/repository/com/google/errorprone/error_prone_parent/2.38.0/_remote.repositories deleted file mode 100644 index 7dcc322..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_parent/2.38.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. -#Thu Apr 02 20:37:52 UTC 2026 -error_prone_parent-2.38.0.pom>central= diff --git a/.m2/repository/com/google/errorprone/error_prone_parent/2.38.0/error_prone_parent-2.38.0.pom b/.m2/repository/com/google/errorprone/error_prone_parent/2.38.0/error_prone_parent-2.38.0.pom deleted file mode 100644 index 0d4f6b8..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_parent/2.38.0/error_prone_parent-2.38.0.pom +++ /dev/null @@ -1,417 +0,0 @@ - - - - - 4.0.0 - - Error Prone parent POM - com.google.errorprone - error_prone_parent - 2.38.0 - pom - - Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time. - https://errorprone.info - - - UTF-8 - 33.4.6-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.11.2 - 3.2.1 - 1.6.13 - 3.25.5 - 1.43.3 - 1.0.0 - - - - Google LLC - https://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 - ${maven-javadoc-plugin.version} - - 17 - true - Error Prone ${project.version} API - true - true - - --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 - - - **/module-info.java - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.13.0 - - 17 - 17 - - - --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 - - - - ${java.specification.version} - - - -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 - - - - org.apache.maven.plugins - maven-toolchains-plugin - 3.2.0 - - - - 25 - - - - - - - toolchain - - - - - - - - - - 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/.m2/repository/com/google/errorprone/error_prone_parent/2.38.0/error_prone_parent-2.38.0.pom.sha1 b/.m2/repository/com/google/errorprone/error_prone_parent/2.38.0/error_prone_parent-2.38.0.pom.sha1 deleted file mode 100644 index 74ffcaf..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_parent/2.38.0/error_prone_parent-2.38.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c2bbf448e9e1c8ff4ac36e574a1040b7b5e8632d \ No newline at end of file diff --git a/.m2/repository/com/google/errorprone/error_prone_parent/2.5.1/_remote.repositories b/.m2/repository/com/google/errorprone/error_prone_parent/2.5.1/_remote.repositories deleted file mode 100644 index ceae840..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_parent/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. -#Thu Apr 02 20:37:50 UTC 2026 -error_prone_parent-2.5.1.pom>central= diff --git a/.m2/repository/com/google/errorprone/error_prone_parent/2.5.1/error_prone_parent-2.5.1.pom b/.m2/repository/com/google/errorprone/error_prone_parent/2.5.1/error_prone_parent-2.5.1.pom deleted file mode 100644 index 962942b..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_parent/2.5.1/error_prone_parent-2.5.1.pom +++ /dev/null @@ -1,216 +0,0 @@ - - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - Error Prone parent POM - com.google.errorprone - error_prone_parent - 2.5.1 - pom - - - UTF-8 - 30.1-jre - 2.8.2 - 1.1 - 9+181-r4173-1 - 1.0-rc6 - 1.7 - 4.13.1 - 3.7.1 - 2.25.0 - 0.18 - 2.8.8 - 0.5.1 - - - - 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-M3 - - - enforce-maven - - enforce - - - - - 3.0.5 - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.5 - - - 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 - - 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.7.1 - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.19.1 - - -Xmx1g --illegal-access=permit - false - - - - - - - - java-8 - - 1.8 - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.19.1 - - 4 - true - - -Xmx1g -Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar - false - - - - - - - diff --git a/.m2/repository/com/google/errorprone/error_prone_parent/2.5.1/error_prone_parent-2.5.1.pom.sha1 b/.m2/repository/com/google/errorprone/error_prone_parent/2.5.1/error_prone_parent-2.5.1.pom.sha1 deleted file mode 100644 index 72e1160..0000000 --- a/.m2/repository/com/google/errorprone/error_prone_parent/2.5.1/error_prone_parent-2.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3cce581619abb2d892618745ef2f7f19087ecbc7 \ No newline at end of file diff --git a/.m2/repository/com/google/guava/failureaccess/1.0.1/_remote.repositories b/.m2/repository/com/google/guava/failureaccess/1.0.1/_remote.repositories deleted file mode 100644 index 780b7be..0000000 --- a/.m2/repository/com/google/guava/failureaccess/1.0.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. -#Thu Apr 02 20:38:35 UTC 2026 -failureaccess-1.0.1.jar>central= -failureaccess-1.0.1.pom>central= diff --git a/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar b/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar deleted file mode 100644 index 9b56dc7..0000000 Binary files a/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar and /dev/null differ diff --git a/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar.sha1 b/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar.sha1 deleted file mode 100644 index 4798b37..0000000 --- a/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1dcf1de382a0bf95a3d8b0849546c88bac1292c9 \ No newline at end of file diff --git a/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom b/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom deleted file mode 100644 index 6cce782..0000000 --- a/.m2/repository/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/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom.sha1 b/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom.sha1 deleted file mode 100644 index f2c78c8..0000000 --- a/.m2/repository/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/.m2/repository/com/google/guava/guava-parent/26.0-android/_remote.repositories b/.m2/repository/com/google/guava/guava-parent/26.0-android/_remote.repositories deleted file mode 100644 index e7ce441..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:50 UTC 2026 -guava-parent-26.0-android.pom>central= diff --git a/.m2/repository/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom b/.m2/repository/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom deleted file mode 100644 index 7fd8054..0000000 --- a/.m2/repository/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/.m2/repository/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom.sha1 b/.m2/repository/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom.sha1 deleted file mode 100644 index 5db21c7..0000000 --- a/.m2/repository/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/.m2/repository/com/google/guava/guava-parent/29.0-android/_remote.repositories b/.m2/repository/com/google/guava/guava-parent/29.0-android/_remote.repositories deleted file mode 100644 index d544a3e..0000000 --- a/.m2/repository/com/google/guava/guava-parent/29.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. -#Thu Apr 02 20:37:51 UTC 2026 -guava-parent-29.0-android.pom>central= diff --git a/.m2/repository/com/google/guava/guava-parent/29.0-android/guava-parent-29.0-android.pom b/.m2/repository/com/google/guava/guava-parent/29.0-android/guava-parent-29.0-android.pom deleted file mode 100644 index f171b18..0000000 --- a/.m2/repository/com/google/guava/guava-parent/29.0-android/guava-parent-29.0-android.pom +++ /dev/null @@ -1,367 +0,0 @@ - - - - 4.0.0 - com.google.guava - guava-parent - 29.0-android - 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-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.7 - 1.7 - - - - 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 - 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 - 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-compat-qual - 2.5.5 - - - 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.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/.m2/repository/com/google/guava/guava-parent/29.0-android/guava-parent-29.0-android.pom.sha1 b/.m2/repository/com/google/guava/guava-parent/29.0-android/guava-parent-29.0-android.pom.sha1 deleted file mode 100644 index b788dab..0000000 --- a/.m2/repository/com/google/guava/guava-parent/29.0-android/guava-parent-29.0-android.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e57a3e00291e8a45b12865042c55df9e8719accf \ No newline at end of file diff --git a/.m2/repository/com/google/guava/guava-parent/30.1.1-android/_remote.repositories b/.m2/repository/com/google/guava/guava-parent/30.1.1-android/_remote.repositories deleted file mode 100644 index e70b5d7..0000000 --- a/.m2/repository/com/google/guava/guava-parent/30.1.1-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. -#Thu Apr 02 20:37:50 UTC 2026 -guava-parent-30.1.1-android.pom>central= diff --git a/.m2/repository/com/google/guava/guava-parent/30.1.1-android/guava-parent-30.1.1-android.pom b/.m2/repository/com/google/guava/guava-parent/30.1.1-android/guava-parent-30.1.1-android.pom deleted file mode 100644 index 2383f5b..0000000 --- a/.m2/repository/com/google/guava/guava-parent/30.1.1-android/guava-parent-30.1.1-android.pom +++ /dev/null @@ -1,394 +0,0 @@ - - - - 4.0.0 - com.google.guava - guava-parent - 30.1.1-android - pom - Guava Maven Parent - Parent for guava artifacts - https://github.com/google/guava - - - %regex[.*.class] - 1.1 - - 1.18 - 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 - - - - Travis CI - https://travis-ci.org/google/guava - - - guava - guava-bom - 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.7 - 1.7 - - - -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} - - com.google.common.util.concurrent.IgnoreJRERequirement - - 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 - 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-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-compat-qual - 2.5.5 - - - com.google.errorprone - error_prone_annotations - 2.5.1 - - - com.google.j2objc - j2objc-annotations - 1.3 - - - junit - junit - 4.13.2 - test - - - org.easymock - easymock - 4.2 - test - - - org.mockito - mockito-core - 3.6.28 - 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 - - - - - - - - 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/.m2/repository/com/google/guava/guava-parent/30.1.1-android/guava-parent-30.1.1-android.pom.sha1 b/.m2/repository/com/google/guava/guava-parent/30.1.1-android/guava-parent-30.1.1-android.pom.sha1 deleted file mode 100644 index 642e140..0000000 --- a/.m2/repository/com/google/guava/guava-parent/30.1.1-android/guava-parent-30.1.1-android.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5f18c1c6a72fa43823fa49b21421f87844891831 \ No newline at end of file diff --git a/.m2/repository/com/google/guava/guava-parent/32.0.0-android/_remote.repositories b/.m2/repository/com/google/guava/guava-parent/32.0.0-android/_remote.repositories deleted file mode 100644 index cd2e82a..0000000 --- a/.m2/repository/com/google/guava/guava-parent/32.0.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. -#Thu Apr 02 20:37:52 UTC 2026 -guava-parent-32.0.0-android.pom>central= diff --git a/.m2/repository/com/google/guava/guava-parent/32.0.0-android/guava-parent-32.0.0-android.pom b/.m2/repository/com/google/guava/guava-parent/32.0.0-android/guava-parent-32.0.0-android.pom deleted file mode 100644 index 52d84a8..0000000 --- a/.m2/repository/com/google/guava/guava-parent/32.0.0-android/guava-parent-32.0.0-android.pom +++ /dev/null @@ -1,527 +0,0 @@ - - - - 4.0.0 - com.google.guava - guava-parent - 32.0.0-android - 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-05-26T22:14:51Z - 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-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.io.IgnoreJRERequirement,com.google.common.reflect.IgnoreJRERequirement,com.google.common.testing.IgnoreJRERequirement - true - - org.codehaus.mojo.signature - java16-sun - 1.10 - - - - java.util.Objects - - 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 - 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 - - - - - - - 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 - - - junit - junit - 4.13.2 - test - - - org.mockito - mockito-core - 4.11.0 - test - - - com.google.jimfs - jimfs - 1.2 - test - - - com.google.truth - truth - ${truth.version} - test - - - - com.google.guava - guava - - - - - com.google.caliper - caliper - 1.0-beta-3 - 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 - 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/.m2/repository/com/google/guava/guava-parent/32.0.0-android/guava-parent-32.0.0-android.pom.sha1 b/.m2/repository/com/google/guava/guava-parent/32.0.0-android/guava-parent-32.0.0-android.pom.sha1 deleted file mode 100644 index d688a9f..0000000 --- a/.m2/repository/com/google/guava/guava-parent/32.0.0-android/guava-parent-32.0.0-android.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -11876f08dd684bca049616deea33d7d0dd925884 \ No newline at end of file diff --git a/.m2/repository/com/google/guava/guava-parent/32.1.3-jre/_remote.repositories b/.m2/repository/com/google/guava/guava-parent/32.1.3-jre/_remote.repositories deleted file mode 100644 index 2716cc4..0000000 --- a/.m2/repository/com/google/guava/guava-parent/32.1.3-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. -#Thu Apr 02 20:38:03 UTC 2026 -guava-parent-32.1.3-jre.pom>central= diff --git a/.m2/repository/com/google/guava/guava-parent/32.1.3-jre/guava-parent-32.1.3-jre.pom b/.m2/repository/com/google/guava/guava-parent/32.1.3-jre/guava-parent-32.1.3-jre.pom deleted file mode 100644 index 53cd395..0000000 --- a/.m2/repository/com/google/guava/guava-parent/32.1.3-jre/guava-parent-32.1.3-jre.pom +++ /dev/null @@ -1,493 +0,0 @@ - - - - 4.0.0 - com.google.guava - guava-parent - 32.1.3-jre - pom - Guava Maven Parent - Parent for guava artifacts - https://github.com/google/guava - - - %regex[.*.class] - 1.1.3 - 3.0.2 - 3.37.0 - 2.21.1 - 2.8 - 3.5.0 - 9+181-r4173-1 - - - 2023-10-10T20:34:33Z - UTF-8 - - release - standard-jvm - jre - 32.1.3-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 - 3.3.0 - - - attach-sources - verify - - jar-no-fork - - - - - - 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 - ${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 - - - - - 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/.m2/repository/com/google/guava/guava-parent/32.1.3-jre/guava-parent-32.1.3-jre.pom.sha1 b/.m2/repository/com/google/guava/guava-parent/32.1.3-jre/guava-parent-32.1.3-jre.pom.sha1 deleted file mode 100644 index caeace8..0000000 --- a/.m2/repository/com/google/guava/guava-parent/32.1.3-jre/guava-parent-32.1.3-jre.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -25e3a63dea904b6b1461cb6cbcf7e31bd211714e \ No newline at end of file diff --git a/.m2/repository/com/google/guava/guava/29.0-android/_remote.repositories b/.m2/repository/com/google/guava/guava/29.0-android/_remote.repositories deleted file mode 100644 index bd245c5..0000000 --- a/.m2/repository/com/google/guava/guava/29.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. -#Thu Apr 02 20:37:51 UTC 2026 -guava-29.0-android.pom>central= diff --git a/.m2/repository/com/google/guava/guava/29.0-android/guava-29.0-android.pom b/.m2/repository/com/google/guava/guava/29.0-android/guava-29.0-android.pom deleted file mode 100644 index aae1ad4..0000000 --- a/.m2/repository/com/google/guava/guava/29.0-android/guava-29.0-android.pom +++ /dev/null @@ -1,252 +0,0 @@ - - - 4.0.0 - - com.google.guava - guava-parent - 29.0-android - - 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-compat-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/.m2/repository/com/google/guava/guava/29.0-android/guava-29.0-android.pom.sha1 b/.m2/repository/com/google/guava/guava/29.0-android/guava-29.0-android.pom.sha1 deleted file mode 100644 index f7a9429..0000000 --- a/.m2/repository/com/google/guava/guava/29.0-android/guava-29.0-android.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -23a93529efc4a07bd2a7f78df5bf3ddc2328e64a \ No newline at end of file diff --git a/.m2/repository/com/google/guava/guava/30.1.1-android/_remote.repositories b/.m2/repository/com/google/guava/guava/30.1.1-android/_remote.repositories deleted file mode 100644 index ff68f7f..0000000 --- a/.m2/repository/com/google/guava/guava/30.1.1-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. -#Thu Apr 02 20:37:50 UTC 2026 -guava-30.1.1-android.pom>central= diff --git a/.m2/repository/com/google/guava/guava/30.1.1-android/guava-30.1.1-android.pom b/.m2/repository/com/google/guava/guava/30.1.1-android/guava-30.1.1-android.pom deleted file mode 100644 index bc8c895..0000000 --- a/.m2/repository/com/google/guava/guava/30.1.1-android/guava-30.1.1-android.pom +++ /dev/null @@ -1,288 +0,0 @@ - - - 4.0.0 - - com.google.guava - guava-parent - 30.1.1-android - - guava - bundle - Guava: Google Core Libraries for Java - - 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-compat-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 - - - - default-compile - compile - - compile - - - - **/Java8Usage.java - - - 8 - 8 - - - - main-compile - compile - - compile - - - - **/Java8Usage.java - - - - - - - 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/.m2/repository/com/google/guava/guava/30.1.1-android/guava-30.1.1-android.pom.sha1 b/.m2/repository/com/google/guava/guava/30.1.1-android/guava-30.1.1-android.pom.sha1 deleted file mode 100644 index 415d740..0000000 --- a/.m2/repository/com/google/guava/guava/30.1.1-android/guava-30.1.1-android.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -34ff41652a00ad8949b211d60d2573f857330678 \ No newline at end of file diff --git a/.m2/repository/com/google/guava/guava/32.0.0-android/_remote.repositories b/.m2/repository/com/google/guava/guava/32.0.0-android/_remote.repositories deleted file mode 100644 index 4a0ee20..0000000 --- a/.m2/repository/com/google/guava/guava/32.0.0-android/_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. -#Thu Apr 02 20:38:35 UTC 2026 -guava-32.0.0-android.jar>central= -guava-32.0.0-android.pom>central= diff --git a/.m2/repository/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.jar b/.m2/repository/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.jar deleted file mode 100644 index 07a041d..0000000 Binary files a/.m2/repository/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.jar and /dev/null differ diff --git a/.m2/repository/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.jar.sha1 b/.m2/repository/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.jar.sha1 deleted file mode 100644 index 3bbb997..0000000 --- a/.m2/repository/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -33e32530743192664d79543a4f40576930d23d45 \ No newline at end of file diff --git a/.m2/repository/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.pom b/.m2/repository/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.pom deleted file mode 100644 index 5fc67e8..0000000 --- a/.m2/repository/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.pom +++ /dev/null @@ -1,263 +0,0 @@ - - - 4.0.0 - - com.google.guava - guava-parent - 32.0.0-android - - 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/ - - - - - 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/.m2/repository/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.pom.sha1 b/.m2/repository/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.pom.sha1 deleted file mode 100644 index c9ec6d2..0000000 --- a/.m2/repository/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -46db36b142e8e872d21253c1b5646cd202ebd31c \ No newline at end of file diff --git a/.m2/repository/com/google/guava/guava/32.1.3-jre/_remote.repositories b/.m2/repository/com/google/guava/guava/32.1.3-jre/_remote.repositories deleted file mode 100644 index 0ece926..0000000 --- a/.m2/repository/com/google/guava/guava/32.1.3-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. -#Thu Apr 02 20:38:03 UTC 2026 -guava-32.1.3-jre.pom>central= diff --git a/.m2/repository/com/google/guava/guava/32.1.3-jre/guava-32.1.3-jre.pom b/.m2/repository/com/google/guava/guava/32.1.3-jre/guava-32.1.3-jre.pom deleted file mode 100644 index d534235..0000000 --- a/.m2/repository/com/google/guava/guava/32.1.3-jre/guava-32.1.3-jre.pom +++ /dev/null @@ -1,309 +0,0 @@ - - - - 4.0.0 - - com.google.guava - guava-parent - 32.1.3-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/.m2/repository/com/google/guava/guava/32.1.3-jre/guava-32.1.3-jre.pom.sha1 b/.m2/repository/com/google/guava/guava/32.1.3-jre/guava-32.1.3-jre.pom.sha1 deleted file mode 100644 index 3dd46b6..0000000 --- a/.m2/repository/com/google/guava/guava/32.1.3-jre/guava-32.1.3-jre.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -698deeca13a1dc49e069b8a7e11d8cc2ff6a8cf9 \ No newline at end of file diff --git a/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/_remote.repositories b/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/_remote.repositories deleted file mode 100644 index a8627f2..0000000 --- a/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/_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. -#Thu Apr 02 20:38:35 UTC 2026 -listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar>central= -listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom>central= diff --git a/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar b/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar deleted file mode 100644 index 45832c0..0000000 Binary files a/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar and /dev/null differ diff --git a/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar.sha1 b/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar.sha1 deleted file mode 100644 index 2ba8bcd..0000000 --- a/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b421526c5f297295adef1c886e5246c39d4ac629 \ No newline at end of file diff --git a/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom b/.m2/repository/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 ad3f23e..0000000 --- a/.m2/repository/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/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom.sha1 b/.m2/repository/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 f6a54cf..0000000 --- a/.m2/repository/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/.m2/repository/com/google/http-client/google-http-client-bom/1.43.3/_remote.repositories b/.m2/repository/com/google/http-client/google-http-client-bom/1.43.3/_remote.repositories deleted file mode 100644 index e1de812..0000000 --- a/.m2/repository/com/google/http-client/google-http-client-bom/1.43.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. -#Thu Apr 02 20:37:48 UTC 2026 -google-http-client-bom-1.43.3.pom>central= diff --git a/.m2/repository/com/google/http-client/google-http-client-bom/1.43.3/google-http-client-bom-1.43.3.pom b/.m2/repository/com/google/http-client/google-http-client-bom/1.43.3/google-http-client-bom-1.43.3.pom deleted file mode 100644 index b9c12cd..0000000 --- a/.m2/repository/com/google/http-client/google-http-client-bom/1.43.3/google-http-client-bom-1.43.3.pom +++ /dev/null @@ -1,190 +0,0 @@ - - - 4.0.0 - com.google.http-client - google-http-client-bom - 1.43.3 - pom - - Google HTTP Client Library for Java BOM - https://github.com/googleapis/google-http-java-client/tree/master/google-http-client-bom - - BOM for Google HTTP Client Library for Java - - - - Google LLC - - - - - chingor13 - Jeff Ching - chingor@google.com - Google LLC - - Developer - - - - - - scm:git:https://github.com/googleapis/google-http-java-client.git - scm:git:git@github.com:googleapis/google-http-java-client.git - https://github.com/googleapis/google-http-java-client - - - - - sonatype-nexus-snapshots - https://google.oss.sonatype.org/content/repositories/snapshots - - - sonatype-nexus-staging - https://google.oss.sonatype.org/service/local/staging/deploy/maven2/ - - - github-pages-site - Deployment through GitHub's site deployment plugin - site/google-cloud-bom - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - com.google.http-client - google-http-client - 1.43.3 - - - com.google.http-client - google-http-client-android - 1.43.3 - - - com.google.http-client - google-http-client-apache-v2 - 1.43.3 - - - com.google.http-client - google-http-client-appengine - 1.43.3 - - - com.google.http-client - google-http-client-findbugs - 1.43.3 - - - com.google.http-client - google-http-client-gson - 1.43.3 - - - com.google.http-client - google-http-client-jackson2 - 1.43.3 - - - com.google.http-client - google-http-client-protobuf - 1.43.3 - - - com.google.http-client - google-http-client-test - 1.43.3 - - - com.google.http-client - google-http-client-xml - 1.43.3 - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - sonatype-nexus-staging - https://google.oss.sonatype.org/ - false - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.5.0 - - true - - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - true - - - - com.coveo - fmt-maven-plugin - 2.13 - - true - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - diff --git a/.m2/repository/com/google/http-client/google-http-client-bom/1.43.3/google-http-client-bom-1.43.3.pom.sha1 b/.m2/repository/com/google/http-client/google-http-client-bom/1.43.3/google-http-client-bom-1.43.3.pom.sha1 deleted file mode 100644 index 68b7d9a..0000000 --- a/.m2/repository/com/google/http-client/google-http-client-bom/1.43.3/google-http-client-bom-1.43.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9a17add6a76b5a09d9ad9f9b80f70abcdd9984b1 \ No newline at end of file diff --git a/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/_remote.repositories b/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/_remote.repositories deleted file mode 100644 index f7bad74..0000000 --- a/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -google-http-client-gson-1.43.3.jar>central= -google-http-client-gson-1.43.3.pom>central= diff --git a/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.jar b/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.jar deleted file mode 100644 index 98e30ed..0000000 Binary files a/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.jar and /dev/null differ diff --git a/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.jar.sha1 b/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.jar.sha1 deleted file mode 100644 index 43f4fe4..0000000 --- a/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -252e267acf720ef6333488740a696a1d5e204639 \ No newline at end of file diff --git a/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.pom b/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.pom deleted file mode 100644 index feb3d87..0000000 --- a/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.pom +++ /dev/null @@ -1,85 +0,0 @@ - - 4.0.0 - - com.google.http-client - google-http-client-parent - 1.43.3 - ../pom.xml - - google-http-client-gson - 1.43.3 - GSON extensions to the Google HTTP Client Library for Java. - - - - - maven-javadoc-plugin - - - http://download.oracle.com/javase/7/docs/api/ - https://static.javadoc.io/com.google.code.gson/gson/${project.gson.version} - - ${project.name} ${project.version} - ${project.artifactId} ${project.version} - - - - maven-source-plugin - - - source-jar - compile - - jar - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-test-source - generate-test-sources - - add-test-source - - - - target/generated-test-sources - - - - - - - maven-jar-plugin - - - - com.google.api.client.json.gson - - - - - - - - - com.google.http-client - google-http-client - - - com.google.http-client - google-http-client-test - test - - - com.google.code.gson - gson - - - diff --git a/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.pom.sha1 b/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.pom.sha1 deleted file mode 100644 index 53be18e..0000000 --- a/.m2/repository/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5d280882895a495f9467d1b8a3cab30c76b08009 \ No newline at end of file diff --git a/.m2/repository/com/google/http-client/google-http-client-parent/1.43.3/_remote.repositories b/.m2/repository/com/google/http-client/google-http-client-parent/1.43.3/_remote.repositories deleted file mode 100644 index 9061980..0000000 --- a/.m2/repository/com/google/http-client/google-http-client-parent/1.43.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. -#Thu Apr 02 20:37:48 UTC 2026 -google-http-client-parent-1.43.3.pom>central= diff --git a/.m2/repository/com/google/http-client/google-http-client-parent/1.43.3/google-http-client-parent-1.43.3.pom b/.m2/repository/com/google/http-client/google-http-client-parent/1.43.3/google-http-client-parent-1.43.3.pom deleted file mode 100644 index 341cf41..0000000 --- a/.m2/repository/com/google/http-client/google-http-client-parent/1.43.3/google-http-client-parent-1.43.3.pom +++ /dev/null @@ -1,739 +0,0 @@ - - - 4.0.0 - com.google.http-client - google-http-client-parent - 1.43.3 - pom - Parent for the Google HTTP Client Library for Java - Google HTTP Client Library for Java - - https://github.com/googleapis/google-http-java-client - - - GitHub - https://github.com/googleapis/google-http-java-client/issues - - - 2011 - - - scm:git:https://github.com/googleapis/google-http-java-client.git - scm:git:git@github.com:googleapis/google-http-java-client.git - https://github.com/googleapis/google-http-java-client - - - - Google - https://www.google.com/ - - - - - chingor - Jeff Ching - chingor@google.com - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - google-http-client - google-http-client-assembly - google-http-client-appengine - google-http-client-android - google-http-client-apache-v2 - google-http-client-protobuf - google-http-client-gson - google-http-client-jackson2 - google-http-client-xml - - google-http-client-findbugs - google-http-client-test - samples/dailymotion-simple-cmdline-sample - - - google-http-client-bom - - - - - - never - - - false - - central - Central Repository - https://repo.maven.apache.org/maven2 - - - - - - - - org.codehaus.jackson - jackson-core-asl - ${project.jackson-core-asl.version} - - - com.fasterxml.jackson.core - jackson-core - ${project.jackson-core2.version} - - - com.google.code.gson - gson - ${project.gson.version} - - - junit - junit - 4.13.2 - - - com.google.truth - truth - 1.1.3 - test - - - com.google.errorprone - error_prone_annotations - 2.18.0 - - - com.google.appengine - appengine-api-1.0-sdk - ${project.appengine.version} - - - com.google.appengine - appengine-testing - ${project.appengine.version} - - - com.google.appengine - appengine-api-stubs - ${project.appengine.version} - - - xpp3 - xpp3 - ${project.xpp3.version} - - - org.apache.httpcomponents - httpclient - ${project.httpclient.version} - - - org.apache.httpcomponents - httpcore - ${project.httpcore.version} - - - com.google.guava - guava - ${project.guava.version} - - - com.google.guava - guava-testlib - ${project.guava.version} - - - com.google.code.findbugs - jsr305 - ${project.jsr305.version} - - - com.google.protobuf - protobuf-java - ${project.protobuf-java.version} - - - com.google.http-client - google-http-client - ${project.http-client.version} - - - com.google.http-client - google-http-client-apache-v2 - ${project.http-client.version} - - - com.google.http-client - google-http-client-appengine - ${project.http-client.version} - - - com.google.http-client - google-http-client-android - ${project.http-client.version} - - - com.google.http-client - google-http-client-protobuf - ${project.version} - - - com.google.http-client - google-http-client-gson - ${project.http-client.version} - - - com.google.http-client - google-http-client-jackson2 - ${project.http-client.version} - - - com.google.http-client - google-http-client-xml - ${project.http-client.version} - - - com.google.http-client - google-http-client-findbugs - ${project.http-client.version} - - - com.google.http-client - google-http-client-test - ${project.http-client.version} - - - com.google.j2objc - j2objc-annotations - 2.8 - - - io.opencensus - opencensus-api - ${project.opencensus.version} - - - io.opencensus - opencensus-contrib-http-util - ${project.opencensus.version} - - - io.opencensus - opencensus-impl - ${project.opencensus.version} - - - io.opencensus - opencensus-testing - ${project.opencensus.version} - - - - - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://google.oss.sonatype.org/ - ${deploy.autorelease} - - - - maven-assembly-plugin - 3.5.0 - - - maven-compiler-plugin - 3.11.0 - - 1.7 - 1.7 - - - - maven-deploy-plugin - 3.0.0 - - - 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.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - test-jar - - - - - - maven-surefire-plugin - ${project.surefire.version} - - -Xmx1024m - sponge_log - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.2.0 - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - - org.codehaus.mojo - clirr-maven-plugin - 2.8 - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.22 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.4.1 - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.4.0 - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.1.0 - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.1.0 - - enforce-maven - - enforce - - - - - [3.5.2,4.0.0) - - - [1.7,) - - - - - - - - - maven-javadoc-plugin - - none - 7 - - - - aggregate - - aggregate - - site - - - https://download.oracle.com/javase/7/docs/api/ - https://cloud.google.com/appengine/docs/java/javadoc - https://static.javadoc.io/doc/com.google.code.gson/gson/${project.gson.version} - https://google.github.io/guava/releases/${project.guava.version}/api/docs/ - - Google HTTP Client Library for Java ${project.version} - com.google.api.client.findbugs:com.google.api.client.test.:com.google.api.services - ${basedir}/overview.html - - - google-http-client - com.google.api.client.http*:com.google.api.client.json*:com.google.api.client.testing*:com.google.api.client.util* - - - google-http-client-appengine - com.google.api.client.extensions.appengine* - - - google-http-client-android - com.google.api.client.extensions.android* - - - google-http-client-protobuf - com.google.api.client.protobuf*:com.google.api.client.http.protobuf* - - - google-http-client-gson - com.google.api.client.json.gson* - - - google-http-client-jackson2 - com.google.api.client.json.jackson2.* - - - google-http-client-xml - com.google.api.client.xml*:com.google.api.client.http.xml* - - - google-http-java-client ${project.version} - - - - - - org.codehaus.mojo - findbugs-maven-plugin - - ${basedir}/../findbugs-exclude.xml - - - com.google.http-client - google-http-client-findbugs - ${project.http-client.version} - - - - - - org.codehaus.mojo - clirr-maven-plugin - - clirr-ignored-differences.xml - true - - - - - check - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - java7 - - check - - - - org.codehaus.mojo.signature - java17 - 1.0 - - - - - android - - check - - - - net.sf.androidscents.signature - android-api-level-19 - 4.4.2_r4 - - - - - - - - maven-project-info-reports-plugin - 3.4.1 - - - - dependencies - - package - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - - - com.coveo - fmt-maven-plugin - 2.9 - - - true - - - - com.google.googlejavaformat - google-java-format - 1.7 - - - - - - - - - 1.43.3 - 2.0.12 - UTF-8 - 3.0.2 - 2.10.1 - 2.14.2 - 3.21.12 - 30.1.1-android - 1.1.4c - 4.5.14 - 4.4.16 - 0.31.1 - .. - 3.0.0-M7 - false - - - - - Windows - - - windows - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - true - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - - - root-directory - - - checkstyle-suppressions.xml - - - - . - - - - - - checkstyle-tests - - [1.8,) - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - com.puppycrawl.tools - checkstyle - 9.3 - - - - checkstyle.xml - true - checkstyle-suppressions.xml - - - - - check - - - - - - - - - - docFX - - - - docFX - - - - - java-docfx-doclet-1.9.0 - ${project.build.directory}/docfx-yml - ${project.artifactId} - - com\.google\.api\.client\.findbugs:com\.google\.api\.client\.test:com\.google\.api\.services - 8 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.5.0 - - com.microsoft.doclet.DocFxDoclet - false - - ${env.KOKORO_GFILE_DIR}/${docletName}.jar - - -outputpath ${outputpath} - -projectname ${projectname} - -excludeclasses ${excludeclasses}: - -excludepackages ${excludePackages}: - - none - protected - true - ${source} - - ${sourceFileExclude} - - - - - - - - diff --git a/.m2/repository/com/google/http-client/google-http-client-parent/1.43.3/google-http-client-parent-1.43.3.pom.sha1 b/.m2/repository/com/google/http-client/google-http-client-parent/1.43.3/google-http-client-parent-1.43.3.pom.sha1 deleted file mode 100644 index e5a6282..0000000 --- a/.m2/repository/com/google/http-client/google-http-client-parent/1.43.3/google-http-client-parent-1.43.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -eaf18e64846dee93786b3fee92ae7ea416e998ec \ No newline at end of file diff --git a/.m2/repository/com/google/http-client/google-http-client/1.43.3/_remote.repositories b/.m2/repository/com/google/http-client/google-http-client/1.43.3/_remote.repositories deleted file mode 100644 index 124f9ce..0000000 --- a/.m2/repository/com/google/http-client/google-http-client/1.43.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -google-http-client-1.43.3.jar>central= -google-http-client-1.43.3.pom>central= diff --git a/.m2/repository/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.jar b/.m2/repository/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.jar deleted file mode 100644 index c827380..0000000 Binary files a/.m2/repository/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.jar and /dev/null differ diff --git a/.m2/repository/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.jar.sha1 b/.m2/repository/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.jar.sha1 deleted file mode 100644 index 800467d..0000000 --- a/.m2/repository/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a758b82e55a2f5f681e289c5ed384d3dbda6f3cd \ No newline at end of file diff --git a/.m2/repository/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.pom b/.m2/repository/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.pom deleted file mode 100644 index 885f516..0000000 --- a/.m2/repository/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.pom +++ /dev/null @@ -1,185 +0,0 @@ - - 4.0.0 - - com.google.http-client - google-http-client-parent - 1.43.3 - ../pom.xml - - google-http-client - 1.43.3 - Google HTTP Client Library for Java - - Google HTTP Client Library for Java. Functionality that works on all supported Java platforms, - including Java 7 (or higher) desktop (SE) and web (EE), Android, and Google App Engine. - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 3.4.0 - - io.opencensus:opencensus-impl - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - android - - check - - - - java.nio.file.* - - - - - - - - - - org.apache.maven.plugins - maven-resources-plugin - - - - resources - - - - - - maven-javadoc-plugin - - - http://download.oracle.com/javase/7/docs/api/ - https://google.github.io/guava/releases/${project.guava.version}/api/docs/ - - ${project.name} ${project.version} - ${project.artifactId} ${project.version} - - - - maven-source-plugin - - - source-jar - compile - - jar - - - - - - maven-jar-plugin - - - - true - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - com.google.api.client - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.8 - - - bundle-manifest - process-classes - - manifest - - - - - - javax.annotation;resolution:=optional,* - - - - - - - - src/main/resources - true - - - - - - org.apache.httpcomponents - httpclient - - - org.apache.httpcomponents - httpcore - - - com.google.code.findbugs - jsr305 - - - com.google.errorprone - error_prone_annotations - - - com.google.guava - guava - - - com.google.j2objc - j2objc-annotations - - - io.opencensus - opencensus-api - - - io.opencensus - opencensus-contrib-http-util - - - - com.google.guava - guava-testlib - test - - - junit - junit - test - - - com.google.truth - truth - test - - - io.opencensus - opencensus-impl - test - - - io.opencensus - opencensus-testing - test - - - diff --git a/.m2/repository/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.pom.sha1 b/.m2/repository/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.pom.sha1 deleted file mode 100644 index 96e607d..0000000 --- a/.m2/repository/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -699ea9c770dc81051de2819a70fb041219caaa3f \ No newline at end of file diff --git a/.m2/repository/com/google/j2objc/j2objc-annotations/1.3/_remote.repositories b/.m2/repository/com/google/j2objc/j2objc-annotations/1.3/_remote.repositories deleted file mode 100644 index 500f4a6..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:50 UTC 2026 -j2objc-annotations-1.3.pom>central= diff --git a/.m2/repository/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom b/.m2/repository/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom deleted file mode 100644 index d32414a..0000000 --- a/.m2/repository/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/.m2/repository/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom.sha1 b/.m2/repository/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom.sha1 deleted file mode 100644 index ca9eed8..0000000 --- a/.m2/repository/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/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/_remote.repositories b/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/_remote.repositories deleted file mode 100644 index 47a3443..0000000 --- a/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/_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. -#Thu Apr 02 20:38:35 UTC 2026 -j2objc-annotations-2.8.jar>central= -j2objc-annotations-2.8.pom>central= diff --git a/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar b/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar deleted file mode 100644 index 3595c4f..0000000 Binary files a/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar and /dev/null differ diff --git a/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar.sha1 b/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar.sha1 deleted file mode 100644 index dd70876..0000000 --- a/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c85270e307e7b822f1086b93689124b89768e273 \ No newline at end of file diff --git a/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom b/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom deleted file mode 100644 index 80d656d..0000000 --- a/.m2/repository/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/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom.sha1 b/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom.sha1 deleted file mode 100644 index 50eacf6..0000000 --- a/.m2/repository/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/.m2/repository/com/jayway/jsonpath/json-path/2.9.0/_remote.repositories b/.m2/repository/com/jayway/jsonpath/json-path/2.9.0/_remote.repositories deleted file mode 100644 index 217df73..0000000 --- a/.m2/repository/com/jayway/jsonpath/json-path/2.9.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. -#Thu Apr 02 20:38:35 UTC 2026 -json-path-2.9.0.jar>central= -json-path-2.9.0.pom>central= diff --git a/.m2/repository/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.jar b/.m2/repository/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.jar deleted file mode 100644 index f731408..0000000 Binary files a/.m2/repository/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.jar and /dev/null differ diff --git a/.m2/repository/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.jar.sha1 b/.m2/repository/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.jar.sha1 deleted file mode 100644 index f87da51..0000000 --- a/.m2/repository/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -37fe2217f577b0b68b18e62c4d17a8858ecf9b69 \ No newline at end of file diff --git a/.m2/repository/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom b/.m2/repository/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom deleted file mode 100644 index ed8e872..0000000 --- a/.m2/repository/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/.m2/repository/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom.sha1 b/.m2/repository/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom.sha1 deleted file mode 100644 index 1ed4b42..0000000 --- a/.m2/repository/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/.m2/repository/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/_remote.repositories b/.m2/repository/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/_remote.repositories deleted file mode 100644 index 51ee833..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:12 UTC 2026 -ojdbc-bom-21.9.0.0.pom>central= diff --git a/.m2/repository/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom b/.m2/repository/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom deleted file mode 100644 index 235280c..0000000 --- a/.m2/repository/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/.m2/repository/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.sha1 b/.m2/repository/com/oracle/database/jdbc/ojdbc-bom/21.9.0.0/ojdbc-bom-21.9.0.0.pom.sha1 deleted file mode 100644 index eebccc0..0000000 --- a/.m2/repository/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/.m2/repository/com/querydsl/querydsl-bom/5.0.0/_remote.repositories b/.m2/repository/com/querydsl/querydsl-bom/5.0.0/_remote.repositories deleted file mode 100644 index ad13859..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:12 UTC 2026 -querydsl-bom-5.0.0.pom>central= diff --git a/.m2/repository/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom b/.m2/repository/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom deleted file mode 100644 index 14db260..0000000 --- a/.m2/repository/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/.m2/repository/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.sha1 b/.m2/repository/com/querydsl/querydsl-bom/5.0.0/querydsl-bom-5.0.0.pom.sha1 deleted file mode 100644 index 588f25f..0000000 --- a/.m2/repository/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/.m2/repository/com/querydsl/querydsl-bom/5.1.0/_remote.repositories b/.m2/repository/com/querydsl/querydsl-bom/5.1.0/_remote.repositories deleted file mode 100644 index 8c22038..0000000 --- a/.m2/repository/com/querydsl/querydsl-bom/5.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. -#Thu Apr 02 20:37:38 UTC 2026 -querydsl-bom-5.1.0.pom>central= diff --git a/.m2/repository/com/querydsl/querydsl-bom/5.1.0/querydsl-bom-5.1.0.pom b/.m2/repository/com/querydsl/querydsl-bom/5.1.0/querydsl-bom-5.1.0.pom deleted file mode 100644 index 82cf4f3..0000000 --- a/.m2/repository/com/querydsl/querydsl-bom/5.1.0/querydsl-bom-5.1.0.pom +++ /dev/null @@ -1,217 +0,0 @@ - - - 4.0.0 - com.querydsl - querydsl-bom - 5.1.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} - 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/.m2/repository/com/querydsl/querydsl-bom/5.1.0/querydsl-bom-5.1.0.pom.sha1 b/.m2/repository/com/querydsl/querydsl-bom/5.1.0/querydsl-bom-5.1.0.pom.sha1 deleted file mode 100644 index 2f5308a..0000000 --- a/.m2/repository/com/querydsl/querydsl-bom/5.1.0/querydsl-bom-5.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3a3cf55132761ec4bf5381f0b458bfc996d70752 \ No newline at end of file diff --git a/.m2/repository/com/rometools/rome-parent/2.1.0/_remote.repositories b/.m2/repository/com/rometools/rome-parent/2.1.0/_remote.repositories deleted file mode 100644 index 5d8a35a..0000000 --- a/.m2/repository/com/rometools/rome-parent/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. -#Thu Apr 02 20:37:54 UTC 2026 -rome-parent-2.1.0.pom>central= diff --git a/.m2/repository/com/rometools/rome-parent/2.1.0/rome-parent-2.1.0.pom b/.m2/repository/com/rometools/rome-parent/2.1.0/rome-parent-2.1.0.pom deleted file mode 100644 index 701f331..0000000 --- a/.m2/repository/com/rometools/rome-parent/2.1.0/rome-parent-2.1.0.pom +++ /dev/null @@ -1,274 +0,0 @@ - - - 4.0.0 - com.rometools - rome-parent - 2.1.0 - pom - rome-parent - Parent for all ROME projects - http://rometools.com - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - Patrick Gotthard - - Project lead - - - - David M. Johnson - - Contributor - - - - - rome - rome-modules - rome-opml - rome-utils - - - scm:git:https://github.com/rometools/rome.git - scm:git:https://github.com/rometools/rome.git - https://github.com/rometools/rome - - - UTF-8 - 0.0.0-SNAPSHOT - 8 - UTF-8 - - - - - com.rometools - rome - 2.1.0 - - - com.rometools - rome-modules - 2.1.0 - - - com.rometools - rome-opml - 2.1.0 - - - com.rometools - rome-utils - 2.1.0 - - - org.jdom - jdom2 - 2.0.6.1 - - - org.slf4j - slf4j-api - 2.0.6 - - - ch.qos.logback - logback-classic - 1.3.5 - - - junit - junit - 4.13.2 - - - xmlunit - xmlunit - 1.6 - - - org.hamcrest - hamcrest-library - 2.2 - - - org.assertj - assertj-core - 3.24.2 - - - com.github.tomakehurst - wiremock - 2.27.2 - - - - - - - - maven-compiler-plugin - 3.11.0 - - ${java.version} - ${java.version} - - - - maven-dependency-plugin - 3.5.0 - - - maven-jar-plugin - 3.3.0 - - - maven-deploy-plugin - 3.1.0 - - true - - - - maven-scm-plugin - 1.13.0 - - ${project.version} - - - - maven-scm-publish-plugin - 3.1.0 - - - org.apache.felix - maven-bundle-plugin - 5.1.8 - - - bundle - package - - bundle - - - - - - maven-failsafe-plugin - 2.22.2 - - - - integration-test - verify - - - - - - - - - org.codehaus.mojo - flatten-maven-plugin - 1.3.0 - - - flatten - process-resources - - flatten - - - - flatten.clean - clean - - clean - - - - - true - resolveCiFriendliesOnly - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.8 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - release - - - - maven-source-plugin - 3.2.1 - - - attach-sources - - jar-no-fork - - - - - - maven-javadoc-plugin - 3.5.0 - - - attach-javadocs - - jar - - - - - ${java.version} - none - - - - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - diff --git a/.m2/repository/com/rometools/rome-parent/2.1.0/rome-parent-2.1.0.pom.sha1 b/.m2/repository/com/rometools/rome-parent/2.1.0/rome-parent-2.1.0.pom.sha1 deleted file mode 100644 index e697ec3..0000000 --- a/.m2/repository/com/rometools/rome-parent/2.1.0/rome-parent-2.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -946448aad283a12ce629189906cc249e1ad099e0 \ No newline at end of file diff --git a/.m2/repository/com/rometools/rome-utils/2.1.0/_remote.repositories b/.m2/repository/com/rometools/rome-utils/2.1.0/_remote.repositories deleted file mode 100644 index 29e237e..0000000 --- a/.m2/repository/com/rometools/rome-utils/2.1.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. -#Thu Apr 02 20:38:35 UTC 2026 -rome-utils-2.1.0.jar>central= -rome-utils-2.1.0.pom>central= diff --git a/.m2/repository/com/rometools/rome-utils/2.1.0/rome-utils-2.1.0.jar b/.m2/repository/com/rometools/rome-utils/2.1.0/rome-utils-2.1.0.jar deleted file mode 100644 index 298bcf7..0000000 Binary files a/.m2/repository/com/rometools/rome-utils/2.1.0/rome-utils-2.1.0.jar and /dev/null differ diff --git a/.m2/repository/com/rometools/rome-utils/2.1.0/rome-utils-2.1.0.jar.sha1 b/.m2/repository/com/rometools/rome-utils/2.1.0/rome-utils-2.1.0.jar.sha1 deleted file mode 100644 index dde1a38..0000000 --- a/.m2/repository/com/rometools/rome-utils/2.1.0/rome-utils-2.1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -970519368c1406108191ac19e6bf7939a9018df1 \ No newline at end of file diff --git a/.m2/repository/com/rometools/rome-utils/2.1.0/rome-utils-2.1.0.pom b/.m2/repository/com/rometools/rome-utils/2.1.0/rome-utils-2.1.0.pom deleted file mode 100644 index 8ad64e9..0000000 --- a/.m2/repository/com/rometools/rome-utils/2.1.0/rome-utils-2.1.0.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - 4.0.0 - - com.rometools - rome-parent - 2.1.0 - - com.rometools - rome-utils - 2.1.0 - rome-utils - Utility classes for ROME projects - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - org.slf4j - slf4j-api - - - junit - junit - test - - - org.hamcrest - hamcrest-library - test - - - org.assertj - assertj-core - test - - - - - - maven-jar-plugin - - - - com.rometools.rome.utils - - - - - - - diff --git a/.m2/repository/com/rometools/rome-utils/2.1.0/rome-utils-2.1.0.pom.sha1 b/.m2/repository/com/rometools/rome-utils/2.1.0/rome-utils-2.1.0.pom.sha1 deleted file mode 100644 index 7b9ae8a..0000000 --- a/.m2/repository/com/rometools/rome-utils/2.1.0/rome-utils-2.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -847b310f6ab05d245d65550ec22365aaece04f73 \ No newline at end of file diff --git a/.m2/repository/com/rometools/rome/2.1.0/_remote.repositories b/.m2/repository/com/rometools/rome/2.1.0/_remote.repositories deleted file mode 100644 index d9999f0..0000000 --- a/.m2/repository/com/rometools/rome/2.1.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. -#Thu Apr 02 20:38:35 UTC 2026 -rome-2.1.0.jar>central= -rome-2.1.0.pom>central= diff --git a/.m2/repository/com/rometools/rome/2.1.0/rome-2.1.0.jar b/.m2/repository/com/rometools/rome/2.1.0/rome-2.1.0.jar deleted file mode 100644 index 2124153..0000000 Binary files a/.m2/repository/com/rometools/rome/2.1.0/rome-2.1.0.jar and /dev/null differ diff --git a/.m2/repository/com/rometools/rome/2.1.0/rome-2.1.0.jar.sha1 b/.m2/repository/com/rometools/rome/2.1.0/rome-2.1.0.jar.sha1 deleted file mode 100644 index 69ee705..0000000 --- a/.m2/repository/com/rometools/rome/2.1.0/rome-2.1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -be1642a0d29daef84db51344151877161e22b07e \ No newline at end of file diff --git a/.m2/repository/com/rometools/rome/2.1.0/rome-2.1.0.pom b/.m2/repository/com/rometools/rome/2.1.0/rome-2.1.0.pom deleted file mode 100644 index 78c1201..0000000 --- a/.m2/repository/com/rometools/rome/2.1.0/rome-2.1.0.pom +++ /dev/null @@ -1,106 +0,0 @@ - - - 4.0.0 - - com.rometools - rome-parent - 2.1.0 - - com.rometools - rome - 2.1.0 - rome - All Roads Lead to ROME. ROME is a set of Atom/RSS Java utilities that make it - easy to work in Java with most syndication formats. Today it accepts all flavors of RSS - (0.90, 0.91, 0.92, 0.93, 0.94, 1.0 and 2.0), Atom 0.3 and Atom 1.0 feeds. Rome includes - a set of parsers and generators for the various flavors of feeds, as well as converters - to convert from one format to another. The parsers can give you back Java objects that - are either specific for the format you want to work with, or a generic normalized - SyndFeed object that lets you work on with the data without bothering about the - underlying format. - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - com.rometools - rome-utils - - - org.jdom - jdom2 - - - org.slf4j - slf4j-api - - - ch.qos.logback - logback-classic - test - - - junit - junit - test - - - org.assertj - assertj-core - test - - - com.github.tomakehurst - wiremock - test - - - - - - maven-jar-plugin - - - - com.rometools.rome - - - true - true - - - - - - org.apache.felix - maven-bundle-plugin - - - com.rometools.rome.feed, - com.rometools.rome.feed.atom, - com.rometools.rome.feed.impl, - com.rometools.rome.feed.module, - com.rometools.rome.feed.rss, - com.rometools.rome.feed.synd, - com.rometools.rome.io, - org.jdom2, - org.jdom2.filter, - org.jdom2.input, - org.jdom2.input.sax, - org.jdom2.output, - org.slf4j, - org.w3c.dom, - org.xml.sax - <_exportcontents>com.rometools.utils - rome-utils - - - - - - diff --git a/.m2/repository/com/rometools/rome/2.1.0/rome-2.1.0.pom.sha1 b/.m2/repository/com/rometools/rome/2.1.0/rome-2.1.0.pom.sha1 deleted file mode 100644 index e21b7df..0000000 --- a/.m2/repository/com/rometools/rome/2.1.0/rome-2.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -413cb631a54c988bafb10c94e169ac11944b793c \ No newline at end of file diff --git a/.m2/repository/com/squareup/okhttp3/okhttp-bom/4.12.0/_remote.repositories b/.m2/repository/com/squareup/okhttp3/okhttp-bom/4.12.0/_remote.repositories deleted file mode 100644 index b7ab80c..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:12 UTC 2026 -okhttp-bom-4.12.0.pom>central= diff --git a/.m2/repository/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom b/.m2/repository/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom deleted file mode 100644 index de4d545..0000000 --- a/.m2/repository/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/.m2/repository/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.sha1 b/.m2/repository/com/squareup/okhttp3/okhttp-bom/4.12.0/okhttp-bom-4.12.0.pom.sha1 deleted file mode 100644 index 95a43da..0000000 --- a/.m2/repository/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/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/_remote.repositories b/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/_remote.repositories deleted file mode 100644 index a962548..0000000 --- a/.m2/repository/com/squareup/okhttp3/okhttp/4.12.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. -#Thu Apr 02 20:38:35 UTC 2026 -okhttp-4.12.0.jar>central= -okhttp-4.12.0.pom>central= diff --git a/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar b/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar deleted file mode 100644 index faf3fa8..0000000 Binary files a/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar and /dev/null differ diff --git a/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar.sha1 b/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar.sha1 deleted file mode 100644 index 741c78a..0000000 --- a/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2f4525d4a200e97e1b87449c2cd9bd2e25b7e8cd \ No newline at end of file diff --git a/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.pom b/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.pom deleted file mode 100644 index 2f5f558..0000000 --- a/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.pom +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - 4.0.0 - com.squareup.okhttp3 - okhttp - 4.12.0 - okhttp - 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.okio - okio - 3.6.0 - compile - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 1.8.21 - compile - - - diff --git a/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.pom.sha1 b/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.pom.sha1 deleted file mode 100644 index f275420..0000000 --- a/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6354764c8008d477d21735a4906ba035fa0d5556 \ No newline at end of file diff --git a/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/_remote.repositories b/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/_remote.repositories deleted file mode 100644 index fb26de0..0000000 --- a/.m2/repository/com/squareup/okio/okio-jvm/3.6.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. -#Thu Apr 02 20:38:35 UTC 2026 -okio-jvm-3.6.0.jar>central= -okio-jvm-3.6.0.pom>central= diff --git a/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.jar b/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.jar deleted file mode 100644 index ec8ad90..0000000 Binary files a/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.jar and /dev/null differ diff --git a/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.jar.sha1 b/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.jar.sha1 deleted file mode 100644 index 408d063..0000000 --- a/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5600569133b7bdefe1daf9ec7f4abeb6d13e1786 \ No newline at end of file diff --git a/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.pom b/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.pom deleted file mode 100644 index f1473a1..0000000 --- a/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - 4.0.0 - com.squareup.okio - okio-jvm - 3.6.0 - okio - A modern I/O library for Android, Java, and Kotlin Multiplatform. - https://github.com/square/okio/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - square - Square, Inc. - - - - scm:git:git://github.com/square/okio.git - scm:git:ssh://git@github.com/square/okio.git - https://github.com/square/okio/ - - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 1.9.10 - compile - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.9.10 - compile - - - diff --git a/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.pom.sha1 b/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.pom.sha1 deleted file mode 100644 index 69b3220..0000000 --- a/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3695a53d374b2b7ab8a1b375095f7360da66fb2e \ No newline at end of file diff --git a/.m2/repository/com/squareup/okio/okio/3.6.0/_remote.repositories b/.m2/repository/com/squareup/okio/okio/3.6.0/_remote.repositories deleted file mode 100644 index b953244..0000000 --- a/.m2/repository/com/squareup/okio/okio/3.6.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. -#Thu Apr 02 20:38:35 UTC 2026 -okio-3.6.0.jar>central= -okio-3.6.0.pom>central= diff --git a/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.jar b/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.jar deleted file mode 100644 index f313756..0000000 Binary files a/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.jar and /dev/null differ diff --git a/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.jar.sha1 b/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.jar.sha1 deleted file mode 100644 index 35c540f..0000000 --- a/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8bf9683c80762d7dd47db12b68e99abea2a7ae05 \ No newline at end of file diff --git a/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.pom b/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.pom deleted file mode 100644 index a2311aa..0000000 --- a/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.pom +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - 4.0.0 - com.squareup.okio - okio - 3.6.0 - okio - A modern I/O library for Android, Java, and Kotlin Multiplatform. - https://github.com/square/okio/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - square - Square, Inc. - - - - scm:git:git://github.com/square/okio.git - scm:git:ssh://git@github.com/square/okio.git - https://github.com/square/okio/ - - - - com.squareup.okio - okio-jvm - 3.6.0 - compile - - - diff --git a/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.pom.sha1 b/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.pom.sha1 deleted file mode 100644 index 11147da..0000000 --- a/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -33276ca93e49afe91d541b0c571c9cf6b6ddc32c \ No newline at end of file diff --git a/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/_remote.repositories b/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/_remote.repositories deleted file mode 100644 index 59039b3..0000000 --- a/.m2/repository/com/thoughtworks/qdox/qdox/2.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. -#Thu Apr 02 20:38:43 UTC 2026 -qdox-2.2.0.jar>central= -qdox-2.2.0.pom>central= diff --git a/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/qdox-2.2.0.jar b/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/qdox-2.2.0.jar deleted file mode 100644 index 68f98a8..0000000 Binary files a/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/qdox-2.2.0.jar and /dev/null differ diff --git a/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/qdox-2.2.0.jar.sha1 b/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/qdox-2.2.0.jar.sha1 deleted file mode 100644 index 528e5a1..0000000 --- a/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/qdox-2.2.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -39651eb3ce73d6e506490ea352e1e13eab6b55e8 \ No newline at end of file diff --git a/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/qdox-2.2.0.pom b/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/qdox-2.2.0.pom deleted file mode 100644 index 85603cd..0000000 --- a/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/qdox-2.2.0.pom +++ /dev/null @@ -1,550 +0,0 @@ - - 4.0.0 - - - org.sonatype.oss - oss-parent - 9 - - - QDox - com.thoughtworks.qdox - qdox - 2.2.0 - - https://github.com/paul-hammant/qdox - - QDox is a high speed, small footprint parser for extracting class/interface/method definitions from source files - complete with JavaDoc @tags. It is designed to be used by active code generators or documentation tools. - - 2002 - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - github - https://github.com/paul-hammant/qdox/issues - - - - scm:git:https://github.com/paul-hammant/qdox.git - scm:git:ssh://git@github.com/paul-hammant/qdox.git - https://github.com/paul-hammant/qdox - qdox-2.2.0 - - - - - rfscholte - Robert Scholte - +1 - - project lead - - - - joe - Joe Walnes - - project founder - - - - Aslak Hellesoy - rinkrank - - developer - - - - Paul Hammant - paul - - developer - - - - Mike Williams - mdub - - developer - - - - mauro - Mauro Talevi - - developer - - - - - - - Mike Royle - - - Peter Donald - - - James Strachan - - - Nick Pomfret - - - Chris Stevenson - - - Ben Hogan - - - Laurent Etiemble - - - Shawn Chain - - - Brian Slesinsky - - - James Lee - - - Eric Redmond - - - - - yyyy-MM-dd - UTF-8 - ${maven.build.timestamp} - 500 - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.4.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.13.0 - - - org.apache.maven.plugins - maven-surefire-plugin - 3.5.2 - - false - - - - org.apache.maven.plugins - maven-jar-plugin - 3.4.2 - - - org.apache.maven.plugins - maven-install-plugin - 3.1.3 - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.3 - - - org.apache.maven.plugins - maven-site-plugin - 3.21.0 - - ${basedir}/src/site/templates/site.vm - - - - org.apache.maven.plugins - maven-release-plugin - 3.1.1 - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.5.0 - - - enforce-maven - - enforce - - - - - 3.0 - - - 11 - - - - - - enforce-byaccj - - enforce - - - - - qdox.byaccj.executable - You can't run the build as BYacc/J is not available for ${os.name} (${os.arch})! - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - default-compile - - 8 - - module-info.java - - - - - module-descriptor - - compile - - - 11 - - module-info.java - - - - - - - de.jflex - jflex-maven-plugin - 1.9.1 - - - - generate - - - - - ${project.build.directory}/generated-sources/parser - - ${basedir}/src/grammar/lexer.flex - ${basedir}/src/grammar/commentlexer.flex - - - - - org.codehaus.mojo - exec-maven-plugin - 3.5.0 - - - javacommentparser - generate-sources - - exec - - - ${qdox.byaccj.executable} - - -v - -Jnorun - -Jnoconstruct - -Jclass=DefaultJavaCommentParser - -Jpackage=com.thoughtworks.qdox.parser.impl - ${basedir}/src/grammar/commentparser.y - - ${project.build.directory}/generated-sources/parser/com/thoughtworks/qdox/parser/impl - - - - javasourceparser - generate-sources - - exec - - - ${qdox.byaccj.executable} - - -v - -Jnorun - -Jnoconstruct - -Jclass=Parser - -Jimplements=CommentHandler - -Jsemantic=Value - -Jpackage=com.thoughtworks.qdox.parser.impl - -Jstack=${qdox.javaparser.stack} - ${basedir}/src/grammar/parser.y - - ${project.build.directory}/generated-sources/parser/com/thoughtworks/qdox/parser/impl - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - 3.5.2 - - - - integration-test - verify - - - - - - org.apache.maven.plugins - maven-invoker-plugin - 3.8.1 - - ${project.build.directory}/it - verify - ${project.build.directory}/local-repo - - clean - test - - src/it/settings.xml - true - - 8 - 8 - - - - - integration-test - - install - run - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.7.1 - - - project - - gnu - - - - make-assembly - package - - single - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - - - - - org.junit.jupiter - junit-jupiter - 5.11.3 - test - - - org.assertj - assertj-core - 3.26.3 - test - - - org.mockito - mockito-core - 4.11.0 - test - - - - - - linux - - - Linux - i386 - - - - ${basedir}/bootstrap/yacc.linux - - - - linux64 - - - Linux - amd64 - - - - ${basedir}/bootstrap/yacc.linux.x86_64 - - - - solaris - - - SunOS - - - - ${basedir}/bootstrap/yacc.solaris - - - - macosx-i386 - - - Mac - i386 - - - - ${basedir}/bootstrap/yacc.macosx - - - - macosx-powerpc - - - Mac - powerpc - - - - ${basedir}/bootstrap/yacc.macosx - - - - macosx-aarch64 - - - Mac - aarch64 - - - - ${basedir}/bootstrap/yacc.macosx.aarch64 - - - - windows - - - Windows - - - - ${basedir}/bootstrap/yacc.exe - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.8.0 - - - - dependencies - project-team - mailing-list - issue-tracking - license - scm - summary - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.6.0 - - - - jxr - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.7 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.11.1 - - com.thoughtworks.qdox.* - - - - - - javadoc - - - - - - - - diff --git a/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/qdox-2.2.0.pom.sha1 b/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/qdox-2.2.0.pom.sha1 deleted file mode 100644 index 3d25dc9..0000000 --- a/.m2/repository/com/thoughtworks/qdox/qdox/2.2.0/qdox-2.2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5ffffaccce4c5176e48c661483f0dd22726e3cf8 \ No newline at end of file diff --git a/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/_remote.repositories b/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/_remote.repositories deleted file mode 100644 index 29c4a96..0000000 --- a/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/_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. -#Thu Apr 02 20:38:35 UTC 2026 -android-json-0.0.20131108.vaadin1.jar>central= -android-json-0.0.20131108.vaadin1.pom>central= diff --git a/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar b/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar deleted file mode 100644 index add495f..0000000 Binary files a/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar and /dev/null differ diff --git a/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar.sha1 b/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar.sha1 deleted file mode 100644 index aae1696..0000000 --- a/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fa26d351fe62a6a17f5cda1287c1c6110dec413f \ No newline at end of file diff --git a/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom b/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom deleted file mode 100644 index 00c292e..0000000 --- a/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom +++ /dev/null @@ -1,70 +0,0 @@ - - 4.0.0 - com.vaadin.external.google - android-json - 0.0.20131108.vaadin1 - JSON library from Android SDK - -   JSON (JavaScript Object Notation) is a lightweight data-interchange format. - This is the org.json compatible Android implementation extracted from the Android SDK -   - http://developer.android.com/sdk - - - Apache License 2.0 - repo - http://www.apache.org/licenses/LICENSE-2.0 - - - - scm:http:http://developer.android.com/sdk/ - scm:http:http://developer.android.com/sdk/ - http://developer.android.com/sdk/ - - - - id - Android Dev - androiddev - http://developer.android.com/sdk - Google - http://www.google.com - 0 - - - - - vaadin-releases - Vaadin release repository - http://oss.sonatype.org/content/repositories/vaadin-releases/ - - - vaadin-snapshots - Vaadin snapshot repository - http://oss.sonatype.org/content/repositories/vaadin-snapshots/ - - - - - vaadin-snapshots - http://oss.sonatype.org/content/repositories/vaadin-snapshots/ - - false - - - true - - - - vaadin-releases - http://oss.sonatype.org/content/repositories/vaadin-releases/ - - true - - - false - - - - \ No newline at end of file diff --git a/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom.sha1 b/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom.sha1 deleted file mode 100644 index 720ca4e..0000000 --- a/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -90ebaebd21e7bcfad5416f999926d05f834bfeb5 \ No newline at end of file diff --git a/.m2/repository/com/zaxxer/SparseBitSet/1.3/SparseBitSet-1.3.jar b/.m2/repository/com/zaxxer/SparseBitSet/1.3/SparseBitSet-1.3.jar deleted file mode 100644 index 5a43544..0000000 Binary files a/.m2/repository/com/zaxxer/SparseBitSet/1.3/SparseBitSet-1.3.jar and /dev/null differ diff --git a/.m2/repository/com/zaxxer/SparseBitSet/1.3/SparseBitSet-1.3.jar.sha1 b/.m2/repository/com/zaxxer/SparseBitSet/1.3/SparseBitSet-1.3.jar.sha1 deleted file mode 100644 index 2803db7..0000000 --- a/.m2/repository/com/zaxxer/SparseBitSet/1.3/SparseBitSet-1.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -533eac055afe3d5f614ea95e333afd6c2bde8f26 \ No newline at end of file diff --git a/.m2/repository/com/zaxxer/SparseBitSet/1.3/SparseBitSet-1.3.pom b/.m2/repository/com/zaxxer/SparseBitSet/1.3/SparseBitSet-1.3.pom deleted file mode 100644 index e94e4e3..0000000 --- a/.m2/repository/com/zaxxer/SparseBitSet/1.3/SparseBitSet-1.3.pom +++ /dev/null @@ -1,148 +0,0 @@ - - 4.0.0 - - com.zaxxer - SparseBitSet - 1.3 - jar - - SparseBitSet - An efficient sparse bitset implementation for Java - https://github.com/brettwooldridge/SparseBitSet - - - Zaxxer.com - https://github.com/brettwooldridge/SparseBitSet - - - - scm:git:https://github.com/brettwooldridge/SparseBitSet.git - scm:git:https://github.com/brettwooldridge/SparseBitSet.git - https://github.com/brettwooldridge/SparseBitSet.git - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Brett Wooldridge - brett.wooldridge@gmail.com - - - - - UTF-8 - - - - org.sonatype.oss - oss-parent - 7 - - - - - junit - junit - [4.13.1,) - test - - - - - src/main/java - src/test/java - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - 1.6 - 1.6 - 1.8 - 1.8 - - - - org.apache.maven.plugins - maven-jar-plugin - - - - com.zaxxer.sparsebitset - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - true - - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - public - true - - - - - jar - - - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - sign-artifacts - verify - - sign - - - - - - - - - diff --git a/.m2/repository/com/zaxxer/SparseBitSet/1.3/SparseBitSet-1.3.pom.sha1 b/.m2/repository/com/zaxxer/SparseBitSet/1.3/SparseBitSet-1.3.pom.sha1 deleted file mode 100644 index bd87f52..0000000 --- a/.m2/repository/com/zaxxer/SparseBitSet/1.3/SparseBitSet-1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f02d244fd072a051dc7bd34facc3e523b031af90 \ No newline at end of file diff --git a/.m2/repository/com/zaxxer/SparseBitSet/1.3/_remote.repositories b/.m2/repository/com/zaxxer/SparseBitSet/1.3/_remote.repositories deleted file mode 100644 index d9e42fa..0000000 --- a/.m2/repository/com/zaxxer/SparseBitSet/1.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -SparseBitSet-1.3.jar>central= -SparseBitSet-1.3.pom>central= diff --git a/.m2/repository/commons-codec/commons-codec/1.16.1/_remote.repositories b/.m2/repository/commons-codec/commons-codec/1.16.1/_remote.repositories deleted file mode 100644 index f201eb7..0000000 --- a/.m2/repository/commons-codec/commons-codec/1.16.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. -#Thu Apr 02 20:43:08 UTC 2026 -commons-codec-1.16.1.jar>central= -commons-codec-1.16.1.pom>central= diff --git a/.m2/repository/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar b/.m2/repository/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar deleted file mode 100644 index f896649..0000000 Binary files a/.m2/repository/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar and /dev/null differ diff --git a/.m2/repository/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar.sha1 b/.m2/repository/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar.sha1 deleted file mode 100644 index 6b88030..0000000 --- a/.m2/repository/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -47bd4d333fba53406f6c6c51884ddbca435c8862 \ No newline at end of file diff --git a/.m2/repository/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom b/.m2/repository/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom deleted file mode 100644 index 19002c2..0000000 --- a/.m2/repository/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/.m2/repository/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom.sha1 b/.m2/repository/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom.sha1 deleted file mode 100644 index a536228..0000000 --- a/.m2/repository/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/.m2/repository/commons-codec/commons-codec/1.17.0/_remote.repositories b/.m2/repository/commons-codec/commons-codec/1.17.0/_remote.repositories deleted file mode 100644 index 142754f..0000000 --- a/.m2/repository/commons-codec/commons-codec/1.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. -#Thu Apr 02 20:43:11 UTC 2026 -commons-codec-1.17.0.pom>central= diff --git a/.m2/repository/commons-codec/commons-codec/1.17.0/commons-codec-1.17.0.pom b/.m2/repository/commons-codec/commons-codec/1.17.0/commons-codec-1.17.0.pom deleted file mode 100644 index 9a407f6..0000000 --- a/.m2/repository/commons-codec/commons-codec/1.17.0/commons-codec-1.17.0.pom +++ /dev/null @@ -1,492 +0,0 @@ - - - - - 4.0.0 - - org.apache.commons - commons-parent - 69 - - commons-codec - commons-codec - 1.17.0 - 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}/ - - - - - org.apache.commons - commons-lang3 - 3.14.0 - test - - - commons-io - commons-io - 2.16.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.17.0 - 1.16.1 - 1.17.1 - RC1 - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - 2024-04-20T18:05:56Z - 0.8.12 - ${commons.javadoc21.java.link} - - true - 0.92 - 0.91 - 0.87 - 0.86 - 0.89 - 0.84 - - - 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 - - - - - - - java-8 - - 8 - - - - true - 0.96 - 0.97 - 0.88 - 0.92 - 0.88 - 0.94 - - - - - java-9-up - - [9,) - - - - true - 0.96 - 0.97 - 0.93 - 0.92 - 0.90 - 0.95 - - - - - - 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 - - - - diff --git a/.m2/repository/commons-codec/commons-codec/1.17.0/commons-codec-1.17.0.pom.sha1 b/.m2/repository/commons-codec/commons-codec/1.17.0/commons-codec-1.17.0.pom.sha1 deleted file mode 100644 index 0dc5d4e..0000000 --- a/.m2/repository/commons-codec/commons-codec/1.17.0/commons-codec-1.17.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -00df1652d86779f44021a4c52a928d0792217eec \ No newline at end of file diff --git a/.m2/repository/commons-codec/commons-codec/1.17.1/_remote.repositories b/.m2/repository/commons-codec/commons-codec/1.17.1/_remote.repositories deleted file mode 100644 index a5732d0..0000000 --- a/.m2/repository/commons-codec/commons-codec/1.17.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. -#Thu Apr 02 20:43:13 UTC 2026 -commons-codec-1.17.1.jar>central= -commons-codec-1.17.1.pom>central= diff --git a/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar b/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar deleted file mode 100644 index 5023670..0000000 Binary files a/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar and /dev/null differ diff --git a/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar.sha1 b/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar.sha1 deleted file mode 100644 index 82b20bf..0000000 --- a/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -973638b7149d333563584137ebf13a691bb60579 \ No newline at end of file diff --git a/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.pom b/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.pom deleted file mode 100644 index b6185a1..0000000 --- a/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.pom +++ /dev/null @@ -1,491 +0,0 @@ - - - - - 4.0.0 - - org.apache.commons - commons-parent - 71 - - commons-codec - commons-codec - 1.17.1 - Apache Commons Codec - 2002 - - The Apache Commons Codec component contains encoders 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 - - - - apache.website - Apache Commons Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-codec/ - - - - - org.apache.commons - commons-lang3 - 3.14.0 - test - - - commons-io - commons-io - 2.16.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 - - 1.17.1 - 1.17.0 - 1.17.2 - RC1 - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - 2024-07-12T16:14:24Z - 0.8.12 - - false - true - 0.92 - 0.91 - 0.87 - 0.86 - 0.89 - 0.84 - - - 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.24 - - - - 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.1.0 - - - TODO - NOPMD - NOTE - - - - - org.codehaus.mojo - javancss-maven-plugin - 2.1 - - - - - - - java-8 - - 8 - - - - true - 0.96 - 0.97 - 0.88 - 0.92 - 0.88 - 0.94 - - - - - java-9-up - - [9,) - - - - true - 0.96 - 0.97 - 0.93 - 0.92 - 0.90 - 0.95 - - - - - - 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 - - - - diff --git a/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.pom.sha1 b/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.pom.sha1 deleted file mode 100644 index baf9556..0000000 --- a/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d187e2d50ab520895df0dcb9d88980ffea50bfa3 \ No newline at end of file diff --git a/.m2/repository/commons-codec/commons-codec/1.18.0/_remote.repositories b/.m2/repository/commons-codec/commons-codec/1.18.0/_remote.repositories deleted file mode 100644 index 1ff853a..0000000 --- a/.m2/repository/commons-codec/commons-codec/1.18.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. -#Thu Apr 02 20:38:35 UTC 2026 -commons-codec-1.18.0.jar>central= -commons-codec-1.18.0.pom>central= diff --git a/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar b/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar deleted file mode 100644 index 9cb5851..0000000 Binary files a/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar and /dev/null differ diff --git a/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar.sha1 b/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar.sha1 deleted file mode 100644 index 01a6a8f..0000000 --- a/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ee45d1cf6ec2cc2b809ff04b4dc7aec858e0df8f \ No newline at end of file diff --git a/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.pom b/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.pom deleted file mode 100644 index 36756fe..0000000 --- a/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.pom +++ /dev/null @@ -1,485 +0,0 @@ - - - - - 4.0.0 - - org.apache.commons - commons-parent - 79 - - commons-codec - commons-codec - 1.18.0 - Apache Commons Codec - 2002 - - The Apache Commons Codec component contains encoders and decoders for - 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 - - - - apache.website - Apache Commons Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-codec/ - - - - - org.apache.commons - commons-lang3 - 3.17.0 - test - - - commons-io - commons-io - 2.18.0 - 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 - - 1.18.0 - 1.17.1 - 1.18.1 - RC1 - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - 2025-01-24T14:02:30Z - 0.8.12 - - 3.2.5 - - false - true - 0.92 - 0.91 - 0.87 - 0.86 - 0.89 - 0.84 - - - 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.24 - - - - 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 - - - TODO - NOPMD - NOTE - - - - - org.codehaus.mojo - javancss-maven-plugin - 2.1 - - - - - - - java-8 - - 8 - - - - true - 0.96 - 0.97 - 0.88 - 0.92 - 0.88 - 0.94 - - - - - java-9-up - - [9,) - - - - true - 0.96 - 0.97 - 0.93 - 0.92 - 0.90 - 0.95 - - - - - - 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 - - - - diff --git a/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.pom.sha1 b/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.pom.sha1 deleted file mode 100644 index 9e00bb1..0000000 --- a/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2aa7395e4e4d63be2fd4439da7a01527235f76bf \ No newline at end of file diff --git a/.m2/repository/commons-io/commons-io/2.11.0/_remote.repositories b/.m2/repository/commons-io/commons-io/2.11.0/_remote.repositories deleted file mode 100644 index ee81ae1..0000000 --- a/.m2/repository/commons-io/commons-io/2.11.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. -#Thu Apr 02 20:38:39 UTC 2026 -commons-io-2.11.0.jar>central= -commons-io-2.11.0.pom>central= diff --git a/.m2/repository/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar b/.m2/repository/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar deleted file mode 100644 index be507d9..0000000 Binary files a/.m2/repository/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar and /dev/null differ diff --git a/.m2/repository/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar.sha1 b/.m2/repository/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar.sha1 deleted file mode 100644 index 8adec30..0000000 --- a/.m2/repository/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a2503f302b11ebde7ebc3df41daebe0e4eea3689 \ No newline at end of file diff --git a/.m2/repository/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom b/.m2/repository/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom deleted file mode 100644 index d3372ca..0000000 --- a/.m2/repository/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/.m2/repository/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom.sha1 b/.m2/repository/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom.sha1 deleted file mode 100644 index 7049ab8..0000000 --- a/.m2/repository/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/.m2/repository/commons-io/commons-io/2.15.0/_remote.repositories b/.m2/repository/commons-io/commons-io/2.15.0/_remote.repositories deleted file mode 100644 index f1938b8..0000000 --- a/.m2/repository/commons-io/commons-io/2.15.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. -#Thu Apr 02 20:38:35 UTC 2026 -commons-io-2.15.0.jar>central= -commons-io-2.15.0.pom>central= diff --git a/.m2/repository/commons-io/commons-io/2.15.0/commons-io-2.15.0.jar b/.m2/repository/commons-io/commons-io/2.15.0/commons-io-2.15.0.jar deleted file mode 100644 index 4af9672..0000000 Binary files a/.m2/repository/commons-io/commons-io/2.15.0/commons-io-2.15.0.jar and /dev/null differ diff --git a/.m2/repository/commons-io/commons-io/2.15.0/commons-io-2.15.0.jar.sha1 b/.m2/repository/commons-io/commons-io/2.15.0/commons-io-2.15.0.jar.sha1 deleted file mode 100644 index 7370938..0000000 --- a/.m2/repository/commons-io/commons-io/2.15.0/commons-io-2.15.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5c3c2db10f6f797430a7f9c696b4d1273768c924 \ No newline at end of file diff --git a/.m2/repository/commons-io/commons-io/2.15.0/commons-io-2.15.0.pom b/.m2/repository/commons-io/commons-io/2.15.0/commons-io-2.15.0.pom deleted file mode 100644 index bad8c9b..0000000 --- a/.m2/repository/commons-io/commons-io/2.15.0/commons-io-2.15.0.pom +++ /dev/null @@ -1,642 +0,0 @@ - - - - - org.apache.commons - commons-parent - 64 - - 4.0.0 - commons-io - commons-io - 2.15.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.15.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 - - - 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.13.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.14.0 - 2.15.0 - 2.15.1 - (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.0.0.Final - 1.37 - 1.14.9 - false - ${env.JACOCO_SKIP} - true - - - - - clean verify apache-rat:check japicmp:cmp checkstyle: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 - - - - java9-moditect - - - [9,11) - - - - - org.moditect - moditect-maven-plugin - ${commons.moditect.version} - - - add-module-infos - package - - add-module-info - - - 9 - ${project.build.directory} - true - - - org.apache.commons.io - - - - - - - - - - - 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/.m2/repository/commons-io/commons-io/2.15.0/commons-io-2.15.0.pom.sha1 b/.m2/repository/commons-io/commons-io/2.15.0/commons-io-2.15.0.pom.sha1 deleted file mode 100644 index 2dbd628..0000000 --- a/.m2/repository/commons-io/commons-io/2.15.0/commons-io-2.15.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f92b5e47290ee4231dc30224beaf1d2b91b3bd17 \ No newline at end of file diff --git a/.m2/repository/commons-io/commons-io/2.16.1/_remote.repositories b/.m2/repository/commons-io/commons-io/2.16.1/_remote.repositories deleted file mode 100644 index 36f184a..0000000 --- a/.m2/repository/commons-io/commons-io/2.16.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. -#Thu Apr 02 20:43:08 UTC 2026 -commons-io-2.16.1.jar>central= -commons-io-2.16.1.pom>central= diff --git a/.m2/repository/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar b/.m2/repository/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar deleted file mode 100644 index eb3c2b0..0000000 Binary files a/.m2/repository/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar and /dev/null differ diff --git a/.m2/repository/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar.sha1 b/.m2/repository/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar.sha1 deleted file mode 100644 index a1c1421..0000000 --- a/.m2/repository/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -377d592e740dc77124e0901291dbfaa6810a200e \ No newline at end of file diff --git a/.m2/repository/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom b/.m2/repository/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom deleted file mode 100644 index 37b2226..0000000 --- a/.m2/repository/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom +++ /dev/null @@ -1,595 +0,0 @@ - - - - - org.apache.commons - commons-parent - 69 - - 4.0.0 - commons-io - commons-io - 2.16.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 - - - - - 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.1 - 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 - RC2 - 2.16.0 - 2.16.1 - 2.16.2 - 2024-04-04T20:10:16Z - (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.13 - 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 - - - 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.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,) - - - 8 - - - - 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} - - - - - - - - - - - - - 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 - - - Miguel Muñoz - - - - diff --git a/.m2/repository/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom.sha1 b/.m2/repository/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom.sha1 deleted file mode 100644 index 851a02f..0000000 --- a/.m2/repository/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -553d6f69e338060a231755afe0ebf99d14b45da6 \ No newline at end of file diff --git a/.m2/repository/commons-logging/commons-logging/1.0.4/_remote.repositories b/.m2/repository/commons-logging/commons-logging/1.0.4/_remote.repositories deleted file mode 100644 index fdef739..0000000 --- a/.m2/repository/commons-logging/commons-logging/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. -#Thu Apr 02 20:38:06 UTC 2026 -commons-logging-1.0.4.pom>central= diff --git a/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom b/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom deleted file mode 100644 index 7c1017d..0000000 --- a/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom +++ /dev/null @@ -1,165 +0,0 @@ - - 4.0.0 - commons-logging - commons-logging - Logging - 1.0.4 - Commons Logging is a thin adapter allowing configurable bridging to other, - well known logging systems. - http://jakarta.apache.org/commons/logging/ - - http://issues.apache.org/bugzilla/ - - - - - -
commons-dev@jakarta.apache.org
-
-
-
-
- 2001 - - - Commons Dev List - commons-dev-subscribe@jakarta.apache.org - commons-dev-unsubscribe@jakarta.apache.org - http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org - - - Commons User List - commons-user-subscribe@jakarta.apache.org - commons-user-unsubscribe@jakarta.apache.org - http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org - - - - - morgand - Morgan Delagrange - morgand at apache dot org - Apache - - Java Developer - - - - rwaldhoff - Rodney Waldhoff - rwaldhoff at apache org - Apache Software Foundation - - - craigmcc - Craig McClanahan - craigmcc at apache org - Apache Software Foundation - - - sanders - Scott Sanders - sanders at apache dot org - Apache Software Foundation - - - rdonkin - Robert Burrell Donkin - rdonkin at apache dot org - Apache Software Foundation - - - donaldp - Peter Donald - donaldp at apache dot org - - - - costin - Costin Manolache - costin at apache dot org - Apache Software Foundation - - - rsitze - Richard Sitze - rsitze at apache dot org - Apache Software Foundation - - - baliuka - Juozas Baliuka - baliuka@apache.org - - - Java Developer - - - - - - The Apache Software License, Version 2.0 - /LICENSE.txt - - - - scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons/logging - http://cvs.apache.org/viewcvs/jakarta-commons/logging/ - - - The Apache Software Foundation - http://jakarta.apache.org - - - src/java - src/test - - - maven-surefire-plugin - - - **/AvalonLoggerTest.java - - - - - - - - log4j - log4j - 1.2.6 - true - - - logkit - logkit - 1.0.1 - true - - - junit - junit - 3.7 - test - - - avalon-framework - avalon-framework - 4.1.3 - true - - - - - default - Default Repository - file:///www/jakarta.apache.org/builds/jakarta-commons/logging/ - - - default - Default Site - scp://jakarta.apache.org//www/jakarta.apache.org/commons/logging/ - - -
diff --git a/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.sha1 b/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.sha1 deleted file mode 100644 index bf25212..0000000 --- a/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7d32e7520b801cabc3dc704d2afe59d020d00c45 \ No newline at end of file diff --git a/.m2/repository/commons-logging/commons-logging/1.2/_remote.repositories b/.m2/repository/commons-logging/commons-logging/1.2/_remote.repositories deleted file mode 100644 index 6899791..0000000 --- a/.m2/repository/commons-logging/commons-logging/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. -#Thu Apr 02 20:38:35 UTC 2026 -commons-logging-1.2.jar>central= -commons-logging-1.2.pom>central= diff --git a/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar b/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar deleted file mode 100644 index 93a3b9f..0000000 Binary files a/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar and /dev/null differ diff --git a/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar.sha1 b/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar.sha1 deleted file mode 100644 index f40f024..0000000 --- a/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -4bfc12adfe4842bf07b657f0369c4cb522955686 \ No newline at end of file diff --git a/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.pom b/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.pom deleted file mode 100644 index cdad31c..0000000 --- a/.m2/repository/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/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.pom.sha1 b/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.pom.sha1 deleted file mode 100644 index 8cb2a62..0000000 --- a/.m2/repository/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/.m2/repository/io/dropwizard/metrics/metrics-bom/4.2.25/_remote.repositories b/.m2/repository/io/dropwizard/metrics/metrics-bom/4.2.25/_remote.repositories deleted file mode 100644 index 41252c6..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:10 UTC 2026 -metrics-bom-4.2.25.pom>central= diff --git a/.m2/repository/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom b/.m2/repository/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom deleted file mode 100644 index 0ab914d..0000000 --- a/.m2/repository/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/.m2/repository/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.sha1 b/.m2/repository/io/dropwizard/metrics/metrics-bom/4.2.25/metrics-bom-4.2.25.pom.sha1 deleted file mode 100644 index 67affb6..0000000 --- a/.m2/repository/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/.m2/repository/io/dropwizard/metrics/metrics-parent/4.2.25/_remote.repositories b/.m2/repository/io/dropwizard/metrics/metrics-parent/4.2.25/_remote.repositories deleted file mode 100644 index 3ef8737..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:10 UTC 2026 -metrics-parent-4.2.25.pom>central= diff --git a/.m2/repository/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom b/.m2/repository/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom deleted file mode 100644 index 87169f2..0000000 --- a/.m2/repository/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/.m2/repository/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.sha1 b/.m2/repository/io/dropwizard/metrics/metrics-parent/4.2.25/metrics-parent-4.2.25.pom.sha1 deleted file mode 100644 index 437bda8..0000000 --- a/.m2/repository/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/.m2/repository/io/grpc/grpc-context/1.27.2/_remote.repositories b/.m2/repository/io/grpc/grpc-context/1.27.2/_remote.repositories deleted file mode 100644 index e98ec93..0000000 --- a/.m2/repository/io/grpc/grpc-context/1.27.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. -#Thu Apr 02 20:38:35 UTC 2026 -grpc-context-1.27.2.jar>central= -grpc-context-1.27.2.pom>central= diff --git a/.m2/repository/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar b/.m2/repository/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar deleted file mode 100644 index fd8615e..0000000 Binary files a/.m2/repository/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar and /dev/null differ diff --git a/.m2/repository/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar.sha1 b/.m2/repository/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar.sha1 deleted file mode 100644 index eb75368..0000000 --- a/.m2/repository/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1789190601b7a5361e4fa52b6bc95ec2cd71e854 \ No newline at end of file diff --git a/.m2/repository/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.pom b/.m2/repository/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.pom deleted file mode 100644 index 50d7cc3..0000000 --- a/.m2/repository/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - io.grpc - grpc-context - 1.27.2 - io.grpc:grpc-context - gRPC: Context - https://github.com/grpc/grpc-java - - - Apache 2.0 - https://opensource.org/licenses/Apache-2.0 - - - - - grpc.io - gRPC Contributors - grpc-io@googlegroups.com - https://grpc.io/ - gRPC Authors - https://www.google.com - - - - scm:git:https://github.com/grpc/grpc-java.git - scm:git:git@github.com:grpc/grpc-java.git - https://github.com/grpc/grpc-java - - diff --git a/.m2/repository/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.pom.sha1 b/.m2/repository/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.pom.sha1 deleted file mode 100644 index 050cea4..0000000 --- a/.m2/repository/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5486f796fba991aab67a42e134a8b3ceca7a19dc \ No newline at end of file diff --git a/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/_remote.repositories b/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/_remote.repositories deleted file mode 100644 index 52e5ada..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -jjwt-api-0.12.3.jar>central= -jjwt-api-0.12.3.pom>central= diff --git a/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/jjwt-api-0.12.3.jar b/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/jjwt-api-0.12.3.jar deleted file mode 100644 index 28a5051..0000000 Binary files a/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/jjwt-api-0.12.3.jar and /dev/null differ diff --git a/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/jjwt-api-0.12.3.jar.sha1 b/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/jjwt-api-0.12.3.jar.sha1 deleted file mode 100644 index 472d596..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/jjwt-api-0.12.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -30b7de9176d17fa347eef14b85480825dab76b58 \ No newline at end of file diff --git a/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/jjwt-api-0.12.3.pom b/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/jjwt-api-0.12.3.pom deleted file mode 100644 index a75553e..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/jjwt-api-0.12.3.pom +++ /dev/null @@ -1,53 +0,0 @@ - - - - - 4.0.0 - - - io.jsonwebtoken - jjwt-root - 0.12.3 - ../pom.xml - - - jjwt-api - JJWT :: API - jar - - - ${basedir}/.. - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - japicmp - - cmp - - - - - - - - \ No newline at end of file diff --git a/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/jjwt-api-0.12.3.pom.sha1 b/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/jjwt-api-0.12.3.pom.sha1 deleted file mode 100644 index d1db5d7..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-api/0.12.3/jjwt-api-0.12.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -30e1a16293f643f229075f3fec51ae3884f6874d \ No newline at end of file diff --git a/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/_remote.repositories b/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/_remote.repositories deleted file mode 100644 index f81e56a..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -jjwt-impl-0.12.3.jar>central= -jjwt-impl-0.12.3.pom>central= diff --git a/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/jjwt-impl-0.12.3.jar b/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/jjwt-impl-0.12.3.jar deleted file mode 100644 index 458f09c..0000000 Binary files a/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/jjwt-impl-0.12.3.jar and /dev/null differ diff --git a/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/jjwt-impl-0.12.3.jar.sha1 b/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/jjwt-impl-0.12.3.jar.sha1 deleted file mode 100644 index 261adc2..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/jjwt-impl-0.12.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e850d2b3f53bd82355cd9ee1c471054aa602b320 \ No newline at end of file diff --git a/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/jjwt-impl-0.12.3.pom b/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/jjwt-impl-0.12.3.pom deleted file mode 100644 index 89b1d50..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/jjwt-impl-0.12.3.pom +++ /dev/null @@ -1,71 +0,0 @@ - - - - - 4.0.0 - - - io.jsonwebtoken - jjwt-root - 0.12.3 - ../pom.xml - - - jjwt-impl - JJWT :: Impl - jar - - - ${basedir}/.. - - -Xdoclint:none - - - - - io.jsonwebtoken - jjwt-api - - - - org.bouncycastle - ${bcprov.artifactId} - test - - - org.bouncycastle - ${bcpkix.artifactId} - test - - - io.jsonwebtoken - jjwt-jackson - test - - - io.jsonwebtoken - jjwt-orgjson - test - - - io.jsonwebtoken - jjwt-gson - test - - - - \ No newline at end of file diff --git a/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/jjwt-impl-0.12.3.pom.sha1 b/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/jjwt-impl-0.12.3.pom.sha1 deleted file mode 100644 index b41ad88..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-impl/0.12.3/jjwt-impl-0.12.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -63f04ded59ad9368e303a89ce58ba0761974e4a9 \ No newline at end of file diff --git a/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/_remote.repositories b/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/_remote.repositories deleted file mode 100644 index 6e5644c..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -jjwt-jackson-0.12.3.jar>central= -jjwt-jackson-0.12.3.pom>central= diff --git a/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/jjwt-jackson-0.12.3.jar b/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/jjwt-jackson-0.12.3.jar deleted file mode 100644 index c7da9cd..0000000 Binary files a/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/jjwt-jackson-0.12.3.jar and /dev/null differ diff --git a/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/jjwt-jackson-0.12.3.jar.sha1 b/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/jjwt-jackson-0.12.3.jar.sha1 deleted file mode 100644 index 59cb537..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/jjwt-jackson-0.12.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5e6d0e45441547d892d3273a4ce5dd042e91d162 \ No newline at end of file diff --git a/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/jjwt-jackson-0.12.3.pom b/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/jjwt-jackson-0.12.3.pom deleted file mode 100644 index ba519cd..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/jjwt-jackson-0.12.3.pom +++ /dev/null @@ -1,72 +0,0 @@ - - - - - 4.0.0 - - - io.jsonwebtoken - jjwt-root - 0.12.3 - ../../pom.xml - - - jjwt-jackson - JJWT :: Extensions :: Jackson - jar - - - ${basedir}/../.. - - - - - io.jsonwebtoken - jjwt-api - - - com.fasterxml.jackson.core - jackson-databind - - - - - - - - - org.apache.maven.plugins - maven-shade-plugin - - - - io.jsonwebtoken.jackson.io - io.jsonwebtoken.io - io.jsonwebtoken.jackson.io.* - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - \ No newline at end of file diff --git a/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/jjwt-jackson-0.12.3.pom.sha1 b/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/jjwt-jackson-0.12.3.pom.sha1 deleted file mode 100644 index 8ecff13..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.12.3/jjwt-jackson-0.12.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ce67892dc32ec5c0e11e4c800009a4980e9edd11 \ No newline at end of file diff --git a/.m2/repository/io/jsonwebtoken/jjwt-root/0.12.3/_remote.repositories b/.m2/repository/io/jsonwebtoken/jjwt-root/0.12.3/_remote.repositories deleted file mode 100644 index 0c71079..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-root/0.12.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. -#Thu Apr 02 20:38:15 UTC 2026 -jjwt-root-0.12.3.pom>central= diff --git a/.m2/repository/io/jsonwebtoken/jjwt-root/0.12.3/jjwt-root-0.12.3.pom b/.m2/repository/io/jsonwebtoken/jjwt-root/0.12.3/jjwt-root-0.12.3.pom deleted file mode 100644 index 56ad0f7..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-root/0.12.3/jjwt-root-0.12.3.pom +++ /dev/null @@ -1,792 +0,0 @@ - - - - 4.0.0 - - io.jsonwebtoken - jjwt-root - 0.12.3 - JJWT - JSON Web Token support for the JVM and Android - pom - https://github.com/jwtk/jjwt - - - jsonwebtoken.io - https://github.com/jwtk/jjwt - - 2014 - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - - Les Hazlewood - 121180+lhazlewood@users.noreply.github.com - JJWT - https://github.com/jwtk/jjwt - - - - - scm:git:https://github.com/jwtk/jjwt.git - scm:git:git@github.com:jwtk/jjwt.git - git@github.com:jwtk/jjwt.git - 0.12.3 - - - GitHub Issues - https://github.com/jwtk/jjwt/issues - - - TravisCI - https://travis-ci.org/jwtk/jjwt - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - ossrh - OSSRH Snapshots - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - UTF-8 - - - ${basedir} - 0.11.2 - - 3.3.0 - 3.11.0 - 3.1.1 - 3.2.1 - 3.1.0 - 1.6 - 0.13.1 - 1.6.1 - 4.2.rc3 - true - - 7 - ${user.name}-${maven.build.timestamp} - - 2.12.7.1 - 20231013 - 2.9.0 - - - - - 1.76 - bcprov-jdk18on - bcpkix-jdk18on - - - 2.5.16 - 3.6 - 4.12 - 2.0.0-beta.5 - 3.0.0-M5 - 3.0.0-M5 - 4.3.1 - ${jjwt.root}/target/clover/clover.db - - - --add-opens java.base/java.lang=ALL-UNNAMED, - --add-opens java.desktop/java.beans=ALL-UNNAMED, - --add-opens java.base/java.lang.ref=ALL-UNNAMED, - - --add-opens java.base/sun.security.util=ALL-UNNAMED - - - - - - api - impl - extensions - tdjar - - - - - - io.jsonwebtoken - jjwt-api - ${project.version} - - - io.jsonwebtoken - jjwt-impl - ${project.version} - - - io.jsonwebtoken - jjwt-jackson - ${project.version} - - - io.jsonwebtoken - jjwt-orgjson - ${project.version} - - - io.jsonwebtoken - jjwt-gson - ${project.version} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - - - org.json - json - ${orgjson.version} - - - com.google.code.gson - gson - ${gson.version} - - - - - org.bouncycastle - ${bcprov.artifactId} - ${bouncycastle.version} - test - - - org.bouncycastle - ${bcpkix.artifactId} - ${bouncycastle.version} - test - - - - - - - - org.codehaus.groovy - groovy - ${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.13.1 - test - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - - org.apache.maven.scm - maven-scm-provider-gitexe - 1.9.5 - - - - forked-path - ossrh - true - - - - org.openclover - clover-maven-plugin - ${clover.version} - - ${clover.db} - - - io/jsonwebtoken/lang/* - io/jsonwebtoken/all/JavaReadmeTest.java - - io/jsonwebtoken/impl/io/CodecPolicy.java - io/jsonwebtoken/impl/io/BaseNCodec.java - io/jsonwebtoken/impl/io/Base64Codec.java - io/jsonwebtoken/impl/io/BaseNCodecOutputStream.java - io/jsonwebtoken/impl/io/BaseNCodecInputStream.java - io/jsonwebtoken/impl/io/Base64OutputStream.java - io/jsonwebtoken/impl/io/Base64InputStream.java - io/jsonwebtoken/impl/io/FilteredInputStream.java - io/jsonwebtoken/impl/io/FilteredOutputStream.java - io/jsonwebtoken/impl/io/CharSequenceReader.java - io/jsonwebtoken/impl/lang/AddOpens.java - - 100.000000% - 100.000000% - 100.000000% - 100.000000% - - - - com.mycila - license-maven-plugin - ${maven.license.version} - - ${maven.license.skipExistingHeaders} - - SCRIPT_STYLE - SCRIPT_STYLE - - - -
${jjwt.root}/src/license/header.txt
- - **/license/header.txt - **/*.test.orgjson - **/*.test.gson - **/*.test.override - **/*.bnd - LICENSE - **/mvnw - **/lombok.config - .gitattributes - **/genkeys - **/softhsm - -
-
-
- - - com.mycila - license-maven-plugin-git - ${maven.license.version} - - - - - - check - - - -
- - org.apache.maven.plugins - maven-javadoc-plugin - ${maven.javadoc.version} - - - attach-javadocs - - jar - - - - - ${jdk.version} - true - false - ${maven.javadoc.additionalOptions} - - - - - commons-lang - commons-lang - 2.6 - - - - - org.apache.maven.plugins - maven-jar-plugin - ${maven.jar.version} - - - - true - true - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-source-plugin - ${maven.source.version} - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-resources-plugin - ${maven.resources.version} - - - org.apache.maven.plugins - maven-gpg-plugin - ${maven.gpg.version} - - - sign-artifacts - verify - - sign - - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - ${maven.japicmp.version} - - - - ${project.groupId} - ${project.artifactId} - ${jjwt.previousVersion} - jar - - - - true - - - true - - - - - - - - japicmp - - cmp - - - - - - - - - org.apache.maven.plugins - maven-shade-plugin - 3.2.1 - - deprecated - true - false - - - ${project.groupId}:${project.artifactId} - - - - - - - - - package - - shade - - - - -
-
- - - 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.codehaus.gmavenplus - gmavenplus-plugin - ${gmavenplus.version} - - - - addSources - addTestSources - generateStubs - compile - generateTestStubs - compileTests - removeStubs - removeTestStubs - - - - - - org.codehaus.groovy - groovy - ${groovy.version} - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.plugin.version} - - ${surefire.argLine} - - - - 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 - - - org.apache.maven.plugins - maven-release-plugin - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.7 - true - - ossrh - https://oss.sonatype.org/ - false - - - - org.apache.felix - maven-bundle-plugin - 3.5.0 - - - bundle-manifest - process-classes - - manifest - - - - - - <_include>-bnd.bnd - - - - - org.apache.maven.plugins - maven-jar-plugin - - - io.jsonwebtoken.coveralls - coveralls-maven-plugin - 4.4.1 - - -
- - - jdk7 - - 1.7 - - - 3.2.2 - 3.8.1 - 20230618 - bcprov-jdk15to18 - bcpkix-jdk15to18 - - - - jdk8AndLater - - [1.8,) - - - 3.0.2 - 3.0.19 - 4.2 - 2.0.7 - 0.15.6 - 3.1.2 - 3.1.2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - jdk9AndLater - - [1.9,) - - - 3.11.0 - false - -html5 - ${test.addOpens}, --illegal-access=debug - - - - jdk17AndLater - - [17,) - - - -html5 - ${test.addOpens} - - - - jdk21AndLater - - [21,) - - - - 8 - - - - docs - - - - org.apache.maven.plugins - maven-source-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - - - ossrh - - - - org.apache.maven.plugins - maven-source-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - org.apache.maven.plugins - maven-gpg-plugin - - - - - -
diff --git a/.m2/repository/io/jsonwebtoken/jjwt-root/0.12.3/jjwt-root-0.12.3.pom.sha1 b/.m2/repository/io/jsonwebtoken/jjwt-root/0.12.3/jjwt-root-0.12.3.pom.sha1 deleted file mode 100644 index 7d5744b..0000000 --- a/.m2/repository/io/jsonwebtoken/jjwt-root/0.12.3/jjwt-root-0.12.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -863070fab4ccbcd9484d8add9b4c21659b0b7a7e \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-bom/1.12.4/_remote.repositories b/.m2/repository/io/micrometer/micrometer-bom/1.12.4/_remote.repositories deleted file mode 100644 index 6b5da9f..0000000 --- a/.m2/repository/io/micrometer/micrometer-bom/1.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. -#Thu Apr 02 20:38:12 UTC 2026 -micrometer-bom-1.12.4.pom>central= diff --git a/.m2/repository/io/micrometer/micrometer-bom/1.12.4/micrometer-bom-1.12.4.pom b/.m2/repository/io/micrometer/micrometer-bom/1.12.4/micrometer-bom-1.12.4.pom deleted file mode 100644 index fbe87a5..0000000 --- a/.m2/repository/io/micrometer/micrometer-bom/1.12.4/micrometer-bom-1.12.4.pom +++ /dev/null @@ -1,207 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-bom - 1.12.4 - 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.4 - - - io.micrometer - micrometer-core - 1.12.4 - - - io.micrometer - micrometer-jakarta9 - 1.12.4 - - - io.micrometer - micrometer-jetty11 - 1.12.4 - - - io.micrometer - micrometer-observation - 1.12.4 - - - io.micrometer - micrometer-observation-test - 1.12.4 - - - io.micrometer - micrometer-registry-appoptics - 1.12.4 - - - io.micrometer - micrometer-registry-atlas - 1.12.4 - - - io.micrometer - micrometer-registry-azure-monitor - 1.12.4 - - - io.micrometer - micrometer-registry-cloudwatch - 1.12.4 - - - io.micrometer - micrometer-registry-cloudwatch2 - 1.12.4 - - - io.micrometer - micrometer-registry-datadog - 1.12.4 - - - io.micrometer - micrometer-registry-dynatrace - 1.12.4 - - - io.micrometer - micrometer-registry-elastic - 1.12.4 - - - io.micrometer - micrometer-registry-ganglia - 1.12.4 - - - io.micrometer - micrometer-registry-graphite - 1.12.4 - - - io.micrometer - micrometer-registry-health - 1.12.4 - - - io.micrometer - micrometer-registry-humio - 1.12.4 - - - io.micrometer - micrometer-registry-influx - 1.12.4 - - - io.micrometer - micrometer-registry-jmx - 1.12.4 - - - io.micrometer - micrometer-registry-kairos - 1.12.4 - - - io.micrometer - micrometer-registry-new-relic - 1.12.4 - - - io.micrometer - micrometer-registry-opentsdb - 1.12.4 - - - io.micrometer - micrometer-registry-otlp - 1.12.4 - - - io.micrometer - micrometer-registry-prometheus - 1.12.4 - - - io.micrometer - micrometer-registry-signalfx - 1.12.4 - - - io.micrometer - micrometer-registry-stackdriver - 1.12.4 - - - io.micrometer - micrometer-registry-statsd - 1.12.4 - - - io.micrometer - micrometer-registry-wavefront - 1.12.4 - - - io.micrometer - micrometer-test - 1.12.4 - - - - - 1.0 - io.micrometer#micrometer-bom;1.12.4 - 1.12.4 - release - circleci - Linux - Etc/UTC - 2024-03-11T15:21:27.358335418Z - 2024-03-11_15:21:27 - 8.6 - /micrometer-bom - git@github.com:micrometer-metrics/micrometer.git - 52075c6 - 52075c682e092f87cfc39d9df0ff61a3b4c93ab8 - HEAD - 81a4eaf02372 - deploy - 31228 - 31228 - https://circleci.com/gh/micrometer-metrics/micrometer/31228 - 21.0.2+13-LTS (Eclipse Adoptium) - tludwig@vmware.com - tludwig@vmware.com - - diff --git a/.m2/repository/io/micrometer/micrometer-bom/1.12.4/micrometer-bom-1.12.4.pom.sha1 b/.m2/repository/io/micrometer/micrometer-bom/1.12.4/micrometer-bom-1.12.4.pom.sha1 deleted file mode 100644 index 794b730..0000000 --- a/.m2/repository/io/micrometer/micrometer-bom/1.12.4/micrometer-bom-1.12.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f75da8ef7dcb8ce53dfbca14564922318855893d \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-bom/1.15.3/_remote.repositories b/.m2/repository/io/micrometer/micrometer-bom/1.15.3/_remote.repositories deleted file mode 100644 index d351236..0000000 --- a/.m2/repository/io/micrometer/micrometer-bom/1.15.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. -#Thu Apr 02 20:37:36 UTC 2026 -micrometer-bom-1.15.3.pom>central= diff --git a/.m2/repository/io/micrometer/micrometer-bom/1.15.3/micrometer-bom-1.15.3.pom b/.m2/repository/io/micrometer/micrometer-bom/1.15.3/micrometer-bom-1.15.3.pom deleted file mode 100644 index 6fe406d..0000000 --- a/.m2/repository/io/micrometer/micrometer-bom/1.15.3/micrometer-bom-1.15.3.pom +++ /dev/null @@ -1,227 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-bom - 1.15.3 - 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.15.3 - - - io.micrometer - micrometer-core - 1.15.3 - - - io.micrometer - micrometer-jakarta9 - 1.15.3 - - - io.micrometer - micrometer-java11 - 1.15.3 - - - io.micrometer - micrometer-java21 - 1.15.3 - - - io.micrometer - micrometer-jetty11 - 1.15.3 - - - io.micrometer - micrometer-jetty12 - 1.15.3 - - - io.micrometer - micrometer-observation - 1.15.3 - - - io.micrometer - micrometer-observation-test - 1.15.3 - - - io.micrometer - micrometer-registry-appoptics - 1.15.3 - - - io.micrometer - micrometer-registry-atlas - 1.15.3 - - - io.micrometer - micrometer-registry-azure-monitor - 1.15.3 - - - io.micrometer - micrometer-registry-cloudwatch2 - 1.15.3 - - - io.micrometer - micrometer-registry-datadog - 1.15.3 - - - io.micrometer - micrometer-registry-dynatrace - 1.15.3 - - - io.micrometer - micrometer-registry-elastic - 1.15.3 - - - io.micrometer - micrometer-registry-ganglia - 1.15.3 - - - io.micrometer - micrometer-registry-graphite - 1.15.3 - - - io.micrometer - micrometer-registry-health - 1.15.3 - - - io.micrometer - micrometer-registry-humio - 1.15.3 - - - io.micrometer - micrometer-registry-influx - 1.15.3 - - - io.micrometer - micrometer-registry-jmx - 1.15.3 - - - io.micrometer - micrometer-registry-kairos - 1.15.3 - - - io.micrometer - micrometer-registry-new-relic - 1.15.3 - - - io.micrometer - micrometer-registry-opentsdb - 1.15.3 - - - io.micrometer - micrometer-registry-otlp - 1.15.3 - - - io.micrometer - micrometer-registry-prometheus - 1.15.3 - - - io.micrometer - micrometer-registry-prometheus-simpleclient - 1.15.3 - - - io.micrometer - micrometer-registry-signalfx - 1.15.3 - - - io.micrometer - micrometer-registry-stackdriver - 1.15.3 - - - io.micrometer - micrometer-registry-statsd - 1.15.3 - - - io.micrometer - micrometer-registry-wavefront - 1.15.3 - - - io.micrometer - micrometer-test - 1.15.3 - - - io.micrometer - context-propagation - 1.1.3 - - - - - 1.0 - io.micrometer#micrometer-bom;1.15.3 - 1.15.3 - release - circleci - Linux - Etc/UTC - 2025-08-11T17:56:03.936455624Z - 2025-08-11_17:56:03 - 8.14.3 - /micrometer-bom - git@github.com:micrometer-metrics/micrometer.git - 5b19610 - 5b196107904eb875c0519e60dbba286439c2a343 - HEAD - c85382cb342f - deploy - 54360 - 54360 - https://circleci.com/gh/micrometer-metrics/micrometer/54360 - 21.0.6+7-LTS (Eclipse Adoptium) - tludwig@vmware.com - tludwig@vmware.com - - diff --git a/.m2/repository/io/micrometer/micrometer-bom/1.15.3/micrometer-bom-1.15.3.pom.sha1 b/.m2/repository/io/micrometer/micrometer-bom/1.15.3/micrometer-bom-1.15.3.pom.sha1 deleted file mode 100644 index c8c856e..0000000 --- a/.m2/repository/io/micrometer/micrometer-bom/1.15.3/micrometer-bom-1.15.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2e86652be3ffcee62781d913f1df94c576fb4ae2 \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-commons/1.14.10/_remote.repositories b/.m2/repository/io/micrometer/micrometer-commons/1.14.10/_remote.repositories deleted file mode 100644 index 68cf55e..0000000 --- a/.m2/repository/io/micrometer/micrometer-commons/1.14.10/_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. -#Thu Apr 02 20:43:13 UTC 2026 -micrometer-commons-1.14.10.jar>central= -micrometer-commons-1.14.10.pom>central= diff --git a/.m2/repository/io/micrometer/micrometer-commons/1.14.10/micrometer-commons-1.14.10.jar b/.m2/repository/io/micrometer/micrometer-commons/1.14.10/micrometer-commons-1.14.10.jar deleted file mode 100644 index b20179e..0000000 Binary files a/.m2/repository/io/micrometer/micrometer-commons/1.14.10/micrometer-commons-1.14.10.jar and /dev/null differ diff --git a/.m2/repository/io/micrometer/micrometer-commons/1.14.10/micrometer-commons-1.14.10.jar.sha1 b/.m2/repository/io/micrometer/micrometer-commons/1.14.10/micrometer-commons-1.14.10.jar.sha1 deleted file mode 100644 index cb2335a..0000000 --- a/.m2/repository/io/micrometer/micrometer-commons/1.14.10/micrometer-commons-1.14.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -374fbde4a5b2f8a6ffff837d528b4f32bf447eec \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-commons/1.14.10/micrometer-commons-1.14.10.pom b/.m2/repository/io/micrometer/micrometer-commons/1.14.10/micrometer-commons-1.14.10.pom deleted file mode 100644 index e9fafb0..0000000 --- a/.m2/repository/io/micrometer/micrometer-commons/1.14.10/micrometer-commons-1.14.10.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-commons - 1.14.10 - 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 - aspectjrt - 1.9.20.1 - compile - true - - - - 1.0 - io.micrometer#micrometer-commons;1.14.10 - 1.14.10 - release - circleci - Linux - Etc/UTC - 2025-08-11T17:32:31.088095199Z - 2025-08-11_17:32:31 - 8.14.3 - /micrometer-commons - git@github.com:micrometer-metrics/micrometer.git - 942ac71 - 942ac71ed57b27635cf045c605a181f75b1d04cd - HEAD - 8a95867a8111 - deploy - 54346 - 54346 - https://circleci.com/gh/micrometer-metrics/micrometer/54346 - 21.0.6+7-LTS (Eclipse Adoptium) - tludwig@vmware.com - tludwig@vmware.com - 1.8 - 1.8 - 21 - - diff --git a/.m2/repository/io/micrometer/micrometer-commons/1.14.10/micrometer-commons-1.14.10.pom.sha1 b/.m2/repository/io/micrometer/micrometer-commons/1.14.10/micrometer-commons-1.14.10.pom.sha1 deleted file mode 100644 index b5571c1..0000000 --- a/.m2/repository/io/micrometer/micrometer-commons/1.14.10/micrometer-commons-1.14.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8efd2402f66c3c053f6e8b4da0aab85850fdc2b2 \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-commons/1.15.3/_remote.repositories b/.m2/repository/io/micrometer/micrometer-commons/1.15.3/_remote.repositories deleted file mode 100644 index fa956b9..0000000 --- a/.m2/repository/io/micrometer/micrometer-commons/1.15.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -micrometer-commons-1.15.3.jar>central= -micrometer-commons-1.15.3.pom>central= diff --git a/.m2/repository/io/micrometer/micrometer-commons/1.15.3/micrometer-commons-1.15.3.jar b/.m2/repository/io/micrometer/micrometer-commons/1.15.3/micrometer-commons-1.15.3.jar deleted file mode 100644 index b6752f3..0000000 Binary files a/.m2/repository/io/micrometer/micrometer-commons/1.15.3/micrometer-commons-1.15.3.jar and /dev/null differ diff --git a/.m2/repository/io/micrometer/micrometer-commons/1.15.3/micrometer-commons-1.15.3.jar.sha1 b/.m2/repository/io/micrometer/micrometer-commons/1.15.3/micrometer-commons-1.15.3.jar.sha1 deleted file mode 100644 index 3f0e333..0000000 --- a/.m2/repository/io/micrometer/micrometer-commons/1.15.3/micrometer-commons-1.15.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3a97060d64a54daa11f14365aebc559fa8820281 \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-commons/1.15.3/micrometer-commons-1.15.3.pom b/.m2/repository/io/micrometer/micrometer-commons/1.15.3/micrometer-commons-1.15.3.pom deleted file mode 100644 index 4fcb1a8..0000000 --- a/.m2/repository/io/micrometer/micrometer-commons/1.15.3/micrometer-commons-1.15.3.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-commons - 1.15.3 - 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 - aspectjrt - 1.9.24 - compile - true - - - - 1.0 - io.micrometer#micrometer-commons;1.15.3 - 1.15.3 - release - circleci - Linux - Etc/UTC - 2025-08-11T17:56:03.999845966Z - 2025-08-11_17:56:03 - 8.14.3 - /micrometer-commons - git@github.com:micrometer-metrics/micrometer.git - 5b19610 - 5b196107904eb875c0519e60dbba286439c2a343 - HEAD - c85382cb342f - deploy - 54360 - 54360 - https://circleci.com/gh/micrometer-metrics/micrometer/54360 - 21.0.6+7-LTS (Eclipse Adoptium) - tludwig@vmware.com - tludwig@vmware.com - 1.8 - 1.8 - 21 - - diff --git a/.m2/repository/io/micrometer/micrometer-commons/1.15.3/micrometer-commons-1.15.3.pom.sha1 b/.m2/repository/io/micrometer/micrometer-commons/1.15.3/micrometer-commons-1.15.3.pom.sha1 deleted file mode 100644 index f7a9203..0000000 --- a/.m2/repository/io/micrometer/micrometer-commons/1.15.3/micrometer-commons-1.15.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -29c6e92d515151b0164980ea8330a503a0b5f928 \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-core/1.15.3/_remote.repositories b/.m2/repository/io/micrometer/micrometer-core/1.15.3/_remote.repositories deleted file mode 100644 index befd767..0000000 --- a/.m2/repository/io/micrometer/micrometer-core/1.15.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -micrometer-core-1.15.3.jar>central= -micrometer-core-1.15.3.pom>central= diff --git a/.m2/repository/io/micrometer/micrometer-core/1.15.3/micrometer-core-1.15.3.jar b/.m2/repository/io/micrometer/micrometer-core/1.15.3/micrometer-core-1.15.3.jar deleted file mode 100644 index 6769258..0000000 Binary files a/.m2/repository/io/micrometer/micrometer-core/1.15.3/micrometer-core-1.15.3.jar and /dev/null differ diff --git a/.m2/repository/io/micrometer/micrometer-core/1.15.3/micrometer-core-1.15.3.jar.sha1 b/.m2/repository/io/micrometer/micrometer-core/1.15.3/micrometer-core-1.15.3.jar.sha1 deleted file mode 100644 index db05118..0000000 --- a/.m2/repository/io/micrometer/micrometer-core/1.15.3/micrometer-core-1.15.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7d9458b1138c8f32a0dcc2e4a0dbfc7717542985 \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-core/1.15.3/micrometer-core-1.15.3.pom b/.m2/repository/io/micrometer/micrometer-core/1.15.3/micrometer-core-1.15.3.pom deleted file mode 100644 index 2af4d88..0000000 --- a/.m2/repository/io/micrometer/micrometer-core/1.15.3/micrometer-core-1.15.3.pom +++ /dev/null @@ -1,321 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-core - 1.15.3 - 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.15.3 - compile - - - io.micrometer - micrometer-observation - 1.15.3 - compile - - - org.hdrhistogram - HdrHistogram - 2.2.2 - runtime - - - org.aspectj - aspectjtools - - - - - org.latencyutils - LatencyUtils - 2.0.3 - runtime - - - org.aspectj - aspectjtools - - - org.hdrhistogram - HdrHistogram - - - - - com.google.code.findbugs - jsr305 - 3.0.2 - compile - true - - - org.aspectj - aspectjrt - 1.9.24 - compile - true - - - io.dropwizard.metrics - metrics-core - 4.2.33 - compile - true - - - com.google.guava - guava - 32.1.3-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.8 - compile - true - - - org.hibernate - hibernate-entitymanager - 5.6.15.Final - compile - true - - - org.eclipse.jetty - jetty-server - 9.4.57.v20241219 - compile - true - - - jakarta.servlet - jakarta.servlet-api - 5.0.0 - compile - true - - - org.eclipse.jetty - jetty-client - 9.4.57.v20241219 - compile - true - - - org.apache.tomcat.embed - tomcat-embed-core - 8.5.100 - compile - true - - - org.glassfish.jersey.core - jersey-server - 2.46 - compile - true - - - io.grpc - grpc-api - 1.72.0 - compile - true - - - io.grpc - grpc-kotlin-stub - 1.4.3 - compile - true - - - io.netty - netty-transport - 4.1.123.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.4.4 - 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.24.3 - compile - true - - - com.squareup.okhttp3 - okhttp - 4.11.0 - compile - true - - - org.mongodb - mongodb-driver-sync - 4.11.5 - 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.3 - compile - true - - - org.jetbrains.kotlin - kotlin-reflect - 2.0.21 - compile - true - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 2.0.21 - compile - true - - - org.jetbrains.kotlinx - kotlinx-coroutines-core-jvm - 1.7.3 - compile - true - - - - 1.0 - io.micrometer#micrometer-core;1.15.3 - 1.15.3 - release - circleci - Linux - Etc/UTC - 2025-08-11T17:56:04.080721341Z - 2025-08-11_17:56:04 - 8.14.3 - /micrometer-core - git@github.com:micrometer-metrics/micrometer.git - 5b19610 - 5b196107904eb875c0519e60dbba286439c2a343 - HEAD - c85382cb342f - deploy - 54360 - 54360 - https://circleci.com/gh/micrometer-metrics/micrometer/54360 - 21.0.6+7-LTS (Eclipse Adoptium) - tludwig@vmware.com - tludwig@vmware.com - 1.8 - 1.8 - 21 - - diff --git a/.m2/repository/io/micrometer/micrometer-core/1.15.3/micrometer-core-1.15.3.pom.sha1 b/.m2/repository/io/micrometer/micrometer-core/1.15.3/micrometer-core-1.15.3.pom.sha1 deleted file mode 100644 index f3184ec..0000000 --- a/.m2/repository/io/micrometer/micrometer-core/1.15.3/micrometer-core-1.15.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1ff4b9ba881a1434aed2d9529314f9621b88e12e \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/_remote.repositories b/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/_remote.repositories deleted file mode 100644 index 66dac75..0000000 --- a/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -micrometer-jakarta9-1.15.3.jar>central= -micrometer-jakarta9-1.15.3.pom>central= diff --git a/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/micrometer-jakarta9-1.15.3.jar b/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/micrometer-jakarta9-1.15.3.jar deleted file mode 100644 index 1aa35c6..0000000 Binary files a/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/micrometer-jakarta9-1.15.3.jar and /dev/null differ diff --git a/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/micrometer-jakarta9-1.15.3.jar.sha1 b/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/micrometer-jakarta9-1.15.3.jar.sha1 deleted file mode 100644 index 7107c33..0000000 --- a/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/micrometer-jakarta9-1.15.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1f6d5a1bab3ac5a674abfce61d1b82554aeb90e4 \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/micrometer-jakarta9-1.15.3.pom b/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/micrometer-jakarta9-1.15.3.pom deleted file mode 100644 index 43b56d6..0000000 --- a/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/micrometer-jakarta9-1.15.3.pom +++ /dev/null @@ -1,89 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-jakarta9 - 1.15.3 - micrometer-jakarta9 - Module for Jakarta 9+ based instrumentations - 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-core - 1.15.3 - compile - - - io.micrometer - micrometer-commons - 1.15.3 - compile - - - io.micrometer - micrometer-observation - 1.15.3 - compile - - - com.google.code.findbugs - jsr305 - 3.0.2 - compile - true - - - jakarta.jms - jakarta.jms-api - 3.0.0 - compile - true - - - - 1.0 - io.micrometer#micrometer-jakarta9;1.15.3 - 1.15.3 - release - circleci - Linux - Etc/UTC - 2025-08-11T17:56:04.157688332Z - 2025-08-11_17:56:04 - 8.14.3 - /micrometer-jakarta9 - git@github.com:micrometer-metrics/micrometer.git - 5b19610 - 5b196107904eb875c0519e60dbba286439c2a343 - HEAD - c85382cb342f - deploy - 54360 - 54360 - https://circleci.com/gh/micrometer-metrics/micrometer/54360 - 21.0.6+7-LTS (Eclipse Adoptium) - tludwig@vmware.com - tludwig@vmware.com - 1.8 - 1.8 - 21 - - diff --git a/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/micrometer-jakarta9-1.15.3.pom.sha1 b/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/micrometer-jakarta9-1.15.3.pom.sha1 deleted file mode 100644 index 6ab040f..0000000 --- a/.m2/repository/io/micrometer/micrometer-jakarta9/1.15.3/micrometer-jakarta9-1.15.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -59cb6fcdae60506931bf8b561704d431c65efa02 \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-observation/1.14.10/_remote.repositories b/.m2/repository/io/micrometer/micrometer-observation/1.14.10/_remote.repositories deleted file mode 100644 index a40d827..0000000 --- a/.m2/repository/io/micrometer/micrometer-observation/1.14.10/_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. -#Thu Apr 02 20:43:13 UTC 2026 -micrometer-observation-1.14.10.jar>central= -micrometer-observation-1.14.10.pom>central= diff --git a/.m2/repository/io/micrometer/micrometer-observation/1.14.10/micrometer-observation-1.14.10.jar b/.m2/repository/io/micrometer/micrometer-observation/1.14.10/micrometer-observation-1.14.10.jar deleted file mode 100644 index 5b9c645..0000000 Binary files a/.m2/repository/io/micrometer/micrometer-observation/1.14.10/micrometer-observation-1.14.10.jar and /dev/null differ diff --git a/.m2/repository/io/micrometer/micrometer-observation/1.14.10/micrometer-observation-1.14.10.jar.sha1 b/.m2/repository/io/micrometer/micrometer-observation/1.14.10/micrometer-observation-1.14.10.jar.sha1 deleted file mode 100644 index 8ea4fa4..0000000 --- a/.m2/repository/io/micrometer/micrometer-observation/1.14.10/micrometer-observation-1.14.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0cb3436ec1aa0f0f428cd668c7481131b425e4a4 \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-observation/1.14.10/micrometer-observation-1.14.10.pom b/.m2/repository/io/micrometer/micrometer-observation/1.14.10/micrometer-observation-1.14.10.pom deleted file mode 100644 index 2e1a6b0..0000000 --- a/.m2/repository/io/micrometer/micrometer-observation/1.14.10/micrometer-observation-1.14.10.pom +++ /dev/null @@ -1,91 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-observation - 1.14.10 - 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.14.10 - compile - - - com.google.code.findbugs - jsr305 - 3.0.2 - compile - true - - - io.micrometer - context-propagation - 1.1.3 - compile - true - - - javax.servlet - javax.servlet-api - 4.0.1 - compile - true - - - org.aspectj - aspectjrt - 1.9.20.1 - compile - true - - - - 1.0 - io.micrometer#micrometer-observation;1.14.10 - 1.14.10 - release - circleci - Linux - Etc/UTC - 2025-08-11T17:32:31.610824783Z - 2025-08-11_17:32:31 - 8.14.3 - /micrometer-observation - git@github.com:micrometer-metrics/micrometer.git - 942ac71 - 942ac71ed57b27635cf045c605a181f75b1d04cd - HEAD - 8a95867a8111 - deploy - 54346 - 54346 - https://circleci.com/gh/micrometer-metrics/micrometer/54346 - 21.0.6+7-LTS (Eclipse Adoptium) - tludwig@vmware.com - tludwig@vmware.com - 1.8 - 1.8 - 21 - - diff --git a/.m2/repository/io/micrometer/micrometer-observation/1.14.10/micrometer-observation-1.14.10.pom.sha1 b/.m2/repository/io/micrometer/micrometer-observation/1.14.10/micrometer-observation-1.14.10.pom.sha1 deleted file mode 100644 index ea36c38..0000000 --- a/.m2/repository/io/micrometer/micrometer-observation/1.14.10/micrometer-observation-1.14.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c8833a5d8a008f53b89025b0c1350de359f1d367 \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-observation/1.15.3/_remote.repositories b/.m2/repository/io/micrometer/micrometer-observation/1.15.3/_remote.repositories deleted file mode 100644 index 7b59217..0000000 --- a/.m2/repository/io/micrometer/micrometer-observation/1.15.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -micrometer-observation-1.15.3.jar>central= -micrometer-observation-1.15.3.pom>central= diff --git a/.m2/repository/io/micrometer/micrometer-observation/1.15.3/micrometer-observation-1.15.3.jar b/.m2/repository/io/micrometer/micrometer-observation/1.15.3/micrometer-observation-1.15.3.jar deleted file mode 100644 index 82527e7..0000000 Binary files a/.m2/repository/io/micrometer/micrometer-observation/1.15.3/micrometer-observation-1.15.3.jar and /dev/null differ diff --git a/.m2/repository/io/micrometer/micrometer-observation/1.15.3/micrometer-observation-1.15.3.jar.sha1 b/.m2/repository/io/micrometer/micrometer-observation/1.15.3/micrometer-observation-1.15.3.jar.sha1 deleted file mode 100644 index 2387659..0000000 --- a/.m2/repository/io/micrometer/micrometer-observation/1.15.3/micrometer-observation-1.15.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e95d07e329f6d3ecb15a6ba1c5d96c25b9df0a97 \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-observation/1.15.3/micrometer-observation-1.15.3.pom b/.m2/repository/io/micrometer/micrometer-observation/1.15.3/micrometer-observation-1.15.3.pom deleted file mode 100644 index 7bd5693..0000000 --- a/.m2/repository/io/micrometer/micrometer-observation/1.15.3/micrometer-observation-1.15.3.pom +++ /dev/null @@ -1,91 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-observation - 1.15.3 - 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.15.3 - compile - - - com.google.code.findbugs - jsr305 - 3.0.2 - compile - true - - - io.micrometer - context-propagation - 1.1.3 - compile - true - - - javax.servlet - javax.servlet-api - 4.0.1 - compile - true - - - org.aspectj - aspectjrt - 1.9.24 - compile - true - - - - 1.0 - io.micrometer#micrometer-observation;1.15.3 - 1.15.3 - release - circleci - Linux - Etc/UTC - 2025-08-11T17:56:04.490991871Z - 2025-08-11_17:56:04 - 8.14.3 - /micrometer-observation - git@github.com:micrometer-metrics/micrometer.git - 5b19610 - 5b196107904eb875c0519e60dbba286439c2a343 - HEAD - c85382cb342f - deploy - 54360 - 54360 - https://circleci.com/gh/micrometer-metrics/micrometer/54360 - 21.0.6+7-LTS (Eclipse Adoptium) - tludwig@vmware.com - tludwig@vmware.com - 1.8 - 1.8 - 21 - - diff --git a/.m2/repository/io/micrometer/micrometer-observation/1.15.3/micrometer-observation-1.15.3.pom.sha1 b/.m2/repository/io/micrometer/micrometer-observation/1.15.3/micrometer-observation-1.15.3.pom.sha1 deleted file mode 100644 index 7dee54a..0000000 --- a/.m2/repository/io/micrometer/micrometer-observation/1.15.3/micrometer-observation-1.15.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5175a5eb94c0db458853e200c3faa8680b392b8c \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-tracing-bom/1.2.4/_remote.repositories b/.m2/repository/io/micrometer/micrometer-tracing-bom/1.2.4/_remote.repositories deleted file mode 100644 index 4eb225c..0000000 --- a/.m2/repository/io/micrometer/micrometer-tracing-bom/1.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. -#Thu Apr 02 20:38:12 UTC 2026 -micrometer-tracing-bom-1.2.4.pom>central= diff --git a/.m2/repository/io/micrometer/micrometer-tracing-bom/1.2.4/micrometer-tracing-bom-1.2.4.pom b/.m2/repository/io/micrometer/micrometer-tracing-bom/1.2.4/micrometer-tracing-bom-1.2.4.pom deleted file mode 100644 index 184e69e..0000000 --- a/.m2/repository/io/micrometer/micrometer-tracing-bom/1.2.4/micrometer-tracing-bom-1.2.4.pom +++ /dev/null @@ -1,109 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-tracing-bom - 1.2.4 - 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.4 - - - io.micrometer - micrometer-tracing - 1.2.4 - - - io.micrometer - micrometer-tracing-bridge-brave - 1.2.4 - - - io.micrometer - micrometer-tracing-bridge-otel - 1.2.4 - - - io.micrometer - micrometer-tracing-integration-test - 1.2.4 - - - io.micrometer - micrometer-tracing-reporter-wavefront - 1.2.4 - - - io.micrometer - micrometer-tracing-test - 1.2.4 - - - io.micrometer - micrometer-bom - 1.12.4 - pom - import - - - - - 1.0 - io.micrometer#micrometer-tracing-bom;1.2.4 - 1.2.4 - release - circleci - Linux - Etc/UTC - 2024-03-12T02:19:07.642518345Z - 2024-03-12_02:19:07 - 8.6 - /micrometer-tracing-bom - git@github.com:micrometer-metrics/tracing.git - ee8972b - ee8972bc7bd1e705de695c66464d17a16550483f - HEAD - d5c3c53bc3c4 - deploy - 6116 - 6116 - https://circleci.com/gh/micrometer-metrics/tracing/6116 - 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/.m2/repository/io/micrometer/micrometer-tracing-bom/1.2.4/micrometer-tracing-bom-1.2.4.pom.sha1 b/.m2/repository/io/micrometer/micrometer-tracing-bom/1.2.4/micrometer-tracing-bom-1.2.4.pom.sha1 deleted file mode 100644 index 0ade4d7..0000000 --- a/.m2/repository/io/micrometer/micrometer-tracing-bom/1.2.4/micrometer-tracing-bom-1.2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f3fb5260927d094c92619b083a69ed51011d76f4 \ No newline at end of file diff --git a/.m2/repository/io/micrometer/micrometer-tracing-bom/1.5.3/_remote.repositories b/.m2/repository/io/micrometer/micrometer-tracing-bom/1.5.3/_remote.repositories deleted file mode 100644 index fc39f23..0000000 --- a/.m2/repository/io/micrometer/micrometer-tracing-bom/1.5.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. -#Thu Apr 02 20:37:36 UTC 2026 -micrometer-tracing-bom-1.5.3.pom>central= diff --git a/.m2/repository/io/micrometer/micrometer-tracing-bom/1.5.3/micrometer-tracing-bom-1.5.3.pom b/.m2/repository/io/micrometer/micrometer-tracing-bom/1.5.3/micrometer-tracing-bom-1.5.3.pom deleted file mode 100644 index 8ca154e..0000000 --- a/.m2/repository/io/micrometer/micrometer-tracing-bom/1.5.3/micrometer-tracing-bom-1.5.3.pom +++ /dev/null @@ -1,109 +0,0 @@ - - - 4.0.0 - io.micrometer - micrometer-tracing-bom - 1.5.3 - 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.5.3 - - - io.micrometer - micrometer-tracing - 1.5.3 - - - io.micrometer - micrometer-tracing-bridge-brave - 1.5.3 - - - io.micrometer - micrometer-tracing-bridge-otel - 1.5.3 - - - io.micrometer - micrometer-tracing-integration-test - 1.5.3 - - - io.micrometer - micrometer-tracing-reporter-wavefront - 1.5.3 - - - io.micrometer - micrometer-tracing-test - 1.5.3 - - - io.micrometer - micrometer-bom - 1.15.3 - pom - import - - - - - 1.0 - io.micrometer#micrometer-tracing-bom;1.5.3 - 1.5.3 - release - circleci - Linux - Etc/UTC - 2025-08-11T19:49:39.402513066Z - 2025-08-11_19:49:39 - 8.14.2 - /micrometer-tracing-bom - git@github.com:micrometer-metrics/tracing.git - bad0089 - bad0089e24b9ee4b906eca727110fe38e6491cdc - HEAD - 654932b49c38 - deploy - 11669 - 11669 - https://circleci.com/gh/micrometer-metrics/tracing/11669 - 21.0.6+7-LTS (Eclipse Adoptium) - tludwig@vmware.com,jivanov@vmware.com,mgrzejszczak@vmware.com - tludwig@vmware.com,jivanov@vmware.com,mgrzejszczak@vmware.com - - diff --git a/.m2/repository/io/micrometer/micrometer-tracing-bom/1.5.3/micrometer-tracing-bom-1.5.3.pom.sha1 b/.m2/repository/io/micrometer/micrometer-tracing-bom/1.5.3/micrometer-tracing-bom-1.5.3.pom.sha1 deleted file mode 100644 index 47c2eb6..0000000 --- a/.m2/repository/io/micrometer/micrometer-tracing-bom/1.5.3/micrometer-tracing-bom-1.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -780052e2333c16f9c1472325594d148347d2ee68 \ No newline at end of file diff --git a/.m2/repository/io/minio/minio/8.5.7/_remote.repositories b/.m2/repository/io/minio/minio/8.5.7/_remote.repositories deleted file mode 100644 index 3eb9a04..0000000 --- a/.m2/repository/io/minio/minio/8.5.7/_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. -#Thu Apr 02 20:38:35 UTC 2026 -minio-8.5.7.jar>central= -minio-8.5.7.pom>central= diff --git a/.m2/repository/io/minio/minio/8.5.7/minio-8.5.7.jar b/.m2/repository/io/minio/minio/8.5.7/minio-8.5.7.jar deleted file mode 100644 index 8ca67ee..0000000 Binary files a/.m2/repository/io/minio/minio/8.5.7/minio-8.5.7.jar and /dev/null differ diff --git a/.m2/repository/io/minio/minio/8.5.7/minio-8.5.7.jar.sha1 b/.m2/repository/io/minio/minio/8.5.7/minio-8.5.7.jar.sha1 deleted file mode 100644 index da2e5b6..0000000 --- a/.m2/repository/io/minio/minio/8.5.7/minio-8.5.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c17d6e693cfba62ad0822fde84336bb2ba814ff3 \ No newline at end of file diff --git a/.m2/repository/io/minio/minio/8.5.7/minio-8.5.7.pom b/.m2/repository/io/minio/minio/8.5.7/minio-8.5.7.pom deleted file mode 100644 index af215ee..0000000 --- a/.m2/repository/io/minio/minio/8.5.7/minio-8.5.7.pom +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - 4.0.0 - io.minio - minio - 8.5.7 - minio - MinIO Java SDK for Amazon S3 Compatible Cloud Storage - https://github.com/minio/minio-java - 2015 - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - minio - MinIO Inc. - dev@min.io - - - - scm:git:git@github.com:minio/minio-java.git - scm:git:git@github.com:minio/minio-java.git - http://github.com/minio/minio-java - - - - com.carrotsearch.thirdparty - simple-xml-safe - 2.7.1 - compile - - - com.google.guava - guava - 32.1.3-jre - compile - - - com.squareup.okhttp3 - okhttp - 4.12.0 - compile - - - com.fasterxml.jackson.core - jackson-annotations - 2.15.3 - compile - - - com.fasterxml.jackson.core - jackson-core - 2.15.3 - compile - - - com.fasterxml.jackson.core - jackson-databind - 2.15.3 - compile - - - org.bouncycastle - bcprov-jdk18on - 1.76 - compile - - - org.apache.commons - commons-compress - 1.24.0 - compile - - - org.xerial.snappy - snappy-java - 1.1.10.5 - compile - - - diff --git a/.m2/repository/io/minio/minio/8.5.7/minio-8.5.7.pom.sha1 b/.m2/repository/io/minio/minio/8.5.7/minio-8.5.7.pom.sha1 deleted file mode 100644 index fad1e3b..0000000 --- a/.m2/repository/io/minio/minio/8.5.7/minio-8.5.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c81f40844d4a22f3ee8868913af8e0b266c142a4 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-bom/4.1.107.Final/_remote.repositories b/.m2/repository/io/netty/netty-bom/4.1.107.Final/_remote.repositories deleted file mode 100644 index 0d7bb58..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:12 UTC 2026 -netty-bom-4.1.107.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom b/.m2/repository/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom deleted file mode 100644 index b16ebdb..0000000 --- a/.m2/repository/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/.m2/repository/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom.sha1 b/.m2/repository/io/netty/netty-bom/4.1.107.Final/netty-bom-4.1.107.Final.pom.sha1 deleted file mode 100644 index 1526493..0000000 --- a/.m2/repository/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/.m2/repository/io/netty/netty-bom/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-bom/4.1.124.Final/_remote.repositories deleted file mode 100644 index bc8a8d5..0000000 --- a/.m2/repository/io/netty/netty-bom/4.1.124.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. -#Thu Apr 02 20:37:37 UTC 2026 -netty-bom-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-bom/4.1.124.Final/netty-bom-4.1.124.Final.pom b/.m2/repository/io/netty/netty-bom/4.1.124.Final/netty-bom-4.1.124.Final.pom deleted file mode 100644 index 24cb52b..0000000 --- a/.m2/repository/io/netty/netty-bom/4.1.124.Final/netty-bom-4.1.124.Final.pom +++ /dev/null @@ -1,415 +0,0 @@ - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - - - - io.netty - netty-bom - 4.1.124.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.124.Final - - - - - netty.io - The Netty Project Contributors - netty@googlegroups.com - https://netty.io/ - The Netty Project - https://netty.io/ - - - - - - Central Portal Snapshots - central-portal-snapshots - https://central.sonatype.com/repository/maven-snapshots/ - - - - - - 2.0.72.Final - - - - - - com.commsen.maven - bom-helper-maven-plugin - 0.4.0 - - - - - - - org.sonatype.central - central-publishing-maven-plugin - 0.7.0 - - central - true - false - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.7.0 - - central-portal-snapshots - https://central.sonatype.com/repository/maven-snapshots - true - - - - - - - - - - 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-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} - osx-x86_64 - - - io.netty - netty-tcnative - ${tcnative.version} - osx-aarch_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/.m2/repository/io/netty/netty-bom/4.1.124.Final/netty-bom-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-bom/4.1.124.Final/netty-bom-4.1.124.Final.pom.sha1 deleted file mode 100644 index 849d322..0000000 --- a/.m2/repository/io/netty/netty-bom/4.1.124.Final/netty-bom-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -64735aff1a5a0e440d9ab115c64c4b7e3da26511 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-bom/4.1.87.Final/_remote.repositories b/.m2/repository/io/netty/netty-bom/4.1.87.Final/_remote.repositories deleted file mode 100644 index 177ef6b..0000000 --- a/.m2/repository/io/netty/netty-bom/4.1.87.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. -#Thu Apr 02 20:37:52 UTC 2026 -netty-bom-4.1.87.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-bom/4.1.87.Final/netty-bom-4.1.87.Final.pom b/.m2/repository/io/netty/netty-bom/4.1.87.Final/netty-bom-4.1.87.Final.pom deleted file mode 100644 index 4de2425..0000000 --- a/.m2/repository/io/netty/netty-bom/4.1.87.Final/netty-bom-4.1.87.Final.pom +++ /dev/null @@ -1,375 +0,0 @@ - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - - - - io.netty - netty-bom - 4.1.87.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.87.Final - - - - - netty.io - The Netty Project Contributors - netty@googlegroups.com - https://netty.io/ - The Netty Project - https://netty.io/ - - - - - - 2.0.56.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/.m2/repository/io/netty/netty-bom/4.1.87.Final/netty-bom-4.1.87.Final.pom.sha1 b/.m2/repository/io/netty/netty-bom/4.1.87.Final/netty-bom-4.1.87.Final.pom.sha1 deleted file mode 100644 index 20ffb9d..0000000 --- a/.m2/repository/io/netty/netty-bom/4.1.87.Final/netty-bom-4.1.87.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -785e10eb2cde292e0a19ec219368f9df2ecf7aab \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-buffer/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-buffer/4.1.124.Final/_remote.repositories deleted file mode 100644 index d5f2aaa..0000000 --- a/.m2/repository/io/netty/netty-buffer/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-buffer-4.1.124.Final.jar>central= -netty-buffer-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-buffer/4.1.124.Final/netty-buffer-4.1.124.Final.jar b/.m2/repository/io/netty/netty-buffer/4.1.124.Final/netty-buffer-4.1.124.Final.jar deleted file mode 100644 index 3d7110d..0000000 Binary files a/.m2/repository/io/netty/netty-buffer/4.1.124.Final/netty-buffer-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-buffer/4.1.124.Final/netty-buffer-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-buffer/4.1.124.Final/netty-buffer-4.1.124.Final.jar.sha1 deleted file mode 100644 index e7f077d..0000000 --- a/.m2/repository/io/netty/netty-buffer/4.1.124.Final/netty-buffer-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1e9c299dc908e801b4e041bef1b81cfe0ca0038c \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-buffer/4.1.124.Final/netty-buffer-4.1.124.Final.pom b/.m2/repository/io/netty/netty-buffer/4.1.124.Final/netty-buffer-4.1.124.Final.pom deleted file mode 100644 index 3561805..0000000 --- a/.m2/repository/io/netty/netty-buffer/4.1.124.Final/netty-buffer-4.1.124.Final.pom +++ /dev/null @@ -1,66 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - - netty-buffer - jar - - Netty/Buffer - - - io.netty.buffer - - - - - ${project.groupId} - netty-common - ${project.version} - - - org.mockito - mockito-core - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - diff --git a/.m2/repository/io/netty/netty-buffer/4.1.124.Final/netty-buffer-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-buffer/4.1.124.Final/netty-buffer-4.1.124.Final.pom.sha1 deleted file mode 100644 index 2ef37db..0000000 --- a/.m2/repository/io/netty/netty-buffer/4.1.124.Final/netty-buffer-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d10407adb06c62d3f2b7d9836337c8c0a272b738 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/_remote.repositories deleted file mode 100644 index 70b97de..0000000 --- a/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-codec-dns-4.1.124.Final.jar>central= -netty-codec-dns-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/netty-codec-dns-4.1.124.Final.jar b/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/netty-codec-dns-4.1.124.Final.jar deleted file mode 100644 index 67072f7..0000000 Binary files a/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/netty-codec-dns-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/netty-codec-dns-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/netty-codec-dns-4.1.124.Final.jar.sha1 deleted file mode 100644 index 97fa4b2..0000000 --- a/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/netty-codec-dns-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ecfc4946066df549ecce8b9cec999e4b1526c8f2 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/netty-codec-dns-4.1.124.Final.pom b/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/netty-codec-dns-4.1.124.Final.pom deleted file mode 100644 index 042378b..0000000 --- a/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/netty-codec-dns-4.1.124.Final.pom +++ /dev/null @@ -1,101 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - - netty-codec-dns - jar - - Netty/Codec/DNS - - - io.netty.codec.dns - - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - ${project.groupId} - netty-codec - ${project.version} - - - - org.apache.directory.server - apacheds-protocol-dns - test - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - - diff --git a/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/netty-codec-dns-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/netty-codec-dns-4.1.124.Final.pom.sha1 deleted file mode 100644 index 1a41857..0000000 --- a/.m2/repository/io/netty/netty-codec-dns/4.1.124.Final/netty-codec-dns-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -98009773c1314d3aef0f3645d8478b7d88f8abc1 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/_remote.repositories deleted file mode 100644 index 0f01539..0000000 --- a/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-codec-http-4.1.124.Final.jar>central= -netty-codec-http-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/netty-codec-http-4.1.124.Final.jar b/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/netty-codec-http-4.1.124.Final.jar deleted file mode 100644 index 5f5ccdb..0000000 Binary files a/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/netty-codec-http-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/netty-codec-http-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/netty-codec-http-4.1.124.Final.jar.sha1 deleted file mode 100644 index 4e36c0e..0000000 --- a/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/netty-codec-http-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -57d4a06c3241f153410ffec292004fbba87b9695 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/netty-codec-http-4.1.124.Final.pom b/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/netty-codec-http-4.1.124.Final.pom deleted file mode 100644 index 9c3d016..0000000 --- a/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/netty-codec-http-4.1.124.Final.pom +++ /dev/null @@ -1,153 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - - netty-codec-http - jar - - Netty/Codec/HTTP - - - io.netty.codec.http - - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - ${project.groupId} - netty-codec - ${project.version} - - - ${project.groupId} - netty-handler - ${project.version} - - - com.jcraft - jzlib - true - - - org.mockito - mockito-core - - - commons-io - commons-io - - - com.aayushatharva.brotli4j - brotli4j - true - - - com.aayushatharva.brotli4j - native-linux-x86_64 - test - - - com.aayushatharva.brotli4j - native-linux-aarch64 - test - - - com.aayushatharva.brotli4j - native-linux-riscv64 - test - - - com.aayushatharva.brotli4j - native-osx-x86_64 - test - - - com.aayushatharva.brotli4j - native-osx-aarch64 - test - - - com.aayushatharva.brotli4j - native-windows-x86_64 - test - - - com.github.luben - zstd-jni - true - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - - diff --git a/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/netty-codec-http-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/netty-codec-http-4.1.124.Final.pom.sha1 deleted file mode 100644 index 73ba577..0000000 --- a/.m2/repository/io/netty/netty-codec-http/4.1.124.Final/netty-codec-http-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8b0fa720ffa8d53323dd79c6b7cc7487995cfba0 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/_remote.repositories deleted file mode 100644 index c686bb3..0000000 --- a/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-codec-http2-4.1.124.Final.jar>central= -netty-codec-http2-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/netty-codec-http2-4.1.124.Final.jar b/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/netty-codec-http2-4.1.124.Final.jar deleted file mode 100644 index 8758897..0000000 Binary files a/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/netty-codec-http2-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/netty-codec-http2-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/netty-codec-http2-4.1.124.Final.jar.sha1 deleted file mode 100644 index 93a543a..0000000 --- a/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/netty-codec-http2-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -24f9b9afacb3d79c176d10424890ebd4457ceaf7 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/netty-codec-http2-4.1.124.Final.pom b/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/netty-codec-http2-4.1.124.Final.pom deleted file mode 100644 index e729a15..0000000 --- a/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/netty-codec-http2-4.1.124.Final.pom +++ /dev/null @@ -1,173 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - - netty-codec-http2 - jar - - Netty/Codec/HTTP2 - - - io.netty.codec.http2 - - --add-exports java.base/sun.security.x509=ALL-UNNAMED - - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - ${project.groupId} - netty-codec - ${project.version} - - - ${project.groupId} - netty-handler - ${project.version} - - - ${project.groupId} - netty-codec-http - ${project.version} - - - com.jcraft - jzlib - true - - - org.mockito - mockito-core - - - org.bouncycastle - bcpkix-jdk15on - test - - - ${project.groupId} - ${tcnative.artifactId} - ${tcnative.classifier} - test - true - - - com.aayushatharva.brotli4j - brotli4j - true - - - com.aayushatharva.brotli4j - native-linux-x86_64 - test - - - com.aayushatharva.brotli4j - native-linux-aarch64 - test - - - com.aayushatharva.brotli4j - native-linux-riscv64 - test - - - com.aayushatharva.brotli4j - native-linux-armv7 - test - - - com.aayushatharva.brotli4j - native-osx-x86_64 - test - - - com.aayushatharva.brotli4j - native-osx-aarch64 - test - - - com.aayushatharva.brotli4j - native-windows-x86_64 - test - - - com.github.luben - zstd-jni - true - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - - diff --git a/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/netty-codec-http2-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/netty-codec-http2-4.1.124.Final.pom.sha1 deleted file mode 100644 index 96842a0..0000000 --- a/.m2/repository/io/netty/netty-codec-http2/4.1.124.Final/netty-codec-http2-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -95a642eeae861c64341c66bd4a145d420a85ade5 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/_remote.repositories deleted file mode 100644 index ed93cce..0000000 --- a/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-codec-socks-4.1.124.Final.jar>central= -netty-codec-socks-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/netty-codec-socks-4.1.124.Final.jar b/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/netty-codec-socks-4.1.124.Final.jar deleted file mode 100644 index 8f8f2f4..0000000 Binary files a/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/netty-codec-socks-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/netty-codec-socks-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/netty-codec-socks-4.1.124.Final.jar.sha1 deleted file mode 100644 index d98c7f5..0000000 --- a/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/netty-codec-socks-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fc2ee1c4e0d88804c1d058da8b3a4d483b1a2754 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/netty-codec-socks-4.1.124.Final.pom b/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/netty-codec-socks-4.1.124.Final.pom deleted file mode 100644 index fe0b6c8..0000000 --- a/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/netty-codec-socks-4.1.124.Final.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - - netty-codec-socks - jar - - Netty/Codec/Socks - - - io.netty.codec.socks - - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - ${project.groupId} - netty-codec - ${project.version} - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - - diff --git a/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/netty-codec-socks-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/netty-codec-socks-4.1.124.Final.pom.sha1 deleted file mode 100644 index 57497cb..0000000 --- a/.m2/repository/io/netty/netty-codec-socks/4.1.124.Final/netty-codec-socks-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -71e2a34206d5782d00b30b184f62c2e0a0fcfb12 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-codec/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-codec/4.1.124.Final/_remote.repositories deleted file mode 100644 index 0c33b8c..0000000 --- a/.m2/repository/io/netty/netty-codec/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-codec-4.1.124.Final.jar>central= -netty-codec-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-codec/4.1.124.Final/netty-codec-4.1.124.Final.jar b/.m2/repository/io/netty/netty-codec/4.1.124.Final/netty-codec-4.1.124.Final.jar deleted file mode 100644 index d9cd52d..0000000 Binary files a/.m2/repository/io/netty/netty-codec/4.1.124.Final/netty-codec-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-codec/4.1.124.Final/netty-codec-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-codec/4.1.124.Final/netty-codec-4.1.124.Final.jar.sha1 deleted file mode 100644 index ba49a7d..0000000 --- a/.m2/repository/io/netty/netty-codec/4.1.124.Final/netty-codec-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -081e66a1586b6ae4f810f297d2b050c968a11658 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-codec/4.1.124.Final/netty-codec-4.1.124.Final.pom b/.m2/repository/io/netty/netty-codec/4.1.124.Final/netty-codec-4.1.124.Final.pom deleted file mode 100644 index f4532a9..0000000 --- a/.m2/repository/io/netty/netty-codec/4.1.124.Final/netty-codec-4.1.124.Final.pom +++ /dev/null @@ -1,189 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - - netty-codec - jar - - Netty/Codec - - - io.netty.codec - - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - com.google.protobuf - protobuf-java - true - - - com.google.protobuf.nano - protobuf-javanano - true - - - org.jboss.marshalling - jboss-marshalling - true - - - com.jcraft - jzlib - true - - - com.ning - compress-lzf - true - - - org.lz4 - lz4-java - true - - - com.github.jponge - lzma-java - true - - - com.github.luben - zstd-jni - true - - - com.aayushatharva.brotli4j - brotli4j - true - - - com.aayushatharva.brotli4j - native-linux-x86_64 - true - - - com.aayushatharva.brotli4j - native-linux-aarch64 - true - - - com.aayushatharva.brotli4j - native-linux-riscv64 - true - - - com.aayushatharva.brotli4j - native-osx-x86_64 - true - - - com.aayushatharva.brotli4j - native-osx-aarch64 - true - - - com.aayushatharva.brotli4j - native-windows-x86_64 - true - - - - org.mockito - mockito-core - - - - - org.jboss.marshalling - jboss-marshalling-serial - test - - - org.jboss.marshalling - jboss-marshalling-river - test - - - - - org.apache.commons - commons-compress - test - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - - diff --git a/.m2/repository/io/netty/netty-codec/4.1.124.Final/netty-codec-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-codec/4.1.124.Final/netty-codec-4.1.124.Final.pom.sha1 deleted file mode 100644 index aaa59ec..0000000 --- a/.m2/repository/io/netty/netty-codec/4.1.124.Final/netty-codec-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4f6857cacdc339bbca7ff63496a1415baf6a8bac \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-common/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-common/4.1.124.Final/_remote.repositories deleted file mode 100644 index 8dc172a..0000000 --- a/.m2/repository/io/netty/netty-common/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-common-4.1.124.Final.jar>central= -netty-common-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-common/4.1.124.Final/netty-common-4.1.124.Final.jar b/.m2/repository/io/netty/netty-common/4.1.124.Final/netty-common-4.1.124.Final.jar deleted file mode 100644 index 74f573d..0000000 Binary files a/.m2/repository/io/netty/netty-common/4.1.124.Final/netty-common-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-common/4.1.124.Final/netty-common-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-common/4.1.124.Final/netty-common-4.1.124.Final.jar.sha1 deleted file mode 100644 index af37490..0000000 --- a/.m2/repository/io/netty/netty-common/4.1.124.Final/netty-common-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -46f22130821ee796e347b90693f61d7fc4b2e8a6 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-common/4.1.124.Final/netty-common-4.1.124.Final.pom b/.m2/repository/io/netty/netty-common/4.1.124.Final/netty-common-4.1.124.Final.pom deleted file mode 100644 index b3d476e..0000000 --- a/.m2/repository/io/netty/netty-common/4.1.124.Final/netty-common-4.1.124.Final.pom +++ /dev/null @@ -1,331 +0,0 @@ - - - - netty-parent - io.netty - 4.1.124.Final - - 4.0.0 - netty-common - Netty/Common - - - - maven-shade-plugin - - - package - - shade - - - - - org.jctools - - - - - org.jctools. - io.netty.util.internal.shaded.org.jctools. - - - true - true - true - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-source - generate-sources - - add-source - - - - ${collection.src.dir} - - - - - add-test-source - generate-test-sources - - add-test-source - - - - ${collection.testsrc.dir} - - - - - - - org.codehaus.gmaven - groovy-maven-plugin - 2.1.1 - - - generate-collections - generate-sources - - execute - - - ${project.basedir}/src/main/script/codegen.groovy - - - - - - org.codehaus.groovy - groovy - 3.0.9 - - - ant - ant-optional - 1.5.3-1 - - - - - org.apache.felix - maven-bundle-plugin - - - generate-manifest - process-classes - - manifest - - - - * - !org.jctools.*, - - sun.misc;resolution:=optional, - sun.nio.ch;resolution:=optional, - * - - - - - - - - - - org.graalvm.nativeimage - svm - 19.3.6 - provided - - - svm-hosted-native-linux-amd64 - org.graalvm.nativeimage - - - svm-hosted-native-darwin-amd64 - org.graalvm.nativeimage - - - svm-hosted-native-windows-amd64 - org.graalvm.nativeimage - - - graal-sdk - org.graalvm.sdk - - - objectfile - org.graalvm.nativeimage - - - pointsto - org.graalvm.nativeimage - - - truffle-nfi - org.graalvm.truffle - - - compiler - org.graalvm.compiler - - - - - org.jetbrains - annotations-java5 - 23.0.0 - provided - - - org.slf4j - slf4j-api - 1.7.30 - compile - true - - - commons-logging - commons-logging - 1.2 - compile - true - - - org.apache.logging.log4j - log4j-1.2-api - 2.17.2 - compile - - - mail - javax.mail - - - jms - javax.jms - - - jmxtools - com.sun.jdmk - - - jmxri - com.sun.jmx - - - true - - - org.apache.logging.log4j - log4j-api - 2.17.2 - compile - true - - - org.apache.logging.log4j - log4j-core - 2.17.2 - test - - - io.projectreactor.tools - blockhound - 1.0.13.RELEASE - compile - true - - - org.mockito - mockito-core - 2.18.3 - test - - - byte-buddy - net.bytebuddy - - - byte-buddy-agent - net.bytebuddy - - - objenesis - org.objenesis - - - - - io.netty - netty-dev-tools - 4.1.124.Final - test - true - - - org.junit.jupiter - junit-jupiter-api - 5.9.0 - test - - - opentest4j - org.opentest4j - - - junit-platform-commons - org.junit.platform - - - apiguardian-api - org.apiguardian - - - - - org.junit.jupiter - junit-jupiter-engine - 5.9.0 - test - - - junit-platform-engine - org.junit.platform - - - apiguardian-api - org.apiguardian - - - - - org.junit.jupiter - junit-jupiter-params - 5.9.0 - test - - - apiguardian-api - org.apiguardian - - - - - org.assertj - assertj-core - 3.18.0 - test - - - ch.qos.logback - logback-classic - 1.2.13 - test - - - logback-core - ch.qos.logback - - - - - - ${project.basedir}/src/test/templates - ${project.build.directory}/generated-test-sources/collections/java - io.netty.common - ${project.basedir}/src/main/templates - ${project.build.directory}/generated-sources/collections/java - - diff --git a/.m2/repository/io/netty/netty-common/4.1.124.Final/netty-common-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-common/4.1.124.Final/netty-common-4.1.124.Final.pom.sha1 deleted file mode 100644 index fd09b5a..0000000 --- a/.m2/repository/io/netty/netty-common/4.1.124.Final/netty-common-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e83fe3fdd03863c7ffd07f9c4a2edc51d1e33c3d \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/_remote.repositories deleted file mode 100644 index 5853e16..0000000 --- a/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-handler-proxy-4.1.124.Final.jar>central= -netty-handler-proxy-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/netty-handler-proxy-4.1.124.Final.jar b/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/netty-handler-proxy-4.1.124.Final.jar deleted file mode 100644 index 6d5a7d1..0000000 Binary files a/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/netty-handler-proxy-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/netty-handler-proxy-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/netty-handler-proxy-4.1.124.Final.jar.sha1 deleted file mode 100644 index 0e1cd13..0000000 --- a/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/netty-handler-proxy-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ae6a6cee393435f59634f2f96fa88f671dac90e0 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/netty-handler-proxy-4.1.124.Final.pom b/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/netty-handler-proxy-4.1.124.Final.pom deleted file mode 100644 index b322de6..0000000 --- a/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/netty-handler-proxy-4.1.124.Final.pom +++ /dev/null @@ -1,124 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - - netty-handler-proxy - jar - - - io.netty.handler.proxy - - --add-exports java.base/sun.security.x509=ALL-UNNAMED - - - Netty/Handler/Proxy - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - ${project.groupId} - netty-codec - ${project.version} - - - ${project.groupId} - netty-codec-socks - ${project.version} - - - ${project.groupId} - netty-codec-http - ${project.version} - - - - ${project.groupId} - netty-handler - ${project.version} - test - - - org.mockito - mockito-core - - - - org.bouncycastle - bcpkix-jdk15on - test - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - - diff --git a/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/netty-handler-proxy-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/netty-handler-proxy-4.1.124.Final.pom.sha1 deleted file mode 100644 index 8a682b5..0000000 --- a/.m2/repository/io/netty/netty-handler-proxy/4.1.124.Final/netty-handler-proxy-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4e7b3822e8f1be41a70cfec4fda86075f3abfa33 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-handler/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-handler/4.1.124.Final/_remote.repositories deleted file mode 100644 index 4d30295..0000000 --- a/.m2/repository/io/netty/netty-handler/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-handler-4.1.124.Final.jar>central= -netty-handler-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-handler/4.1.124.Final/netty-handler-4.1.124.Final.jar b/.m2/repository/io/netty/netty-handler/4.1.124.Final/netty-handler-4.1.124.Final.jar deleted file mode 100644 index cff4093..0000000 Binary files a/.m2/repository/io/netty/netty-handler/4.1.124.Final/netty-handler-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-handler/4.1.124.Final/netty-handler-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-handler/4.1.124.Final/netty-handler-4.1.124.Final.jar.sha1 deleted file mode 100644 index fe038d6..0000000 --- a/.m2/repository/io/netty/netty-handler/4.1.124.Final/netty-handler-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -13abbd2534e08e60b42829900d2a5d10b9417129 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-handler/4.1.124.Final/netty-handler-4.1.124.Final.pom b/.m2/repository/io/netty/netty-handler/4.1.124.Final/netty-handler-4.1.124.Final.pom deleted file mode 100644 index 722e3fa..0000000 --- a/.m2/repository/io/netty/netty-handler/4.1.124.Final/netty-handler-4.1.124.Final.pom +++ /dev/null @@ -1,161 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - - netty-handler - jar - - - io.netty.handler - - --add-exports java.base/sun.security.x509=ALL-UNNAMED - - - Netty/Handler - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-resolver - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - ${project.groupId} - netty-transport-native-unix-common - ${project.version} - - - ${project.groupId} - netty-codec - ${project.version} - - - ${project.groupId} - netty-tcnative-classes - true - - - ${project.groupId} - ${tcnative.artifactId} - ${tcnative.classifier} - true - - - org.bouncycastle - bcpkix-jdk15on - true - - - org.bouncycastle - bctls-jdk15on - true - - - org.eclipse.jetty.npn - npn-api - true - - - org.eclipse.jetty.alpn - alpn-api - true - - - ${conscrypt.groupId} - ${conscrypt.artifactId} - ${conscrypt.classifier} - true - - - org.mockito - mockito-core - - - - software.amazon.cryptools - AmazonCorrettoCryptoProvider - ${corretto.version} - ${corretto.classifier} - test - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - ch.qos.logback - logback-classic - test - - - - diff --git a/.m2/repository/io/netty/netty-handler/4.1.124.Final/netty-handler-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-handler/4.1.124.Final/netty-handler-4.1.124.Final.pom.sha1 deleted file mode 100644 index 25fcbf2..0000000 --- a/.m2/repository/io/netty/netty-handler/4.1.124.Final/netty-handler-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6ccb2e888f1002012a4e7b0b3c566b430f3519c1 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-parent/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-parent/4.1.124.Final/_remote.repositories deleted file mode 100644 index 699624d..0000000 --- a/.m2/repository/io/netty/netty-parent/4.1.124.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. -#Thu Apr 02 20:37:55 UTC 2026 -netty-parent-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-parent/4.1.124.Final/netty-parent-4.1.124.Final.pom b/.m2/repository/io/netty/netty-parent/4.1.124.Final/netty-parent-4.1.124.Final.pom deleted file mode 100644 index bc3ecb8..0000000 --- a/.m2/repository/io/netty/netty-parent/4.1.124.Final/netty-parent-4.1.124.Final.pom +++ /dev/null @@ -1,2230 +0,0 @@ - - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 9 - - - io.netty - netty-parent - pom - 4.1.124.Final - - Netty - https://netty.io/ - - Netty is an asynchronous event-driven network application framework for - rapid development of maintainable high performance protocol servers and - clients. - - - - 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.124.Final - - - - - netty.io - The Netty Project Contributors - netty@googlegroups.com - https://netty.io/ - The Netty Project - https://netty.io/ - - - - - - Central Portal Snapshots - central-portal-snapshots - https://central.sonatype.com/repository/maven-snapshots/ - - - - - - aggregate - - true - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - - aggregate - - aggregate - - - - - - netty-all,netty-bom,netty-testsuite,netty-testsuite-autobahn,netty-testsuite-http2, - netty-testsuite-native,netty-testsuite-native-image,netty-testsuite-native-image-client, - netty-testsuite-native-image-client-runtime-init,netty-testsuite-osgi,netty-testsuite-shading, - netty-transport-blockhound-tests,netty-transport-native-unix-common-tests,netty-microbench, - netty-dev-tools,netty-example - - - **/com/sun/**/*.java - **/example/**/*.java - **/testsuite/**/*.java - **/microbench/**/*.java - **/microbenchmark/**/*.java - **/generated/**/*.java - **/*Benchmark.java - **/*Bench.java - **/*Test.java - - true - ${project.build.directory}/api - ${project.basedir}/src/javadoc/overview.html - Netty API Reference (${project.version}) - Netty API Reference (${project.version}) - false - - https://docs.oracle.com/javase/8/docs/api/ - https://developers.google.com/protocol-buffers/docs/reference/java/ - https://www.slf4j.org/apidocs/ - - - - Low-level data representation - io.netty.buffer* - - - Central interface for all I/O operations - io.netty.channel* - - - Client & Server bootstrapping utilities - io.netty.bootstrap* - - - Reusable I/O event interceptors - io.netty.handler* - - - DNS / Host resolvers - io.netty.resolver* - - - Utils - io.netty.util* - - - en_US - - - - org.apache.maven.plugins - maven-jxr-plugin - - - aggregate - - aggregate - - - - - true - ${project.build.directory}/site/xref - ${project.build.directory}/site/apidocs - Netty Source Xref (${project.version}) - Netty Source Xref (${project.version}) - - **/com/sun/**/*.java - **/microbench/**/*.java - **/microbenchmark/**/*.java - - - - - - - - - graal - - - - ${java.home}/bin/native-image - - - - false - true - - - - - java23 - - 23 - - - - - - - ${argLine.java9.extras} - true - - 2.0.5.Final - - 1.8 - 1.8 - - true - true - - - - java22 - - 22 - - - - - - - ${argLine.java9.extras} - true - - 2.0.5.Final - - 1.8 - 1.8 - - true - true - - - - java21 - - 21 - - - - - - - ${argLine.java9.extras} - true - - 2.0.5.Final - - 1.8 - 1.8 - - true - true - - - - java20 - - 20 - - - - - - - ${argLine.java9.extras} - true - - 2.0.5.Final - - 1.8 - 1.8 - - true - true - - - - java19 - - 19 - - - - - - - ${argLine.java9.extras} - true - - 2.0.5.Final - - 1.8 - 1.8 - - true - true - - - - java18 - - 18 - - - - - - - ${argLine.java9.extras} - true - - 2.0.5.Final - - 1.7 - 1.7 - - true - true - - - - java17 - - 17 - - - - - - - ${argLine.java9.extras} - true - - 2.0.5.Final - - 1.7 - 1.7 - - true - - - - - - java16 - - 16 - - - - - - - --illegal-access=deny ${argLine.java9.extras} - true - - 2.0.5.Final - - 1.7 - 1.7 - - true - - - - - - java15 - - 15 - - - - - --illegal-access=deny ${argLine.java9.extras} - - - true - - 2.0.5.Final - - 1.7 - 1.7 - - true - - - - - java14 - - 14 - - - - - --illegal-access=deny ${argLine.java9.extras} - - - true - - 2.0.5.Final - - 1.7 - 1.7 - - true - - - - - java13 - - 13 - - - - - --illegal-access=deny ${argLine.java9.extras} - - - true - - 2.0.5.Final - - 1.7 - 1.7 - - true - - - - - - java12 - - 12 - - - - - --illegal-access=deny ${argLine.java9.extras} - - - true - - 2.0.5.Final - - 1.7 - 1.7 - - true - - - - - - java11 - - 11 - - - - - --illegal-access=deny ${argLine.java9.extras} - - - true - - 2.0.5.Final - - true - - - - - - java10 - - 10 - - - - - --illegal-access=deny --add-modules java.xml.bind ${argLine.java9.extras} - - - true - - 3.0.0-M3 - - 2.0.5.Final - - - - - - java9 - - - - --illegal-access=deny --add-modules java.xml.bind ${argLine.java9.extras} - - - - true - - 3.0.0-M1 - - - 9 - - - - - riscv64 - - - linux - riscv64 - - - - - linux-x86_64 - - - - - boringssl-mac-aarch64 - - - - mac - aarch64 - - - - netty-tcnative-boringssl-static - - - - - boringssl-linux-aarch64 - - - - linux - aarch64 - - - - netty-tcnative-boringssl-static - - - - - boringssl - - netty-tcnative-boringssl-static - - - - - windows - - - windows - - - - - netty-tcnative-boringssl-static - - - linux-x86_64 - - - - boringssl-snapshot - - netty-tcnative-boringssl-static - 2.0.73.Final-SNAPSHOT - ${os.detected.classifier} - - - - - - Central Portal Snapshots - central-portal-snapshots - https://central.sonatype.com/repository/maven-snapshots/ - - true - - - false - - - - - - leak - - -Dio.netty.leakDetectionLevel=paranoid -Dio.netty.leakDetection.targetRecords=32 - - - - noPrintGC - - -D_ - - - - noUnsafe - - -Dio.netty.noUnsafe=true - - - - jdk23DenyUnsafe - - --sun-misc-unsafe-memory-access=deny - - - - - fast - - true - true - true - true - true - true - true - true - true - true - true - - - - coverage - - ${jacoco.argLine} - - - - - org.jacoco - jacoco-maven-plugin - 0.7.7.201606060606 - - - jacoco-prepare-agent - - prepare-agent - - - jacoco.argLine - - - - - - - - - jdk8 - - [1.8,) - - - - false - - - - - forcenpn - - - forcenpn - true - - - - forceNpn=true - - - - - - 1.6 - 1.6 - ${project.basedir}/../dev-tools/src/main/resources/ - UTF-8 - UTF-8 - 31 - 1.4.11.Final - 2.0.10 - "${settings.localRepository}"/org/mortbay/jetty/alpn/jetty-alpn-agent/${jetty.alpnAgent.version}/jetty-alpn-agent-${jetty.alpnAgent.version}.jar - - -server - -dsa -da -ea:io.netty... - -XX:+HeapDumpOnOutOfMemoryError - - -D_ - - - -javaagent:${jetty.alpnAgent.path}=${jetty.alpnAgent.option} - -D_ - -D_ - -D_ - - -XX:+PrintGCDetails - - -D_ - - - 1.7.1 - - fedora,suse,arch - netty-tcnative - - 2.0.72.Final - ${os.detected.classifier} - org.conscrypt - conscrypt-openjdk-uber - 2.5.2 - - 2.4.1 - - ${os.detected.name}-${os.detected.arch} - ${os.detected.name}-${os.detected.arch} - ${project.basedir}/../common/src/test/resources/logback-test.xml - warn - 2.17.2 - 3.0.0 - 5.9.0 - false - ${java.home} - ${testJavaHome}/bin/java - false - false - false - 19.3.6 - 1.16.0 - - true - false - false - - - - all - dev-tools - common - buffer - codec - codec-dns - codec-haproxy - codec-http - codec-http2 - codec-memcache - codec-mqtt - codec-redis - codec-smtp - codec-socks - codec-stomp - codec-xml - resolver - resolver-dns - resolver-dns-classes-macos - resolver-dns-native-macos - transport - transport-native-unix-common-tests - transport-native-unix-common - transport-classes-epoll - transport-native-epoll - transport-classes-kqueue - transport-native-kqueue - transport-rxtx - transport-sctp - transport-udt - handler - handler-proxy - handler-ssl-ocsp - example - testsuite - testsuite-autobahn - testsuite-http2 - testsuite-osgi - testsuite-shading - testsuite-native - testsuite-native-image - testsuite-native-image-client - testsuite-native-image-client-runtime-init - transport-blockhound-tests - microbench - bom - - - - - - io.netty - netty-jni-util - 0.0.9.Final - sources - true - - - - ${project.groupId} - netty-dev-tools - ${project.version} - - - - - com.sun.activation - javax.activation - 1.2.0 - - - - - org.jboss.marshalling - jboss-marshalling - ${jboss.marshalling.version} - compile - true - - - - - org.eclipse.jetty.npn - npn-api - 1.1.1.v20141010 - provided - - - org.eclipse.jetty.alpn - alpn-api - 1.1.2.v20150522 - provided - - - - - com.google.protobuf - protobuf-java - 2.6.1 - - - com.google.protobuf.nano - protobuf-javanano - 3.0.0-alpha-5 - - - - - ${project.groupId} - netty-tcnative-classes - ${tcnative.version} - compile - true - - - ${project.groupId} - ${tcnative.artifactId} - ${tcnative.version} - ${tcnative.classifier} - runtime - true - - - - - ${conscrypt.groupId} - ${conscrypt.artifactId} - ${conscrypt.classifier} - ${conscrypt.version} - compile - true - - - - - software.amazon.cryptools - AmazonCorrettoCryptoProvider - ${corretto.version} - ${corretto.classifier} - test - - - - - org.bouncycastle - bcpkix-jdk15on - 1.69 - compile - true - - - - - org.bouncycastle - bcprov-jdk15on - 1.69 - compile - true - - - - - org.bouncycastle - bctls-jdk15on - 1.69 - compile - true - - - - com.fasterxml - aalto-xml - 1.0.0 - - - - com.jcraft - jzlib - 1.1.3 - - - com.ning - compress-lzf - 1.0.3 - - - org.lz4 - lz4-java - 1.8.0 - - - com.github.jponge - lzma-java - 1.3 - - - com.github.luben - zstd-jni - 1.5.5-11 - true - - - com.aayushatharva.brotli4j - brotli4j - ${brotli4j.version} - - - com.aayushatharva.brotli4j - native-linux-ppc64le - ${brotli4j.version} - - - com.aayushatharva.brotli4j - native-linux-x86_64 - ${brotli4j.version} - - - com.aayushatharva.brotli4j - native-linux-aarch64 - ${brotli4j.version} - - - com.aayushatharva.brotli4j - native-linux-riscv64 - ${brotli4j.version} - - - com.aayushatharva.brotli4j - native-linux-armv7 - ${brotli4j.version} - - - com.aayushatharva.brotli4j - native-osx-x86_64 - ${brotli4j.version} - - - com.aayushatharva.brotli4j - native-osx-aarch64 - ${brotli4j.version} - - - com.aayushatharva.brotli4j - native-windows-x86_64 - ${brotli4j.version} - - - com.aayushatharva.brotli4j - native-windows-aarch64 - ${brotli4j.version} - - - - - org.jctools - jctools-core - 4.0.5 - - - - - org.jetbrains - annotations-java5 - 23.0.0 - provided - - - - org.rxtx - rxtx - 2.1.7 - - - - com.barchart.udt - barchart-udt-bundle - 2.3.0 - - - - javax.servlet - servlet-api - 2.5 - - - - org.slf4j - slf4j-api - 1.7.30 - - - commons-logging - commons-logging - 1.2 - - - org.apache.logging.log4j - log4j-api - ${log4j2.version} - - - org.apache.logging.log4j - log4j-1.2-api - ${log4j2.version} - - - mail - javax.mail - - - jms - javax.jms - - - jmxtools - com.sun.jdmk - - - jmxri - com.sun.jmx - - - true - - - - - org.junit.jupiter - junit-jupiter-api - ${junit.version} - test - - - org.junit.jupiter - junit-jupiter-engine - ${junit.version} - test - - - org.junit.jupiter - junit-jupiter-params - ${junit.version} - test - - - ${project.groupId} - netty-build-common - ${netty.build.version} - test - - - org.assertj - assertj-core - 3.18.0 - test - - - org.mockito - mockito-core - 2.18.3 - test - - - org.reflections - reflections - 0.10.2 - test - - - ch.qos.logback - logback-classic - 1.2.13 - test - - - io.github.artsok - rerunner-jupiter - 2.1.6 - test - - - - - org.jboss.marshalling - jboss-marshalling-serial - ${jboss.marshalling.version} - test - - - org.jboss.marshalling - jboss-marshalling-river - ${jboss.marshalling.version} - test - - - - - com.google.caliper - caliper - 0.5-rc1 - test - - - - - org.apache.commons - commons-compress - 1.26.0 - test - - - - - commons-io - commons-io - 2.14.0 - test - - - - - com.google.code.gson - gson - 2.8.9 - test - - - - - org.tukaani - xz - 1.5 - - - - - org.apache.directory.server - apacheds-protocol-dns - 1.5.7 - test - - - - - org.apache.logging.log4j - log4j-core - ${log4j2.version} - test - - - - - io.projectreactor.tools - blockhound - 1.0.13.RELEASE - - - - - - - - kr.motd.maven - os-maven-plugin - ${osmaven.version} - - - - - - org.revapi - revapi-maven-plugin - 0.14.6 - - - org.revapi - revapi-java - 0.26.1 - - - - - - - - - java-package - /.*\.internal\..*/ - - - java-package - /org\.openjdk\.jmh\..*/ - - - java - @io.netty.util.internal.UnstableApi ^*; - - - - - - @io.netty.util.internal.UnstableApi - - - - - - - true - java.field.constantValueChanged - io.netty.handler.codec.http2.Http2CodecUtil - CONTINUATION_FRAME_HEADER_LENGTH - 10 - 9 - Padding was removed from CONTINUATION frame in http2-spec. - - - true - java.missing.oldClass - missing-class org.slf4j.Logger - missing-class org.slf4j.Logger - The com.barchart.udt library exposes this class in their API, but slf4j is an optional dependency to Netty. - - - true - java.missing.newClass - missing-class org.slf4j.Logger - missing-class org.slf4j.Logger - The com.barchart.udt library exposes this class in their API, but slf4j is an optional dependency to Netty. - - - true - java.class.externalClassExposedInAPI - true - io\.netty\..* - They're not "external classes" if they're from a Netty package. - - - true - java.field.removed - io.netty.util.internal.InternalThreadLocalMap - Ignore cache padding. - - - true - java.method.removed - method java.lang.String io.netty.testsuite.util.TestUtils::testMethodName(org.junit.rules.TestName) - This should be test-only, and we're removing support for JUnit 4. - - - - true - java.method.finalMethodAddedToNonFinalClass - method void io.netty.util.AbstractReferenceCounted::setRefCnt(int) @ io.netty.handler.codec.http.multipart.MixedAttribute - Acceptable incompatibility for required change - - - true - java.method.finalMethodAddedToNonFinalClass - method void io.netty.util.AbstractReferenceCounted::setRefCnt(int) @ io.netty.handler.codec.http.multipart.MixedFileUpload - Acceptable incompatibility for required change - - - true - java.class.nonFinalClassInheritsFromNewClass - class io.netty.handler.codec.http.multipart.MixedFileUpload - class io.netty.handler.codec.http.multipart.MixedFileUpload - io.netty.handler.codec.http.multipart.AbstractMixedHttpData<io.netty.handler.codec.http.multipart.FileUpload> - Acceptable incompatibility for required change - - - true - java.class.nonFinalClassInheritsFromNewClass - class io.netty.handler.codec.http.multipart.MixedAttribute - class io.netty.handler.codec.http.multipart.MixedAttribute - io.netty.handler.codec.http.multipart.AbstractMixedHttpData<io.netty.handler.codec.http.multipart.Attribute> - Acceptable incompatibility for required change - - - true - java.annotation.removed - @io.netty.channel.ChannelHandlerMask.Skip - No change in compatibility - - - true - java.method.finalMethodAddedToNonFinalClass - method io.netty.channel.unix.DomainSocketAddress io.netty.channel.unix.Socket::localDomainSocketAddress() - Acceptable incompatibility for required change - - - true - java.method.finalMethodAddedToNonFinalClass - method io.netty.channel.unix.DomainSocketAddress io.netty.channel.unix.Socket::remoteDomainSocketAddress() - Acceptable incompatibility for required change - - - true - java.method.returnTypeErasureChanged - method B io.netty.handler.codec.http2.AbstractHttp2ConnectionHandlerBuilder<T extends io.netty.handler.codec.http2.Http2ConnectionHandler, B extends io.netty.handler.codec.http2.AbstractHttp2ConnectionHandlerBuilder<T, B>>::decoderEnforceMaxConsecutiveEmptyDataFrames(int) @ io.netty.handler.codec.http2.Http2ConnectionHandlerBuilder - method io.netty.handler.codec.http2.Http2ConnectionHandlerBuilder io.netty.handler.codec.http2.Http2ConnectionHandlerBuilder::decoderEnforceMaxConsecutiveEmptyDataFrames(int) - Acceptable incompatibility for required change, because the method was not previously exposed; protected visiblity in super-class, not made public in final sub-class until now - - - true - java.method.returnTypeErasureChanged - method B io.netty.handler.codec.http2.AbstractHttp2ConnectionHandlerBuilder<T extends io.netty.handler.codec.http2.Http2ConnectionHandler, B extends io.netty.handler.codec.http2.AbstractHttp2ConnectionHandlerBuilder<T, B>>::decoderEnforceMaxRstFramesPerWindow(int, int) @ io.netty.handler.codec.http2.Http2ConnectionHandlerBuilder - method io.netty.handler.codec.http2.Http2ConnectionHandlerBuilder io.netty.handler.codec.http2.Http2ConnectionHandlerBuilder::decoderEnforceMaxRstFramesPerWindow(int, int) - Acceptable incompatibility for required change, because the method was not previously exposed; protected visiblity in super-class, not made public in final sub-class until now - - - true - java.method.returnTypeErasureChanged - method B io.netty.handler.codec.http2.AbstractHttp2ConnectionHandlerBuilder<T extends io.netty.handler.codec.http2.Http2ConnectionHandler, B extends io.netty.handler.codec.http2.AbstractHttp2ConnectionHandlerBuilder<T, B>>::encoderIgnoreMaxHeaderListSize(boolean) @ io.netty.handler.codec.http2.HttpToHttp2ConnectionHandlerBuilder - method io.netty.handler.codec.http2.HttpToHttp2ConnectionHandlerBuilder io.netty.handler.codec.http2.HttpToHttp2ConnectionHandlerBuilder::encoderIgnoreMaxHeaderListSize(boolean) - Acceptable incompatibility for required change, because the method was not previously exposed; protected visiblity in super-class, not made public in final sub-class until now - - - true - java.method.returnTypeErasureChanged - method B io.netty.handler.codec.http2.AbstractHttp2ConnectionHandlerBuilder<T extends io.netty.handler.codec.http2.Http2ConnectionHandler, B extends io.netty.handler.codec.http2.AbstractHttp2ConnectionHandlerBuilder<T, B>>::decoderEnforceMaxConsecutiveEmptyDataFrames(int) @ io.netty.handler.codec.http2.HttpToHttp2ConnectionHandlerBuilder - method io.netty.handler.codec.http2.HttpToHttp2ConnectionHandlerBuilder io.netty.handler.codec.http2.HttpToHttp2ConnectionHandlerBuilder::decoderEnforceMaxConsecutiveEmptyDataFrames(int) - Acceptable incompatibility for required change, because the method was not previously exposed; protected visiblity in super-class, not made public in final sub-class until now - - - true - java.method.returnTypeErasureChanged - method B io.netty.handler.codec.http2.AbstractHttp2ConnectionHandlerBuilder<T extends io.netty.handler.codec.http2.Http2ConnectionHandler, B extends io.netty.handler.codec.http2.AbstractHttp2ConnectionHandlerBuilder<T, B>>::decoderEnforceMaxRstFramesPerWindow(int, int) @ io.netty.handler.codec.http2.HttpToHttp2ConnectionHandlerBuilder - method io.netty.handler.codec.http2.HttpToHttp2ConnectionHandlerBuilder io.netty.handler.codec.http2.HttpToHttp2ConnectionHandlerBuilder::decoderEnforceMaxRstFramesPerWindow(int, int) - Acceptable incompatibility for required change, because the method was not previously exposed; protected visiblity in super-class, not made public in final sub-class until now - - - true - java.method.removed - method io.netty.channel.ChannelFactory<& extends io.netty.channel.socket.DatagramChannel> io.netty.resolver.dns.DnsNameResolverBuilder::channelFactory() - Protected methods of a final class. - - - true - java.method.returnTypeChanged - method io.netty.channel.socket.ServerSocketChannel io.netty.channel.socket.nio.NioDomainSocketChannel::parent() - method io.netty.channel.ServerChannel io.netty.channel.socket.nio.NioDomainSocketChannel::parent() - Old return type made no sense, the parent channel is a NioServerDomainSocketChannel which does not implement ServerSocketChannel. The method always threw a ClassCastException (except for null). - - - true - java.method.finalMethodAddedToNonFinalClass - method void io.netty.handler.codec.MessageAggregator<I, S, C extends io.netty.buffer.ByteBufHolder, O extends io.netty.buffer.ByteBufHolder>::releaseCurrentMessage() - Exposed private method. - - - true - java.method.finalMethodAddedToNonFinalClass - method void io.netty.handler.codec.MessageAggregator<I, S, C extends io.netty.buffer.ByteBufHolder, O extends io.netty.buffer.ByteBufHolder>::releaseCurrentMessage() @ io.netty.handler.codec.http.HttpClientUpgradeHandler - Exposed private method. - - - true - java.method.finalMethodAddedToNonFinalClass - method void io.netty.handler.codec.MessageAggregator<I, S, C extends io.netty.buffer.ByteBufHolder, O extends io.netty.buffer.ByteBufHolder>::releaseCurrentMessage() @ io.netty.handler.codec.http.HttpObjectAggregator - Exposed private method. - - - true - java.method.finalMethodAddedToNonFinalClass - method void io.netty.handler.codec.MessageAggregator<I, S, C extends io.netty.buffer.ByteBufHolder, O extends io.netty.buffer.ByteBufHolder>::releaseCurrentMessage() @ io.netty.handler.codec.http.HttpServerUpgradeHandler - Exposed private method. - - - true - java.method.finalMethodAddedToNonFinalClass - method void io.netty.handler.codec.MessageAggregator<I, S, C extends io.netty.buffer.ByteBufHolder, O extends io.netty.buffer.ByteBufHolder>::releaseCurrentMessage() @ io.netty.handler.codec.http.websocketx.WebSocketFrameAggregator - Exposed private method. - - - true - java.method.finalMethodAddedToNonFinalClass - method void io.netty.handler.codec.MessageAggregator<I, S, C extends io.netty.buffer.ByteBufHolder, O extends io.netty.buffer.ByteBufHolder>::releaseCurrentMessage() @ io.netty.handler.codec.memcache.binary.BinaryMemcacheObjectAggregator - Exposed private method. - - - true - java.method.finalMethodAddedToNonFinalClass - method void io.netty.handler.codec.MessageAggregator<I, S, C extends io.netty.buffer.ByteBufHolder, O extends io.netty.buffer.ByteBufHolder>::releaseCurrentMessage() @ io.netty.handler.codec.memcache.AbstractMemcacheObjectAggregator<H extends io.netty.handler.codec.memcache.MemcacheMessage> - Exposed private method. - - - true - java.method.finalMethodAddedToNonFinalClass - method void io.netty.handler.codec.MessageAggregator<I, S, C extends io.netty.buffer.ByteBufHolder, O extends io.netty.buffer.ByteBufHolder>::releaseCurrentMessage() @ io.netty.handler.codec.stomp.StompSubframeAggregator - Exposed private method. - - - true - java.field.constantValueChanged - io.netty.handler.codec.http2.Http2CodecUtil - NUM_STANDARD_SETTINGS - 6 - 7 - SETTINGS_ENABLE_CONNECT_PROTOCOL was added to the standard HTTP/2 settings. - - - - - - - - api-check - - check - - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - 0.21.0 - - - true - true - true - \d+\.\d+\.\d+\.Final - - - ^(?!io\.netty\.).* - ^io\.netty\.internal\.tcnative\..* - - - @io.netty.util.internal.UnstableApi - io.netty.util.internal.shaded - io.netty.buffer.AdaptivePoolingAllocator$ChunkAllocator - io.netty.channel.socket.nio.NioDomainSocketChannel#parent() - io.netty.handler.codec.MessageAggregator#releaseCurrentMessage() - - - - FIELD_REMOVED - true - true - PATCH - - - - - - - verify - - cmp - - - - - - maven-enforcer-plugin - ${enforcer.plugin.version} - - - enforce-tools - - enforce - - - - - - - [1.8.0,) - - - [3.1.1,) - - - - x86_64/AARCH64/RISCV64/PPCLE64/s390x_64/loongarch64 JDK must be used. - - os.detected.arch - ^(x86_64|aarch_64|riscv64|ppcle_64|s390_64|loongarch_64)$ - - - - - - - - maven-compiler-plugin - 3.14.0 - - 1.8 - true - ${maven.compiler.source} - ${maven.compiler.target} - true - true - true - true - -Xlint:-options - - - 256m - 1024m - - **/package-info.java - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.16 - - - org.codehaus.mojo.signature - java16 - 1.1 - - - java.nio.ByteBuffer - - - io.netty.util.internal.SuppressJava6Requirement - - - - - process-classes - - check - - - - - - maven-checkstyle-plugin - 3.1.0 - - - check-style - - check - - validate - - true - true - true - true - io/netty/checkstyle.xml - - ${project.build.sourceDirectory} - ${project.build.testSourceDirectory} - - - - - nohttp-checkstyle-validation - validate - - - nohttp-checkstyle.xml - nohttp-checkstyle-suppressions.xml - - UTF-8 - ${basedir} - **/* - nohttp-checkstyle-suppressions.xml,**/.git/**/*,**/.idea/**/*,**/target/**/,**/.flattened-pom.xml,**/*.class - - - check - - false - - - - - com.puppycrawl.tools - checkstyle - 8.29 - - - ${project.groupId} - netty-build-common - ${netty.build.version} - - - io.spring.nohttp - nohttp-checkstyle - 0.0.5.RELEASE - - - - - org.codehaus.mojo - xml-maven-plugin - 1.0.1 - - - check-style - - check-format - - validate - - - - - - ${project.basedir} - - **/pom.xml - - - **/target/** - - - - false - - - - - maven-dependency-plugin - - - get-jetty-alpn-agent - validate - - get - - - org.mortbay.jetty.alpn - jetty-alpn-agent - ${jetty.alpnAgent.version} - - - - - - maven-surefire-plugin - - - **/*Test*.java - **/*Benchmark*.java - - - **/Abstract* - **/*TestUtil* - - random - - ${logging.config} - ${logging.logLevel} - - ${project.groupId} - ${project.artifactId} - - ${argLine.common} ${argLine.printGC} ${argLine.alpnAgent} ${argLine.leak} ${argLine.coverage} ${argLine.noUnsafe} ${argLine.jni} ${argLine.java9} ${argLine.javaProperties} -Dio.netty.bootstrap.extensions=serviceload - ${skipTests} - ${testJvm} - - false - - - - - org.apache.felix - maven-bundle-plugin - 5.1.8 - - - - jar - bundle - - - ${project.groupId}.* - !* - - - - - - generate-manifest - process-classes - - manifest - - - - - sun.net.dns.*;resolution:=optional,sun.misc.*;resolution:=optional,sun.nio.ch;resolution:=optional,sun.security.*;resolution:=optional,org.eclipse.jetty.npn;version="[1,2)";resolution:=optional,org.eclipse.jetty.alpn;version="[1,2)";resolution:=optional,org.bouncycastle.jcajce.provider;version="[1.0,2)";resolution:=optional,* - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.10 - - - parse-version - - parse-version - - - - - - - maven-source-plugin - 3.2.0 - - - - - 2 - ${project.name} - ${project.groupId}.${project.artifactId}.source - ${project.organization.name} - ${parsedVersion.osgiVersion} - ${project.groupId}.${project.artifactId};version="${parsedVersion.osgiVersion}";roots:="." - - - - - - - attach-sources - prepare-package - - jar-no-fork - - - - attach-test-sources - prepare-package - - test-jar-no-fork - - - - - - maven-javadoc-plugin - 2.10.4 - - false - true - false - false - true - - - - maven-deploy-plugin - 2.8.2 - - 10 - ${skipDeploy} - - - - maven-release-plugin - - 2.5.3 - - false - -P restricted-release,sonatype-oss-release,full - true - false - netty-@{project.version} - - - - org.apache.maven.scm - maven-scm-api - 1.9.4 - - - org.apache.maven.scm - maven-scm-provider-gitexe - 1.9.4 - - - - - - - maven-antrun-plugin - - - - write-version-properties - initialize - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Current commit: ${shortCommitHash} on ${commitDate} - - - - - - - - - - - - - - - - - - - - - - - org.apache.ant - ant - 1.10.11 - - - org.apache.ant - ant-launcher - 1.9.7 - - - ant-contrib - ant-contrib - 1.0b3 - - - ant - ant - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.5 - - - de.thetaphi - forbiddenapis - 2.2 - - - org.sonatype.central - central-publishing-maven-plugin - 0.7.0 - - central - true - false - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.7.0 - - central-portal-snapshots - https://central.sonatype.com/repository/maven-snapshots - true - - - - - - - - - maven-surefire-plugin - 2.22.2 - - - - maven-failsafe-plugin - 2.22.2 - - - maven-clean-plugin - 3.0.0 - - - maven-resources-plugin - 3.0.1 - - - default-testResources - process-test-resources - - testResources - - - - - ${project.basedir}/src/test/resources - - - ${project.build.outputDirectory} - - - META-INF/native/*.* - - - - *.* - - - - - - - - - org.ops4j.pax.exam - maven-paxexam-plugin - 1.2.4 - - - maven-jar-plugin - 3.0.2 - - - default-jar - - - - true - true - - - ${javaModuleName} - - true - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - test-jar - - - - - - maven-dependency-plugin - 2.10 - - - maven-assembly-plugin - 2.6 - - - maven-jxr-plugin - 3.1.1 - - - maven-antrun-plugin - 1.8 - - - ant-contrib - ant-contrib - 1.0b3 - - - ant - ant - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.10 - - - org.fusesource.hawtjni - hawtjni-maven-plugin - 1.18 - - - kr.motd.maven - exec-maven-plugin - 1.0.0.Final - - - org.apache.maven.plugins - maven-shade-plugin - 3.2.1 - - - de.thetaphi - forbiddenapis - 2.2 - - - check-forbidden-apis - - ${maven.compiler.target} - - false - - false - - - - - - - - - ${netty.dev.tools.directory}/forbidden/signatures.txt - - **.SuppressForbidden - - compile - - check - - - - check-forbidden-test-apis - - ${maven.compiler.target} - - true - - false - - - - - - - - ${netty.dev.tools.directory}/forbidden/signatures.txt - - **.SuppressForbidden - - test-compile - - testCheck - - - - - - - - diff --git a/.m2/repository/io/netty/netty-parent/4.1.124.Final/netty-parent-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-parent/4.1.124.Final/netty-parent-4.1.124.Final.pom.sha1 deleted file mode 100644 index 9718e61..0000000 --- a/.m2/repository/io/netty/netty-parent/4.1.124.Final/netty-parent-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5d07833c35ab5627c660f19f2790b513d228425c \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/_remote.repositories deleted file mode 100644 index 7b7779b..0000000 --- a/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-resolver-dns-classes-macos-4.1.124.Final.jar>central= -netty-resolver-dns-classes-macos-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/netty-resolver-dns-classes-macos-4.1.124.Final.jar b/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/netty-resolver-dns-classes-macos-4.1.124.Final.jar deleted file mode 100644 index 3c72f6d..0000000 Binary files a/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/netty-resolver-dns-classes-macos-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/netty-resolver-dns-classes-macos-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/netty-resolver-dns-classes-macos-4.1.124.Final.jar.sha1 deleted file mode 100644 index 6eea0f5..0000000 --- a/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/netty-resolver-dns-classes-macos-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ec3eeda53a9887eaa1fc8bf90bd9405ecd7c35bd \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/netty-resolver-dns-classes-macos-4.1.124.Final.pom b/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/netty-resolver-dns-classes-macos-4.1.124.Final.pom deleted file mode 100644 index 9067555..0000000 --- a/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/netty-resolver-dns-classes-macos-4.1.124.Final.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - netty-resolver-dns-classes-macos - - Netty/Resolver/DNS/Classes/MacOS - jar - - - io.netty.resolver.dns.classes.macos - - - - - io.netty - netty-common - ${project.version} - - - io.netty - netty-resolver-dns - ${project.version} - - - io.netty - netty-transport-native-unix-common - ${project.version} - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - - - - - maven-jar-plugin - - - - - diff --git a/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/netty-resolver-dns-classes-macos-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/netty-resolver-dns-classes-macos-4.1.124.Final.pom.sha1 deleted file mode 100644 index 2f79a30..0000000 --- a/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.124.Final/netty-resolver-dns-classes-macos-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fc0a9e0aa959e6c3f68476bf49256e9fb8a356b4 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/_remote.repositories deleted file mode 100644 index a93a064..0000000 --- a/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-resolver-dns-native-macos-4.1.124.Final-osx-x86_64.jar>central= -netty-resolver-dns-native-macos-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/netty-resolver-dns-native-macos-4.1.124.Final-osx-x86_64.jar b/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/netty-resolver-dns-native-macos-4.1.124.Final-osx-x86_64.jar deleted file mode 100644 index 0075c8b..0000000 Binary files a/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/netty-resolver-dns-native-macos-4.1.124.Final-osx-x86_64.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/netty-resolver-dns-native-macos-4.1.124.Final-osx-x86_64.jar.sha1 b/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/netty-resolver-dns-native-macos-4.1.124.Final-osx-x86_64.jar.sha1 deleted file mode 100644 index 4b370e1..0000000 --- a/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/netty-resolver-dns-native-macos-4.1.124.Final-osx-x86_64.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -af0983ea587ae4279d487c16f55048991bc08b6f \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/netty-resolver-dns-native-macos-4.1.124.Final.pom b/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/netty-resolver-dns-native-macos-4.1.124.Final.pom deleted file mode 100644 index 0c21922..0000000 --- a/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/netty-resolver-dns-native-macos-4.1.124.Final.pom +++ /dev/null @@ -1,512 +0,0 @@ - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - netty-resolver-dns-native-macos - - Netty/Resolver/DNS/Native/MacOS - jar - - - - mac - - - mac - - - - LDFLAGS=-Wl,-weak_library,${unix.common.lib.unpacked.dir}/lib${unix.common.lib.name}.a -Wl,-platform_version,macos,10.9,10.9 - false - - - - - maven-dependency-plugin - - - - unpack - generate-sources - - unpack-dependencies - - - ${project.groupId} - netty-transport-native-unix-common - ${jni.classifier} - ${unix.common.lib.dir} - META-INF/native/** - false - true - - - - - - - org.fusesource.hawtjni - hawtjni-maven-plugin - - - build-native-lib - - netty_resolver_dns_native_macos_${os.detected.arch} - ${nativeSourceDirectory} - ${project.build.outputDirectory} - - . - - ${jni.compiler.args.ldflags} - ${jni.compiler.args.cflags} - MACOSX_DEPLOYMENT_TARGET=10.9 - - - - generate - build - - - - - - - org.apache.felix - maven-bundle-plugin - - - native-manifest - process-classes - - manifest - - - - META-INF/native/libnetty_resolver_dns_native_macos_${os.detected.arch}.jnilib; osname=MacOSX; processor=${os.detected.arch} - ${maven-symbolicname}.${jni.classifier} - io.netty.resolver-dns-classes-macos - - ${project.build.directory}/${jni.classifier} - - - - - - - maven-jar-plugin - - - - native-jar - - jar - - - - - true - true - - - ${javaModuleName} - - true - ${project.build.directory}/${jni.classifier}/MANIFEST.MF - - ${jni.classifier} - - - - - - - - - io.netty - netty-transport-native-unix-common - ${project.version} - ${jni.classifier} - - true - - - - - mac-m1-cross-compile - - LDFLAGS=-arch arm64 -Wl,-weak_library,${unix.common.lib.unpacked.dir}/lib${unix.common.lib.name}.a -Wl,-platform_version,macos,11.0,11.0 - CFLAGS=-target arm64-apple-macos11 -O3 -Werror -fno-omit-frame-pointer -Wunused-variable -fvisibility=hidden -I${unix.common.include.unpacked.dir} - - - ${os.detected.name}-aarch_64 - ${os.detected.name}.aarch_64 - true - - - - - maven-dependency-plugin - - - - unpack - generate-sources - - unpack-dependencies - - - ${project.groupId} - netty-transport-native-unix-common - ${jni.classifier} - ${unix.common.lib.dir} - META-INF/native/** - false - true - - - - - - - org.fusesource.hawtjni - hawtjni-maven-plugin - - - build-native-lib - - netty_resolver_dns_native_macos_aarch_64 - ${nativeSourceDirectory} - ${project.build.outputDirectory} - - . - - ${jni.compiler.args.ldflags} - ${jni.compiler.args.cflags} - --host=aarch64-apple-darwin - MACOSX_DEPLOYMENT_TARGET=11.0 - - - - generate - build - - - - - - - org.apache.felix - maven-bundle-plugin - - - native-manifest - process-classes - - manifest - - - - META-INF/native/libnetty_resolver_dns_native_macos_aarch_64.jnilib; osname=MacOSX; processor=aarch64 - ${maven-symbolicname}.${jni.classifier} - io.netty.resolver-dns-classes-macos - - ${project.build.directory}/${jni.classifier} - - - - - - - maven-jar-plugin - - - - native-jar - - jar - - - - - true - true - - - ${javaModuleName} - - true - ${project.build.directory}/${jni.classifier}/MANIFEST.MF - - ${jni.classifier} - - - - - - - - - io.netty - netty-transport-native-unix-common - ${project.version} - ${jni.classifier} - - true - - - - - - mac-intel-cross-compile - - LDFLAGS=-arch x86_64 -Wl,-weak_library,${unix.common.lib.unpacked.dir}/lib${unix.common.lib.name}.a -Wl,-platform_version,macos,10.9,10.9 - CFLAGS=-target x86_64-apple-macos10.9 -O3 -Werror -fno-omit-frame-pointer -Wunused-variable -fvisibility=hidden -I${unix.common.include.unpacked.dir} - - - ${os.detected.name}-x86_64 - ${os.detected.name}.x86_64 - true - - - - - maven-dependency-plugin - - - - unpack - generate-sources - - unpack-dependencies - - - ${project.groupId} - netty-transport-native-unix-common - ${jni.classifier} - ${unix.common.lib.dir} - META-INF/native/** - false - true - - - - - - - org.fusesource.hawtjni - hawtjni-maven-plugin - - - build-native-lib - - netty_resolver_dns_native_macos_x86_64 - ${nativeSourceDirectory} - ${project.build.outputDirectory} - - . - - ${jni.compiler.args.ldflags} - ${jni.compiler.args.cflags} - --host=x86_64-apple-darwin - MACOSX_DEPLOYMENT_TARGET=10.9 - - - - generate - build - - - - - - - org.apache.felix - maven-bundle-plugin - - - native-manifest - process-classes - - manifest - - - - META-INF/native/libnetty_resolver_dns_native_macos_x86_64.jnilib; osname=MacOSX; processor=x86_64 - ${maven-symbolicname}.${jni.classifier} - io.netty.resolver-dns-classes-macos - - ${project.build.directory}/${jni.classifier} - - - - - - - maven-jar-plugin - - - - native-jar - - jar - - - - - true - true - - - ${javaModuleName} - - true - ${project.build.directory}/${jni.classifier}/MANIFEST.MF - - ${jni.classifier} - - - - - - - - - io.netty - netty-transport-native-unix-common - ${project.version} - ${jni.classifier} - - true - - - - - - - ${os.detected.name}.${os.detected.arch} - io.netty.resolver.dns.macos.${javaModuleNameClassifier} - - netty-unix-common - ${project.build.directory}/unix-common-lib - ${unix.common.lib.dir}/META-INF/native/lib - ${unix.common.lib.dir}/META-INF/native/include - CFLAGS=-O3 -Werror -fno-omit-frame-pointer -Wunused-variable -fvisibility=hidden -I${unix.common.include.unpacked.dir} - LDFLAGS=-z now -L${unix.common.lib.unpacked.dir} -Wl,--whole-archive -l${unix.common.lib.name} -Wl,--no-whole-archive - true - ${project.basedir}/src/main/c - - -Xcheck:jni - - - - - io.netty - netty-resolver-dns-classes-macos - ${project.version} - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - generate-sources - - add-source - - - - ${nativeSourceDirectory} - - - - - - - maven-jar-plugin - - - - empty-javadoc-jar - package - - jar - - - javadoc - ${basedir}/javadoc - - - - - default-jar - - - META-INF/native/** - - - - - - - - - diff --git a/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/netty-resolver-dns-native-macos-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/netty-resolver-dns-native-macos-4.1.124.Final.pom.sha1 deleted file mode 100644 index 558a03b..0000000 --- a/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.124.Final/netty-resolver-dns-native-macos-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1304e318eb5131c8a9141a2b2ed8ce52bfb1ca99 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/_remote.repositories deleted file mode 100644 index 75e76c7..0000000 --- a/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-resolver-dns-4.1.124.Final.jar>central= -netty-resolver-dns-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/netty-resolver-dns-4.1.124.Final.jar b/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/netty-resolver-dns-4.1.124.Final.jar deleted file mode 100644 index caa1351..0000000 Binary files a/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/netty-resolver-dns-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/netty-resolver-dns-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/netty-resolver-dns-4.1.124.Final.jar.sha1 deleted file mode 100644 index 80ab49d..0000000 --- a/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/netty-resolver-dns-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e8a87f24b00128b931ee18cac08a3be745dc84ce \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/netty-resolver-dns-4.1.124.Final.pom b/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/netty-resolver-dns-4.1.124.Final.pom deleted file mode 100644 index 709cc6c..0000000 --- a/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/netty-resolver-dns-4.1.124.Final.pom +++ /dev/null @@ -1,131 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - - netty-resolver-dns - jar - - Netty/Resolver/DNS - - - io.netty.resolver.dns - - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-resolver - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - ${project.groupId} - netty-codec - ${project.version} - - - ${project.groupId} - netty-codec-dns - ${project.version} - - - ${project.groupId} - netty-handler - ${project.version} - - - org.apache.directory.server - apacheds-protocol-dns - test - - - - commons-lang - commons-lang - - - - - commons-lang - commons-lang - 2.6 - test - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - - diff --git a/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/netty-resolver-dns-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/netty-resolver-dns-4.1.124.Final.pom.sha1 deleted file mode 100644 index 0ad1098..0000000 --- a/.m2/repository/io/netty/netty-resolver-dns/4.1.124.Final/netty-resolver-dns-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8633a4d90ad3ae6bae0f7308585ad8379720632a \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-resolver/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-resolver/4.1.124.Final/_remote.repositories deleted file mode 100644 index 1910759..0000000 --- a/.m2/repository/io/netty/netty-resolver/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-resolver-4.1.124.Final.jar>central= -netty-resolver-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-resolver/4.1.124.Final/netty-resolver-4.1.124.Final.jar b/.m2/repository/io/netty/netty-resolver/4.1.124.Final/netty-resolver-4.1.124.Final.jar deleted file mode 100644 index 0655360..0000000 Binary files a/.m2/repository/io/netty/netty-resolver/4.1.124.Final/netty-resolver-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-resolver/4.1.124.Final/netty-resolver-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-resolver/4.1.124.Final/netty-resolver-4.1.124.Final.jar.sha1 deleted file mode 100644 index 3c4f2db..0000000 --- a/.m2/repository/io/netty/netty-resolver/4.1.124.Final/netty-resolver-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -85758b8fd2e75bce01423298592401bf649a5e31 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-resolver/4.1.124.Final/netty-resolver-4.1.124.Final.pom b/.m2/repository/io/netty/netty-resolver/4.1.124.Final/netty-resolver-4.1.124.Final.pom deleted file mode 100644 index 4cb43ed..0000000 --- a/.m2/repository/io/netty/netty-resolver/4.1.124.Final/netty-resolver-4.1.124.Final.pom +++ /dev/null @@ -1,67 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - - netty-resolver - jar - - Netty/Resolver - - - io.netty.resolver - - - - - ${project.groupId} - netty-common - ${project.version} - - - org.mockito - mockito-core - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - - diff --git a/.m2/repository/io/netty/netty-resolver/4.1.124.Final/netty-resolver-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-resolver/4.1.124.Final/netty-resolver-4.1.124.Final.pom.sha1 deleted file mode 100644 index 6052aee..0000000 --- a/.m2/repository/io/netty/netty-resolver/4.1.124.Final/netty-resolver-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b0d65fc29136e731ac072eb35a56277ae158a5cf \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/_remote.repositories deleted file mode 100644 index 1066509..0000000 --- a/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-transport-classes-epoll-4.1.124.Final.jar>central= -netty-transport-classes-epoll-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/netty-transport-classes-epoll-4.1.124.Final.jar b/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/netty-transport-classes-epoll-4.1.124.Final.jar deleted file mode 100644 index 3154845..0000000 Binary files a/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/netty-transport-classes-epoll-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/netty-transport-classes-epoll-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/netty-transport-classes-epoll-4.1.124.Final.jar.sha1 deleted file mode 100644 index cdd6f76..0000000 --- a/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/netty-transport-classes-epoll-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c211ad4e253d8fbb195a868d849c2645544866e7 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/netty-transport-classes-epoll-4.1.124.Final.pom b/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/netty-transport-classes-epoll-4.1.124.Final.pom deleted file mode 100644 index fcc0561..0000000 --- a/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/netty-transport-classes-epoll-4.1.124.Final.pom +++ /dev/null @@ -1,65 +0,0 @@ - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - netty-transport-classes-epoll - - Netty/Transport/Classes/Epoll - jar - - - io.netty.transport.classes.epoll - - - - - io.netty - netty-common - ${project.version} - - - io.netty - netty-buffer - ${project.version} - - - io.netty - netty-transport - ${project.version} - - - io.netty - netty-transport-native-unix-common - ${project.version} - - - - - - - - maven-jar-plugin - - - - - diff --git a/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/netty-transport-classes-epoll-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/netty-transport-classes-epoll-4.1.124.Final.pom.sha1 deleted file mode 100644 index 3e217e6..0000000 --- a/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.124.Final/netty-transport-classes-epoll-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ef28d9b95346b2d3f6e543d9ae57632afe063e18 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/_remote.repositories deleted file mode 100644 index b053938..0000000 --- a/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-transport-native-epoll-4.1.124.Final-linux-x86_64.jar>central= -netty-transport-native-epoll-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/netty-transport-native-epoll-4.1.124.Final-linux-x86_64.jar b/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/netty-transport-native-epoll-4.1.124.Final-linux-x86_64.jar deleted file mode 100644 index e3ce3d7..0000000 Binary files a/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/netty-transport-native-epoll-4.1.124.Final-linux-x86_64.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/netty-transport-native-epoll-4.1.124.Final-linux-x86_64.jar.sha1 b/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/netty-transport-native-epoll-4.1.124.Final-linux-x86_64.jar.sha1 deleted file mode 100644 index 0043f7e..0000000 --- a/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/netty-transport-native-epoll-4.1.124.Final-linux-x86_64.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ca83555a63c2c0863aa1e826a8881b13d62075a5 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/netty-transport-native-epoll-4.1.124.Final.pom b/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/netty-transport-native-epoll-4.1.124.Final.pom deleted file mode 100644 index a3d6572..0000000 --- a/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/netty-transport-native-epoll-4.1.124.Final.pom +++ /dev/null @@ -1,727 +0,0 @@ - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - netty-transport-native-epoll - - Netty/Transport/Native/Epoll - jar - - - ${os.detected.name}.${os.detected.arch} - io.netty.transport.epoll.${javaModuleNameClassifier} - - --add-exports java.base/sun.security.x509=ALL-UNNAMED - - -Xcheck:jni - netty-unix-common - ${project.build.directory}/unix-common-lib - ${unix.common.lib.dir}/META-INF/native/lib - ${unix.common.lib.dir}/META-INF/native/include - CFLAGS=-O2 -pipe -Werror -fno-omit-frame-pointer -Wunused-variable -fvisibility=hidden -D_FORTIFY_SOURCE=2 -ffunction-sections -fdata-sections -I${unix.common.include.unpacked.dir} - LDFLAGS=-Wl,-z,relro -Wl,-z,now -Wl,--as-needed -Wl,--gc-sections -L${unix.common.lib.unpacked.dir} - LIBS=-Wl,--whole-archive -l${unix.common.lib.name} -Wl,--no-whole-archive -ldl -lrt - ${project.basedir}/src/main/c - true - true - - - - - - restricted-release-epoll - - - - - maven-enforcer-plugin - 3.0.0 - - - - com.ceilfors.maven.plugin - enforcer-rules - 1.2.0 - - - - - - - - maven-enforcer-plugin - - - enforce-release-environment - - enforce - - - - - - Release process must be performed on linux-x86_64. - - os.detected.classifier - ^linux-x86_64$ - - - - Release process must be performed on RHEL 6.8 or its derivatives. - - - /etc/redhat-release - - release 6.9 - - - - - - - - - - - linux - - - linux - - - - false - - - - - - maven-dependency-plugin - - - - unpack - generate-sources - - unpack-dependencies - - - ${project.groupId} - netty-transport-native-unix-common - ${jni.classifier} - ${unix.common.lib.dir} - META-INF/native/** - false - true - - - - - - - org.fusesource.hawtjni - hawtjni-maven-plugin - - - build-native-lib - - netty_transport_native_epoll_${os.detected.arch} - ${nativeSourceDirectory} - ${project.build.outputDirectory} - - . - - ${jni.compiler.args.ldflags} - ${jni.compiler.args.libs} - ${jni.compiler.args.cflags} - --libdir=${project.build.directory}/native-build/target/lib - - - - generate - build - - - - - - org.apache.felix - maven-bundle-plugin - - - native-manifest - process-classes - - manifest - - - - META-INF/native/libnetty_transport_native_epoll_${os.detected.arch}.so; osname=Linux; processor=${os.detected.arch},* - ${maven-symbolicname}.${jni.classifier} - io.netty.transport-classes-epoll - - ${project.build.directory}/${jni.classifier} - - - - - - maven-jar-plugin - - - - native-jar - - jar - - - - - true - true - - - ${javaModuleName} - - true - ${project.build.directory}/${jni.classifier}/MANIFEST.MF - - ${jni.classifier} - - - - - - - - - - io.netty - netty-transport-native-unix-common - ${project.version} - ${jni.classifier} - - true - - - - - linux-aarch64 - - - ${os.detected.name}-aarch_64 - ${os.detected.name}.aarch_64 - - - - - - maven-enforcer-plugin - 3.0.0 - - - - com.ceilfors.maven.plugin - enforcer-rules - 1.2.0 - - - - - - - - maven-enforcer-plugin - - - enforce-release-environment - - enforce - - - - - - Cross compile and Release process must be performed on linux-x86_64. - - os.detected.classifier - ^linux-x86_64.* - - - - Cross compile and Release process must be performed on RHEL 7.6 or its derivatives. - - - /etc/redhat-release - - release 7.6 - - - - - - - - maven-dependency-plugin - - - - unpack - generate-sources - - unpack-dependencies - - - ${project.groupId} - netty-transport-native-unix-common - ${jni.classifier} - ${unix.common.lib.dir} - META-INF/native/** - false - true - - - - - - - org.fusesource.hawtjni - hawtjni-maven-plugin - - - build-native-lib - - netty_transport_native_epoll_aarch_64 - ${nativeSourceDirectory} - ${project.build.outputDirectory} - - . - - ${jni.compiler.args.ldflags} - ${jni.compiler.args.libs} - ${jni.compiler.args.cflags} - --libdir=${project.build.directory}/native-build/target/lib - --host=aarch64-linux-gnu - CC=aarch64-none-linux-gnu-gcc - - - - generate - build - - - - - - org.apache.felix - maven-bundle-plugin - - - native-manifest - process-classes - - manifest - - - - META-INF/native/libnetty_transport_native_epoll_aarch_64.so; osname=Linux; processor=aarch64,* - ${maven-symbolicname}.${jni.classifier} - io.netty.transport-classes-epoll - - ${project.build.directory}/${jni.classifier} - - - - - - maven-jar-plugin - - - - native-jar - - jar - - - - - true - true - - - ${javaModuleName} - - true - ${project.build.directory}/${jni.classifier}/MANIFEST.MF - - ${jni.classifier} - - - - - - - - - - io.netty - netty-transport-native-unix-common - ${project.version} - ${jni.classifier} - - true - - - - - linux-riscv64 - - - ${os.detected.name}-riscv64 - ${os.detected.name}.riscv64 - - - - - - maven-enforcer-plugin - 3.0.0 - - - - com.ceilfors.maven.plugin - enforcer-rules - 1.2.0 - - - - - - - - maven-enforcer-plugin - - - enforce-release-environment - - enforce - - - - - - Cross compile and Release process must be performed on linux-x86_64. - - os.detected.classifier - ^linux-x86_64.* - - - - - Cross compile and Release process must be performed on Debian Bullseye or derivative - - - /etc/debian_version - - bullseye/sid - - - - - - - - maven-dependency-plugin - - - - unpack - generate-sources - - unpack-dependencies - - - ${project.groupId} - netty-transport-native-unix-common - ${jni.classifier} - ${unix.common.lib.dir} - META-INF/native/** - false - true - - - - - - - org.fusesource.hawtjni - hawtjni-maven-plugin - - - build-native-lib - - netty_transport_native_epoll_riscv64 - ${nativeSourceDirectory} - ${project.build.outputDirectory} - - . - - ${jni.compiler.args.ldflags} - ${jni.compiler.args.libs} - ${jni.compiler.args.cflags} - --libdir=${project.build.directory}/native-build/target/lib - --host=riscv64-linux-gnu - CC=riscv64-linux-gnu-gcc - - - - generate - build - - - - - - org.apache.felix - maven-bundle-plugin - - - native-manifest - process-classes - - manifest - - - - META-INF/native/libnetty_transport_native_epoll_riscv64.so; osname=Linux; processor=riscv64,* - ${maven-symbolicname}.${jni.classifier} - io.netty.transport-classes-epoll - - ${project.build.directory}/${jni.classifier} - - - - - - maven-jar-plugin - - - - native-jar - - jar - - - - - true - true - - - ${javaModuleName} - - true - ${project.build.directory}/${jni.classifier}/MANIFEST.MF - - ${jni.classifier} - - - - - - - - - - io.netty - netty-transport-native-unix-common - ${project.version} - ${jni.classifier} - - true - - - - - oss-fuzz - - CFLAGS=${env.CFLAGS} -I${unix.common.include.unpacked.dir} - - - - - - - io.netty - netty-common - ${project.version} - - - io.netty - netty-buffer - ${project.version} - - - io.netty - netty-transport - ${project.version} - - - io.netty - netty-transport-native-unix-common - ${project.version} - - - io.netty - netty-transport-classes-epoll - ${project.version} - - - io.netty - netty-testsuite - ${project.version} - test - - - io.netty - netty-transport-native-unix-common-tests - ${project.version} - test - - - ${project.groupId} - ${tcnative.artifactId} - ${tcnative.classifier} - test - - - io.github.artsok - rerunner-jupiter - test - - - - org.bouncycastle - bcpkix-jdk15on - true - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - generate-sources - - add-source - - - - ${nativeSourceDirectory} - - - - - - - maven-jar-plugin - - - - empty-javadoc-jar - package - - jar - - - javadoc - ${basedir}/javadoc - - - - - default-jar - - - META-INF/native/** - - - - - - - - - diff --git a/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/netty-transport-native-epoll-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/netty-transport-native-epoll-4.1.124.Final.pom.sha1 deleted file mode 100644 index 7f603b3..0000000 --- a/.m2/repository/io/netty/netty-transport-native-epoll/4.1.124.Final/netty-transport-native-epoll-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b6dc3a2128d8c8d516de9dea8e37bc4e48b977ec \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/_remote.repositories deleted file mode 100644 index 5013262..0000000 --- a/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-transport-native-unix-common-4.1.124.Final.jar>central= -netty-transport-native-unix-common-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/netty-transport-native-unix-common-4.1.124.Final.jar b/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/netty-transport-native-unix-common-4.1.124.Final.jar deleted file mode 100644 index 8e41851..0000000 Binary files a/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/netty-transport-native-unix-common-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/netty-transport-native-unix-common-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/netty-transport-native-unix-common-4.1.124.Final.jar.sha1 deleted file mode 100644 index 3a7a642..0000000 --- a/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/netty-transport-native-unix-common-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -06df613f0356d4de02574507754afb33874a7336 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/netty-transport-native-unix-common-4.1.124.Final.pom b/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/netty-transport-native-unix-common-4.1.124.Final.pom deleted file mode 100644 index 6df0c86..0000000 --- a/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/netty-transport-native-unix-common-4.1.124.Final.pom +++ /dev/null @@ -1,718 +0,0 @@ - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - netty-transport-native-unix-common - - Netty/Transport/Native/Unix/Common - jar - - Static library which contains common unix utilities. - - - - io.netty.transport.unix.common - - make - gcc - ar - libnetty-unix-common - ${project.basedir}/src/main/c - ${project.build.directory}/netty-jni-util/ - ${project.build.directory}/native-jar-work - ${project.build.directory}/native-objs-only - ${project.build.directory}/native-lib-only - ${project.build.directory}/${project.build.finalName}.jar - ${project.build.directory}/${project.build.finalName}-${jni.classifier}.jar - - -Xcheck:jni - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - - unpack - generate-sources - - unpack-dependencies - - - io.netty - netty-jni-util - sources - ${jniUtilIncludeDir} - **.h,**.c - false - true - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - generate-sources - - add-source - - - - ${nativeIncludeDir} - - - - - - - - - - - mac - - - mac - - - - clang - darwin - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - - - mac-m1-cross-compile - - clang - darwin - - ${os.detected.name}-aarch_64 - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - - mac-intel-cross-compile - - clang - darwin - - ${os.detected.name}-x86_64 - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - - linux - - - linux - - - - linux - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - linux-aarch64 - - - ${os.detected.name}-aarch_64 - linux - aarch64-none-linux-gnu-gcc - aarch64-none-linux-gnu-ar - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - linux-riscv64 - - - ${os.detected.name}-riscv64 - linux - riscv64-linux-gnu-gcc - riscv64-linux-gnu-ar - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - freebsd - - - unix - freebsd - - - - clang - gmake - freebsd - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - openbsd - - - unix - openbsd - - - - clang - gmake - openbsd - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - - - - io.netty - netty-jni-util - sources - true - - - io.netty - netty-common - ${project.version} - - - io.netty - netty-buffer - ${project.version} - - - io.netty - netty-transport - ${project.version} - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - diff --git a/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/netty-transport-native-unix-common-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/netty-transport-native-unix-common-4.1.124.Final.pom.sha1 deleted file mode 100644 index 3c5ddc5..0000000 --- a/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.124.Final/netty-transport-native-unix-common-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -27eb32df6b1e89186cb41aef0900cb545f0be3e7 \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-transport/4.1.124.Final/_remote.repositories b/.m2/repository/io/netty/netty-transport/4.1.124.Final/_remote.repositories deleted file mode 100644 index db44e89..0000000 --- a/.m2/repository/io/netty/netty-transport/4.1.124.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -netty-transport-4.1.124.Final.jar>central= -netty-transport-4.1.124.Final.pom>central= diff --git a/.m2/repository/io/netty/netty-transport/4.1.124.Final/netty-transport-4.1.124.Final.jar b/.m2/repository/io/netty/netty-transport/4.1.124.Final/netty-transport-4.1.124.Final.jar deleted file mode 100644 index 9315ab3..0000000 Binary files a/.m2/repository/io/netty/netty-transport/4.1.124.Final/netty-transport-4.1.124.Final.jar and /dev/null differ diff --git a/.m2/repository/io/netty/netty-transport/4.1.124.Final/netty-transport-4.1.124.Final.jar.sha1 b/.m2/repository/io/netty/netty-transport/4.1.124.Final/netty-transport-4.1.124.Final.jar.sha1 deleted file mode 100644 index a367bfb..0000000 --- a/.m2/repository/io/netty/netty-transport/4.1.124.Final/netty-transport-4.1.124.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ce4f80c96f32d51659e142237c3ffbc678765e4e \ No newline at end of file diff --git a/.m2/repository/io/netty/netty-transport/4.1.124.Final/netty-transport-4.1.124.Final.pom b/.m2/repository/io/netty/netty-transport/4.1.124.Final/netty-transport-4.1.124.Final.pom deleted file mode 100644 index ed07f50..0000000 --- a/.m2/repository/io/netty/netty-transport/4.1.124.Final/netty-transport-4.1.124.Final.pom +++ /dev/null @@ -1,91 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.124.Final - - - netty-transport - jar - - Netty/Transport - - - io.netty.transport - - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-resolver - ${project.version} - - - org.mockito - mockito-core - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - test - - - ch.qos.logback - logback-classic - test - - - - diff --git a/.m2/repository/io/netty/netty-transport/4.1.124.Final/netty-transport-4.1.124.Final.pom.sha1 b/.m2/repository/io/netty/netty-transport/4.1.124.Final/netty-transport-4.1.124.Final.pom.sha1 deleted file mode 100644 index 7662365..0000000 --- a/.m2/repository/io/netty/netty-transport/4.1.124.Final/netty-transport-4.1.124.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3403ebeb4162145751e28a79b33877371946a6fe \ No newline at end of file diff --git a/.m2/repository/io/opencensus/opencensus-api/0.31.1/_remote.repositories b/.m2/repository/io/opencensus/opencensus-api/0.31.1/_remote.repositories deleted file mode 100644 index 9457e6c..0000000 --- a/.m2/repository/io/opencensus/opencensus-api/0.31.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. -#Thu Apr 02 20:38:35 UTC 2026 -opencensus-api-0.31.1.jar>central= -opencensus-api-0.31.1.pom>central= diff --git a/.m2/repository/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar b/.m2/repository/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar deleted file mode 100644 index 32f2501..0000000 Binary files a/.m2/repository/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar and /dev/null differ diff --git a/.m2/repository/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar.sha1 b/.m2/repository/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar.sha1 deleted file mode 100644 index 0376084..0000000 --- a/.m2/repository/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -66a60c7201c2b8b20ce495f0295b32bb0ccbbc57 \ No newline at end of file diff --git a/.m2/repository/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.pom b/.m2/repository/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.pom deleted file mode 100644 index eb0954e..0000000 --- a/.m2/repository/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.pom +++ /dev/null @@ -1,64 +0,0 @@ - - - 4.0.0 - io.opencensus - opencensus-api - 0.31.1 - OpenCensus - null - https://github.com/census-instrumentation/opencensus-java - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - io.opencensus - OpenCensus Contributors - census-developers@googlegroups.com - opencensus.io - OpenCensus Authors - https://www.opencensus.io - - - - scm:svn:https://github.com/census-instrumentation/opencensus-java - scm:git:git@github.com/census-instrumentation/opencensus-java - https://github.com/census-instrumentation/opencensus-java - - - - io.grpc - grpc-context - 1.27.2 - compile - - - com.google.guava - guava-testlib - 29.0-android - test - - - junit - junit - 4.12 - test - - - org.mockito - mockito-core - 2.28.1 - test - - - com.google.truth - truth - 1.0 - test - - - diff --git a/.m2/repository/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.pom.sha1 b/.m2/repository/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.pom.sha1 deleted file mode 100644 index 710a2bc..0000000 --- a/.m2/repository/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -39f1b3b2f474097a68725c62cbc6a7d69462e48b \ No newline at end of file diff --git a/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/_remote.repositories b/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/_remote.repositories deleted file mode 100644 index d68ed13..0000000 --- a/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.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. -#Thu Apr 02 20:38:35 UTC 2026 -opencensus-contrib-http-util-0.31.1.jar>central= -opencensus-contrib-http-util-0.31.1.pom>central= diff --git a/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar b/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar deleted file mode 100644 index f96d0da..0000000 Binary files a/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar and /dev/null differ diff --git a/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar.sha1 b/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar.sha1 deleted file mode 100644 index 4e123da..0000000 --- a/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3c13fc5715231fadb16a9b74a44d9d59c460cfa8 \ No newline at end of file diff --git a/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.pom b/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.pom deleted file mode 100644 index 3ef0a4a..0000000 --- a/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.pom +++ /dev/null @@ -1,70 +0,0 @@ - - - 4.0.0 - io.opencensus - opencensus-contrib-http-util - 0.31.1 - OpenCensus - null - https://github.com/census-instrumentation/opencensus-java - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - io.opencensus - OpenCensus Contributors - census-developers@googlegroups.com - opencensus.io - OpenCensus Authors - https://www.opencensus.io - - - - scm:svn:https://github.com/census-instrumentation/opencensus-java - scm:git:git@github.com/census-instrumentation/opencensus-java - https://github.com/census-instrumentation/opencensus-java - - - - io.opencensus - opencensus-api - 0.31.1 - compile - - - com.google.guava - guava - 29.0-android - compile - - - com.google.guava - guava-testlib - 29.0-android - test - - - junit - junit - 4.12 - test - - - org.mockito - mockito-core - 2.28.1 - test - - - com.google.truth - truth - 1.0 - test - - - diff --git a/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.pom.sha1 b/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.pom.sha1 deleted file mode 100644 index fe738b6..0000000 --- a/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8d2027c297b6b91c079fd1a9e1ec69db52f7e033 \ No newline at end of file diff --git a/.m2/repository/io/opentelemetry/opentelemetry-bom/1.31.0/_remote.repositories b/.m2/repository/io/opentelemetry/opentelemetry-bom/1.31.0/_remote.repositories deleted file mode 100644 index 4a68dc4..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:12 UTC 2026 -opentelemetry-bom-1.31.0.pom>central= diff --git a/.m2/repository/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom b/.m2/repository/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom deleted file mode 100644 index 8d1fb28..0000000 --- a/.m2/repository/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/.m2/repository/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.sha1 b/.m2/repository/io/opentelemetry/opentelemetry-bom/1.31.0/opentelemetry-bom-1.31.0.pom.sha1 deleted file mode 100644 index 4bcdd35..0000000 --- a/.m2/repository/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/.m2/repository/io/opentelemetry/opentelemetry-bom/1.49.0/_remote.repositories b/.m2/repository/io/opentelemetry/opentelemetry-bom/1.49.0/_remote.repositories deleted file mode 100644 index 1daa84e..0000000 --- a/.m2/repository/io/opentelemetry/opentelemetry-bom/1.49.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. -#Thu Apr 02 20:37:37 UTC 2026 -opentelemetry-bom-1.49.0.pom>central= diff --git a/.m2/repository/io/opentelemetry/opentelemetry-bom/1.49.0/opentelemetry-bom-1.49.0.pom b/.m2/repository/io/opentelemetry/opentelemetry-bom/1.49.0/opentelemetry-bom-1.49.0.pom deleted file mode 100644 index 6c4ce07..0000000 --- a/.m2/repository/io/opentelemetry/opentelemetry-bom/1.49.0/opentelemetry-bom-1.49.0.pom +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - 4.0.0 - io.opentelemetry - opentelemetry-bom - 1.49.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.49.0 - - - io.opentelemetry - opentelemetry-opentracing-shim - 1.49.0 - - - io.opentelemetry - opentelemetry-api - 1.49.0 - - - io.opentelemetry - opentelemetry-exporter-common - 1.49.0 - - - io.opentelemetry - opentelemetry-exporter-logging - 1.49.0 - - - io.opentelemetry - opentelemetry-exporter-logging-otlp - 1.49.0 - - - io.opentelemetry - opentelemetry-exporter-zipkin - 1.49.0 - - - io.opentelemetry - opentelemetry-extension-kotlin - 1.49.0 - - - io.opentelemetry - opentelemetry-extension-trace-propagators - 1.49.0 - - - io.opentelemetry - opentelemetry-sdk - 1.49.0 - - - io.opentelemetry - opentelemetry-sdk-common - 1.49.0 - - - io.opentelemetry - opentelemetry-sdk-logs - 1.49.0 - - - io.opentelemetry - opentelemetry-sdk-metrics - 1.49.0 - - - io.opentelemetry - opentelemetry-sdk-testing - 1.49.0 - - - io.opentelemetry - opentelemetry-sdk-trace - 1.49.0 - - - io.opentelemetry - opentelemetry-sdk-extension-autoconfigure - 1.49.0 - - - io.opentelemetry - opentelemetry-sdk-extension-autoconfigure-spi - 1.49.0 - - - io.opentelemetry - opentelemetry-sdk-extension-jaeger-remote-sampler - 1.49.0 - - - io.opentelemetry - opentelemetry-exporter-otlp - 1.49.0 - - - io.opentelemetry - opentelemetry-exporter-otlp-common - 1.49.0 - - - io.opentelemetry - opentelemetry-exporter-sender-grpc-managed-channel - 1.49.0 - - - io.opentelemetry - opentelemetry-exporter-sender-jdk - 1.49.0 - - - io.opentelemetry - opentelemetry-exporter-sender-okhttp - 1.49.0 - - - - diff --git a/.m2/repository/io/opentelemetry/opentelemetry-bom/1.49.0/opentelemetry-bom-1.49.0.pom.sha1 b/.m2/repository/io/opentelemetry/opentelemetry-bom/1.49.0/opentelemetry-bom-1.49.0.pom.sha1 deleted file mode 100644 index d53cea2..0000000 --- a/.m2/repository/io/opentelemetry/opentelemetry-bom/1.49.0/opentelemetry-bom-1.49.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f5b1c2487bb747b0dca1a224f3fd01f0d22ceaa3 \ No newline at end of file diff --git a/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/_remote.repositories b/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/_remote.repositories deleted file mode 100644 index 08c43b3..0000000 --- a/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/_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. -#Thu Apr 02 20:38:35 UTC 2026 -reactor-netty-core-1.2.9.jar>central= -reactor-netty-core-1.2.9.pom>central= diff --git a/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/reactor-netty-core-1.2.9.jar b/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/reactor-netty-core-1.2.9.jar deleted file mode 100644 index 7b49d28..0000000 Binary files a/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/reactor-netty-core-1.2.9.jar and /dev/null differ diff --git a/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/reactor-netty-core-1.2.9.jar.sha1 b/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/reactor-netty-core-1.2.9.jar.sha1 deleted file mode 100644 index 3e9f1ad..0000000 --- a/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/reactor-netty-core-1.2.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -aa1979804ad9f8e3b59f60681bfd2400a16d7b9b \ No newline at end of file diff --git a/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/reactor-netty-core-1.2.9.pom b/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/reactor-netty-core-1.2.9.pom deleted file mode 100644 index eb121eb..0000000 --- a/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/reactor-netty-core-1.2.9.pom +++ /dev/null @@ -1,118 +0,0 @@ - - - 4.0.0 - io.projectreactor.netty - reactor-netty-core - 1.2.9 - Core functionality for the Reactor Netty library - Core functionality for the Reactor Netty library - https://github.com/reactor/reactor-netty - - 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@vmware.com - - - violetagg - Violeta Georgieva - violetag@vmware.com - - - - scm:git:git://github.com/reactor/reactor-netty - scm:git:git://github.com/reactor/reactor-netty - https://github.com/reactor/reactor-netty - - - GitHub Issues - https://github.com/reactor/reactor-netty/issues - - - - io.netty - netty-handler - 4.1.123.Final - compile - - - commons-logging - commons-logging - - - - - io.netty - netty-handler-proxy - 4.1.123.Final - compile - - - commons-logging - commons-logging - - - - - io.netty - netty-resolver-dns - 4.1.123.Final - compile - - - commons-logging - commons-logging - - - - - io.netty - netty-resolver-dns-native-macos - 4.1.123.Final - osx-x86_64 - compile - - - commons-logging - commons-logging - - - - - io.netty - netty-transport-native-epoll - 4.1.123.Final - linux-x86_64 - compile - - - commons-logging - commons-logging - - - - - io.projectreactor - reactor-core - 3.7.9 - compile - - - commons-logging - commons-logging - - - - - diff --git a/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/reactor-netty-core-1.2.9.pom.sha1 b/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/reactor-netty-core-1.2.9.pom.sha1 deleted file mode 100644 index 06d332e..0000000 --- a/.m2/repository/io/projectreactor/netty/reactor-netty-core/1.2.9/reactor-netty-core-1.2.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -82b584a58eb75847d988b844cabf4f854cf88dcb \ No newline at end of file diff --git a/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/_remote.repositories b/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/_remote.repositories deleted file mode 100644 index 6f96bf1..0000000 --- a/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/_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. -#Thu Apr 02 20:38:35 UTC 2026 -reactor-netty-http-1.2.9.jar>central= -reactor-netty-http-1.2.9.pom>central= diff --git a/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/reactor-netty-http-1.2.9.jar b/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/reactor-netty-http-1.2.9.jar deleted file mode 100644 index 3efb345..0000000 Binary files a/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/reactor-netty-http-1.2.9.jar and /dev/null differ diff --git a/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/reactor-netty-http-1.2.9.jar.sha1 b/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/reactor-netty-http-1.2.9.jar.sha1 deleted file mode 100644 index ba3b94e..0000000 --- a/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/reactor-netty-http-1.2.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -aea5b2eb6f1cb9a933a4c97745291ffc34ec10d6 \ No newline at end of file diff --git a/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/reactor-netty-http-1.2.9.pom b/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/reactor-netty-http-1.2.9.pom deleted file mode 100644 index 8067034..0000000 --- a/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/reactor-netty-http-1.2.9.pom +++ /dev/null @@ -1,130 +0,0 @@ - - - 4.0.0 - io.projectreactor.netty - reactor-netty-http - 1.2.9 - HTTP functionality for the Reactor Netty library - HTTP functionality for the Reactor Netty library - https://github.com/reactor/reactor-netty - - 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@vmware.com - - - violetagg - Violeta Georgieva - violetag@vmware.com - - - - scm:git:git://github.com/reactor/reactor-netty - scm:git:git://github.com/reactor/reactor-netty - https://github.com/reactor/reactor-netty - - - GitHub Issues - https://github.com/reactor/reactor-netty/issues - - - - io.netty - netty-codec-http - 4.1.123.Final - compile - - - commons-logging - commons-logging - - - - - io.netty - netty-codec-http2 - 4.1.123.Final - compile - - - commons-logging - commons-logging - - - - - io.netty - netty-resolver-dns - 4.1.123.Final - compile - - - commons-logging - commons-logging - - - - - io.netty - netty-resolver-dns-native-macos - 4.1.123.Final - osx-x86_64 - compile - - - commons-logging - commons-logging - - - - - io.netty - netty-transport-native-epoll - 4.1.123.Final - linux-x86_64 - compile - - - commons-logging - commons-logging - - - - - io.projectreactor.netty - reactor-netty-core - 1.2.9 - compile - - - commons-logging - commons-logging - - - - - io.projectreactor - reactor-core - 3.7.9 - compile - - - commons-logging - commons-logging - - - - - diff --git a/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/reactor-netty-http-1.2.9.pom.sha1 b/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/reactor-netty-http-1.2.9.pom.sha1 deleted file mode 100644 index 3a97066..0000000 --- a/.m2/repository/io/projectreactor/netty/reactor-netty-http/1.2.9/reactor-netty-http-1.2.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c572dc44a9d5d85fd9ff3e6959f464b6a1b6ffe1 \ No newline at end of file diff --git a/.m2/repository/io/projectreactor/reactor-bom/2023.0.4/_remote.repositories b/.m2/repository/io/projectreactor/reactor-bom/2023.0.4/_remote.repositories deleted file mode 100644 index 4385fe7..0000000 --- a/.m2/repository/io/projectreactor/reactor-bom/2023.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. -#Thu Apr 02 20:38:12 UTC 2026 -reactor-bom-2023.0.4.pom>central= diff --git a/.m2/repository/io/projectreactor/reactor-bom/2023.0.4/reactor-bom-2023.0.4.pom b/.m2/repository/io/projectreactor/reactor-bom/2023.0.4/reactor-bom-2023.0.4.pom deleted file mode 100644 index 632f336..0000000 --- a/.m2/repository/io/projectreactor/reactor-bom/2023.0.4/reactor-bom-2023.0.4.pom +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - 4.0.0 - io.projectreactor - reactor-bom - 2023.0.4 - 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.4 - - - io.projectreactor - reactor-test - 3.6.4 - - - io.projectreactor - reactor-tools - 3.6.4 - - - io.projectreactor - reactor-core-micrometer - 1.1.4 - - - io.projectreactor.addons - reactor-extra - 3.5.1 - - - io.projectreactor.addons - reactor-adapter - 3.5.1 - - - io.projectreactor.netty - reactor-netty - 1.1.17 - - - io.projectreactor.netty - reactor-netty-core - 1.1.17 - - - io.projectreactor.netty - reactor-netty-http - 1.1.17 - - - io.projectreactor.netty - reactor-netty-http-brave - 1.1.17 - - - 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/.m2/repository/io/projectreactor/reactor-bom/2023.0.4/reactor-bom-2023.0.4.pom.sha1 b/.m2/repository/io/projectreactor/reactor-bom/2023.0.4/reactor-bom-2023.0.4.pom.sha1 deleted file mode 100644 index d29e921..0000000 --- a/.m2/repository/io/projectreactor/reactor-bom/2023.0.4/reactor-bom-2023.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bd839074901726762ca22b79e7c6a2872d1b9d55 \ No newline at end of file diff --git a/.m2/repository/io/projectreactor/reactor-bom/2024.0.9/_remote.repositories b/.m2/repository/io/projectreactor/reactor-bom/2024.0.9/_remote.repositories deleted file mode 100644 index 62ce250..0000000 --- a/.m2/repository/io/projectreactor/reactor-bom/2024.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. -#Thu Apr 02 20:37:38 UTC 2026 -reactor-bom-2024.0.9.pom>central= diff --git a/.m2/repository/io/projectreactor/reactor-bom/2024.0.9/reactor-bom-2024.0.9.pom b/.m2/repository/io/projectreactor/reactor-bom/2024.0.9/reactor-bom-2024.0.9.pom deleted file mode 100644 index 423b95f..0000000 --- a/.m2/repository/io/projectreactor/reactor-bom/2024.0.9/reactor-bom-2024.0.9.pom +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - 4.0.0 - io.projectreactor - reactor-bom - 2024.0.9 - 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.7.9 - - - io.projectreactor - reactor-test - 3.7.9 - - - io.projectreactor - reactor-tools - 3.7.9 - - - io.projectreactor - reactor-core-micrometer - 1.2.9 - - - io.projectreactor.addons - reactor-extra - 3.5.2 - - - io.projectreactor.addons - reactor-adapter - 3.5.2 - - - io.projectreactor.netty - reactor-netty - 1.2.9 - - - io.projectreactor.netty - reactor-netty-core - 1.2.9 - - - io.projectreactor.netty - reactor-netty-http - 1.2.9 - - - io.projectreactor.netty - reactor-netty-http-brave - 1.2.9 - - - io.projectreactor.addons - reactor-pool - 1.1.3 - - - io.projectreactor.addons - reactor-pool-micrometer - 0.2.3 - - - io.projectreactor.kotlin - reactor-kotlin-extensions - 1.2.3 - - - io.projectreactor.kafka - reactor-kafka - 1.3.23 - - - - diff --git a/.m2/repository/io/projectreactor/reactor-bom/2024.0.9/reactor-bom-2024.0.9.pom.sha1 b/.m2/repository/io/projectreactor/reactor-bom/2024.0.9/reactor-bom-2024.0.9.pom.sha1 deleted file mode 100644 index 1a74495..0000000 --- a/.m2/repository/io/projectreactor/reactor-bom/2024.0.9/reactor-bom-2024.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -18f49b4431dde3b3a07e36cfb995327e1ddcbe54 \ No newline at end of file diff --git a/.m2/repository/io/projectreactor/reactor-core/3.7.9/_remote.repositories b/.m2/repository/io/projectreactor/reactor-core/3.7.9/_remote.repositories deleted file mode 100644 index 8c47601..0000000 --- a/.m2/repository/io/projectreactor/reactor-core/3.7.9/_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. -#Thu Apr 02 20:38:35 UTC 2026 -reactor-core-3.7.9.jar>central= -reactor-core-3.7.9.pom>central= diff --git a/.m2/repository/io/projectreactor/reactor-core/3.7.9/reactor-core-3.7.9.jar b/.m2/repository/io/projectreactor/reactor-core/3.7.9/reactor-core-3.7.9.jar deleted file mode 100644 index c2331bb..0000000 Binary files a/.m2/repository/io/projectreactor/reactor-core/3.7.9/reactor-core-3.7.9.jar and /dev/null differ diff --git a/.m2/repository/io/projectreactor/reactor-core/3.7.9/reactor-core-3.7.9.jar.sha1 b/.m2/repository/io/projectreactor/reactor-core/3.7.9/reactor-core-3.7.9.jar.sha1 deleted file mode 100644 index 9375572..0000000 --- a/.m2/repository/io/projectreactor/reactor-core/3.7.9/reactor-core-3.7.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -95a14ea97f7c99e0897120dc6fe46370c040f7a6 \ No newline at end of file diff --git a/.m2/repository/io/projectreactor/reactor-core/3.7.9/reactor-core-3.7.9.pom b/.m2/repository/io/projectreactor/reactor-core/3.7.9/reactor-core-3.7.9.pom deleted file mode 100644 index c7115c9..0000000 --- a/.m2/repository/io/projectreactor/reactor-core/3.7.9/reactor-core-3.7.9.pom +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - 4.0.0 - io.projectreactor - reactor-core - 3.7.9 - 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/.m2/repository/io/projectreactor/reactor-core/3.7.9/reactor-core-3.7.9.pom.sha1 b/.m2/repository/io/projectreactor/reactor-core/3.7.9/reactor-core-3.7.9.pom.sha1 deleted file mode 100644 index ce48b92..0000000 --- a/.m2/repository/io/projectreactor/reactor-core/3.7.9/reactor-core-3.7.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3a6ba58234651bc4525f92f7031ac3bac8a51115 \ No newline at end of file diff --git a/.m2/repository/io/prometheus/client_java_parent/1.3.10/_remote.repositories b/.m2/repository/io/prometheus/client_java_parent/1.3.10/_remote.repositories deleted file mode 100644 index 5047ddc..0000000 --- a/.m2/repository/io/prometheus/client_java_parent/1.3.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. -#Thu Apr 02 20:37:37 UTC 2026 -client_java_parent-1.3.10.pom>central= diff --git a/.m2/repository/io/prometheus/client_java_parent/1.3.10/client_java_parent-1.3.10.pom b/.m2/repository/io/prometheus/client_java_parent/1.3.10/client_java_parent-1.3.10.pom deleted file mode 100644 index e172a2c..0000000 --- a/.m2/repository/io/prometheus/client_java_parent/1.3.10/client_java_parent-1.3.10.pom +++ /dev/null @@ -1,146 +0,0 @@ - - - pom - 4.0.0 - - io.prometheus - client_java_parent - 1.3.10 - - Prometheus Metrics Library Parent - http://github.com/prometheus/client_java - - The Prometheus Java Metrics Library Parent - - - - true - true - true - true - - - - - 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 - HEAD - - - - - fstab - Fabian Stäber - fabian@fstab.de - - - zeitlinger - Gregor Zeitlinger - gregor.zeitlinger@grafana.com - - - dhoard - Doug Hoard - doug.hoard@gmail.com - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - com.diffplug.spotless - spotless-maven-plugin - 2.44.5 - - - - - ${spotless.skip} - - - - verify - - check - - - - - - - - - - release - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.2.8 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.1 - - - attach-sources - - jar-no-fork - - - - - - org.sonatype.central - central-publishing-maven-plugin - 0.8.0 - true - - ossrh - true - published - - - - - - - diff --git a/.m2/repository/io/prometheus/client_java_parent/1.3.10/client_java_parent-1.3.10.pom.sha1 b/.m2/repository/io/prometheus/client_java_parent/1.3.10/client_java_parent-1.3.10.pom.sha1 deleted file mode 100644 index fe985f9..0000000 --- a/.m2/repository/io/prometheus/client_java_parent/1.3.10/client_java_parent-1.3.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a5b34c99b2d0686a66060e569b4747e1b5c45645 \ No newline at end of file diff --git a/.m2/repository/io/prometheus/parent/0.16.0/_remote.repositories b/.m2/repository/io/prometheus/parent/0.16.0/_remote.repositories deleted file mode 100644 index 38c5185..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:37 UTC 2026 -parent-0.16.0.pom>central= diff --git a/.m2/repository/io/prometheus/parent/0.16.0/parent-0.16.0.pom b/.m2/repository/io/prometheus/parent/0.16.0/parent-0.16.0.pom deleted file mode 100644 index f6116cc..0000000 --- a/.m2/repository/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/.m2/repository/io/prometheus/parent/0.16.0/parent-0.16.0.pom.sha1 b/.m2/repository/io/prometheus/parent/0.16.0/parent-0.16.0.pom.sha1 deleted file mode 100644 index bae706b..0000000 --- a/.m2/repository/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/.m2/repository/io/prometheus/prometheus-metrics-bom/1.3.10/_remote.repositories b/.m2/repository/io/prometheus/prometheus-metrics-bom/1.3.10/_remote.repositories deleted file mode 100644 index b3816fa..0000000 --- a/.m2/repository/io/prometheus/prometheus-metrics-bom/1.3.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. -#Thu Apr 02 20:37:37 UTC 2026 -prometheus-metrics-bom-1.3.10.pom>central= diff --git a/.m2/repository/io/prometheus/prometheus-metrics-bom/1.3.10/prometheus-metrics-bom-1.3.10.pom b/.m2/repository/io/prometheus/prometheus-metrics-bom/1.3.10/prometheus-metrics-bom-1.3.10.pom deleted file mode 100644 index 17a29e3..0000000 --- a/.m2/repository/io/prometheus/prometheus-metrics-bom/1.3.10/prometheus-metrics-bom-1.3.10.pom +++ /dev/null @@ -1,154 +0,0 @@ - - - 4.0.0 - - - io.prometheus - client_java_parent - 1.3.10 - ../prometheus-metrics-parent/pom.xml - - - prometheus-metrics-bom - pom - - Prometheus Metrics BOM - - Bill of Materials for the Prometheus Metrics library - - - - true - - - - - - io.prometheus - prometheus-metrics-config - ${project.version} - - - io.prometheus - prometheus-metrics-core - ${project.version} - - - io.prometheus - prometheus-metrics-exporter-common - ${project.version} - - - io.prometheus - prometheus-metrics-exporter-httpserver - ${project.version} - - - io.prometheus - prometheus-metrics-exporter-opentelemetry - ${project.version} - - - io.prometheus - prometheus-metrics-exporter-opentelemetry-no-otel - ${project.version} - - - io.prometheus - prometheus-metrics-exporter-opentelemetry-otel-agent-resources - ${project.version} - - - io.prometheus - prometheus-metrics-exporter-pushgateway - ${project.version} - - - io.prometheus - prometheus-metrics-exporter-servlet-jakarta - ${project.version} - - - io.prometheus - prometheus-metrics-exporter-servlet-javax - ${project.version} - - - io.prometheus - prometheus-metrics-exposition-formats-no-protobuf - ${project.version} - - - io.prometheus - prometheus-metrics-exposition-formats - ${project.version} - - - io.prometheus - prometheus-metrics-exposition-textformats - ${project.version} - - - io.prometheus - prometheus-metrics-instrumentation-dropwizard - ${project.version} - - - io.prometheus - prometheus-metrics-instrumentation-dropwizard5 - ${project.version} - - - io.prometheus - prometheus-metrics-instrumentation-caffeine - ${project.version} - - - io.prometheus - prometheus-metrics-instrumentation-guava - ${project.version} - - - io.prometheus - prometheus-metrics-instrumentation-jvm - ${project.version} - - - io.prometheus - prometheus-metrics-model - ${project.version} - - - io.prometheus - prometheus-metrics-simpleclient-bridge - ${project.version} - - - io.prometheus - prometheus-metrics-tracer - ${project.version} - - - io.prometheus - prometheus-metrics-tracer-common - ${project.version} - - - io.prometheus - prometheus-metrics-tracer-initializer - ${project.version} - - - io.prometheus - prometheus-metrics-tracer-otel - ${project.version} - - - io.prometheus - prometheus-metrics-tracer-otel-agent - ${project.version} - - - - diff --git a/.m2/repository/io/prometheus/prometheus-metrics-bom/1.3.10/prometheus-metrics-bom-1.3.10.pom.sha1 b/.m2/repository/io/prometheus/prometheus-metrics-bom/1.3.10/prometheus-metrics-bom-1.3.10.pom.sha1 deleted file mode 100644 index 1a85958..0000000 --- a/.m2/repository/io/prometheus/prometheus-metrics-bom/1.3.10/prometheus-metrics-bom-1.3.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6713235086eb4640d7a68317105a3bc76486c5de \ No newline at end of file diff --git a/.m2/repository/io/prometheus/simpleclient_bom/0.16.0/_remote.repositories b/.m2/repository/io/prometheus/simpleclient_bom/0.16.0/_remote.repositories deleted file mode 100644 index 4ad1cb9..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:37 UTC 2026 -simpleclient_bom-0.16.0.pom>central= diff --git a/.m2/repository/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom b/.m2/repository/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom deleted file mode 100644 index df1ea60..0000000 --- a/.m2/repository/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/.m2/repository/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.sha1 b/.m2/repository/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom.sha1 deleted file mode 100644 index 57f6f28..0000000 --- a/.m2/repository/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/.m2/repository/io/rest-assured/rest-assured-bom/5.3.2/_remote.repositories b/.m2/repository/io/rest-assured/rest-assured-bom/5.3.2/_remote.repositories deleted file mode 100644 index 1f3d7d3..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:12 UTC 2026 -rest-assured-bom-5.3.2.pom>central= diff --git a/.m2/repository/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom b/.m2/repository/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom deleted file mode 100644 index 4175fc3..0000000 --- a/.m2/repository/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/.m2/repository/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.sha1 b/.m2/repository/io/rest-assured/rest-assured-bom/5.3.2/rest-assured-bom-5.3.2.pom.sha1 deleted file mode 100644 index 98e4b17..0000000 --- a/.m2/repository/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/.m2/repository/io/rest-assured/rest-assured-bom/5.5.6/_remote.repositories b/.m2/repository/io/rest-assured/rest-assured-bom/5.5.6/_remote.repositories deleted file mode 100644 index 77fdb0c..0000000 --- a/.m2/repository/io/rest-assured/rest-assured-bom/5.5.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. -#Thu Apr 02 20:37:38 UTC 2026 -rest-assured-bom-5.5.6.pom>central= diff --git a/.m2/repository/io/rest-assured/rest-assured-bom/5.5.6/rest-assured-bom-5.5.6.pom b/.m2/repository/io/rest-assured/rest-assured-bom/5.5.6/rest-assured-bom-5.5.6.pom deleted file mode 100644 index a9b5f84..0000000 --- a/.m2/repository/io/rest-assured/rest-assured-bom/5.5.6/rest-assured-bom-5.5.6.pom +++ /dev/null @@ -1,139 +0,0 @@ - - - 4.0.0 - io.rest-assured - rest-assured-bom - 5.5.6 - pom - REST Assured BOM - Centralized dependencyManagement for the REST Assured project - https://rest-assured.io/ - 2010 - - - Apache 2.0 - https://www.apache.org/licenses/LICENSE-2.0.html - repo - - - - - johan.haleby - Johan Haleby - johan.haleby at gmail.com - Parkster - https://www.parkster.com - - Developer - - +1 - - - - - rest-assured mailing-list - https://groups.google.com/group/rest-assured/topics - - - - scm:git:git://github.com/rest-assured/rest-assured.git - scm:git:ssh://git@github.com/rest-assured/rest-assured.git - rest-assured-5.5.6 - https://github.com/rest-assured/rest-assured/tree/master - - - GitHub Issue Tracking - - - - - central - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - io.rest-assured - json-schema-validator - 5.5.6 - - - io.rest-assured - rest-assured-common - 5.5.6 - - - io.rest-assured - json-path - 5.5.6 - - - io.rest-assured - xml-path - 5.5.6 - - - io.rest-assured - rest-assured - 5.5.6 - - - io.rest-assured - spring-commons - 5.5.6 - - - io.rest-assured - spring-mock-mvc - 5.5.6 - - - io.rest-assured - scala-support - 5.5.6 - - - io.rest-assured - scala-extensions - 5.5.6 - - - io.rest-assured - spring-web-test-client - 5.5.6 - - - io.rest-assured - kotlin-extensions - 5.5.6 - - - io.rest-assured - spring-mock-mvc-kotlin-extensions - 5.5.6 - - - io.rest-assured - spring-web-test-client-kotlin-extensions - 5.5.6 - - - io.rest-assured - rest-assured-all - 5.5.6 - - - - - - - org.sonatype.central - central-publishing-maven-plugin - 0.7.0 - true - - - - diff --git a/.m2/repository/io/rest-assured/rest-assured-bom/5.5.6/rest-assured-bom-5.5.6.pom.sha1 b/.m2/repository/io/rest-assured/rest-assured-bom/5.5.6/rest-assured-bom-5.5.6.pom.sha1 deleted file mode 100644 index 5b30aaf..0000000 --- a/.m2/repository/io/rest-assured/rest-assured-bom/5.5.6/rest-assured-bom-5.5.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -17a506070a0d9201178836e7a3f17a5215f47f4e \ No newline at end of file diff --git a/.m2/repository/io/rsocket/rsocket-bom/1.1.3/_remote.repositories b/.m2/repository/io/rsocket/rsocket-bom/1.1.3/_remote.repositories deleted file mode 100644 index 846e6ae..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:13 UTC 2026 -rsocket-bom-1.1.3.pom>central= diff --git a/.m2/repository/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom b/.m2/repository/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom deleted file mode 100644 index 4609984..0000000 --- a/.m2/repository/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/.m2/repository/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.sha1 b/.m2/repository/io/rsocket/rsocket-bom/1.1.3/rsocket-bom-1.1.3.pom.sha1 deleted file mode 100644 index d01cbbd..0000000 --- a/.m2/repository/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/.m2/repository/io/rsocket/rsocket-bom/1.1.5/_remote.repositories b/.m2/repository/io/rsocket/rsocket-bom/1.1.5/_remote.repositories deleted file mode 100644 index bbb94e1..0000000 --- a/.m2/repository/io/rsocket/rsocket-bom/1.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. -#Thu Apr 02 20:37:38 UTC 2026 -rsocket-bom-1.1.5.pom>central= diff --git a/.m2/repository/io/rsocket/rsocket-bom/1.1.5/rsocket-bom-1.1.5.pom b/.m2/repository/io/rsocket/rsocket-bom/1.1.5/rsocket-bom-1.1.5.pom deleted file mode 100644 index 1022096..0000000 --- a/.m2/repository/io/rsocket/rsocket-bom/1.1.5/rsocket-bom-1.1.5.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - 4.0.0 - io.rsocket - rsocket-bom - 1.1.5 - 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 - - - - - 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.5 - - - io.rsocket - rsocket-load-balancer - 1.1.5 - - - io.rsocket - rsocket-micrometer - 1.1.5 - - - io.rsocket - rsocket-test - 1.1.5 - - - io.rsocket - rsocket-transport-local - 1.1.5 - - - io.rsocket - rsocket-transport-netty - 1.1.5 - - - - diff --git a/.m2/repository/io/rsocket/rsocket-bom/1.1.5/rsocket-bom-1.1.5.pom.sha1 b/.m2/repository/io/rsocket/rsocket-bom/1.1.5/rsocket-bom-1.1.5.pom.sha1 deleted file mode 100644 index c0d96ec..0000000 --- a/.m2/repository/io/rsocket/rsocket-bom/1.1.5/rsocket-bom-1.1.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6624da448f5228f69ec4b29744085f9ed41d0292 \ No newline at end of file diff --git a/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/_remote.repositories b/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/_remote.repositories deleted file mode 100644 index 799a28f..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/_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. -#Thu Apr 02 20:38:35 UTC 2026 -swagger-annotations-jakarta-2.2.21.jar>central= -swagger-annotations-jakarta-2.2.21.pom>central= diff --git a/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/swagger-annotations-jakarta-2.2.21.jar b/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/swagger-annotations-jakarta-2.2.21.jar deleted file mode 100644 index d7aee89..0000000 Binary files a/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/swagger-annotations-jakarta-2.2.21.jar and /dev/null differ diff --git a/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/swagger-annotations-jakarta-2.2.21.jar.sha1 b/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/swagger-annotations-jakarta-2.2.21.jar.sha1 deleted file mode 100644 index 6982853..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/swagger-annotations-jakarta-2.2.21.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3fa24dc3ad843c44602df97832f2d38e7bad1465 \ No newline at end of file diff --git a/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/swagger-annotations-jakarta-2.2.21.pom b/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/swagger-annotations-jakarta-2.2.21.pom deleted file mode 100644 index 6b66228..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/swagger-annotations-jakarta-2.2.21.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - io.swagger.core.v3 - swagger-project-jakarta - 2.2.21 - ../.. - - 4.0.0 - swagger-annotations-jakarta - swagger-annotations-jakarta - swagger-annotations-jakarta - - - - - org.eclipse.transformer - transformer-maven-plugin - ${transformer-maven-plugin-version} - true - - - true - - ${project.build.finalName}-jakarta - - - - default-jar - - jar - - - - ${project.groupId} - swagger-annotations - ${project.version} - - - - - javadoc-jar - - jar - - - - ${project.groupId} - swagger-annotations - ${project.version} - javadoc - - - - - source-jar - - jar - - - - ${project.groupId} - swagger-annotations - ${project.version} - sources - - - - - - - - - - - - diff --git a/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/swagger-annotations-jakarta-2.2.21.pom.sha1 b/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/swagger-annotations-jakarta-2.2.21.pom.sha1 deleted file mode 100644 index 3278904..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-annotations-jakarta/2.2.21/swagger-annotations-jakarta-2.2.21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c278793d3467a44caee6c5f075a829bbf0279cbd \ No newline at end of file diff --git a/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/_remote.repositories b/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/_remote.repositories deleted file mode 100644 index 7fda8aa..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/_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. -#Thu Apr 02 20:38:35 UTC 2026 -swagger-core-jakarta-2.2.21.jar>central= -swagger-core-jakarta-2.2.21.pom>central= diff --git a/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/swagger-core-jakarta-2.2.21.jar b/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/swagger-core-jakarta-2.2.21.jar deleted file mode 100644 index dc78989..0000000 Binary files a/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/swagger-core-jakarta-2.2.21.jar and /dev/null differ diff --git a/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/swagger-core-jakarta-2.2.21.jar.sha1 b/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/swagger-core-jakarta-2.2.21.jar.sha1 deleted file mode 100644 index d2f8cde..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/swagger-core-jakarta-2.2.21.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b7d961d3431bb200af600c5bb6b68024c2f6282c \ No newline at end of file diff --git a/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/swagger-core-jakarta-2.2.21.pom b/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/swagger-core-jakarta-2.2.21.pom deleted file mode 100644 index 34bb15c..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/swagger-core-jakarta-2.2.21.pom +++ /dev/null @@ -1,144 +0,0 @@ - - - io.swagger.core.v3 - swagger-project-jakarta - 2.2.21 - ../.. - - 4.0.0 - swagger-core-jakarta - swagger-core-jakarta - swagger-core-jakarta - - - - - org.eclipse.transformer - transformer-maven-plugin - ${transformer-maven-plugin-version} - true - - - true - - ${project.build.finalName}-jakarta - - - - default-jar - - jar - - - - ${project.groupId} - swagger-core - ${project.version} - - - - - javadoc-jar - - jar - - - - ${project.groupId} - swagger-core - ${project.version} - javadoc - - - - - source-jar - - jar - - - - ${project.groupId} - swagger-core - ${project.version} - sources - - - - - - - - - - - org.apache.commons - commons-lang3 - - - org.slf4j - slf4j-api - - - ch.qos.logback - logback-classic - provided - - - ch.qos.logback - logback-core - provided - - - commons-io - commons-io - - - - - io.swagger.core.v3 - swagger-annotations-jakarta - ${project.parent.version} - - - io.swagger.core.v3 - swagger-models-jakarta - ${project.parent.version} - - - org.yaml - snakeyaml - ${snakeyaml-version} - - - jakarta.xml.bind - jakarta.xml.bind-api - - - jakarta.validation - jakarta.validation-api - - - - - com.fasterxml.jackson.core - jackson-annotations - - - com.fasterxml.jackson.core - jackson-databind - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - - - - - diff --git a/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/swagger-core-jakarta-2.2.21.pom.sha1 b/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/swagger-core-jakarta-2.2.21.pom.sha1 deleted file mode 100644 index 3ead1f1..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-core-jakarta/2.2.21/swagger-core-jakarta-2.2.21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0433a7c61706300a686b1f8e72edbdb8e18322ce \ No newline at end of file diff --git a/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/_remote.repositories b/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/_remote.repositories deleted file mode 100644 index 567fdfa..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/_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. -#Thu Apr 02 20:38:35 UTC 2026 -swagger-models-jakarta-2.2.21.jar>central= -swagger-models-jakarta-2.2.21.pom>central= diff --git a/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/swagger-models-jakarta-2.2.21.jar b/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/swagger-models-jakarta-2.2.21.jar deleted file mode 100644 index 124fed0..0000000 Binary files a/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/swagger-models-jakarta-2.2.21.jar and /dev/null differ diff --git a/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/swagger-models-jakarta-2.2.21.jar.sha1 b/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/swagger-models-jakarta-2.2.21.jar.sha1 deleted file mode 100644 index 4cc3f2e..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/swagger-models-jakarta-2.2.21.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3f6ed502304a3a2cc4ae847dbdc956ba010e8261 \ No newline at end of file diff --git a/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/swagger-models-jakarta-2.2.21.pom b/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/swagger-models-jakarta-2.2.21.pom deleted file mode 100644 index 8b2163e..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/swagger-models-jakarta-2.2.21.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - io.swagger.core.v3 - swagger-project-jakarta - 2.2.21 - ../.. - - 4.0.0 - swagger-models-jakarta - swagger-models-jakarta - swagger-models-jakarta - - - - - org.eclipse.transformer - transformer-maven-plugin - ${transformer-maven-plugin-version} - true - - - true - - ${project.build.finalName}-jakarta - - - - default-jar - - jar - - - - ${project.groupId} - swagger-models - ${project.version} - - - - - javadoc-jar - - jar - - - - ${project.groupId} - swagger-models - ${project.version} - javadoc - - - - - source-jar - - jar - - - - ${project.groupId} - swagger-models - ${project.version} - sources - - - - - - - - - - - com.fasterxml.jackson.core - jackson-annotations - - - - - diff --git a/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/swagger-models-jakarta-2.2.21.pom.sha1 b/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/swagger-models-jakarta-2.2.21.pom.sha1 deleted file mode 100644 index 1ece186..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-models-jakarta/2.2.21/swagger-models-jakarta-2.2.21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5a866d0513167257801d94236ce652e088c97693 \ No newline at end of file diff --git a/.m2/repository/io/swagger/core/v3/swagger-project-jakarta/2.2.21/_remote.repositories b/.m2/repository/io/swagger/core/v3/swagger-project-jakarta/2.2.21/_remote.repositories deleted file mode 100644 index 426160f..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-project-jakarta/2.2.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. -#Thu Apr 02 20:38:14 UTC 2026 -swagger-project-jakarta-2.2.21.pom>central= diff --git a/.m2/repository/io/swagger/core/v3/swagger-project-jakarta/2.2.21/swagger-project-jakarta-2.2.21.pom b/.m2/repository/io/swagger/core/v3/swagger-project-jakarta/2.2.21/swagger-project-jakarta-2.2.21.pom deleted file mode 100644 index d8e9961..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-project-jakarta/2.2.21/swagger-project-jakarta-2.2.21.pom +++ /dev/null @@ -1,518 +0,0 @@ - - 4.0.0 - io.swagger.core.v3 - swagger-project-jakarta - pom - swagger-project-jakarta - swagger-project-jakarta - 2.2.21 - https://github.com/swagger-api/swagger-core - - scm:git:git@github.com:swagger-api/swagger-core.git - scm:git:git@github.com:swagger-api/swagger-core.git - https://github.com/swagger-api/swagger-core - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - 2.2.0 - - - - frantuma - Francesco Tumanischvili - frantuma@yahoo.com - - - - github - https://github.com/swagger-api/swagger-core/issues - - - - swagger-swaggersocket - https://groups.google.com/forum/#!forum/swagger-swaggersocket - - - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html - repo - - - - install - target - ${project.artifactId}-${project.version} - - - META-INF - ../../../.. - true - - NOTICE - LICENSE - - - - - - maven-compiler-plugin - 3.11.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - ${enforcer-plugin-version} - - - enforce-versions - - enforce - - - - - - true - No Snapshots Allowed! - - - (,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. - - - - - - - - maven-dependency-plugin - - - copy-deps - package - - copy-dependencies - - - ${project.build.directory}/lib - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://oss.sonatype.org/ - true - 30 - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - - --pinentry-mode - loopback - - - - - org.eclipse.jetty - jetty-maven-plugin - ${jetty-version} - - - org.glassfish.jersey.core - jersey-server - ${jersey2-version} - - - org.javassist - javassist - - - - - org.glassfish.jersey.containers - jersey-container-servlet - ${jersey2-version} - - - org.javassist - javassist - - - - - org.glassfish.jersey.media - jersey-media-multipart - ${jersey2-version} - - - org.javassist - javassist - - - - - org.glassfish.jersey.inject - jersey-hk2 - ${jersey2-version} - - - org.javassist - javassist - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - ${enforcer-plugin-version} - - - - - - - release - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - - --pinentry-mode - loopback - - - - - sign-artifacts - verify - - sign - - - - - - - - - - modules/swagger-annotations-jakarta - modules/swagger-models-jakarta - modules/swagger-core-jakarta - modules/swagger-integration-jakarta - modules/swagger-jaxrs2-jakarta - modules/swagger-jaxrs2-servlet-initializer-jakarta - modules/swagger-jaxrs2-servlet-initializer-v2-jakarta - modules/swagger-maven-plugin-jakarta - - - - target/site - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.2 - - true - 1.8 - UTF-8 - 1g - true - - https://docs.oracle.com/javase/8/docs/api - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.5 - - true - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.9 - - - - project-team - - - - - - - - - - org.apache.maven - maven-plugin-tools-api - 3.5.1 - - - org.slf4j - slf4j-api - ${slf4j-version} - compile - - - org.slf4j - slf4j-ext - ${slf4j-version} - compile - - - org.slf4j - slf4j-log4j12 - ${slf4j-version} - provided - - - org.apache.commons - commons-lang3 - ${commons-lang-version} - compile - - - org.apache.httpcomponents - httpclient - ${httpcomponents-version} - - - commons-io - commons-io - ${commons-io-version} - test - - - io.github.classgraph - classgraph - ${classgraph-version} - - - ch.qos.logback - logback-classic - ${logback-version} - provided - - - ch.qos.logback - logback-core - ${logback-version} - provided - - - joda-time - joda-time - ${joda-time-version} - - - org.joda - joda-convert - ${joda-version} - - - org.yaml - snakeyaml - ${snakeyaml-version} - - - - - - jakarta.servlet - jakarta.servlet-api - ${servlet-api-version} - provided - - - - jakarta.xml.bind - jakarta.xml.bind-api - ${jakarta.xml.bind-api-version} - - - jakarta.activation - jakarta.activation-api - ${jakarta.activation-api-version} - - - jakarta.ws.rs - jakarta.ws.rs-api - ${jakarta.ws-version} - - - jakarta.validation - jakarta.validation-api - ${jakarta.validation-version} - - - - - - com.fasterxml.jackson.core - jackson-annotations - ${jackson-version} - - - com.fasterxml.jackson.core - jackson-core - ${jackson-version} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson-databind-version} - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - ${jackson-version} - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - ${jackson-version} - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-json-provider - ${jackson-version} - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-base - ${jackson-version} - - - com.fasterxml.jackson.module - jackson-module-jakarta-xmlbind-annotations - ${jackson-version} - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - com.sun.activation - jakarta.activation - - - - - - com.google.guava - guava - ${guava-version} - test - - - - - 8 - 2.2.3 - 2.12.7 - 2.2 - 3.1.0 - 3.0.2 - 3.0.1 - 2.1.2 - 6.4.0 - 5.0.0 - 3.1.5 - 4.13.2 - 2.16.2 - 2.16.2 - 1.5.3 - 4.8.165 - 32.1.3-jre - 1.10.14 - 3.14.0 - 2.15.1 - 2.0.9 - 9.4.53.v20231009 - 7.9.0 - 2.28.2 - 4.5.1 - 4.5.14 - 1.16.0 - - 2.22.2 - 3.2.1 - 2.22.2 - - 0.90 - 0.90 - 0 - - UTF-8 - https://oss.sonatype.org/content/repositories/snapshots/ - 0.5.0 - 3.9.6 - 1.26.1 - - diff --git a/.m2/repository/io/swagger/core/v3/swagger-project-jakarta/2.2.21/swagger-project-jakarta-2.2.21.pom.sha1 b/.m2/repository/io/swagger/core/v3/swagger-project-jakarta/2.2.21/swagger-project-jakarta-2.2.21.pom.sha1 deleted file mode 100644 index a56918f..0000000 --- a/.m2/repository/io/swagger/core/v3/swagger-project-jakarta/2.2.21/swagger-project-jakarta-2.2.21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7eb40cb6c697e27032b18f36d31b98e782a3b467 \ No newline at end of file diff --git a/.m2/repository/io/zipkin/brave/brave-bom/5.16.0/_remote.repositories b/.m2/repository/io/zipkin/brave/brave-bom/5.16.0/_remote.repositories deleted file mode 100644 index 4460c6a..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:08 UTC 2026 -brave-bom-5.16.0.pom>central= diff --git a/.m2/repository/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom b/.m2/repository/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom deleted file mode 100644 index 07c55bc..0000000 --- a/.m2/repository/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/.m2/repository/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.sha1 b/.m2/repository/io/zipkin/brave/brave-bom/5.16.0/brave-bom-5.16.0.pom.sha1 deleted file mode 100644 index 2186a8a..0000000 --- a/.m2/repository/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/.m2/repository/io/zipkin/brave/brave-bom/6.1.0/_remote.repositories b/.m2/repository/io/zipkin/brave/brave-bom/6.1.0/_remote.repositories deleted file mode 100644 index 1efe2b5..0000000 --- a/.m2/repository/io/zipkin/brave/brave-bom/6.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. -#Thu Apr 02 20:37:34 UTC 2026 -brave-bom-6.1.0.pom>central= diff --git a/.m2/repository/io/zipkin/brave/brave-bom/6.1.0/brave-bom-6.1.0.pom b/.m2/repository/io/zipkin/brave/brave-bom/6.1.0/brave-bom-6.1.0.pom deleted file mode 100644 index b10a6bd..0000000 --- a/.m2/repository/io/zipkin/brave/brave-bom/6.1.0/brave-bom-6.1.0.pom +++ /dev/null @@ -1,308 +0,0 @@ - - - 4.0.0 - - io.zipkin.brave - brave-bom - 6.1.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}/.. - - - - 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 - 6.1.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 - - - - - - ${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-instrumentation-dubbo - ${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-http-tests-jakarta - ${project.version} - - - ${project.groupId} - brave-instrumentation-httpasyncclient - ${project.version} - - - ${project.groupId} - brave-instrumentation-httpclient - ${project.version} - - - ${project.groupId} - brave-instrumentation-httpclient5 - ${project.version} - - - ${project.groupId} - brave-instrumentation-jakarta-jms - ${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-rpc - ${project.version} - - - ${project.groupId} - brave-instrumentation-servlet - ${project.version} - - - ${project.groupId} - brave-instrumentation-servlet-jakarta - ${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} - - - ${project.groupId} - brave-instrumentation-rocketmq-client - ${project.version} - - - - - - - release - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - maven-deploy-plugin - 3.1.1 - - - - maven-gpg-plugin - 3.2.2 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - diff --git a/.m2/repository/io/zipkin/brave/brave-bom/6.1.0/brave-bom-6.1.0.pom.sha1 b/.m2/repository/io/zipkin/brave/brave-bom/6.1.0/brave-bom-6.1.0.pom.sha1 deleted file mode 100644 index 72c92d2..0000000 --- a/.m2/repository/io/zipkin/brave/brave-bom/6.1.0/brave-bom-6.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c985b4e1f4d0eaec21257d5a4149042bf338cc9f \ No newline at end of file diff --git a/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/_remote.repositories b/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/_remote.repositories deleted file mode 100644 index a519df0..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:10 UTC 2026 -zipkin-reporter-bom-2.16.3.pom>central= diff --git a/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom b/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom deleted file mode 100644 index 4a145d1..0000000 --- a/.m2/repository/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/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.lastUpdated b/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.lastUpdated deleted file mode 100644 index 99efe3d..0000000 --- a/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.lastUpdated +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:38:10 UTC 2026 -@default-spring-release-https\://repo.spring.io/release/.lastUpdated=1775162289844 -https\://repo.maven.apache.org/maven2/.lastUpdated=1775162290118 -https\://repo.spring.io/release/.error=Could not transfer artifact io.zipkin.reporter2\:zipkin-reporter-bom\:pom\:2.16.3 from/to spring-release (https\://repo.spring.io/release)\: status code\: 401, reason phrase\: (401) -https\://repo.spring.io/snapshot/.error= -https\://repo.spring.io/snapshot/.lastUpdated=1775162290025 diff --git a/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.sha1 b/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/2.16.3/zipkin-reporter-bom-2.16.3.pom.sha1 deleted file mode 100644 index 998c5d4..0000000 --- a/.m2/repository/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/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/3.5.1/_remote.repositories b/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/3.5.1/_remote.repositories deleted file mode 100644 index 78624b3..0000000 --- a/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/3.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. -#Thu Apr 02 20:37:34 UTC 2026 -zipkin-reporter-bom-3.5.1.pom>central= diff --git a/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/3.5.1/zipkin-reporter-bom-3.5.1.pom b/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/3.5.1/zipkin-reporter-bom-3.5.1.pom deleted file mode 100644 index a0bf499..0000000 --- a/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/3.5.1/zipkin-reporter-bom-3.5.1.pom +++ /dev/null @@ -1,184 +0,0 @@ - - - - 4.0.0 - - io.zipkin.reporter2 - zipkin-reporter-bom - Zipkin Reporter BOM - 3.5.1 - pom - Bill Of Materials POM for all Zipkin reporter artifacts - - - ${project.basedir}/.. - - - 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 - 3.5.1 - - - - - - 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 - - - - - - ${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-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} - - - ${project.groupId} - zipkin-sender-pulsar-client - ${project.version} - - - - - - - release - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.7.0 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - maven-deploy-plugin - 3.1.2 - - - - maven-gpg-plugin - 3.2.7 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - - - - diff --git a/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/3.5.1/zipkin-reporter-bom-3.5.1.pom.sha1 b/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/3.5.1/zipkin-reporter-bom-3.5.1.pom.sha1 deleted file mode 100644 index 7715f6a..0000000 --- a/.m2/repository/io/zipkin/reporter2/zipkin-reporter-bom/3.5.1/zipkin-reporter-bom-3.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0eaec298c92391790a16cc8e8cbdb4129fc4f8e3 \ No newline at end of file diff --git a/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/_remote.repositories b/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/_remote.repositories deleted file mode 100644 index 4591474..0000000 --- a/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -jakarta.activation-api-2.1.3.jar>central= -jakarta.activation-api-2.1.3.pom>central= diff --git a/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.jar b/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.jar deleted file mode 100644 index 0d015d5..0000000 Binary files a/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.jar and /dev/null differ diff --git a/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.jar.sha1 b/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.jar.sha1 deleted file mode 100644 index 0be0be0..0000000 --- a/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fa165bd70cda600368eee31555222776a46b881f \ No newline at end of file diff --git a/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom b/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom deleted file mode 100644 index 83fb9de..0000000 --- a/.m2/repository/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/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom.sha1 b/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom.sha1 deleted file mode 100644 index 7f0a616..0000000 --- a/.m2/repository/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/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/_remote.repositories b/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/_remote.repositories deleted file mode 100644 index fe94e23..0000000 --- a/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.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. -#Thu Apr 02 20:38:35 UTC 2026 -jakarta.annotation-api-2.1.1.jar>central= -jakarta.annotation-api-2.1.1.pom>central= diff --git a/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar b/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar deleted file mode 100644 index e13b7df..0000000 Binary files a/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar and /dev/null differ diff --git a/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar.sha1 b/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar.sha1 deleted file mode 100644 index 7dc958b..0000000 --- a/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -48b9bda22b091b1f48b13af03fe36db3be6e1ae3 \ No newline at end of file diff --git a/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom b/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom deleted file mode 100644 index 6487799..0000000 --- a/.m2/repository/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/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom.sha1 b/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom.sha1 deleted file mode 100644 index 9592905..0000000 --- a/.m2/repository/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/.m2/repository/jakarta/platform/jakarta.jakartaee-bom/9.1.0/_remote.repositories b/.m2/repository/jakarta/platform/jakarta.jakartaee-bom/9.1.0/_remote.repositories deleted file mode 100644 index 28447ee..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:44 UTC 2026 -jakarta.jakartaee-bom-9.1.0.pom>central= diff --git a/.m2/repository/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom b/.m2/repository/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom deleted file mode 100644 index 920a230..0000000 --- a/.m2/repository/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/.m2/repository/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom.sha1 b/.m2/repository/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom.sha1 deleted file mode 100644 index 4b11c27..0000000 --- a/.m2/repository/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/.m2/repository/jakarta/platform/jakartaee-api-parent/9.1.0/_remote.repositories b/.m2/repository/jakarta/platform/jakartaee-api-parent/9.1.0/_remote.repositories deleted file mode 100644 index b8f4add..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:44 UTC 2026 -jakartaee-api-parent-9.1.0.pom>central= diff --git a/.m2/repository/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom b/.m2/repository/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom deleted file mode 100644 index 4915538..0000000 --- a/.m2/repository/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/.m2/repository/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom.sha1 b/.m2/repository/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom.sha1 deleted file mode 100644 index cd2711c..0000000 --- a/.m2/repository/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/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.2/_remote.repositories b/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.2/_remote.repositories deleted file mode 100644 index b02133b..0000000 --- a/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.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. -#Thu Apr 02 20:38:35 UTC 2026 -jakarta.validation-api-3.0.2.jar>central= -jakarta.validation-api-3.0.2.pom>central= diff --git a/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.jar b/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.jar deleted file mode 100644 index 254c7a2..0000000 Binary files a/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.jar and /dev/null differ diff --git a/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.jar.sha1 b/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.jar.sha1 deleted file mode 100644 index 985f22d..0000000 --- a/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -92b6631659ba35ca09e44874d3eb936edfeee532 \ No newline at end of file diff --git a/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom b/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom deleted file mode 100644 index dca6f31..0000000 --- a/.m2/repository/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/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom.sha1 b/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom.sha1 deleted file mode 100644 index 92727c2..0000000 --- a/.m2/repository/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/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/_remote.repositories b/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/_remote.repositories deleted file mode 100644 index 136683f..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:58 UTC 2026 -jakarta.xml.bind-api-parent-4.0.2.pom>central= diff --git a/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom b/.m2/repository/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 0274e21..0000000 --- a/.m2/repository/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/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom.sha1 b/.m2/repository/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 53dc235..0000000 --- a/.m2/repository/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/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/_remote.repositories b/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/_remote.repositories deleted file mode 100644 index 9a625e9..0000000 --- a/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.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. -#Thu Apr 02 20:38:35 UTC 2026 -jakarta.xml.bind-api-4.0.2.jar>central= -jakarta.xml.bind-api-4.0.2.pom>central= diff --git a/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.jar b/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.jar deleted file mode 100644 index 4824282..0000000 Binary files a/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.jar and /dev/null differ diff --git a/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.jar.sha1 b/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.jar.sha1 deleted file mode 100644 index 13c3ca1..0000000 --- a/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -6cd5a999b834b63238005b7144136379dc36cad2 \ No newline at end of file diff --git a/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom b/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom deleted file mode 100644 index 22eb1ce..0000000 --- a/.m2/repository/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/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom.sha1 b/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom.sha1 deleted file mode 100644 index 3388046..0000000 --- a/.m2/repository/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/.m2/repository/javax/inject/javax.inject/1/_remote.repositories b/.m2/repository/javax/inject/javax.inject/1/_remote.repositories deleted file mode 100644 index 925a215..0000000 --- a/.m2/repository/javax/inject/javax.inject/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. -#Thu Apr 02 20:38:40 UTC 2026 -javax.inject-1.jar>central= -javax.inject-1.pom>central= diff --git a/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar b/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar deleted file mode 100644 index b2a9d0b..0000000 Binary files a/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar and /dev/null differ diff --git a/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar.sha1 b/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar.sha1 deleted file mode 100644 index c2fa85f..0000000 --- a/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -6975da39a7040257bd51d21a231b76c915872d38 \ No newline at end of file diff --git a/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.pom b/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.pom deleted file mode 100644 index 79c0cca..0000000 --- a/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.pom +++ /dev/null @@ -1,20 +0,0 @@ - - 4.0.0 - javax.inject - javax.inject - jar - javax.inject - 1 - The javax.inject API - http://code.google.com/p/atinject/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - http://code.google.com/p/atinject/source/checkout - - diff --git a/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.pom.sha1 b/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.pom.sha1 deleted file mode 100644 index e0d02e2..0000000 --- a/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b8e00a8a0deb0ebef447570e37ff8146ccd92cbe \ No newline at end of file diff --git a/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/_remote.repositories b/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/_remote.repositories deleted file mode 100644 index ca368ba..0000000 --- a/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/_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. -#Thu Apr 02 20:38:35 UTC 2026 -byte-buddy-agent-1.17.7.jar>central= -byte-buddy-agent-1.17.7.pom>central= diff --git a/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/byte-buddy-agent-1.17.7.jar b/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/byte-buddy-agent-1.17.7.jar deleted file mode 100644 index 27372bd..0000000 Binary files a/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/byte-buddy-agent-1.17.7.jar and /dev/null differ diff --git a/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/byte-buddy-agent-1.17.7.jar.sha1 b/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/byte-buddy-agent-1.17.7.jar.sha1 deleted file mode 100644 index e735eb5..0000000 --- a/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/byte-buddy-agent-1.17.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fbf3d6d649ed37fc9e9c59480a05be0a26e3c2da \ No newline at end of file diff --git a/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/byte-buddy-agent-1.17.7.pom b/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/byte-buddy-agent-1.17.7.pom deleted file mode 100644 index e50e47c..0000000 --- a/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/byte-buddy-agent-1.17.7.pom +++ /dev/null @@ -1,299 +0,0 @@ - - - 4.0.0 - - - net.bytebuddy - byte-buddy-parent - 1.17.7 - - - 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.17.6 - 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", - com.sun.jna;resolution:="optional", - com.sun.jna.platform;resolution:="optional", - com.sun.jna.platform.win32;resolution:="optional", - com.sun.jna.win32;resolution:="optional", - com.sun.jna.ptr;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, - com.github.spotbugs.annotations - - - - - - - - - - - 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 - - - - - - - - - - multi-release - - false - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.plugin.compiler} - - - multi-release - - compile - - prepare-package - - ${project.build.outputDirectory}/META-INF/versions/9 - - 1.8 - - - - - - org.apache.maven.plugins - maven-antrun-plugin - ${version.plugin.antrun} - - - modify-source-jar - package - - run - - - ${bytebuddy.original-sources} - - - - - - - - - - - - - - - - - - - - diff --git a/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/byte-buddy-agent-1.17.7.pom.sha1 b/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/byte-buddy-agent-1.17.7.pom.sha1 deleted file mode 100644 index d8a9b79..0000000 --- a/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.7/byte-buddy-agent-1.17.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -79df09a0bd6a375f581fecaddcc286405d7a949e \ No newline at end of file diff --git a/.m2/repository/net/bytebuddy/byte-buddy-parent/1.17.7/_remote.repositories b/.m2/repository/net/bytebuddy/byte-buddy-parent/1.17.7/_remote.repositories deleted file mode 100644 index c85a456..0000000 --- a/.m2/repository/net/bytebuddy/byte-buddy-parent/1.17.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. -#Thu Apr 02 20:37:58 UTC 2026 -byte-buddy-parent-1.17.7.pom>central= diff --git a/.m2/repository/net/bytebuddy/byte-buddy-parent/1.17.7/byte-buddy-parent-1.17.7.pom b/.m2/repository/net/bytebuddy/byte-buddy-parent/1.17.7/byte-buddy-parent-1.17.7.pom deleted file mode 100644 index 6e5b59c..0000000 --- a/.m2/repository/net/bytebuddy/byte-buddy-parent/1.17.7/byte-buddy-parent-1.17.7.pom +++ /dev/null @@ -1,1398 +0,0 @@ - - - - 4.0.0 - - net.bytebuddy - byte-buddy-parent - 1.17.7 - 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 - true - false - true - UTF-8 - 1755382877 - 1.5 - 1.6 - 1.5 - 1.6 - net.bytebuddy - 9.8 - 0.0.10 - 5.12.1 - 4.13.2 - 2.28.2 - 3.2.0 - 5.1.9 - 3.10.1 - 3.0.1 - 3.0.0 - 0.7.0 - 2.18.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.1.1 - 3.2.0 - 3.4.2 - 3.3.0 - 3.2.0 - 2.22.2 - 1.17.3 - 1.21 - 3.1.0 - 0.8.12 - 4.3.0 - 3.1.2 - 1.1 - 4.8.3.1 - 1.11 - 3.0 - 0.15.7 - 3.1.0 - 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.17.7 - - - - - - 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} - - extras,gpg,gradle-release,multi-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 - - false - - - - - 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.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} - ${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} - false - - ${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} - - - - - - - publish - - false - [1.8,) - - - - - org.sonatype.central - central-publishing-maven-plugin - ${version.plugin.publishing} - true - - true - central - - - - - - - - java6-compatibility - - false - 1.6 - - - 7.1 - 3.0.0 - 2.5.4 - 3.6.2 - 2.5.2 - 2.8.2 - 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 - 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 - - - - - java24-compatibility - - false - 24 - - - 8 - 8 - 8 - 8 - true - - - - - java25-compatibility - - false - 25 - - - 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 - - - - - java24 - - false - - - 24 - 24 - true - - - - - java25 - - false - - - 25 - 25 - true - - - - - surefire-enable-dynamic-attach - - false - [21,) - - - -XX:+EnableDynamicAgentLoading - - - - - extras - - false - - - true - false - - - - - - 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 - false - - - - - - - - - - - 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/.m2/repository/net/bytebuddy/byte-buddy-parent/1.17.7/byte-buddy-parent-1.17.7.pom.sha1 b/.m2/repository/net/bytebuddy/byte-buddy-parent/1.17.7/byte-buddy-parent-1.17.7.pom.sha1 deleted file mode 100644 index 8ff6c9e..0000000 --- a/.m2/repository/net/bytebuddy/byte-buddy-parent/1.17.7/byte-buddy-parent-1.17.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -26352e61d7fb1f32da62f88952d52cd5a3c43bab \ No newline at end of file diff --git a/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/_remote.repositories b/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/_remote.repositories deleted file mode 100644 index d07183b..0000000 --- a/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/_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. -#Thu Apr 02 20:38:35 UTC 2026 -byte-buddy-1.17.7.jar>central= -byte-buddy-1.17.7.pom>central= diff --git a/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.jar b/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.jar deleted file mode 100644 index 5ff7c3c..0000000 Binary files a/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.jar and /dev/null differ diff --git a/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.jar.sha1 b/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.jar.sha1 deleted file mode 100644 index ef8db84..0000000 --- a/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3856bfab61beb23e099a0d6629f2ba8de4b98ace \ No newline at end of file diff --git a/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.pom b/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.pom deleted file mode 100644 index e712dd3..0000000 --- a/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.pom +++ /dev/null @@ -1,452 +0,0 @@ - - - - byte-buddy-parent - net.bytebuddy - 1.17.7 - - 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, - com.github.spotbugs.annotations - net.bytebuddy.build.Plugin$Engine$Default - - - - - - org.ow2.asm - asm - ${version.asm} - - - - - - - - extras - - - - maven-source-plugin - ${version.plugin.source} - - true - - - - - - - shade-current - - - - maven-shade-plugin - ${version.plugin.shade} - - - package - - shade - - - false - true - ${bytebuddy.extras} - true - - - ${shade.asm.source} - ${shade.asm.target} - - - ${shade.asmjdkbridge.source} - ${shade.asmjdkbridge.target} - - - codes/rafael/asmjdkbridge - net/bytebuddy/jar/asmjdkbridge - true - - - - - net.bytebuddy:byte-buddy-dep:* - - META-INF/MANIFEST.MF - META-INF/maven/** - - - - org.ow2.asm:* - - META-INF/MANIFEST.MF - **/module-info.class - **/LICENSE - **/NOTICE - - - - codes.rafael.asmjdkbridge:* - - META-INF/versions/** - - - META-INF/MANIFEST.MF - **/module-info.class - - - - 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 - ${version.asm} - - - org.ow2.asm - asm-commons - ${version.asm} - - - - - - - - shade-legacy - - - - maven-shade-plugin - ${version.plugin.shade} - - - package - - shade - - - false - true - ${bytebuddy.extras} - true - - - ${shade.asm.source} - ${shade.asm.target} - - - ${shade.asmjdkbridge.source} - ${shade.asmjdkbridge.target} - - - - - net.bytebuddy:byte-buddy-dep:* - - META-INF/MANIFEST.MF - META-INF/maven/** - - - - org.ow2.asm:* - - META-INF/MANIFEST.MF - **/module-info.class - **/LICENSE - **/NOTICE - - - - codes.rafael.asmjdkbridge:* - - META-INF/versions/** - - - META-INF/MANIFEST.MF - **/module-info.class - - - - 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} - - - - - - - - multi-release - - - - codes.rafael.bytecodeupdate - bytecode-update-maven-plugin - ${version.plugin.bytecode-update} - - - multi-release - prepare-package - - update-bytecode - - - ${project.build.outputDirectory}/META-INF/versions/9 - ${shade.asm.source} - ${shade.asm.target} - - org\.ow2\.asm:.* - - - org/objectweb/asm/[a-zA-Z0-9$\.]+ - org/objectweb/asm/signature/[a-zA-Z0-9$\.]+ - org/objectweb/asm/commons/.*Remapper.* - org/objectweb/asm/commons/ModuleHashesAttribute[a-zA-Z0-9$\.]*.class - - - - - - - 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 - - - - net.bytebuddy.jar.asmjdkbridge - true - org.objectweb.asm - net.bytebuddy.jar.asm - 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.asm.target}, - ${shade.asm.target}.signature, - ${shade.asm.target}.commons, - ${shade.asmjdkbridge.target} - net.bytebuddy.utility.dispatcher - codes.rafael.asmjdkbridge - - diff --git a/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.pom.sha1 b/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.pom.sha1 deleted file mode 100644 index bea6410..0000000 --- a/.m2/repository/net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a7957ab05313a541406d4fca619cf48954a38212 \ No newline at end of file diff --git a/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/_remote.repositories b/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/_remote.repositories deleted file mode 100644 index f52bad7..0000000 --- a/.m2/repository/net/java/dev/jna/jna-platform/5.17.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. -#Thu Apr 02 20:43:13 UTC 2026 -jna-platform-5.17.0.jar>central= -jna-platform-5.17.0.pom>central= diff --git a/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar b/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar deleted file mode 100644 index deee8da..0000000 Binary files a/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar and /dev/null differ diff --git a/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar.sha1 b/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar.sha1 deleted file mode 100644 index ba9b640..0000000 --- a/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a4934c44d25a9d8c2ddf4203affd20330cb3426f \ No newline at end of file diff --git a/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.pom b/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.pom deleted file mode 100644 index 49eee29..0000000 --- a/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.pom +++ /dev/null @@ -1,71 +0,0 @@ - - 4.0.0 - - net.java.dev.jna - jna-platform - 5.17.0 - jar - - Java Native Access Platform - Java Native Access Platform - 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 - - - - - - - net.java.dev.jna - jna - 5.17.0 - - - - diff --git a/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.pom.sha1 b/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.pom.sha1 deleted file mode 100644 index 53de6ff..0000000 --- a/.m2/repository/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4224fa8c1eeccd1a50c215172538e352e21c320f \ No newline at end of file diff --git a/.m2/repository/net/java/dev/jna/jna/5.17.0/_remote.repositories b/.m2/repository/net/java/dev/jna/jna/5.17.0/_remote.repositories deleted file mode 100644 index dbf7fe7..0000000 --- a/.m2/repository/net/java/dev/jna/jna/5.17.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. -#Thu Apr 02 20:43:13 UTC 2026 -jna-5.17.0.jar>central= -jna-5.17.0.pom>central= diff --git a/.m2/repository/net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar b/.m2/repository/net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar deleted file mode 100644 index 7b920a8..0000000 Binary files a/.m2/repository/net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar and /dev/null differ diff --git a/.m2/repository/net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar.sha1 b/.m2/repository/net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar.sha1 deleted file mode 100644 index 5a47dd4..0000000 --- a/.m2/repository/net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -33d12735bef894440780fce64f9758d420c7bae2 \ No newline at end of file diff --git a/.m2/repository/net/java/dev/jna/jna/5.17.0/jna-5.17.0.pom b/.m2/repository/net/java/dev/jna/jna/5.17.0/jna-5.17.0.pom deleted file mode 100644 index 1320a8e..0000000 --- a/.m2/repository/net/java/dev/jna/jna/5.17.0/jna-5.17.0.pom +++ /dev/null @@ -1,63 +0,0 @@ - - 4.0.0 - - net.java.dev.jna - jna - 5.17.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/.m2/repository/net/java/dev/jna/jna/5.17.0/jna-5.17.0.pom.sha1 b/.m2/repository/net/java/dev/jna/jna/5.17.0/jna-5.17.0.pom.sha1 deleted file mode 100644 index 253b4bd..0000000 --- a/.m2/repository/net/java/dev/jna/jna/5.17.0/jna-5.17.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bf690bbd2f47bae28b4c348de5f7d4b8fc899be9 \ No newline at end of file diff --git a/.m2/repository/net/minidev/accessors-smart/2.5.2/_remote.repositories b/.m2/repository/net/minidev/accessors-smart/2.5.2/_remote.repositories deleted file mode 100644 index caf6a38..0000000 --- a/.m2/repository/net/minidev/accessors-smart/2.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -accessors-smart-2.5.2.jar>central= -accessors-smart-2.5.2.pom>central= diff --git a/.m2/repository/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.jar b/.m2/repository/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.jar deleted file mode 100644 index ba5e340..0000000 Binary files a/.m2/repository/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.jar and /dev/null differ diff --git a/.m2/repository/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.jar.sha1 b/.m2/repository/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.jar.sha1 deleted file mode 100644 index 6012c3d..0000000 --- a/.m2/repository/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ce16fd235cfee48e67eda33e684423bba09f7d07 \ No newline at end of file diff --git a/.m2/repository/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.pom b/.m2/repository/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.pom deleted file mode 100644 index 3bea80a..0000000 --- a/.m2/repository/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.pom +++ /dev/null @@ -1,261 +0,0 @@ - - - 4.0.0 - net.minidev - accessors-smart - 2.5.2 - 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+1 - - - hezhangjian - Zhangjian He - hezhangjian97gmail.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://s01.oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - release-sign-artifacts - - - - performRelease - true - - - - - - - 53BE126D - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.2.7 - - - sign-artifacts - verify - - sign - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.10.1 - - 8 - - - - attach-javadocs - - jar - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.1.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.1 - - - bind-sources - - jar-no-fork - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.13.0 - - 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.4.2 - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.10.1 - - - 8 - false - - - - - attach-javadocs - - jar - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - 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.11.2 - test - - - - org.ow2.asm - asm - 9.7.1 - - - diff --git a/.m2/repository/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.pom.sha1 b/.m2/repository/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.pom.sha1 deleted file mode 100644 index 8664248..0000000 --- a/.m2/repository/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3eff25b66457fc16714608e3aaad48ef6b5a0bab \ No newline at end of file diff --git a/.m2/repository/net/minidev/json-smart/2.5.2/_remote.repositories b/.m2/repository/net/minidev/json-smart/2.5.2/_remote.repositories deleted file mode 100644 index 5c2bf80..0000000 --- a/.m2/repository/net/minidev/json-smart/2.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -json-smart-2.5.2.jar>central= -json-smart-2.5.2.pom>central= diff --git a/.m2/repository/net/minidev/json-smart/2.5.2/json-smart-2.5.2.jar b/.m2/repository/net/minidev/json-smart/2.5.2/json-smart-2.5.2.jar deleted file mode 100644 index f33d922..0000000 Binary files a/.m2/repository/net/minidev/json-smart/2.5.2/json-smart-2.5.2.jar and /dev/null differ diff --git a/.m2/repository/net/minidev/json-smart/2.5.2/json-smart-2.5.2.jar.sha1 b/.m2/repository/net/minidev/json-smart/2.5.2/json-smart-2.5.2.jar.sha1 deleted file mode 100644 index 97fc7b9..0000000 --- a/.m2/repository/net/minidev/json-smart/2.5.2/json-smart-2.5.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -95d166b18f95907be0f46cdb9e1c0695eed03387 \ No newline at end of file diff --git a/.m2/repository/net/minidev/json-smart/2.5.2/json-smart-2.5.2.pom b/.m2/repository/net/minidev/json-smart/2.5.2/json-smart-2.5.2.pom deleted file mode 100644 index 4fae711..0000000 --- a/.m2/repository/net/minidev/json-smart/2.5.2/json-smart-2.5.2.pom +++ /dev/null @@ -1,279 +0,0 @@ - - - 4.0.0 - net.minidev - json-smart - 2.5.2 - 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+1 - - - erav - Eitan Raviv - adoneitan@gmail.com - GMT+2 - - - hezhangjian - Zhangjian He - hezhangjian97gmail.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.11.4 - - - 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://s01.oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - release-sign-artifacts - - - - performRelease - true - - - - - - - 53BE126D - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.2.7 - - - sign-artifacts - verify - - sign - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.11.2 - - 8 - - - - attach-javadocs - - jar - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.1.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.1 - - - bind-sources - - jar-no-fork - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.13.0 - - 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.4.2 - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.11.2 - - - 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.2 - - - diff --git a/.m2/repository/net/minidev/json-smart/2.5.2/json-smart-2.5.2.pom.sha1 b/.m2/repository/net/minidev/json-smart/2.5.2/json-smart-2.5.2.pom.sha1 deleted file mode 100644 index 3ba86a0..0000000 --- a/.m2/repository/net/minidev/json-smart/2.5.2/json-smart-2.5.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -92db2cd73d7e54ee15484bf39ff37a8006d296fb \ No newline at end of file diff --git a/.m2/repository/org/antlr/antlr4-master/4.7.2/_remote.repositories b/.m2/repository/org/antlr/antlr4-master/4.7.2/_remote.repositories deleted file mode 100644 index 08a374d..0000000 --- a/.m2/repository/org/antlr/antlr4-master/4.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. -#Thu Apr 02 20:43:10 UTC 2026 -antlr4-master-4.7.2.pom>central= diff --git a/.m2/repository/org/antlr/antlr4-master/4.7.2/antlr4-master-4.7.2.pom b/.m2/repository/org/antlr/antlr4-master/4.7.2/antlr4-master-4.7.2.pom deleted file mode 100644 index 530fadf..0000000 --- a/.m2/repository/org/antlr/antlr4-master/4.7.2/antlr4-master-4.7.2.pom +++ /dev/null @@ -1,167 +0,0 @@ - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 9 - - org.antlr - antlr4-master - 4.7.2 - 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://parrt.cs.usfca.edu - - 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 - http://www.linkedin.com/in/jimidle - - Developer - Maven Plugin - - - - Mike Lischke - - Developer - C++ Target - - - - Tom Everett - - Developer - - - - - - runtime/Java - tool - antlr4-maven-plugin - tool-testsuite - runtime-testsuite/annotations - runtime-testsuite/processors - runtime-testsuite - - - - UTF-8 - UTF-8 - true - 1.7 - 1.7 - - - - - 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 - - - - - maven-clean-plugin - 3.0.0 - - - - runtime/Swift/.build - - - runtime/Swift/Tests/Antlr4Tests/gen - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.6.0 - - ${maven.compiler.source} - ${maven.compiler.target} - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - - diff --git a/.m2/repository/org/antlr/antlr4-master/4.7.2/antlr4-master-4.7.2.pom.sha1 b/.m2/repository/org/antlr/antlr4-master/4.7.2/antlr4-master-4.7.2.pom.sha1 deleted file mode 100644 index 3c076d3..0000000 --- a/.m2/repository/org/antlr/antlr4-master/4.7.2/antlr4-master-4.7.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -be60f81cb61996f57281497067d890caf8eeece8 \ No newline at end of file diff --git a/.m2/repository/org/antlr/antlr4-runtime/4.7.2/_remote.repositories b/.m2/repository/org/antlr/antlr4-runtime/4.7.2/_remote.repositories deleted file mode 100644 index 8f45145..0000000 --- a/.m2/repository/org/antlr/antlr4-runtime/4.7.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. -#Thu Apr 02 20:43:13 UTC 2026 -antlr4-runtime-4.7.2.jar>central= -antlr4-runtime-4.7.2.pom>central= diff --git a/.m2/repository/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.jar b/.m2/repository/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.jar deleted file mode 100644 index 7a27e1b..0000000 Binary files a/.m2/repository/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.jar and /dev/null differ diff --git a/.m2/repository/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.jar.sha1 b/.m2/repository/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.jar.sha1 deleted file mode 100644 index 86bcfa1..0000000 --- a/.m2/repository/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e27d8ab4f984f9d186f54da984a6ab1cccac755e \ No newline at end of file diff --git a/.m2/repository/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.pom b/.m2/repository/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.pom deleted file mode 100644 index eb000a1..0000000 --- a/.m2/repository/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.pom +++ /dev/null @@ -1,123 +0,0 @@ - - - - 4.0.0 - - org.antlr - antlr4-master - 4.7.2 - ../../pom.xml - - antlr4-runtime - ANTLR 4 Runtime - The ANTLR 4 Runtime - - - - dot - - - - src - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - - jar - - - - - - us.bryon - graphviz-maven-plugin - 1.0 - - - deploy - - dot - - - ${dot.path} - ${project.build.directory}/apidocs - svg - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - 1.7 - false - - - - - javadoc - - - - - - org.antlr - antlr4-maven-plugin - 4.5.3 - - - antlr - - src - - - antlr4 - - - - - - org.apache.felix - maven-bundle-plugin - 2.5.4 - - - bundle-manifest - process-classes - - - org.antlr.antlr4.runtime - org.antlr.antlr4-runtime - - - - manifest - - - - - - maven-jar-plugin - 3.0.0 - - - - true - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - diff --git a/.m2/repository/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.pom.sha1 b/.m2/repository/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.pom.sha1 deleted file mode 100644 index d586b24..0000000 --- a/.m2/repository/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0ef31048e832523e34634045589c56c5e63d4866 \ No newline at end of file diff --git a/.m2/repository/org/apache/activemq/activemq-bom/6.1.7/_remote.repositories b/.m2/repository/org/apache/activemq/activemq-bom/6.1.7/_remote.repositories deleted file mode 100644 index 3cf607d..0000000 --- a/.m2/repository/org/apache/activemq/activemq-bom/6.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. -#Thu Apr 02 20:37:34 UTC 2026 -activemq-bom-6.1.7.pom>central= diff --git a/.m2/repository/org/apache/activemq/activemq-bom/6.1.7/activemq-bom-6.1.7.pom b/.m2/repository/org/apache/activemq/activemq-bom/6.1.7/activemq-bom-6.1.7.pom deleted file mode 100644 index f233b8c..0000000 --- a/.m2/repository/org/apache/activemq/activemq-bom/6.1.7/activemq-bom-6.1.7.pom +++ /dev/null @@ -1,208 +0,0 @@ - - - - 4.0.0 - org.apache.activemq - activemq-bom - 6.1.7 - pom - ActiveMQ :: BOM - ActiveMQ BOM (Bill of Materials) - http://activemq.apache.org/activemq-bom - 2005 - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - User List - users-subscribe@activemq.apache.org - users-unsubscribe@activemq.apache.org - users@activemq.apache.org - - - Development List - dev-subscribe@activemq.apache.org - dev-unsubscribe@activemq.apache.org - dev@activemq.apache.org - - - - scm:git:http://gitbox.apache.org/repos/asf/activemq.git/activemq-bom - scm:git:https://gitbox.apache.org/repos/asf/activemq.git/activemq-bom - activemq-6.1.7 - https://github.com/apache/activemq/activemq-bom - - - Jira - https://issues.apache.org/jira/browse/AMQ - - - - - org.apache.activemq - activemq-all - ${project.version} - - - org.apache.activemq - activemq-amqp - ${project.version} - - - org.apache.activemq - activemq-blueprint - ${project.version} - - - org.apache.activemq - activemq-broker - ${project.version} - - - org.apache.activemq - activemq-client - ${project.version} - - - org.apache.activemq - activemq-console - ${project.version} - - - org.apache.activemq - activemq-http - ${project.version} - - - org.apache.activemq - activemq-jaas - ${project.version} - - - org.apache.activemq - activemq-jdbc-store - ${project.version} - - - org.apache.activemq - activemq-kahadb-store - ${project.version} - - - org.apache.activemq - activemq-karaf - ${project.version} - - - org.apache.activemq - activemq-jms-pool - ${project.version} - - - org.apache.activemq - activemq-log4j-appender - ${project.version} - - - org.apache.activemq - activemq-mqtt - ${project.version} - - - org.apache.activemq - activemq-pool - ${project.version} - - - org.apache.activemq - activemq-openwire-generator - ${project.version} - - - org.apache.activemq - activemq-openwire-legacy - ${project.version} - - - org.apache.activemq - activemq-osgi - ${project.version} - - - org.apache.activemq - activemq-ra - ${project.version} - - - org.apache.activemq - activemq-rar - ${project.version} - - - org.apache.activemq - activemq-run - ${project.version} - - - org.apache.activemq - activemq-runtime-config - ${project.version} - - - org.apache.activemq - activemq-shiro - ${project.version} - - - org.apache.activemq - activemq-spring - ${project.version} - - - org.apache.activemq - activemq-stomp - ${project.version} - - - org.apache.activemq - activemq-web - ${project.version} - - - org.apache.activemq - activemq-web-console - ${project.version} - - - org.apache.activemq - activemq-web-demo - ${project.version} - - - - diff --git a/.m2/repository/org/apache/activemq/activemq-bom/6.1.7/activemq-bom-6.1.7.pom.sha1 b/.m2/repository/org/apache/activemq/activemq-bom/6.1.7/activemq-bom-6.1.7.pom.sha1 deleted file mode 100644 index 57bace1..0000000 --- a/.m2/repository/org/apache/activemq/activemq-bom/6.1.7/activemq-bom-6.1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9256ac92f613bc5f2a7face330fb718d28fd0a14 \ No newline at end of file diff --git a/.m2/repository/org/apache/activemq/artemis-bom/2.40.0/_remote.repositories b/.m2/repository/org/apache/activemq/artemis-bom/2.40.0/_remote.repositories deleted file mode 100644 index 50eeae9..0000000 --- a/.m2/repository/org/apache/activemq/artemis-bom/2.40.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. -#Thu Apr 02 20:37:34 UTC 2026 -artemis-bom-2.40.0.pom>central= diff --git a/.m2/repository/org/apache/activemq/artemis-bom/2.40.0/artemis-bom-2.40.0.pom b/.m2/repository/org/apache/activemq/artemis-bom/2.40.0/artemis-bom-2.40.0.pom deleted file mode 100644 index beef270..0000000 --- a/.m2/repository/org/apache/activemq/artemis-bom/2.40.0/artemis-bom-2.40.0.pom +++ /dev/null @@ -1,237 +0,0 @@ - - - - 4.0.0 - - org.apache.activemq - artemis-project - 2.40.0 - - - artemis-bom - pom - ActiveMQ Artemis Bill of Materials - - - ${project.basedir}/.. - - - - - - org.apache.activemq - artemis-amqp-protocol - ${project.version} - - - org.apache.activemq - artemis-boot - ${project.version} - - - org.apache.activemq - activemq-branding - war - ${project.version} - - - org.apache.activemq - artemis-cdi-client - ${project.version} - - - org.apache.activemq - artemis-cli - ${project.version} - - - org.apache.activemq - artemis-commons - ${project.version} - - - org.apache.activemq - artemis-console - war - ${project.version} - - - org.apache.activemq - artemis-core-client - ${project.version} - - - org.apache.activemq - artemis-core-client-all - ${project.version} - - - org.apache.activemq - artemis-core-client-osgi - ${project.version} - - - org.apache.activemq - artemis-dto - ${project.version} - - - org.apache.activemq - artemis-features - ${project.version} - features - xml - - - org.apache.activemq - artemis-hornetq-protocol - ${project.version} - - - org.apache.activemq - artemis-hqclient-protocol - ${project.version} - - - org.apache.activemq - artemis-jakarta-cdi-client - ${project.version} - - - org.apache.activemq - artemis-jakarta-client - ${project.version} - - - org.apache.activemq - artemis-jakarta-client-all - ${project.version} - - - org.apache.activemq - artemis-jakarta-openwire-protocol - ${project.version} - - - org.apache.activemq - artemis-jakarta-ra - ${project.version} - - - org.apache.activemq - artemis-jakarta-server - ${project.version} - - - org.apache.activemq - artemis-jakarta-service-extensions - ${project.version} - - - org.apache.activemq - artemis-jdbc-store - ${project.version} - - - org.apache.activemq - artemis-jms-client - ${project.version} - - - org.apache.activemq - artemis-jms-client-all - ${project.version} - - - org.apache.activemq - artemis-jms-client-osgi - ${project.version} - - - org.apache.activemq - artemis-jms-server - ${project.version} - - - org.apache.activemq - artemis-journal - ${project.version} - - - org.apache.activemq - artemis-mqtt-protocol - ${project.version} - - - org.apache.activemq - artemis-openwire-protocol - ${project.version} - - - org.apache.activemq - artemis-lockmanager-api - ${project.version} - - - org.apache.activemq - artemis-lockmanager-ri - ${project.version} - - - org.apache.activemq - artemis-ra - ${project.version} - - - org.apache.activemq - artemis-selector - ${project.version} - - - org.apache.activemq - artemis-server - ${project.version} - - - org.apache.activemq - artemis-server-osgi - ${project.version} - - - org.apache.activemq - artemis-service-extensions - ${project.version} - - - org.apache.activemq - artemis-stomp-protocol - ${project.version} - - - org.apache.activemq - artemis-web - ${project.version} - - - org.apache.activemq - artemis-website - ${project.version} - - - - diff --git a/.m2/repository/org/apache/activemq/artemis-bom/2.40.0/artemis-bom-2.40.0.pom.sha1 b/.m2/repository/org/apache/activemq/artemis-bom/2.40.0/artemis-bom-2.40.0.pom.sha1 deleted file mode 100644 index 820faa2..0000000 --- a/.m2/repository/org/apache/activemq/artemis-bom/2.40.0/artemis-bom-2.40.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -27b02bb582ca9c62689c550ad57910cd89100df4 \ No newline at end of file diff --git a/.m2/repository/org/apache/activemq/artemis-project/2.40.0/_remote.repositories b/.m2/repository/org/apache/activemq/artemis-project/2.40.0/_remote.repositories deleted file mode 100644 index c024674..0000000 --- a/.m2/repository/org/apache/activemq/artemis-project/2.40.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. -#Thu Apr 02 20:37:34 UTC 2026 -artemis-project-2.40.0.pom>central= diff --git a/.m2/repository/org/apache/activemq/artemis-project/2.40.0/artemis-project-2.40.0.pom b/.m2/repository/org/apache/activemq/artemis-project/2.40.0/artemis-project-2.40.0.pom deleted file mode 100644 index cd4cbe0..0000000 --- a/.m2/repository/org/apache/activemq/artemis-project/2.40.0/artemis-project-2.40.0.pom +++ /dev/null @@ -1,1181 +0,0 @@ - - - - 4.0.0 - org.apache.activemq - artemis-project - pom - 2.40.0 - - - org.apache - apache - 33 - - - - - artemis-bom - artemis-log-annotation-processor - artemis-pom - - - artemis-log-annotation-processor/tests - artemis-protocols - artemis-dto - artemis-cdi-client - artemis-jakarta-cdi-client - artemis-boot - artemis-cli - artemis-commons - artemis-selector - artemis-core-client - artemis-core-client-all - artemis-core-client-osgi - artemis-web - artemis-server - artemis-junit - artemis-jms-client - artemis-jms-client-all - artemis-jms-client-osgi - artemis-jakarta-client - artemis-jakarta-client-all - artemis-jms-server - artemis-jakarta-server - artemis-journal - artemis-ra - artemis-jakarta-ra - artemis-service-extensions - artemis-jakarta-service-extensions - artemis-jdbc-store - artemis-maven-plugin - artemis-server-osgi - artemis-console - artemis-distribution - artemis-unit-test-support - tests - artemis-features - artemis-lockmanager - artemis-image - artemis-image/examples - - - ActiveMQ Artemis - https://activemq.apache.org/components/artemis/ - - - 17 - 17 - 17 - - log4j2-tests-config.properties - --add-modules java.sql,jdk.unsupported - - 2.0.0 - 1.1.0 - 4.4.7 - 4.14.0 - 2.11.0 - 3.17.0 - 5.19.0 - 10.15.2.0 - 1.10.1 - 1.3.5 - 2.13.0 - 2.12.1 - 3.2.2 - 1.13.0 - 2.18.0 - 1.18.0 - 1.27.1 - 1.16 - 3.2.0 - 33.4.0-jre - 3.0.2 - 12.0.15 - 5.0.2 - 5.3.13.Final - 2.36.0 - 5.1.9 - 3.4.4 - 2.16.1 - 3.26.0 - 1.44.1 - 10.21.4 - 5.16.0 - 4.0.5 - 4.1.119.Final - 2.2.2 - 5.7.1 - 3.9.3 - 4.4.1 - 3.0.0 - - - 3.1.1 - 2.3.19 - - - 2.0.70.Final - 0.34.1 - 1.0.0-M23 - 2.0.17 - 2.24.3 - 1.13.0 - 1.2.21 - 1.11 - 1.22 - 4.7.6 - 3.29.0 - 1.2.2 - 1.3.5 - 3.2.6 - 2.0.2 - 1.0.5 - 2.0.3 - 1.1.6 - 1.1.4 - 1.7.4 - 1.1.3 - 1.3.3 - 2.1.6 - 2.3.3 - 2.4.8.Final - 2.1.0.Final - 2.0.27 - 1.8.0.Final - 2.9.0 - 0.8.12 - 0.8.12 - 1.14.4 - 3.0 - 4.13.2 - 5.12.0 - 2.3.9 - 1.2.5 - 42.7.5 - 1.20.6 - 4.29.0 - 3.5.0 - 4.4.16 - 4.5.14 - 1.2.6 - - - 1.0.15.Final - 3.1.0 - 2.0.1 - 2.1.0 - 2.0.1 - 3.0.0 - 4.1.0 - 4.0.1 - 6.0.0.Final - 4.0.0.Final - 4.0.3 - - - 3.0.0 - 4.0.26 - 3.4.1 - 5.15.0 - - 12.1.0 - 5.3.39 - - 2.18.3 - ${jackson.version} - - ${project.version} - 1 - 0 - 0 - 136,135,134,133,132,131,130,129,128,127,126,125,124,123,122 - ${project.version} - ${project.version}(${activemq.version.incrementingVersion}) - - true - true - true - true - true - true - true - true - true - true - true - true - true - true - - true - true - - UTF-8 - UTF-8 - - false - - false - true - - - - - ${activemq.basedir}/artemis-distribution/target/apache-artemis-${project.version}-bin/apache-artemis-${project.version} - - -Dbrokerconfig.maxDiskUsage=100 -Dorg.apache.activemq.artemis.core.remoting.impl.netty.TransportConstants.DEFAULT_QUIET_PERIOD=0 -Dorg.apache.activemq.artemis.core.remoting.impl.netty.TransportConstants.DEFAULT_SHUTDOWN_TIMEOUT=0 - -Djava.library.path="${activemq.basedir}/target/bin/lib/linux-x86_64:${activemq.basedir}/target/bin/lib/linux-i686" -Djgroups.bind_addr=localhost - -Djava.net.preferIPv4Stack=true -Dbasedir=${basedir} - -Djdk.attach.allowAttachSelf=true - -Dartemis.distribution.output="${artemis.distribution.output}" - -Dlog4j2.configurationFile="file:${activemq.basedir}/tests/config/${logging.config}" - - ${project.basedir} - false - - 2.0.0.AM25 - 2.0.0-M3 - 1.80 - - linux-x86_64 - osx-x86_64 - - false - - 2025-03-13T19:09:59Z - - - - scm:git:https://gitbox.apache.org/repos/asf/activemq-artemis.git - scm:git:https://gitbox.apache.org/repos/asf/activemq-artemis.git - https://github.com/apache/activemq-artemis - 2.40.0 - - - - JIRA - https://issues.apache.org/jira/browse/ARTEMIS - - - - The Apache ActiveMQ Team - dev@activemq.apache.org - http://activemq.apache.org - Apache Software Foundation - http://apache.org/ - - - - - User List - users-subscribe@activemq.apache.org - users-unsubscribe@activemq.apache.org - users@activemq.apache.org - - - Development List - dev-subscribe@activemq.apache.org - dev-unsubscribe@activemq.apache.org - dev@activemq.apache.org - - - - - - errorprone - - - errorprone - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - true - - -Xdiags:verbose - -XDcompilePolicy=simple - -Xplugin:ErrorProne -Xep:ThreadLocalUsage:ERROR -Xep:MissingOverride:ERROR -Xep:NonAtomicVolatileUpdate:ERROR -Xep:SynchronizeOnNonFinalField:ERROR -Xep:StaticQualifiedUsingExpression:ERROR -Xep:WaitNotInLoop:ERROR -Xep:BanJNDI:OFF -Xep:DepAnn -Xep:AnnotationPosition -Xep:UnescapedEntity -XepExcludedPaths:.*/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 - --should-stop=ifError=FLOW - - - - com.google.errorprone - error_prone_core - ${errorprone.version} - - - - - - - - - owasp - - - - org.owasp - dependency-check-maven - ${owasp.version} - - false - true - true - - - - - - aggregate - - - - - - - - - dev - - - - org.apache.rat - apache-rat-plugin - - - compile - - check - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - compile - - check - - - - - - - - - release - - artemis-website - - - true - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java-version - - enforce - - - - - [17, 18) - JDK 17 is required when building the release - - - - - - - - org.apache.rat - apache-rat-plugin - - - compile - - check - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - compile - - check - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - - - - apache-release - - true - - - - - - false - maven-assembly-plugin - - - source-release-assembly - - true - - - - - - - - - - tests - - false - false - false - false - false - false - false - true - true - true - true - false - false - - - - - fast-tests - - true - false - false - false - true - - false - false - - false - - - - - jacoco - - - org.jacoco - org.jacoco.core - - - - - - - - - -Dlog4j2.configurationFile="file:${activemq.basedir}/tests/config/${logging.config}" - -Djava.library.path="${activemq.basedir}/activemq-artemis-native/bin" -Djgroups.bind_addr=localhost -Dorg.apache.activemq.artemis.api.core.UDPBroadcastEndpointFactory.localBindAddress=localhost - -Djava.net.preferIPv4Stack=true -Dbasedir=${basedir} - @{jacoco.agent} -Djacoco.agent=@{jacoco.agent} - - - - - - org.jacoco - jacoco-maven-plugin - - - jacoco-prepare - validate - - prepare-agent - - - ${project.build.directory}/jacoco.exec - - jacoco.agent - - - - merge - none - - merge - - - - - - - ${activemq.basedir} - - **/*.exec - - - - - - - - - - - jacoco-generate-report - - - - org.apache.maven.plugins - maven-dependency-plugin - - - - - copy - - process-test-resources - false - - - - org.jacoco - org.jacoco.ant - ${version.org.jacoco.plugin} - - - true - ${project.build.directory}/jacoco-jars - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - post-integration-test - run - false - - - - - - - Creating JaCoCo ActiveMQ Artemis test coverage reports... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - org.jacoco - org.jacoco.ant - ${version.org.jacoco.plugin} - - - - - - - - - go-offline - - - - kr.motd.maven - os-maven-plugin - 1.7.1 - true - - - initialize - - detect - - - - - - - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.apache.rat - apache-rat-plugin - [0.12,) - - check - - - - - - - - - - org.apache.servicemix.tooling - - - depends-maven-plugin - - - [1.2,) - - - - generate-depends-file - - - - - - - - - - - - - org.codehaus.mojo - javacc-maven-plugin - 3.1.0 - - - javacc - - javacc - - - - - - org.apache.maven.plugins - maven-rar-plugin - 3.0.0 - - - net.sf.maven-sar - maven-sar-plugin - 1.0 - - - org.eclipse.jetty - jetty-maven-plugin - ${jetty.version} - - - org.wildfly.extras.batavia - transformer-tools-mvn - ${version.batavia} - - - org.apache.maven.plugins - maven-surefire-plugin - - 1 - true - alphabetical - ${activemq-surefire-argline} - - ${proton.trace.frames} - - - 3.0 - true - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-pmd-plugin - ${maven.pmd.plugin.version} - - true - 100 - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.6.0 - - - - org.apache.activemq - artemis-maven-plugin - ${project.version} - - - org.jacoco - jacoco-maven-plugin - ${version.org.jacoco.plugin} - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - com.github.sevntu-checkstyle - sevntu-checks - ${sevntu.checks.version} - - - com.puppycrawl.tools - checkstyle - ${checkstyle.version} - - - - ${activemq.basedir}/etc/checkstyle.xml - ${activemq.basedir}/etc/checkstyle-suppressions.xml - false - true - true - true - - - - org.apache.rat - apache-rat-plugin - - - **/src/main/webapp/hawtconfig.json - .repository/** - .travis.yml - .github/workflows/* - **/footer.html - **/*.txt - **/*.md - **/*.adoc - etc/ide-settings/** - **/*.json - docs/resources/font-awesome/**/* - docs/user-manual/_diagrams/*.svg - docs/user-manual/02-27-00-scripts-profiles.diff - docs/user-manual/02-27-00-scripts-profiles-windows.diff - **/target/ - **/META-INF/services/* - **/META-INF/MANIFEST.MF - **/META-INF/detectors - **/*.iml - **/*.jceks - **/*.jks - **/*.p12 - **/xml.xsd - **/*.pemcfg - **/org/apache/activemq/artemis/utils/json/** - **/enable-log-bundle-annotation-processor - **/.settings/** - **/.project - **/.classpath - **/.editorconfig - **/.checkstyle - **/.factorypath - **/org.apache.activemq.artemis.cfg - **/nb-configuration.xml - **/nbactions-tests.xml - **/.vscode/settings.json - - **/*.data - **/*.bin - **/src/test/resources/keystore - **/src/test/java/org/apache/activemq/security/*.ts - **/*.log - **/*.redo - - - **/node/** - **/node_modules/** - **/package.json - **/package-lock.json - - - **/overlays/** - - - **/CMakeFiles/ - **/Makefile - **/cmake_install.cmake - activemq-artemis-native/src/main/c/org_apache_activemq_artemis_jlibaio_LibaioContext.h - **/dependency-reduced-pom.xml - - - **/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker - - - examples/protocols/amqp/dotnet/**/obj/**/* - examples/protocols/amqp/dotnet/**/bin/**/* - examples/protocols/amqp/dotnet/**/readme.md - examples/protocols/amqp/**/readme.md - - - tests/db-tests/jdbc-drivers/**/* - - - - - org.codehaus.mojo - exec-maven-plugin - ${exec-maven-plugin.version} - - - org.apache.maven.plugins - maven-release-plugin - - true - @{project.version} - -DskipTests - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - - org.apache.apache.resources - apache-jar-resource-bundle - ${version.apache-resource-bundles} - - - true - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java-version - - enforce - - - - - [17,) - You must use JDK 17+ when building - - - - - - enforce-maven-version - - enforce - - - - - 3.5.0 - You must use Maven 3.5.0+ to build - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - all,-missing - - - - org.apache.maven.plugins - maven-help-plugin - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - ${user.dir}/etc/findbugs-exclude.xml - true - true - Max - false - - - - org.apache.felix - maven-bundle-plugin - ${maven.bundle.plugin.version} - true - - - - - org.apache.maven.plugins - maven-dependency-plugin - false - - - copy - generate-sources - - unpack - - - - - - - org.apache.activemq - activemq-artemis-native - ${activemq-artemis-native-version} - jar - false - ${project.build.directory}/bin - **/*.so - - - - - - com.google.cloud.tools - jib-maven-plugin - ${jib.maven.plugin.version} - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - ${activemq.basedir}/etc/checkstyle.xml - ${activemq.basedir}/etc/checkstyle-suppressions.xml - false - - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - ${user.dir}/etc/findbugs-exclude.xml - Max - false - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 128m - 1024m - true - false - - true - com.restfully.*:org.jboss.resteasy.examples.*:org.jboss.resteasy.tests.* - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.owasp - dependency-check-maven - ${owasp.version} - - - - aggregate - - - - - - - - - diff --git a/.m2/repository/org/apache/activemq/artemis-project/2.40.0/artemis-project-2.40.0.pom.sha1 b/.m2/repository/org/apache/activemq/artemis-project/2.40.0/artemis-project-2.40.0.pom.sha1 deleted file mode 100644 index 4c889d6..0000000 --- a/.m2/repository/org/apache/activemq/artemis-project/2.40.0/artemis-project-2.40.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6467d1df3aa2c7ab048e37fa0c8c232c6f1fd9f6 \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/13/_remote.repositories b/.m2/repository/org/apache/apache/13/_remote.repositories deleted file mode 100644 index 7454e7c..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:49 UTC 2026 -apache-13.pom>central= diff --git a/.m2/repository/org/apache/apache/13/apache-13.pom b/.m2/repository/org/apache/apache/13/apache-13.pom deleted file mode 100644 index 57cde9a..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/apache/13/apache-13.pom.sha1 b/.m2/repository/org/apache/apache/13/apache-13.pom.sha1 deleted file mode 100644 index e615620..0000000 --- a/.m2/repository/org/apache/apache/13/apache-13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -15aff1faaec4963617f07dbe8e603f0adabc3a12 \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/16/_remote.repositories b/.m2/repository/org/apache/apache/16/_remote.repositories deleted file mode 100644 index b36886b..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:01 UTC 2026 -apache-16.pom>central= diff --git a/.m2/repository/org/apache/apache/16/apache-16.pom b/.m2/repository/org/apache/apache/16/apache-16.pom deleted file mode 100644 index 4f5dba5..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/apache/16/apache-16.pom.sha1 b/.m2/repository/org/apache/apache/16/apache-16.pom.sha1 deleted file mode 100644 index 9bfc9d1..0000000 --- a/.m2/repository/org/apache/apache/16/apache-16.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8a90e31780e5cd0685ccaf25836c66e3b4e163b7 \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/21/_remote.repositories b/.m2/repository/org/apache/apache/21/_remote.repositories deleted file mode 100644 index 4f0710f..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:49 UTC 2026 -apache-21.pom>central= diff --git a/.m2/repository/org/apache/apache/21/apache-21.pom b/.m2/repository/org/apache/apache/21/apache-21.pom deleted file mode 100644 index e45e5df..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/apache/21/apache-21.pom.sha1 b/.m2/repository/org/apache/apache/21/apache-21.pom.sha1 deleted file mode 100644 index 794c301..0000000 --- a/.m2/repository/org/apache/apache/21/apache-21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -649b700a1b2b4a1d87e7ae8e3f47bfe101b2a4a5 \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/23/_remote.repositories b/.m2/repository/org/apache/apache/23/_remote.repositories deleted file mode 100644 index 0a7a282..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:06 UTC 2026 -apache-23.pom>central= diff --git a/.m2/repository/org/apache/apache/23/apache-23.pom b/.m2/repository/org/apache/apache/23/apache-23.pom deleted file mode 100644 index 447a0f3..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/apache/23/apache-23.pom.sha1 b/.m2/repository/org/apache/apache/23/apache-23.pom.sha1 deleted file mode 100644 index abc6492..0000000 --- a/.m2/repository/org/apache/apache/23/apache-23.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0404949e96725e63a10a6d8f9d9b521948d170d5 \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/26/_remote.repositories b/.m2/repository/org/apache/apache/26/_remote.repositories deleted file mode 100644 index 3ba1706..0000000 --- a/.m2/repository/org/apache/apache/26/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:38:36 UTC 2026 -apache-26.pom>central= diff --git a/.m2/repository/org/apache/apache/26/apache-26.pom b/.m2/repository/org/apache/apache/26/apache-26.pom deleted file mode 100644 index 2298419..0000000 --- a/.m2/repository/org/apache/apache/26/apache-26.pom +++ /dev/null @@ -1,536 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 26 - 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-26 - - - - - 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-04-09T17:39:22Z - - - - - - 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.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-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.2.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.3.0 - - - 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/.m2/repository/org/apache/apache/26/apache-26.pom.sha1 b/.m2/repository/org/apache/apache/26/apache-26.pom.sha1 deleted file mode 100644 index b56db14..0000000 --- a/.m2/repository/org/apache/apache/26/apache-26.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d05aaef85ff7d6ddf4e5c8770046c006cb66795a \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/27/_remote.repositories b/.m2/repository/org/apache/apache/27/_remote.repositories deleted file mode 100644 index d84ca06..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:43:09 UTC 2026 -apache-27.pom>central= diff --git a/.m2/repository/org/apache/apache/27/apache-27.pom b/.m2/repository/org/apache/apache/27/apache-27.pom deleted file mode 100644 index 5b957b3..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/apache/27/apache-27.pom.sha1 b/.m2/repository/org/apache/apache/27/apache-27.pom.sha1 deleted file mode 100644 index 4dff381..0000000 --- a/.m2/repository/org/apache/apache/27/apache-27.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ea179482b464bfc8cac939c6d6e632b6a8e3316b \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/29/_remote.repositories b/.m2/repository/org/apache/apache/29/_remote.repositories deleted file mode 100644 index 34b942b..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:37 UTC 2026 -apache-29.pom>central= diff --git a/.m2/repository/org/apache/apache/29/apache-29.pom b/.m2/repository/org/apache/apache/29/apache-29.pom deleted file mode 100644 index ae136be..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/apache/29/apache-29.pom.sha1 b/.m2/repository/org/apache/apache/29/apache-29.pom.sha1 deleted file mode 100644 index f733d3e..0000000 --- a/.m2/repository/org/apache/apache/29/apache-29.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -57991491045c9a37a3113f24bf29a41a4ceb1459 \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/3/_remote.repositories b/.m2/repository/org/apache/apache/3/_remote.repositories deleted file mode 100644 index 9aa74d2..0000000 --- a/.m2/repository/org/apache/apache/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. -#Thu Apr 02 20:38:07 UTC 2026 -apache-3.pom>central= diff --git a/.m2/repository/org/apache/apache/3/apache-3.pom b/.m2/repository/org/apache/apache/3/apache-3.pom deleted file mode 100644 index 4da5b02..0000000 --- a/.m2/repository/org/apache/apache/3/apache-3.pom +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 3 - 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 - - - - 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/ - - - - diff --git a/.m2/repository/org/apache/apache/3/apache-3.pom.sha1 b/.m2/repository/org/apache/apache/3/apache-3.pom.sha1 deleted file mode 100644 index ffb57bb..0000000 --- a/.m2/repository/org/apache/apache/3/apache-3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1bc0010136a890e2fd38d901a0b7ecdf0e3f9871 \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/30/_remote.repositories b/.m2/repository/org/apache/apache/30/_remote.repositories deleted file mode 100644 index 2d35ee3..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:02 UTC 2026 -apache-30.pom>central= diff --git a/.m2/repository/org/apache/apache/30/apache-30.pom b/.m2/repository/org/apache/apache/30/apache-30.pom deleted file mode 100644 index c57fb20..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/apache/30/apache-30.pom.sha1 b/.m2/repository/org/apache/apache/30/apache-30.pom.sha1 deleted file mode 100644 index a285e1d..0000000 --- a/.m2/repository/org/apache/apache/30/apache-30.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8ec9c23c01b89c7c704fea3fc4822c4de4c02430 \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/31/_remote.repositories b/.m2/repository/org/apache/apache/31/_remote.repositories deleted file mode 100644 index f8f40e9..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:43:04 UTC 2026 -apache-31.pom>central= diff --git a/.m2/repository/org/apache/apache/31/apache-31.pom b/.m2/repository/org/apache/apache/31/apache-31.pom deleted file mode 100644 index 8e9c6df..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/apache/31/apache-31.pom.sha1 b/.m2/repository/org/apache/apache/31/apache-31.pom.sha1 deleted file mode 100644 index 741d09f..0000000 --- a/.m2/repository/org/apache/apache/31/apache-31.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9009cbdad2b69835f2df9265794c8ab50cf4dce1 \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/32/_remote.repositories b/.m2/repository/org/apache/apache/32/_remote.repositories deleted file mode 100644 index e4562c4..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:42:16 UTC 2026 -apache-32.pom>central= diff --git a/.m2/repository/org/apache/apache/32/apache-32.pom b/.m2/repository/org/apache/apache/32/apache-32.pom deleted file mode 100644 index 3c20e15..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/apache/32/apache-32.pom.sha1 b/.m2/repository/org/apache/apache/32/apache-32.pom.sha1 deleted file mode 100644 index d444cb0..0000000 --- a/.m2/repository/org/apache/apache/32/apache-32.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2e08f841a6fbc946452701faaf5e39a17ac97ef3 \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/33/_remote.repositories b/.m2/repository/org/apache/apache/33/_remote.repositories deleted file mode 100644 index 2b9e3d9..0000000 --- a/.m2/repository/org/apache/apache/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. -#Thu Apr 02 20:37:34 UTC 2026 -apache-33.pom>central= diff --git a/.m2/repository/org/apache/apache/33/apache-33.pom b/.m2/repository/org/apache/apache/33/apache-33.pom deleted file mode 100644 index b03121d..0000000 --- a/.m2/repository/org/apache/apache/33/apache-33.pom +++ /dev/null @@ -1,582 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 33 - 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-33 - - - - - ${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.3.0 - posix - - 2024-07-04T18:52:46Z - - 0.16.1 - 1.5 - 1.11 - 3.1.0 - 3.7.1 - 3.4.0 - 3.4.0 - 3.13.0 - 3.7.1 - 3.1.2 - 3.3.0 - 3.5.0 - 1.12.0 - 3.2.4 - 3.4.1 - 3.1.2 - 3.7.0 - 3.4.2 - 3.7.0 - 3.13.1 - 3.6.1 - 3.1.0 - 3.2.0 - 3.3.1 - 2.1.0 - 3.3.0 - 3.6.0 - 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/.m2/repository/org/apache/apache/33/apache-33.pom.sha1 b/.m2/repository/org/apache/apache/33/apache-33.pom.sha1 deleted file mode 100644 index 89199f5..0000000 --- a/.m2/repository/org/apache/apache/33/apache-33.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f7b7b5a9e84395f17d7e6a136e5bfc4b9973566d \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/34/_remote.repositories b/.m2/repository/org/apache/apache/34/_remote.repositories deleted file mode 100644 index 6b943f1..0000000 --- a/.m2/repository/org/apache/apache/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. -#Thu Apr 02 20:37:41 UTC 2026 -apache-34.pom>central= diff --git a/.m2/repository/org/apache/apache/34/apache-34.pom b/.m2/repository/org/apache/apache/34/apache-34.pom deleted file mode 100644 index 54b13a5..0000000 --- a/.m2/repository/org/apache/apache/34/apache-34.pom +++ /dev/null @@ -1,580 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 34 - 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-34 - - - - - ${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 - apache-jar-resource-bundle - true - 3.6.3 - ${maven.compiler.target} - ${maven.compiler.target} - 8 - 3.5.2 - posix - - 2025-03-15T11:45:26Z - - 0.16.1 - 1.7 - 1.11 - 3.1.0 - 3.7.1 - 3.4.1 - 3.6.0 - 3.14.0 - 3.8.1 - 3.1.4 - 3.3.0 - 3.5.0 - 2.1.0 - 3.2.7 - 3.5.1 - 3.1.4 - 3.9.0 - 3.4.2 - 3.11.2 - 3.15.1 - 3.9.0 - 3.1.1 - 3.3.0 - 3.3.1 - 2.1.0 - 3.3.0 - 3.6.0 - 3.21.0 - 3.3.1 - ${surefire.version} - 3.4.0 - - - - - - - - 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} - - false - - org.eclipse.m2e:lifecycle-mapping - - - - - - org.apache.maven.plugins - maven-release-plugin - ${version.maven-release-plugin} - - true - 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:${resourceBundleArtifact}:${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 - - - - - - - - - - - - - - - - use-apache-snapshots - - - apache.snapshots - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - false - - - - - - diff --git a/.m2/repository/org/apache/apache/34/apache-34.pom.sha1 b/.m2/repository/org/apache/apache/34/apache-34.pom.sha1 deleted file mode 100644 index 6bc5315..0000000 --- a/.m2/repository/org/apache/apache/34/apache-34.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -af0993d3a3e77c5e48a05983bf54d9ed19315aa0 \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/4/_remote.repositories b/.m2/repository/org/apache/apache/4/_remote.repositories deleted file mode 100644 index b0eb452..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:37 UTC 2026 -apache-4.pom>central= diff --git a/.m2/repository/org/apache/apache/4/apache-4.pom b/.m2/repository/org/apache/apache/4/apache-4.pom deleted file mode 100644 index fde1015..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/apache/4/apache-4.pom.sha1 b/.m2/repository/org/apache/apache/4/apache-4.pom.sha1 deleted file mode 100644 index e2fe942..0000000 --- a/.m2/repository/org/apache/apache/4/apache-4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -602b647986c1d24301bc3d70e5923696bc7f1401 \ No newline at end of file diff --git a/.m2/repository/org/apache/apache/7/_remote.repositories b/.m2/repository/org/apache/apache/7/_remote.repositories deleted file mode 100644 index 364e739..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:06 UTC 2026 -apache-7.pom>central= diff --git a/.m2/repository/org/apache/apache/7/apache-7.pom b/.m2/repository/org/apache/apache/7/apache-7.pom deleted file mode 100644 index ac17a1e..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/apache/7/apache-7.pom.sha1 b/.m2/repository/org/apache/apache/7/apache-7.pom.sha1 deleted file mode 100644 index f1eb4c6..0000000 --- a/.m2/repository/org/apache/apache/7/apache-7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a5f679b14bb06a3cb3769eb04e228c8b9e12908f \ No newline at end of file diff --git a/.m2/repository/org/apache/cassandra/java-driver-bom/4.19.0/_remote.repositories b/.m2/repository/org/apache/cassandra/java-driver-bom/4.19.0/_remote.repositories deleted file mode 100644 index 8ce0664..0000000 --- a/.m2/repository/org/apache/cassandra/java-driver-bom/4.19.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. -#Thu Apr 02 20:37:34 UTC 2026 -java-driver-bom-4.19.0.pom>central= diff --git a/.m2/repository/org/apache/cassandra/java-driver-bom/4.19.0/java-driver-bom-4.19.0.pom b/.m2/repository/org/apache/cassandra/java-driver-bom/4.19.0/java-driver-bom-4.19.0.pom deleted file mode 100644 index 4ff657c..0000000 --- a/.m2/repository/org/apache/cassandra/java-driver-bom/4.19.0/java-driver-bom-4.19.0.pom +++ /dev/null @@ -1,135 +0,0 @@ - - - - 4.0.0 - org.apache.cassandra - java-driver-bom - 4.19.0 - pom - Apache Cassandra Java Driver - Bill Of Materials - 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://github.com/datastax/java-driver/java-driver-bom - 2017 - - The Apache Software Foundation - https://www.apache.org/ - - - - Apache 2 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - Apache License Version 2.0 - - - - - Various - DataStax - - - - - 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:git@github.com:datastax/java-driver.git/java-driver-bom - scm:git:git@github.com:datastax/java-driver.git/java-driver-bom - 4.19.0 - https://github.com/datastax/java-driver/java-driver-bom - - - - 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 - - - - - - org.apache.cassandra - java-driver-core - 4.19.0 - - - org.apache.cassandra - java-driver-core-shaded - 4.19.0 - - - org.apache.cassandra - java-driver-mapper-processor - 4.19.0 - - - org.apache.cassandra - java-driver-mapper-runtime - 4.19.0 - - - org.apache.cassandra - java-driver-query-builder - 4.19.0 - - - org.apache.cassandra - java-driver-guava-shaded - 4.19.0 - - - org.apache.cassandra - java-driver-test-infra - 4.19.0 - - - org.apache.cassandra - java-driver-metrics-micrometer - 4.19.0 - - - org.apache.cassandra - java-driver-metrics-microprofile - 4.19.0 - - - com.datastax.oss - native-protocol - 1.5.1 - - - - diff --git a/.m2/repository/org/apache/cassandra/java-driver-bom/4.19.0/java-driver-bom-4.19.0.pom.sha1 b/.m2/repository/org/apache/cassandra/java-driver-bom/4.19.0/java-driver-bom-4.19.0.pom.sha1 deleted file mode 100644 index 0775f14..0000000 --- a/.m2/repository/org/apache/cassandra/java-driver-bom/4.19.0/java-driver-bom-4.19.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -252c3b1f1e93cbe1dc56e09e458aa51c4fb8303e \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-collections4/4.4/_remote.repositories b/.m2/repository/org/apache/commons/commons-collections4/4.4/_remote.repositories deleted file mode 100644 index a1ce9d2..0000000 --- a/.m2/repository/org/apache/commons/commons-collections4/4.4/_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. -#Thu Apr 02 20:38:35 UTC 2026 -commons-collections4-4.4.jar>central= -commons-collections4-4.4.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar b/.m2/repository/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar deleted file mode 100644 index da06c3e..0000000 Binary files a/.m2/repository/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar and /dev/null differ diff --git a/.m2/repository/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar.sha1 b/.m2/repository/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar.sha1 deleted file mode 100644 index 6b4ed5a..0000000 --- a/.m2/repository/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -62ebe7544cb7164d87e0637a2a6a2bdc981395e8 \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.pom b/.m2/repository/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.pom deleted file mode 100644 index f0681c4..0000000 --- a/.m2/repository/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.pom +++ /dev/null @@ -1,763 +0,0 @@ - - - - - org.apache.commons - commons-parent - 48 - - 4.0.0 - commons-collections4 - 4.4 - Apache Commons Collections - - 2001 - The Apache Commons Collections package contains types that extend and augment the Java Collections Framework. - - https://commons.apache.org/proper/commons-collections/ - - - jira - http://issues.apache.org/jira/browse/COLLECTIONS - - - - scm:git:http://git-wip-us.apache.org/repos/asf/commons-collections.git - scm:git:https://git-wip-us.apache.org/repos/asf/commons-collections.git - https://git-wip-us.apache.org/repos/asf?p=commons-collections.git - - - - - Matt Benson - mbenson - - - James Carman - jcarman - - - Stephen Colebourne - scolebourne - - - Robert Burrell Donkin - rdonkin - - - Morgan Delagrange - morgand - - - Gary Gregory - ggregory - - - Matthew Hawthorne - matth - - - Dipanjan Laha - dlaha - - - Geir Magnusson - geirm - - - Luc Maisonobe - luc - - - Craig McClanahan - craigmcc - - - Thomas Neidhart - tn - - - Adrian Nistor - adriannistor - - - Arun M. Thomas - amamment - - - Rodney Waldhoff - rwaldhoff - - - Henri Yandell - bayard - - - Rob Tompkins - chtompki - - - - - - 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 - - - Vamsi Kavuri - - - - - - junit - junit - 4.12 - test - - - org.easymock - easymock - 4.0.2 - test - - - org.apache.commons - commons-lang3 - 3.9 - test - - - - - - apache.website - Apache Commons Site - ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid} - - - - - UTF-8 - UTF-8 - 1.8 - 1.8 - - - collections - org.apache.commons.collections4 - - - 4.4 - (Requires Java 8 or later) - - - 4.2 - (Requires Java 7 or later) - - commons-collections4-${commons.release.2.version} - - - 4.1 - (Requires Java 6 or later) - - commons-collections4-${commons.release.3.version} - - - 3.2.2 - (Requires Java 1.3 or later) - - commons-collections-${commons.release.3.version} - - COLLECTIONS - 12310465 - - RC1 - 3.0.0 - - collections - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-collections - site-content - - - 2.8 - 0.8.4 - - - 4.3 - true - Gary Gregory - 86fdc7e2a11262cb - - - - - - clean verify apache-rat:check clirr:check javadoc:javadoc - - - 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 - - - - org.apache.rat - apache-rat-plugin - - - site-content/**/* - src/test/resources/data/test/* - - - - - maven-checkstyle-plugin - ${checkstyle.version} - - ${basedir}/src/conf/checkstyle.xml - false - ${basedir}/src/conf/checkstyle-suppressions.xml - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - org.apache.commons.collections4 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 8 - - - - - - - - - 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 - ${commons.findbugs.version} - - Normal - Default - ${basedir}/src/conf/findbugs-exclude-filter.xml - - - - maven-pmd-plugin - 3.12.0 - - ${maven.compiler.target} - - - - - pmd - cpd - - - - - - - - - - setup-checkout - - - site-content - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - prepare-checkout - pre-site - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - java9 - - 9 - - - - 3.0.1 - - true - - - - - - diff --git a/.m2/repository/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.pom.sha1 b/.m2/repository/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.pom.sha1 deleted file mode 100644 index 9881f59..0000000 --- a/.m2/repository/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -05428d42492ca170947632194080eb9432fbdf6c \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-compress/1.24.0/_remote.repositories b/.m2/repository/org/apache/commons/commons-compress/1.24.0/_remote.repositories deleted file mode 100644 index 4732786..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:04 UTC 2026 -commons-compress-1.24.0.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom b/.m2/repository/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom deleted file mode 100644 index 376535a..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom.sha1 b/.m2/repository/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom.sha1 deleted file mode 100644 index dcb67ed..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-compress/1.25.0/_remote.repositories b/.m2/repository/org/apache/commons/commons-compress/1.25.0/_remote.repositories deleted file mode 100644 index dd98917..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.25.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. -#Thu Apr 02 20:38:35 UTC 2026 -commons-compress-1.25.0.jar>central= -commons-compress-1.25.0.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.jar b/.m2/repository/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.jar deleted file mode 100644 index ba92787..0000000 Binary files a/.m2/repository/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.jar and /dev/null differ diff --git a/.m2/repository/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.jar.sha1 b/.m2/repository/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.jar.sha1 deleted file mode 100644 index 3c32629..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -9d35aec423da6c8a7f93d7e9e1c6b1d9fe14bb5e \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.pom b/.m2/repository/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.pom deleted file mode 100644 index 8561f32..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.pom +++ /dev/null @@ -1,635 +0,0 @@ - - - - 4.0.0 - - org.apache.commons - commons-parent - 64 - - - commons-compress - 1.25.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.25.0 - 1.25.1 - 1.24.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, - * - - - - true - - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} - false - - 4.13.5 - 2.0.9 - 9.6 - - - - 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-10 - 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.15.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/.m2/repository/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.pom.sha1 b/.m2/repository/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.pom.sha1 deleted file mode 100644 index dc87298..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -334a8fd9c3120b359be7d70490cd6500bd35f7f8 \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-compress/1.26.1/_remote.repositories b/.m2/repository/org/apache/commons/commons-compress/1.26.1/_remote.repositories deleted file mode 100644 index 09eeb3d..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.26.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. -#Thu Apr 02 20:43:08 UTC 2026 -commons-compress-1.26.1.jar>central= -commons-compress-1.26.1.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar b/.m2/repository/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar deleted file mode 100644 index 9a99788..0000000 Binary files a/.m2/repository/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar and /dev/null differ diff --git a/.m2/repository/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar.sha1 b/.m2/repository/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar.sha1 deleted file mode 100644 index 912bda8..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -44331c1130c370e726a2e1a3e6fba6d2558ef04a \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom b/.m2/repository/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom deleted file mode 100644 index 109b9fa..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom +++ /dev/null @@ -1,642 +0,0 @@ - - - - 4.0.0 - - org.apache.commons - commons-parent - 66 - - - commons-compress - 1.26.1 - 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.1 - 1.26.2 - 1.26.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, - org.apache.commons.codec;resolution:=optional, - org.apache.commons.codec.digest;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-03-05T14:27:45Z - - 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 - - - - - 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/.m2/repository/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom.sha1 b/.m2/repository/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom.sha1 deleted file mode 100644 index 863607b..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1f7f7a9f3acd67344c3ae0e64d6fc66a61b9b1b4 \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-compress/1.26.2/_remote.repositories b/.m2/repository/org/apache/commons/commons-compress/1.26.2/_remote.repositories deleted file mode 100644 index 91c2a37..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.26.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. -#Thu Apr 02 20:43:11 UTC 2026 -commons-compress-1.26.2.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-compress/1.26.2/commons-compress-1.26.2.pom b/.m2/repository/org/apache/commons/commons-compress/1.26.2/commons-compress-1.26.2.pom deleted file mode 100644 index ce5bd12..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.26.2/commons-compress-1.26.2.pom +++ /dev/null @@ -1,651 +0,0 @@ - - - - 4.0.0 - - org.apache.commons - commons-parent - 69 - - - commons-compress - 1.26.2 - 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.2 - 1.26.3 - 1.26.1 - 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.io;resolution:=optional, - org.apache.commons.io.*;resolution:=optional, - org.apache.commons.lang3;resolution:=optional, - org.apache.commons.lang3.reflect;resolution:=optional, - org.apache.commons.codec;resolution:=optional, - org.apache.commons.codec.digest;resolution:=optional, - * - - - - true - - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} - false - - 4.13.5 - 2.0.13 - 9.7 - 2024-05-18T15:07:45Z - - 0.5.5 - - true - 0.96 - 0.84 - 0.87 - 0.75 - 0.86 - 0.72 - - - - 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.6-3 - true - - - org.brotli - dec - 0.1.2 - true - - - org.tukaani - xz - 1.9 - true - - - - commons-codec - commons-codec - 1.17.0 - - - - - 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.16.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/.m2/repository/org/apache/commons/commons-compress/1.26.2/commons-compress-1.26.2.pom.sha1 b/.m2/repository/org/apache/commons/commons-compress/1.26.2/commons-compress-1.26.2.pom.sha1 deleted file mode 100644 index 9977b7f..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.26.2/commons-compress-1.26.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0d9cae57ca05e437e0adb7f26f86160049c649c4 \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-compress/1.27.1/_remote.repositories b/.m2/repository/org/apache/commons/commons-compress/1.27.1/_remote.repositories deleted file mode 100644 index 09d9111..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.27.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. -#Thu Apr 02 20:43:13 UTC 2026 -commons-compress-1.27.1.jar>central= -commons-compress-1.27.1.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar b/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar deleted file mode 100644 index 1bea2d9..0000000 Binary files a/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar and /dev/null differ diff --git a/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar.sha1 b/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar.sha1 deleted file mode 100644 index a3e891d..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a19151084758e2fbb6b41eddaa88e7b8ff4e6599 \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.pom b/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.pom deleted file mode 100644 index 465f0c6..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.pom +++ /dev/null @@ -1,648 +0,0 @@ - - - - 4.0.0 - - org.apache.commons - commons-parent - 72 - - - commons-compress - 1.27.1 - 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.27.1 - 1.27.2 - 1.27.0 - RC1 - 4.11.0 - 7.2.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.io;resolution:=optional, - org.apache.commons.io.*;resolution:=optional, - org.apache.commons.lang3;resolution:=optional, - org.apache.commons.lang3.reflect;resolution:=optional, - org.apache.commons.codec;resolution:=optional, - org.apache.commons.codec.digest;resolution:=optional, - * - - - - true - - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} - false - - 4.13.5 - 2.0.16 - 9.7 - 2024-08-16T20:14:44Z - - 0.5.5 - - true - 0.96 - 0.84 - 0.87 - 0.75 - 0.86 - 0.72 - - - - 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 - 3.0 - test - - - com.github.luben - zstd-jni - 1.5.6-4 - true - - - org.brotli - dec - 0.1.2 - true - - - org.tukaani - xz - 1.10 - true - - - - commons-codec - commons-codec - 1.17.1 - - - - - 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 - - - commons-io - commons-io - 2.16.1 - - - org.apache.commons - commons-lang3 - 3.16.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.javadoc.javaee.link} - https://commons.apache.org/proper/commons-codec/apidocs - https://commons.apache.org/proper/commons-io/apidocs - https://commons.apache.org/proper/commons-lang/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} - src/conf/pmd-exclude.properties - - ${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} - src/conf/pmd-exclude.properties - - ${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 - - - ${argLine} --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/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.pom.sha1 b/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.pom.sha1 deleted file mode 100644 index b48e5e8..0000000 --- a/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -19c6bd08bc56d18cfcde1abebec11fbd3d9bcfba \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.12.0/_remote.repositories b/.m2/repository/org/apache/commons/commons-lang3/3.12.0/_remote.repositories deleted file mode 100644 index 622672a..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.12.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. -#Thu Apr 02 20:38:40 UTC 2026 -commons-lang3-3.12.0.jar>central= -commons-lang3-3.12.0.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar b/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar deleted file mode 100644 index 4d434a2..0000000 Binary files a/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar and /dev/null differ diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar.sha1 b/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar.sha1 deleted file mode 100644 index 9273d8c..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom b/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom deleted file mode 100644 index 167a85a..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom +++ /dev/null @@ -1,1008 +0,0 @@ - - - - - org.apache.commons - commons-parent - 52 - - 4.0.0 - commons-lang3 - 3.12.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 - commons-lang-3.12.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 - - - - Gary D. Gregory - ggregory - ggregory@apache.org - -5 - - 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 - - - - 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 - - - - - - - org.junit - junit-bom - 5.7.1 - pom - import - - - - - - - - - org.junit.jupiter - junit-jupiter - test - - - org.junit-pioneer - junit-pioneer - 1.3.0 - test - - - org.hamcrest - hamcrest - 2.2 - test - - - - org.easymock - easymock - 4.2 - test - - - - 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.12.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 - - 3.1.2 - 8.40 - src/site/resources/checkstyle - - 4.2.0 - 4.2.1 - false - true - - - 1.27 - benchmarks - - 0.8.6 - 3.0.0-M5 - 3.2.0 - 0.15.2 - - - 3.11 - RC1 - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/lang - Gary Gregory - 86fdc7e2a11262cb - - - - - clean package apache-rat:check checkstyle:check japicmp:cmp spotbugs:check javadoc:javadoc - - - - 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://docs.oracle.com/javase/8/docs/api/ - http://docs.oracle.com/javaee/6/api/ - - - - true - true - - - - - - create-javadoc-jar - - javadoc - jar - - package - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - 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.plugin.version} - - ${checkstyle.configdir}/checkstyle.xml - true - false - - - - com.puppycrawl.tools - checkstyle - ${checkstyle.version} - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.plugin.version} - - - com.github.spotbugs - spotbugs - ${spotbugs.impl.version} - - - - ${basedir}/spotbugs-exclude-filter.xml - - - - org.apache.felix - maven-bundle-plugin - - - biz.aQute.bnd - biz.aQute.bndlib - 5.3.0 - - - - - - - - - - maven-checkstyle-plugin - ${checkstyle.plugin.version} - - ${checkstyle.configdir}/checkstyle.xml - true - false - - - - - checkstyle - - - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs.plugin.version} - - ${basedir}/spotbugs-exclude-filter.xml - - - - maven-pmd-plugin - 3.14.0 - - ${maven.compiler.target} - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - - - 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 - - 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 - 1.6.0 - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom.sha1 b/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom.sha1 deleted file mode 100644 index 49b756f..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -302d01a9279f7a400b1e767be60f12c02a5cf513 \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.14.0/_remote.repositories b/.m2/repository/org/apache/commons/commons-lang3/3.14.0/_remote.repositories deleted file mode 100644 index 1a0fa9f..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.14.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. -#Thu Apr 02 20:43:08 UTC 2026 -commons-lang3-3.14.0.jar>central= -commons-lang3-3.14.0.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar b/.m2/repository/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar deleted file mode 100644 index da9302f..0000000 Binary files a/.m2/repository/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar and /dev/null differ diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar.sha1 b/.m2/repository/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar.sha1 deleted file mode 100644 index d783e07..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1ed471194b02f2c6cb734a0cd6f6f107c673afae \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.pom b/.m2/repository/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.pom deleted file mode 100644 index 94a77a2..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.pom +++ /dev/null @@ -1,1002 +0,0 @@ - - - - - org.apache.commons - commons-parent - 64 - - 4.0.0 - commons-lang3 - 3.14.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.2.0 - test - - - - - org.apache.commons - commons-text - 1.11.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.14.0 - 3.14.1 - (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.37 - benchmarks - - - 3.13.0 - RC1 - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/lang - - - - 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 - - false - - - - - - - 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.1 - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.pom.sha1 b/.m2/repository/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.pom.sha1 deleted file mode 100644 index c0c39b1..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -063304d0daef2181ff359107bc29fb865a04d3cf \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.16.0/_remote.repositories b/.m2/repository/org/apache/commons/commons-lang3/3.16.0/_remote.repositories deleted file mode 100644 index f823606..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.16.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. -#Thu Apr 02 20:43:13 UTC 2026 -commons-lang3-3.16.0.jar>central= -commons-lang3-3.16.0.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.16.0/commons-lang3-3.16.0.jar b/.m2/repository/org/apache/commons/commons-lang3/3.16.0/commons-lang3-3.16.0.jar deleted file mode 100644 index fca0ce0..0000000 Binary files a/.m2/repository/org/apache/commons/commons-lang3/3.16.0/commons-lang3-3.16.0.jar and /dev/null differ diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.16.0/commons-lang3-3.16.0.jar.sha1 b/.m2/repository/org/apache/commons/commons-lang3/3.16.0/commons-lang3-3.16.0.jar.sha1 deleted file mode 100644 index ef4f1c1..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.16.0/commons-lang3-3.16.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3eb54effe40946dfb06dc5cd6c7ce4116cd51ea4 \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.16.0/commons-lang3-3.16.0.pom b/.m2/repository/org/apache/commons/commons-lang3/3.16.0/commons-lang3-3.16.0.pom deleted file mode 100644 index 9e79b83..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.16.0/commons-lang3-3.16.0.pom +++ /dev/null @@ -1,1003 +0,0 @@ - - - - - org.apache.commons - commons-parent - 72 - - 4.0.0 - commons-lang3 - 3.16.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. - - The code is tested using the latest revision of the JDK for supported - LTS releases: 8, 11, 17 and 21 currently. - See https://github.com/apache/commons-lang/blob/master/.github/workflows/maven.yml - - Please ensure your build environment is up-to-date and kindly report any build issues. - - - 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.15.0 - - - - - - - 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.3.0 - test - - - - - org.apache.commons - commons-text - 1.12.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 - 2024-08-01T11:51:25Z - 1.8 - 1.8 - - lang - lang3 - org.apache.commons.lang3 - - 3.16.0 - 3.16.1 - (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 - - 1.37 - benchmarks - - - 3.15.0 - RC1 - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/lang - - true - 0.98 - 0.95 - 0.95 - 0.92 - 0.95 - 0.90 - - - - 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/pmd-exclude.properties - - src/conf/pmd-ruleset.xml - - - - - 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/javaee/6/api - - true - - - true - true - - - all - - - - create-javadoc-jar - - javadoc - jar - - package - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - plain - - - **/*Test.java - - false - - - - - - - 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/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.1.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 - - - - 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.3.0 - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - - - 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 - - - diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.16.0/commons-lang3-3.16.0.pom.sha1 b/.m2/repository/org/apache/commons/commons-lang3/3.16.0/commons-lang3-3.16.0.pom.sha1 deleted file mode 100644 index 4d000f0..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.16.0/commons-lang3-3.16.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -48213bd4b10e67ea9a51e5fd5383f3cb0d473271 \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.17.0/_remote.repositories b/.m2/repository/org/apache/commons/commons-lang3/3.17.0/_remote.repositories deleted file mode 100644 index 7e1d82f..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.17.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. -#Thu Apr 02 20:38:35 UTC 2026 -commons-lang3-3.17.0.jar>central= -commons-lang3-3.17.0.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar b/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar deleted file mode 100644 index f6486b4..0000000 Binary files a/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar and /dev/null differ diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar.sha1 b/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar.sha1 deleted file mode 100644 index 073922f..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b17d2136f0460dcc0d2016ceefca8723bdf4ee70 \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.pom b/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.pom deleted file mode 100644 index 946e181..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.pom +++ /dev/null @@ -1,1000 +0,0 @@ - - - - - org.apache.commons - commons-parent - 73 - - 4.0.0 - commons-lang3 - 3.17.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. - - The code is tested using the latest revision of the JDK for supported - LTS releases: 8, 11, 17 and 21 currently. - See https://github.com/apache/commons-lang/blob/master/.github/workflows/maven.yml - - Please ensure your build environment is up-to-date and kindly report any build issues. - - - 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.17.0 - - - - - - - org.junit.jupiter - junit-jupiter - test - - - org.junit-pioneer - junit-pioneer - 1.9.1 - test - - - org.hamcrest - hamcrest - 3.0 - test - - - org.easymock - easymock - 5.4.0 - test - - - - org.apache.commons - commons-text - 1.12.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 - 2024-08-24T18:40:18Z - 1.8 - 1.8 - - lang - lang3 - org.apache.commons.lang3 - - 3.17.0 - 3.17.1 - (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 - - 1.37 - benchmarks - - - 3.16.0 - RC1 - true - scm:svn:https://dist.apache.org/repos/dist/dev/commons/lang - - true - 0.98 - 0.95 - 0.95 - 0.92 - 0.95 - 0.90 - - - - 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/pmd-exclude.properties - - src/conf/pmd-ruleset.xml - - - - - 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/javaee/6/api - - true - - - true - true - - - all - - - - create-javadoc-jar - - javadoc - jar - - package - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - plain - - - **/*Test.java - - false - - - - - - - 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/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.1.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 - - - - 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.4.1 - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - - - 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 - - - diff --git a/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.pom.sha1 b/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.pom.sha1 deleted file mode 100644 index af65118..0000000 --- a/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -967463be2b7350cef4fe4c1dac443a4a333a3be1 \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-math3/3.6.1/_remote.repositories b/.m2/repository/org/apache/commons/commons-math3/3.6.1/_remote.repositories deleted file mode 100644 index 41bb9b4..0000000 --- a/.m2/repository/org/apache/commons/commons-math3/3.6.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. -#Thu Apr 02 20:38:35 UTC 2026 -commons-math3-3.6.1.jar>central= -commons-math3-3.6.1.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar b/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar deleted file mode 100644 index 0ff582c..0000000 Binary files a/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar and /dev/null differ diff --git a/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar.sha1 b/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar.sha1 deleted file mode 100644 index 72975be..0000000 --- a/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e4ba98f1d4b3c80ec46392f25e094a6a2e58fcbf \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.pom b/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.pom deleted file mode 100644 index 3a812ae..0000000 --- a/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.pom +++ /dev/null @@ -1,806 +0,0 @@ - - - - - org.apache.commons - commons-parent - 39 - - 4.0.0 - org.apache.commons - commons-math3 - 3.6.1 - Apache Commons Math - - 2003 - The Apache Commons Math project is a library of lightweight, self-contained mathematics and statistics components addressing the most common practical problems not immediately available in the Java programming language or commons-lang. - - http://commons.apache.org/proper/commons-math/ - - - jira - http://issues.apache.org/jira/browse/MATH - - - - scm:git:http://git-wip-us.apache.org/repos/asf/commons-math.git - scm:git:https://git-wip-us.apache.org/repos/asf/commons-math.git - https://git-wip-us.apache.org/repos/asf?p=commons-math.git - - - - - apache.website - Apache Commons Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-math/ - - - - - - Mikkel Meyer Andersen - mikl - mikl at apache dot org - - - Bill Barker - billbarker - billbarker at apache dot org - - - Sébastien Brisard - celestin - celestin at apache dot org - - - Albert Davidson Chou - achou - achou at apache dot org - - - Mark Diggory - mdiggory - mdiggory at apache dot org - - - Robert Burrell Donkin - rdonkin - rdonkin at apache dot org - - - Otmar Ertl - oertl - oertl at apache dot org - - - Luc Maisonobe - luc - luc at apache dot org - - - Tim O'Brien - tobrien - tobrien at apache dot org - - - J. Pietschmann - pietsch - j3322ptm at yahoo dot de - - - Dimitri Pourbaix - dimpbx - dimpbx at apache dot org - - - Gilles Sadowski - erans - erans at apache dot org - - - Greg Sterijevski - gregs - gregs at apache dot org - - - Brent Worden - brentworden - brentworden at apache dot org - - - Thomas Neidhart - tn - tn at apache dot org - - - Evan Ward - evanward - evanward at apache dot org - - - - - Eldar Agalarov - - - Tim Allison - - - C. Scott Ananian - - - Mark Anderson - - - Peter Andrews - - - Rémi Arntzen - - - Matt Adereth - - - Jared Becksfort - - - Michael Bjorkegren - - - Brian Bloniarz - - - John Bollinger - - - Cyril Briquet - - - Dave Brosius - - - Dan Checkoway - - - Anders Conbere - - - Charles Cooper - - - Paul Cowan - - - Benjamin Croizet - - - Larry Diamond - - - Aleksei Dievskii - - - Rodrigo di Lorenzo Lopes - - - Hasan Diwan - - - Ted Dunning - - - Ole Ersoy - - - Ajo Fod - - - John Gant - - - Ken Geis - - - Hank Grabowski - - - Bernhard Grünewaldt - - - Elliotte Rusty Harold - - - Dennis Hendriks - - - Reid Hochstedler - - - Matthias Hummel - - - Curtis Jensen - - - Bruce A Johnson - - - Ismael Juma - - - Eugene Kirpichov - - - Oleksandr Kornieiev - - - Piotr Kochanski - - - Sergei Lebedev - - - Bob MacCallum - - - Jake Mannix - - - Benjamin McCann - - - Patrick Meyer - - - J. Lewis Muir - - - Venkatesha Murthy - - - Christopher Nix - - - Fredrik Norin - - - Sean Owen - - - Sujit Pal - - - Todd C. Parnell - - - Andreas Rieger - - - Sébastien Riou - - - Bill Rossi - - - Matthew Rowles - - - Pavel Ryzhov - - - Joni Salonen - - - Michael Saunders - - - Thorsten Schaefer - - - Christopher Schuck - - - Christian Semrau - - - David Stefka - - - Mauro Talevi - - - Radoslav Tsvetkov - - - Kim van der Linde - - - Alexey Volkov - - - Andrew Waterman - - - Jörg Weimar - - - Christian Winter - - - Piotr Wydrych - - - Xiaogang Zhang - - - Chris Popp - - - - - - junit - junit - 4.11 - test - - - - - - math - - org.apache.commons.math3 - - 3.6.1 - (requires Java 1.5+) - RC1 - -bin - - 2.2 - - commons-math-${commons.release.2.version} - (requires Java 1.5+) - - - MATH - 12310485 - UTF-8 - 1.5 - 1.5 - 3.5 - 3.0.2 - 2.17 - 2.6.1 - - - 0.7.5.201505241946 - 0.96 - 0.8 - 0.8 - 0.8 - 0.8 - 0.85 - false - - math - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-math - site-content - - - true - 1.2.10 - ${git.revision}; ${maven.build.timestamp} - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Test.java - **/*TestBinary.java - **/*TestPermutations.java - - - **/*AbstractTest.java - - - - - maven-assembly-plugin - - - src/main/assembly/src.xml - src/main/assembly/bin.xml - - - gnu - - - - org.codehaus.mojo - clirr-maven-plugin - ${math.clirr.version} - - ${minSeverity} - ${basedir}/clirr-ignored.xml - - - - - - - - - - maven-pmd-plugin - ${math.pmd.version} - - ${maven.compiler.target} - false - - ${basedir}/pmd-ruleset.xml - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - - maven-antrun-plugin - - - package - - - - - - - - - - - - - - - - - - - - run - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.7 - - - attach-artifacts - package - - attach-artifact - - - - - ${project.build.directory}/${project.artifactId}-${project.version}-tools.jar - jar - tools - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - -header '<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>' - - - - - - - - - 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} - - 100 - - - - - changes-report - jira-report - - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - - src/test/maxima/special/RealFunctionValidation/MANIFEST.txt - - - src/test/resources/org/apache/commons/math3/random/testData.txt - src/test/resources/org/apache/commons/math3/random/emptyFile.txt - src/test/resources/org/apache/commons/math3/stat/data/PiDigits.txt - src/test/resources/org/apache/commons/math3/stat/data/NumAcc3.txt - src/test/resources/org/apache/commons/math3/stat/data/Lew.txt - src/test/resources/org/apache/commons/math3/stat/data/NumAcc2.txt - src/test/resources/org/apache/commons/math3/stat/data/NumAcc1.txt - src/test/resources/org/apache/commons/math3/stat/data/Lottery.txt - src/test/resources/org/apache/commons/math3/stat/data/NumAcc4.txt - src/test/resources/org/apache/commons/math3/stat/data/Michelso.txt - src/test/resources/org/apache/commons/math3/stat/data/Mavro.txt - src/test/resources/org/apache/commons/math3/geometry/euclidean/threed/issue-1211.bsp - src/test/resources/org/apache/commons/math3/geometry/euclidean/threed/pentomino-N-bad-orientation.ply - src/test/resources/org/apache/commons/math3/geometry/euclidean/threed/pentomino-N-hole.ply - src/test/resources/org/apache/commons/math3/geometry/euclidean/threed/pentomino-N-out-of-plane.ply - src/test/resources/org/apache/commons/math3/geometry/euclidean/threed/pentomino-N-too-close.ply - src/test/resources/org/apache/commons/math3/geometry/euclidean/threed/pentomino-N.ply - - - src/main/resources/assets/org/apache/commons/math3/random/new-joe-kuo-6.1000 - - - src/userguide/resources/references.txt - - - bin/** - .gitignore - .git/** - .checkstyle - .ekstazi/** - - - - - - org.codehaus.mojo - findbugs-maven-plugin - ${math.findbugs.version} - - Normal - Default - ${basedir}/findbugs-exclude-filter.xml - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${math.checkstyle.version} - - ${basedir}/checkstyle.xml - false - false - ${basedir}/license-header.txt - - - - - checkstyle - - - - - - org.codehaus.mojo - clirr-maven-plugin - ${math.clirr.version} - - ${minSeverity} - ${basedir}/clirr-ignored.xml - - - - maven-pmd-plugin - ${math.pmd.version} - - ${maven.compiler.target} - false - - ${basedir}/pmd-ruleset.xml - - - - - - pmd - - - - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - -header '<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>' - - - - - - - - jgit-buildnumber - - - .git - - - - - - ru.concerteza.buildnumber - maven-jgit-buildnumber-plugin - ${math.jgit.buildnumber.version} - - - generate-resources - - extract-buildnumber - - - - - - - - - - - setup-checkout - - - site-content - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - prepare-checkout - pre-site - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - - ekstazi - - - ekstazi - - - - - - org.ekstazi - ekstazi-maven-plugin - 4.4.0 - - true - - - - ekstazi - - select - restore - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - ${java.io.tmpdir}/${user.name}EkstaziExcludes - - - - - - - - - diff --git a/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.pom.sha1 b/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.pom.sha1 deleted file mode 100644 index 4386d56..0000000 --- a/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d0ee0ddf185d57393ae8fb5cc28bba6efff7389c \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-parent/34/_remote.repositories b/.m2/repository/org/apache/commons/commons-parent/34/_remote.repositories deleted file mode 100644 index 3b0d787..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:49 UTC 2026 -commons-parent-34.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-parent/34/commons-parent-34.pom b/.m2/repository/org/apache/commons/commons-parent/34/commons-parent-34.pom deleted file mode 100644 index cde9db0..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/34/commons-parent-34.pom.sha1 b/.m2/repository/org/apache/commons/commons-parent/34/commons-parent-34.pom.sha1 deleted file mode 100644 index 201a5e5..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/39/_remote.repositories b/.m2/repository/org/apache/commons/commons-parent/39/_remote.repositories deleted file mode 100644 index 7482a98..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:01 UTC 2026 -commons-parent-39.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-parent/39/commons-parent-39.pom b/.m2/repository/org/apache/commons/commons-parent/39/commons-parent-39.pom deleted file mode 100644 index 80252e9..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 b/.m2/repository/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 deleted file mode 100644 index cea0797..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/48/_remote.repositories b/.m2/repository/org/apache/commons/commons-parent/48/_remote.repositories deleted file mode 100644 index d01f1b9..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/48/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:38:01 UTC 2026 -commons-parent-48.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-parent/48/commons-parent-48.pom b/.m2/repository/org/apache/commons/commons-parent/48/commons-parent-48.pom deleted file mode 100644 index cfcde87..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/48/commons-parent-48.pom +++ /dev/null @@ -1,1823 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 21 - - org.apache.commons - commons-parent - pom - 48 - 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: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 - - - - - - - - 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/ - - - - - - - - - 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} - - - - ${project.groupId} - ${project.artifactId} - ${commons.bc.version} - jar - - - - - ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} - - - - true - ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} - - true - true - true - ${commons.japicmp.ignoreMissingClasses} - - ${japicmp.skip} - - - - 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.3 - - - - - - - - - - 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} - - - 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 - - false - - - - 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} - - - 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 - - - - - - - - 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 - 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.10 - 1.6 - 2.22.1 - 2.22.1 - 2.22.1 - 3.1.0 - 0.13 - 2.12.1 - 2.8 - 0.13.0 - 3.0.0 - 3.0.0 - 3.3.2 - - 3.1.1 - 3.1.1 - 3.7.1 - 0.8.3 - 2.7 - 4.3.0 - EpochMillis - 2.0 - 3.8.0 - 1.1 - 3.0.5 - 3.1.6 - 4.1.0 - 3.0.0 - 1.17 - - 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 - - true - - - scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} - - - ${user.name} - DEADBEEF - - https://analysis.apache.org/ - - - - diff --git a/.m2/repository/org/apache/commons/commons-parent/48/commons-parent-48.pom.sha1 b/.m2/repository/org/apache/commons/commons-parent/48/commons-parent-48.pom.sha1 deleted file mode 100644 index 9359a61..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/48/commons-parent-48.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1cdeb626cf4f0cec0f171ec838a69922efc6ef95 \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-parent/52/_remote.repositories b/.m2/repository/org/apache/commons/commons-parent/52/_remote.repositories deleted file mode 100644 index 900ced2..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:06 UTC 2026 -commons-parent-52.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-parent/52/commons-parent-52.pom b/.m2/repository/org/apache/commons/commons-parent/52/commons-parent-52.pom deleted file mode 100644 index 6571e70..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/52/commons-parent-52.pom.sha1 b/.m2/repository/org/apache/commons/commons-parent/52/commons-parent-52.pom.sha1 deleted file mode 100644 index 9d7f8af..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/61/_remote.repositories b/.m2/repository/org/apache/commons/commons-parent/61/_remote.repositories deleted file mode 100644 index c4492e2..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:04 UTC 2026 -commons-parent-61.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-parent/61/commons-parent-61.pom b/.m2/repository/org/apache/commons/commons-parent/61/commons-parent-61.pom deleted file mode 100644 index d2a3da9..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/61/commons-parent-61.pom.sha1 b/.m2/repository/org/apache/commons/commons-parent/61/commons-parent-61.pom.sha1 deleted file mode 100644 index 7910ac1..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/64/_remote.repositories b/.m2/repository/org/apache/commons/commons-parent/64/_remote.repositories deleted file mode 100644 index 41e01b5..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:02 UTC 2026 -commons-parent-64.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-parent/64/commons-parent-64.pom b/.m2/repository/org/apache/commons/commons-parent/64/commons-parent-64.pom deleted file mode 100644 index e455c1f..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/64/commons-parent-64.pom.sha1 b/.m2/repository/org/apache/commons/commons-parent/64/commons-parent-64.pom.sha1 deleted file mode 100644 index 1a8f795..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/66/_remote.repositories b/.m2/repository/org/apache/commons/commons-parent/66/_remote.repositories deleted file mode 100644 index 8db6458..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:43:05 UTC 2026 -commons-parent-66.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-parent/66/commons-parent-66.pom b/.m2/repository/org/apache/commons/commons-parent/66/commons-parent-66.pom deleted file mode 100644 index 0d4d5cb..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/66/commons-parent-66.pom.sha1 b/.m2/repository/org/apache/commons/commons-parent/66/commons-parent-66.pom.sha1 deleted file mode 100644 index 5d6e330..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/69/_remote.repositories b/.m2/repository/org/apache/commons/commons-parent/69/_remote.repositories deleted file mode 100644 index 91a638b..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:43:04 UTC 2026 -commons-parent-69.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-parent/69/commons-parent-69.pom b/.m2/repository/org/apache/commons/commons-parent/69/commons-parent-69.pom deleted file mode 100644 index 28ce320..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/69/commons-parent-69.pom.sha1 b/.m2/repository/org/apache/commons/commons-parent/69/commons-parent-69.pom.sha1 deleted file mode 100644 index f50667d..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/commons/commons-parent/71/_remote.repositories b/.m2/repository/org/apache/commons/commons-parent/71/_remote.repositories deleted file mode 100644 index 0d269ba..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/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. -#Thu Apr 02 20:43:09 UTC 2026 -commons-parent-71.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-parent/71/commons-parent-71.pom b/.m2/repository/org/apache/commons/commons-parent/71/commons-parent-71.pom deleted file mode 100644 index 3faa955..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/71/commons-parent-71.pom +++ /dev/null @@ -1,1911 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 32 - - org.apache.commons - commons-parent - 71 - 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-06-07T12:50:23Z - 71 - 72 - RC1 - COMMONSSITE - - - 70 - true - - - - - - 1.3 - 1.3 - - - 8 - - - false - - - - - - 3.2.1 - - - 1.23 - - 1.0 - 3.7.1 - 3.6.0 - 1.14.0 - 2.12.1 - 3.4.0 - - 9.3 - 2.7 - 3.13.0 - 2.8.0 - 0.7.3 - 3.2.5 - 5.1.9 - 0.8.12 - 0.21.2 - 3.4.1 - 3.7.0 - 3.4.0 - 3.22.0 - 7.2.0 - 3.5.0 - 0.16.1 - 1.8.2 - 1.1 - 3.2.0 - 1.2.1.Final - true - - 6.4.1 - 5.11.0-M2 - 1.37 - - - 3.12.1 - 4.8.5.0 - 4.8.5 - 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 - - - false - 1.00 - 1.00 - 1.00 - 1.00 - 1.00 - 1.00 - - - 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/en/java/javase/21/docs/api/ - - 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} - - ${commons.javadoc.options} - - - 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.1 - - - 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.9.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.3.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 - - 11 - - - --frames - - - - - java-11-up - - [11,) - - - 10.17.0 - - - - - java-17-up - - [17,) - - - - - - - - benchmark - - true - org.apache - - - - - org.codehaus.mojo - exec-maven-plugin - 3.3.0 - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - diff --git a/.m2/repository/org/apache/commons/commons-parent/71/commons-parent-71.pom.sha1 b/.m2/repository/org/apache/commons/commons-parent/71/commons-parent-71.pom.sha1 deleted file mode 100644 index 14b934a..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/71/commons-parent-71.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -91d35791f5037779fb320d054ed09cb14925dc32 \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-parent/72/_remote.repositories b/.m2/repository/org/apache/commons/commons-parent/72/_remote.repositories deleted file mode 100644 index 1420d63..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/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. -#Thu Apr 02 20:43:09 UTC 2026 -commons-parent-72.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-parent/72/commons-parent-72.pom b/.m2/repository/org/apache/commons/commons-parent/72/commons-parent-72.pom deleted file mode 100644 index 33bb604..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/72/commons-parent-72.pom +++ /dev/null @@ -1,1916 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 33 - - org.apache.commons - commons-parent - 72 - 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-07-21T18:21:28Z - 72 - 73 - RC1 - COMMONSSITE - - - 71 - true - - - - - - 1.3 - 1.3 - - - 8 - - - false - - - - - - 3.2.1 - - - 1.24 - - 1.0 - 3.7.1 - 3.6.0 - 1.14.0 - 2.12.1 - 3.4.0 - - 9.3 - 2.7 - 3.13.0 - 2.8.0 - 0.7.3 - 3.3.1 - 5.1.9 - 0.8.12 - 0.21.2 - 3.4.2 - 3.8.0 - 3.4.0 - 3.24.0 - 7.3.0 - 3.6.2 - 0.16.1 - 1.8.2 - 1.1 - 3.2.0 - 1.2.2.Final - true - - 6.4.1 - 5.11.0-M2 - 1.37 - - - 3.12.1 - 4.8.6.2 - 4.8.6 - 3.3.1 - 3.3.1 - 3.5.3 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - -bin - - - false - 1.00 - 1.00 - 1.00 - 1.00 - 1.00 - 1.00 - - - 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/en/java/javase/21/docs/api/ - - 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} - - ${commons.javadoc.options} - - - 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.1 - - - 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.17.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.9.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.3.0 - - - org.codehaus.mojo - taglist-maven-plugin - 3.1.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 - - 11 - - - --frames - - - - - java-11-up - - [11,) - - - 10.17.0 - - - - - java-17-up - - [17,) - - - - - - - - benchmark - - true - org.apache - - - - - org.codehaus.mojo - exec-maven-plugin - 3.3.0 - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - diff --git a/.m2/repository/org/apache/commons/commons-parent/72/commons-parent-72.pom.sha1 b/.m2/repository/org/apache/commons/commons-parent/72/commons-parent-72.pom.sha1 deleted file mode 100644 index 2a59fa3..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/72/commons-parent-72.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cdfbaff82e756be4cb74d3f09b8fbf8f6b06c79d \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-parent/73/_remote.repositories b/.m2/repository/org/apache/commons/commons-parent/73/_remote.repositories deleted file mode 100644 index e02e887..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/73/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:38:14 UTC 2026 -commons-parent-73.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-parent/73/commons-parent-73.pom b/.m2/repository/org/apache/commons/commons-parent/73/commons-parent-73.pom deleted file mode 100644 index 0def421..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/73/commons-parent-73.pom +++ /dev/null @@ -1,1906 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 33 - - org.apache.commons - commons-parent - 73 - 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-08-15T01:23:55Z - 73 - 74 - RC1 - COMMONSSITE - - - 72 - true - - - - - - 1.3 - 1.3 - - - 8 - - - false - - - - - - 3.2.1 - - - 1.24 - - 1.0 - 3.7.1 - 3.6.0 - 1.14.0 - 2.12.1 - 3.4.0 - - 9.3 - 2.7 - 3.13.0 - 2.8.1 - 0.7.3 - 3.3.1 - 5.1.9 - 0.8.12 - 0.22.0 - 3.4.2 - 3.8.0 - 3.4.0 - 3.24.0 - 7.4.0 - 3.6.2 - 0.16.1 - 1.8.2 - 1.1 - 3.2.0 - 1.2.2.Final - true - - 6.4.1 - 5.11.0 - 1.37 - - - 3.12.1 - 4.8.6.2 - 4.8.6 - 3.3.1 - 3.3.1 - 3.5.3 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - -bin - - - false - 1.00 - 1.00 - 1.00 - 1.00 - 1.00 - 1.00 - - - 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/en/java/javase/21/docs/api/ - - 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} - - ${commons.javadoc.options} - - - 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.1 - - - 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.17.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.10.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.4.1 - - - org.codehaus.mojo - taglist-maven-plugin - 3.1.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.17.0 - - - - - java-17-up - - [17,) - - - - - - - - benchmark - - true - org.apache - - - - - org.codehaus.mojo - exec-maven-plugin - 3.4.1 - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - diff --git a/.m2/repository/org/apache/commons/commons-parent/73/commons-parent-73.pom.sha1 b/.m2/repository/org/apache/commons/commons-parent/73/commons-parent-73.pom.sha1 deleted file mode 100644 index 9b72da4..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/73/commons-parent-73.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -18d2c65d184f8e59bf343ffe79676cbacf270374 \ No newline at end of file diff --git a/.m2/repository/org/apache/commons/commons-parent/79/_remote.repositories b/.m2/repository/org/apache/commons/commons-parent/79/_remote.repositories deleted file mode 100644 index af681eb..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/79/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:37:49 UTC 2026 -commons-parent-79.pom>central= diff --git a/.m2/repository/org/apache/commons/commons-parent/79/commons-parent-79.pom b/.m2/repository/org/apache/commons/commons-parent/79/commons-parent-79.pom deleted file mode 100644 index 212981f..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/79/commons-parent-79.pom +++ /dev/null @@ -1,1824 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 33 - - org.apache.commons - commons-parent - 79 - 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-12-29T20:07:42Z - 79 - 80 - RC2 - COMMONSSITE - - - 79 - true - - - - - 1.3 - 1.3 - - 8 - - false - - - - - 3.2.1 - - 1.24 - - 1.0 - 3.7.1 - 3.6.0 - 1.14.1 - 3.0.0-M2 - 3.6.0 - - 9.3 - 3.13.0 - 2.9.1 - 0.7.4 - 3.5.2 - 5.1.9 - 0.8.12 - 0.23.0 - 3.4.2 - 3.11.2 - 3.6.0 - 3.26.0 - 7.9.0 - 3.8.0 - 0.16.1 - 1.8.3 - 1.1 - 3.2.1 - 1.2.2.Final - true - - 6.4.1 - 5.11.4 - - 1.9.1 - 4.11.0 - 1.37 - 9.7.1 - 3.2.1 - 3.21.0 - 4.8.6.6 - 4.8.6 - 3.5.2 - 3.5.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 - - false - 1.00 - 1.00 - 1.00 - 1.00 - 1.00 - 1.00 - - 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 - - - UTF-8 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - https://docs.oracle.com/en/java/javase/21/docs/api/ - 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.javaee8.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 - - - org.junit-pioneer - junit-pioneer - ${commons.junit-pioneer.version} - - - org.mockito - mockit-core - ${commons.mockito.version} - test - - - - - - 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} - - - - - -proc:none - - - - - 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} - - ${commons.javadoc.options} - - - true - true - - - - Copyright © {inceptionYear}-{currentYear} {organizationName}. All rights reserved.</br> - <a href="${project.url}">${project.name}</a> | - <a href="${project.issueManagement.url}">Issue management</a> | - <a href="${project.scm.url}">Source repository</a> - - - - - - 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.3 - - - 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.18.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.10.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.ow2.asm - asm - ${commons.asm.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.5.0 - - - org.codehaus.mojo - taglist-maven-plugin - ${commons.taglist.version} - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - validate-changes - verify - - changes-validate - - - true - - - - - - - - - - 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 - - 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 - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - - ${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 - ${commons.changes.onlyCurrentVersion} - ${commons.changes.maxEntries} - ${commons.changes.runOnlyAtExecutionRoot} - - - - - changes - jira-changes - - - - - - 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-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 - - 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 - - - - - - - - - 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 - - - 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 - - - - 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.21.1 - - - - - java-17-up - - [17,) - - - - - - - - benchmark - - true - org.apache - - - - - org.codehaus.mojo - exec-maven-plugin - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - diff --git a/.m2/repository/org/apache/commons/commons-parent/79/commons-parent-79.pom.sha1 b/.m2/repository/org/apache/commons/commons-parent/79/commons-parent-79.pom.sha1 deleted file mode 100644 index a0d330c..0000000 --- a/.m2/repository/org/apache/commons/commons-parent/79/commons-parent-79.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a2f13e0fa1f22588976e02c39b840653986ba685 \ No newline at end of file diff --git a/.m2/repository/org/apache/groovy/groovy-bom/4.0.20/_remote.repositories b/.m2/repository/org/apache/groovy/groovy-bom/4.0.20/_remote.repositories deleted file mode 100644 index 26eb05f..0000000 --- a/.m2/repository/org/apache/groovy/groovy-bom/4.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. -#Thu Apr 02 20:38:10 UTC 2026 -groovy-bom-4.0.20.pom>central= diff --git a/.m2/repository/org/apache/groovy/groovy-bom/4.0.20/groovy-bom-4.0.20.pom b/.m2/repository/org/apache/groovy/groovy-bom/4.0.20/groovy-bom-4.0.20.pom deleted file mode 100644 index 20f7b8f..0000000 --- a/.m2/repository/org/apache/groovy/groovy-bom/4.0.20/groovy-bom-4.0.20.pom +++ /dev/null @@ -1,996 +0,0 @@ - - - - - - - - 4.0.0 - org.apache.groovy - groovy-bom - 4.0.20 - 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.20 - - - org.apache.groovy - groovy-ant - 4.0.20 - - - org.apache.groovy - groovy-astbuilder - 4.0.20 - - - org.apache.groovy - groovy-cli-commons - 4.0.20 - - - org.apache.groovy - groovy-cli-picocli - 4.0.20 - - - org.apache.groovy - groovy-console - 4.0.20 - - - org.apache.groovy - groovy-contracts - 4.0.20 - - - org.apache.groovy - groovy-datetime - 4.0.20 - - - org.apache.groovy - groovy-dateutil - 4.0.20 - - - org.apache.groovy - groovy-docgenerator - 4.0.20 - - - org.apache.groovy - groovy-ginq - 4.0.20 - - - org.apache.groovy - groovy-groovydoc - 4.0.20 - - - org.apache.groovy - groovy-groovysh - 4.0.20 - - - org.apache.groovy - groovy-jmx - 4.0.20 - - - org.apache.groovy - groovy-json - 4.0.20 - - - org.apache.groovy - groovy-jsr223 - 4.0.20 - - - org.apache.groovy - groovy-macro - 4.0.20 - - - org.apache.groovy - groovy-macro-library - 4.0.20 - - - org.apache.groovy - groovy-nio - 4.0.20 - - - org.apache.groovy - groovy-servlet - 4.0.20 - - - org.apache.groovy - groovy-sql - 4.0.20 - - - org.apache.groovy - groovy-swing - 4.0.20 - - - org.apache.groovy - groovy-templates - 4.0.20 - - - org.apache.groovy - groovy-test - 4.0.20 - - - org.apache.groovy - groovy-test-junit5 - 4.0.20 - - - org.apache.groovy - groovy-testng - 4.0.20 - - - org.apache.groovy - groovy-toml - 4.0.20 - - - org.apache.groovy - groovy-typecheckers - 4.0.20 - - - org.apache.groovy - groovy-xml - 4.0.20 - - - org.apache.groovy - groovy-yaml - 4.0.20 - - - - diff --git a/.m2/repository/org/apache/groovy/groovy-bom/4.0.20/groovy-bom-4.0.20.pom.sha1 b/.m2/repository/org/apache/groovy/groovy-bom/4.0.20/groovy-bom-4.0.20.pom.sha1 deleted file mode 100644 index 090c634..0000000 --- a/.m2/repository/org/apache/groovy/groovy-bom/4.0.20/groovy-bom-4.0.20.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1ae64396568cac61acfae122374d788ec481ba38 \ No newline at end of file diff --git a/.m2/repository/org/apache/groovy/groovy-bom/4.0.22/_remote.repositories b/.m2/repository/org/apache/groovy/groovy-bom/4.0.22/_remote.repositories deleted file mode 100644 index 90f7607..0000000 --- a/.m2/repository/org/apache/groovy/groovy-bom/4.0.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. -#Thu Apr 02 20:37:44 UTC 2026 -groovy-bom-4.0.22.pom>central= diff --git a/.m2/repository/org/apache/groovy/groovy-bom/4.0.22/groovy-bom-4.0.22.pom b/.m2/repository/org/apache/groovy/groovy-bom/4.0.22/groovy-bom-4.0.22.pom deleted file mode 100644 index b8797ee..0000000 --- a/.m2/repository/org/apache/groovy/groovy-bom/4.0.22/groovy-bom-4.0.22.pom +++ /dev/null @@ -1,996 +0,0 @@ - - - - - - - - 4.0.0 - org.apache.groovy - groovy-bom - 4.0.22 - 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.22 - - - org.apache.groovy - groovy-ant - 4.0.22 - - - org.apache.groovy - groovy-astbuilder - 4.0.22 - - - org.apache.groovy - groovy-cli-commons - 4.0.22 - - - org.apache.groovy - groovy-cli-picocli - 4.0.22 - - - org.apache.groovy - groovy-console - 4.0.22 - - - org.apache.groovy - groovy-contracts - 4.0.22 - - - org.apache.groovy - groovy-datetime - 4.0.22 - - - org.apache.groovy - groovy-dateutil - 4.0.22 - - - org.apache.groovy - groovy-docgenerator - 4.0.22 - - - org.apache.groovy - groovy-ginq - 4.0.22 - - - org.apache.groovy - groovy-groovydoc - 4.0.22 - - - org.apache.groovy - groovy-groovysh - 4.0.22 - - - org.apache.groovy - groovy-jmx - 4.0.22 - - - org.apache.groovy - groovy-json - 4.0.22 - - - org.apache.groovy - groovy-jsr223 - 4.0.22 - - - org.apache.groovy - groovy-macro - 4.0.22 - - - org.apache.groovy - groovy-macro-library - 4.0.22 - - - org.apache.groovy - groovy-nio - 4.0.22 - - - org.apache.groovy - groovy-servlet - 4.0.22 - - - org.apache.groovy - groovy-sql - 4.0.22 - - - org.apache.groovy - groovy-swing - 4.0.22 - - - org.apache.groovy - groovy-templates - 4.0.22 - - - org.apache.groovy - groovy-test - 4.0.22 - - - org.apache.groovy - groovy-test-junit5 - 4.0.22 - - - org.apache.groovy - groovy-testng - 4.0.22 - - - org.apache.groovy - groovy-toml - 4.0.22 - - - org.apache.groovy - groovy-typecheckers - 4.0.22 - - - org.apache.groovy - groovy-xml - 4.0.22 - - - org.apache.groovy - groovy-yaml - 4.0.22 - - - - diff --git a/.m2/repository/org/apache/groovy/groovy-bom/4.0.22/groovy-bom-4.0.22.pom.sha1 b/.m2/repository/org/apache/groovy/groovy-bom/4.0.22/groovy-bom-4.0.22.pom.sha1 deleted file mode 100644 index ff1bb00..0000000 --- a/.m2/repository/org/apache/groovy/groovy-bom/4.0.22/groovy-bom-4.0.22.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f5595adfc27fdcd4865ce6e3cb5c1f93bf50afda \ No newline at end of file diff --git a/.m2/repository/org/apache/groovy/groovy-bom/4.0.28/_remote.repositories b/.m2/repository/org/apache/groovy/groovy-bom/4.0.28/_remote.repositories deleted file mode 100644 index 43604fb..0000000 --- a/.m2/repository/org/apache/groovy/groovy-bom/4.0.28/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:37:35 UTC 2026 -groovy-bom-4.0.28.pom>central= diff --git a/.m2/repository/org/apache/groovy/groovy-bom/4.0.28/groovy-bom-4.0.28.pom b/.m2/repository/org/apache/groovy/groovy-bom/4.0.28/groovy-bom-4.0.28.pom deleted file mode 100644 index a6eeee7..0000000 --- a/.m2/repository/org/apache/groovy/groovy-bom/4.0.28/groovy-bom-4.0.28.pom +++ /dev/null @@ -1,996 +0,0 @@ - - - - - - - - 4.0.0 - org.apache.groovy - groovy-bom - 4.0.28 - 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.28 - - - org.apache.groovy - groovy-ant - 4.0.28 - - - org.apache.groovy - groovy-astbuilder - 4.0.28 - - - org.apache.groovy - groovy-cli-commons - 4.0.28 - - - org.apache.groovy - groovy-cli-picocli - 4.0.28 - - - org.apache.groovy - groovy-console - 4.0.28 - - - org.apache.groovy - groovy-contracts - 4.0.28 - - - org.apache.groovy - groovy-datetime - 4.0.28 - - - org.apache.groovy - groovy-dateutil - 4.0.28 - - - org.apache.groovy - groovy-docgenerator - 4.0.28 - - - org.apache.groovy - groovy-ginq - 4.0.28 - - - org.apache.groovy - groovy-groovydoc - 4.0.28 - - - org.apache.groovy - groovy-groovysh - 4.0.28 - - - org.apache.groovy - groovy-jmx - 4.0.28 - - - org.apache.groovy - groovy-json - 4.0.28 - - - org.apache.groovy - groovy-jsr223 - 4.0.28 - - - org.apache.groovy - groovy-macro - 4.0.28 - - - org.apache.groovy - groovy-macro-library - 4.0.28 - - - org.apache.groovy - groovy-nio - 4.0.28 - - - org.apache.groovy - groovy-servlet - 4.0.28 - - - org.apache.groovy - groovy-sql - 4.0.28 - - - org.apache.groovy - groovy-swing - 4.0.28 - - - org.apache.groovy - groovy-templates - 4.0.28 - - - org.apache.groovy - groovy-test - 4.0.28 - - - org.apache.groovy - groovy-test-junit5 - 4.0.28 - - - org.apache.groovy - groovy-testng - 4.0.28 - - - org.apache.groovy - groovy-toml - 4.0.28 - - - org.apache.groovy - groovy-typecheckers - 4.0.28 - - - org.apache.groovy - groovy-xml - 4.0.28 - - - org.apache.groovy - groovy-yaml - 4.0.28 - - - - diff --git a/.m2/repository/org/apache/groovy/groovy-bom/4.0.28/groovy-bom-4.0.28.pom.sha1 b/.m2/repository/org/apache/groovy/groovy-bom/4.0.28/groovy-bom-4.0.28.pom.sha1 deleted file mode 100644 index 782b0dc..0000000 --- a/.m2/repository/org/apache/groovy/groovy-bom/4.0.28/groovy-bom-4.0.28.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0e4ce960688c40a6e7eb46bfffea94552800bdc3 \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/client5/httpclient5-parent/5.5/_remote.repositories b/.m2/repository/org/apache/httpcomponents/client5/httpclient5-parent/5.5/_remote.repositories deleted file mode 100644 index a2eb383..0000000 --- a/.m2/repository/org/apache/httpcomponents/client5/httpclient5-parent/5.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. -#Thu Apr 02 20:43:09 UTC 2026 -httpclient5-parent-5.5.pom>central= diff --git a/.m2/repository/org/apache/httpcomponents/client5/httpclient5-parent/5.5/httpclient5-parent-5.5.pom b/.m2/repository/org/apache/httpcomponents/client5/httpclient5-parent/5.5/httpclient5-parent-5.5.pom deleted file mode 100644 index 6f1a9c6..0000000 --- a/.m2/repository/org/apache/httpcomponents/client5/httpclient5-parent/5.5/httpclient5-parent-5.5.pom +++ /dev/null @@ -1,441 +0,0 @@ - - - - org.apache.httpcomponents - httpcomponents-parent - 14 - - 4.0.0 - org.apache.httpcomponents.client5 - httpclient5-parent - Apache HttpComponents Client Parent - 5.5 - Apache HttpComponents Client is a library of components for building client side HTTP services - https://hc.apache.org/httpcomponents-client-5.5.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.5 - - - - - apache.website - Apache HttpComponents Website - scm:svn:https://svn.apache.org/repos/asf/httpcomponents/site/components/httpcomponents-client-5.5.x/LATEST/ - - - - - 1.8 - 1.8 - 5.3.4 - 2.24.3 - 0.1.2 - 2.5.2 - 3.10.8 - 2.12.3 - 1.7.36 - 5.12.2 - 3.0 - 4.11.0 - 1 - 2.2.21 - 1.20.6 - 5.3 - javax.net.ssl.SSLEngine,javax.net.ssl.SSLParameters,java.nio.ByteBuffer,java.nio.CharBuffer - - - - - - 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.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} - - - 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 - - - org.testcontainers - testcontainers - ${testcontainers.version} - - - org.testcontainers - junit-jupiter - ${testcontainers.version} - - - - - - httpclient5 - httpclient5-fluent - httpclient5-cache - httpclient5-testing - - - - clean verify - - - maven-jar-plugin - - - - ${Automatic-Module-Name} - ${project.url} - - - - - - maven-javadoc-plugin - - - 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/ - - - - - 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/.m2/repository/org/apache/httpcomponents/client5/httpclient5-parent/5.5/httpclient5-parent-5.5.pom.sha1 b/.m2/repository/org/apache/httpcomponents/client5/httpclient5-parent/5.5/httpclient5-parent-5.5.pom.sha1 deleted file mode 100644 index 48619da..0000000 --- a/.m2/repository/org/apache/httpcomponents/client5/httpclient5-parent/5.5/httpclient5-parent-5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6bbe80bf3208f6ba771cf19f930e0066c8ba63d7 \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/_remote.repositories b/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/_remote.repositories deleted file mode 100644 index 2b3b2ec..0000000 --- a/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.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. -#Thu Apr 02 20:43:13 UTC 2026 -httpclient5-5.5.jar>central= -httpclient5-5.5.pom>central= diff --git a/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/httpclient5-5.5.jar b/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/httpclient5-5.5.jar deleted file mode 100644 index e2126b4..0000000 Binary files a/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/httpclient5-5.5.jar and /dev/null differ diff --git a/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/httpclient5-5.5.jar.sha1 b/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/httpclient5-5.5.jar.sha1 deleted file mode 100644 index 296c5dc..0000000 --- a/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/httpclient5-5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -4b3d253351cf74eb0ae8eb21ca5a5fb9815ef861 \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/httpclient5-5.5.pom b/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/httpclient5-5.5.pom deleted file mode 100644 index e177c69..0000000 --- a/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/httpclient5-5.5.pom +++ /dev/null @@ -1,188 +0,0 @@ - - - 4.0.0 - - org.apache.httpcomponents.client5 - httpclient5-parent - 5.5 - - 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 - - - - src/main/resources - - **/*.dat - - - - - - com.googlecode.maven-download-plugin - download-maven-plugin - 1.13.0 - - - download-public-suffix-list - generate-resources - - wget - - - https://publicsuffix.org/list/effective_tld_names.dat - ${project.basedir}/src/main/resources/org/publicsuffix/list - - - - - - 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/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/httpclient5-5.5.pom.sha1 b/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/httpclient5-5.5.pom.sha1 deleted file mode 100644 index fd534ce..0000000 --- a/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.5/httpclient5-5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8ea868dff9beb8e8f2aa6f5c2ddb3b59c4f1115c \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/_remote.repositories b/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/_remote.repositories deleted file mode 100644 index 56a370f..0000000 --- a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/_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. -#Thu Apr 02 20:43:13 UTC 2026 -httpcore5-h2-5.3.4.jar>central= -httpcore5-h2-5.3.4.pom>central= diff --git a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/httpcore5-h2-5.3.4.jar b/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/httpcore5-h2-5.3.4.jar deleted file mode 100644 index 03507de..0000000 Binary files a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/httpcore5-h2-5.3.4.jar and /dev/null differ diff --git a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/httpcore5-h2-5.3.4.jar.sha1 b/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/httpcore5-h2-5.3.4.jar.sha1 deleted file mode 100644 index e3de774..0000000 --- a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/httpcore5-h2-5.3.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3742a9a9ba3a5a0d45be230093b52a1302a561e2 \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/httpcore5-h2-5.3.4.pom b/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/httpcore5-h2-5.3.4.pom deleted file mode 100644 index 049dc49..0000000 --- a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/httpcore5-h2-5.3.4.pom +++ /dev/null @@ -1,102 +0,0 @@ - - - 4.0.0 - - org.apache.httpcomponents.core5 - httpcore5-parent - 5.3.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/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/httpcore5-h2-5.3.4.pom.sha1 b/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/httpcore5-h2-5.3.4.pom.sha1 deleted file mode 100644 index 42cac02..0000000 --- a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/httpcore5-h2-5.3.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6ec3e816d11286f9dec272c725272f048fe284fc \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-parent/5.3.4/_remote.repositories b/.m2/repository/org/apache/httpcomponents/core5/httpcore5-parent/5.3.4/_remote.repositories deleted file mode 100644 index 24e332d..0000000 --- a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-parent/5.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. -#Thu Apr 02 20:43:10 UTC 2026 -httpcore5-parent-5.3.4.pom>central= diff --git a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-parent/5.3.4/httpcore5-parent-5.3.4.pom b/.m2/repository/org/apache/httpcomponents/core5/httpcore5-parent/5.3.4/httpcore5-parent-5.3.4.pom deleted file mode 100644 index d0ede7e..0000000 --- a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-parent/5.3.4/httpcore5-parent-5.3.4.pom +++ /dev/null @@ -1,374 +0,0 @@ - - - - org.apache.httpcomponents - httpcomponents-parent - 13 - - 4.0.0 - org.apache.httpcomponents.core5 - httpcore5-parent - Apache HttpComponents Core Parent - 5.3.4 - Apache HttpComponents Core is a library of components for building HTTP enabled services - https://hc.apache.org/httpcomponents-core-5.3.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.3.4 - - - - - apache.website - Apache HttpComponents Website - scm:svn:https://svn.apache.org/repos/asf/httpcomponents/site/components/httpcomponents-core-5.3.x/LATEST/ - - - - - httpcore5 - httpcore5-h2 - httpcore5-reactive - httpcore5-testing - - - - - 1.8 - 1.8 - true - 2.5.2 - 5.11.4 - 3.0 - 5.0.0 - 4.11.0 - 1.7.36 - 2.24.3 - 2.2.21 - 3.1.9 - 5.3 - 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.apache.httpcomponents.core5 - httpcore5 - tests - ${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/.m2/repository/org/apache/httpcomponents/core5/httpcore5-parent/5.3.4/httpcore5-parent-5.3.4.pom.sha1 b/.m2/repository/org/apache/httpcomponents/core5/httpcore5-parent/5.3.4/httpcore5-parent-5.3.4.pom.sha1 deleted file mode 100644 index b9c40b7..0000000 --- a/.m2/repository/org/apache/httpcomponents/core5/httpcore5-parent/5.3.4/httpcore5-parent-5.3.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -859aac490bca7c9c29e668971a30b42150133459 \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/_remote.repositories b/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/_remote.repositories deleted file mode 100644 index 9da41c5..0000000 --- a/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/_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. -#Thu Apr 02 20:43:13 UTC 2026 -httpcore5-5.3.4.jar>central= -httpcore5-5.3.4.pom>central= diff --git a/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/httpcore5-5.3.4.jar b/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/httpcore5-5.3.4.jar deleted file mode 100644 index 44dff04..0000000 Binary files a/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/httpcore5-5.3.4.jar and /dev/null differ diff --git a/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/httpcore5-5.3.4.jar.sha1 b/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/httpcore5-5.3.4.jar.sha1 deleted file mode 100644 index a302371..0000000 --- a/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/httpcore5-5.3.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ea47f0fe6e00ffb07cec3a0cb1bb801b1a9cc353 \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/httpcore5-5.3.4.pom b/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/httpcore5-5.3.4.pom deleted file mode 100644 index 4fe6c83..0000000 --- a/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/httpcore5-5.3.4.pom +++ /dev/null @@ -1,119 +0,0 @@ - - - 4.0.0 - - org.apache.httpcomponents.core5 - httpcore5-parent - 5.3.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/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/httpcore5-5.3.4.pom.sha1 b/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/httpcore5-5.3.4.pom.sha1 deleted file mode 100644 index 0e7fd9d..0000000 --- a/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.3.4/httpcore5-5.3.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e07f07976ba7c5f7779dd87daabc9dec1e1075f8 \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/_remote.repositories b/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/_remote.repositories deleted file mode 100644 index b8f585e..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/_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. -#Thu Apr 02 20:38:35 UTC 2026 -httpclient-4.5.14.jar>central= -httpclient-4.5.14.pom>central= diff --git a/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar b/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar deleted file mode 100644 index 2bb7c07..0000000 Binary files a/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar and /dev/null differ diff --git a/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar.sha1 b/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar.sha1 deleted file mode 100644 index 66e0585..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1194890e6f56ec29177673f2f12d0b8e627dec98 \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.pom b/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.pom deleted file mode 100644 index 44fac92..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.pom +++ /dev/null @@ -1,207 +0,0 @@ - - - 4.0.0 - - org.apache.httpcomponents - httpcomponents-client - 4.5.14 - - httpclient - Apache HttpClient - - Apache HttpComponents Client - - http://hc.apache.org/httpcomponents-client-ga - jar - - - - org.apache.httpcomponents - httpcore - compile - - - commons-logging - commons-logging - compile - - - commons-codec - commons-codec - compile - - - junit - junit - test - - - org.mockito - mockito-core - test - - - - - - - src/main/resources - true - - **/*.properties - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-source - generate-sources - - add-source - - - - src/main/java-deprecated - - - - - - - com.googlecode.maven-download-plugin - download-maven-plugin - 1.2.1 - - - download-public-suffix-list - generate-sources - - wget - - - https://publicsuffix.org/list/effective_tld_names.dat - ${project.build.outputDirectory}/mozilla - public-suffix-list.txt - - - - - - maven-jar-plugin - - - default-jar - package - - jar - test-jar - - - - - org.apache.httpcomponents.httpclient - - - - - - - - - - - - - - maven-javadoc-plugin - ${hc.javadoc.version} - - - true - ${maven.compiler.source} - - http://docs.oracle.com/javase/6/docs/api/ - https://hc.apache.org/httpcomponents-core-4.4.x/current/httpcore/apidocs/ - - - - - - javadoc - - - - - - - maven-project-info-reports-plugin - false - - - - dependencies - dependency-info - summary - - - - - - - maven-jxr-plugin - - - - maven-surefire-report-plugin - - - - - - - - release - - - - com.googlecode.maven-download-plugin - download-maven-plugin - - true - true - - - - - - - - \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.pom.sha1 b/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.pom.sha1 deleted file mode 100644 index 30d6436..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f62c6a311407cc4b47d0ea9eec6cf97ed25b8cee \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/httpcomponents-client/4.5.14/_remote.repositories b/.m2/repository/org/apache/httpcomponents/httpcomponents-client/4.5.14/_remote.repositories deleted file mode 100644 index e327f92..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcomponents-client/4.5.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. -#Thu Apr 02 20:37:48 UTC 2026 -httpcomponents-client-4.5.14.pom>central= diff --git a/.m2/repository/org/apache/httpcomponents/httpcomponents-client/4.5.14/httpcomponents-client-4.5.14.pom b/.m2/repository/org/apache/httpcomponents/httpcomponents-client/4.5.14/httpcomponents-client-4.5.14.pom deleted file mode 100644 index 524494b..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcomponents-client/4.5.14/httpcomponents-client-4.5.14.pom +++ /dev/null @@ -1,419 +0,0 @@ - - - - org.apache.httpcomponents - httpcomponents-parent - 11 - - 4.0.0 - httpcomponents-client - Apache HttpComponents Client - 4.5.14 - Apache HttpComponents Client is a library of components for building client side HTTP services - http://hc.apache.org/httpcomponents-client-ga/ - 1999 - pom - - - The Apache Software Foundation - http://www.apache.org/ - - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - Jira - http://issues.apache.org/jira/browse/HTTPCLIENT - - - - scm:git:https://git-wip-us.apache.org/repos/asf/httpcomponents-client.git - scm:git:https://git-wip-us.apache.org/repos/asf/httpcomponents-client.git - https://github.com/apache/httpcomponents-client/tree/${project.scm.tag} - 4.5.14 - - - - - apache.website - Apache HttpComponents Website - scm:svn:https://svn.apache.org/repos/asf/httpcomponents/site/components/httpcomponents-client-4.5.x/LATEST/ - - - - - 1.6 - 1.6 - 4.4.16 - 1.2 - 1.11 - 2.6.11 - 2.12.3 - 1.7.25 - 4.11 - 2.5.2 - 1.10.19 - 4.5.2 - 1 - 4.5 - - - - - - org.apache.httpcomponents - httpcore - ${httpcore.version} - - - commons-logging - commons-logging - ${commons-logging.version} - - - commons-codec - commons-codec - ${commons-codec.version} - - - net.sf.ehcache - ehcache-core - ${ehcache.version} - - - org.slf4j - slf4j-jcl - ${slf4j.version} - - - net.spy - spymemcached - ${memcached.version} - - - net.java.dev.jna - jna - ${jna.version} - - - net.java.dev.jna - jna-platform - ${jna.version} - - - junit - junit - ${junit.version} - test - - - org.mockito - mockito-core - ${mockito.version} - test - - - org.easymock - easymock - ${easymock.version} - test - - - org.easymock - easymockclassextension - ${easymock.version} - test - - - - - - httpclient - httpmime - fluent-hc - httpclient-cache - httpclient-win - httpclient-osgi - - - - - - maven-jar-plugin - - - - HttpComponents ${project.name} - ${project.version} - The Apache Software Foundation - HttpComponents ${project.name} - ${project.version} - The Apache Software Foundation - org.apache - ${project.url} - - - - - - maven-source-plugin - - - attach-sources - - jar - - - - - - - - HttpComponents ${project.name} - ${project.version} - The Apache Software Foundation - HttpComponents ${project.name} - ${project.version} - The Apache Software Foundation - org.apache - - - - - - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - true - - http://docs.oracle.com/javase/6/docs/api/ - https://hc.apache.org/httpcomponents-core-4.4.x/current/httpcore/apidocs/ - - - - - com.agilejava.docbkx - docbkx-maven-plugin - - - org.docbook - docbook-xml - 4.4 - runtime - - - - - tutorial-site - - generate-html - generate-pdf - - pre-site - - - - index.xml - true - true - src/docbkx/resources/xsl/fopdf.xsl - src/docbkx/resources/xsl/html_chunk.xsl - css/hc-tutorial.css - - - version - ${project.version} - - - - - - - - - - - - - - - - - - - - - - maven-resources-plugin - - - copy-resources - pre-site - - copy-resources - - - ${basedir}/target/site/examples - - - src/examples - false - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - hc-stylecheck/default.xml - hc-stylecheck/asl2.header - true - true - false - - ${basedir}/src/main - ${basedir}/src/test - - **/java-deprecated/** - - - - org.codehaus.mojo - clirr-maven-plugin - - ${api.comparison.version} - - - - org.apache.rat - apache-rat-plugin - - - verify - - check - - - - - - src/docbkx/resources/** - src/test/resources/*.truststore - .checkstyle - - - - - - - - - - maven-project-info-reports-plugin - false - - - - dependency-info - dependency-management - issue-management - licenses - mailing-lists - scm - summary - - - - - - - org.codehaus.mojo - clirr-maven-plugin - - ${api.comparison.version} - - - - - - - - - - animal-sniffer - - - src/site/resources/profile.noanimal - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${hc.animal-sniffer.version} - - - checkAPIcompatibility - - check - - - - - - org.codehaus.mojo.signature - java16 - 1.1 - - java.util.concurrent.ConcurrentHashMap* - - - - - - - - - \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/httpcomponents-client/4.5.14/httpcomponents-client-4.5.14.pom.sha1 b/.m2/repository/org/apache/httpcomponents/httpcomponents-client/4.5.14/httpcomponents-client-4.5.14.pom.sha1 deleted file mode 100644 index 219eea2..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcomponents-client/4.5.14/httpcomponents-client-4.5.14.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e36b5c26d9012cce0ba214e06462596585475217 \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/httpcomponents-core/4.4.16/_remote.repositories b/.m2/repository/org/apache/httpcomponents/httpcomponents-core/4.4.16/_remote.repositories deleted file mode 100644 index a4bd59a..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcomponents-core/4.4.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. -#Thu Apr 02 20:37:49 UTC 2026 -httpcomponents-core-4.4.16.pom>central= diff --git a/.m2/repository/org/apache/httpcomponents/httpcomponents-core/4.4.16/httpcomponents-core-4.4.16.pom b/.m2/repository/org/apache/httpcomponents/httpcomponents-core/4.4.16/httpcomponents-core-4.4.16.pom deleted file mode 100644 index 56f1c4e..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcomponents-core/4.4.16/httpcomponents-core-4.4.16.pom +++ /dev/null @@ -1,331 +0,0 @@ - - - - - org.apache.httpcomponents - httpcomponents-parent - 11 - - 4.0.0 - httpcomponents-core - Apache HttpComponents Core - 4.4.16 - Apache HttpComponents Core is a library of components for building HTTP enabled services - http://hc.apache.org/httpcomponents-core-ga - 2005 - pom - - - The Apache Software Foundation - http://www.apache.org/ - - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - Jira - http://issues.apache.org/jira/browse/HTTPCORE - - - - scm:git:https://git-wip-us.apache.org/repos/asf/httpcomponents-core.git - scm:git:https://git-wip-us.apache.org/repos/asf/httpcomponents-core.git - https://github.com/apache/httpcomponents-core/tree/${project.scm.tag} - 4.4.16 - - - - - apache.website - Apache HttpComponents Website - scm:svn:https://svn.apache.org/repos/asf/httpcomponents/site/components/httpcomponents-core-4.4.x/LATEST/ - - - - - httpcore - httpcore-nio - httpcore-osgi - httpcore-ab - - - - - 1.6 - 1.6 - false - 2.2.1 - 4.12 - 1.10.19 - 1.2 - 4.4 - - - - - - org.conscrypt - conscrypt-openjdk-uber - ${conscrypt.version} - - - junit - junit - ${junit.version} - test - - - org.mockito - mockito-core - ${mockito.version} - test - - - commons-logging - commons-logging - ${commons-logging.version} - test - - - - - - - - maven-jar-plugin - - - - HttpComponents ${project.name} - ${project.version} - The Apache Software Foundation - HttpComponents ${project.name} - ${project.version} - The Apache Software Foundation - org.apache - ${project.url} - - - - - - maven-source-plugin - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - true - ${maven.compiler.source} - - http://docs.oracle.com/javase/6/docs/api/ - - - - - maven-site-plugin - - - com.agilejava.docbkx - docbkx-maven-plugin - - - org.docbook - docbook-xml - 4.4 - runtime - - - - - tutorial-site - - generate-html - generate-pdf - - pre-site - - - - index.xml - true - true - src/docbkx/resources/xsl/fopdf.xsl - src/docbkx/resources/xsl/html_chunk.xsl - css/hc-tutorial.css - - - version - ${project.version} - - - - - - - - - - - - - - - - - - - - - - maven-resources-plugin - - - copy-resources - pre-site - - copy-resources - - - ${basedir}/target/site/examples - - - src/examples - false - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - hc-stylecheck/default.xml - hc-stylecheck/asl2.header - true - true - false - - ${basedir}/src/main/ - ${basedir}/src/test - - **/java-deprecated/** - - - - org.codehaus.mojo - clirr-maven-plugin - - ${api.comparison.version} - - org/apache/http/annotation/** - - - - - org.apache.rat - apache-rat-plugin - - - verify - - check - - - - - - **/.externalToolBuilders/** - **/.pmd - **/maven-eclipse.xml - **/.checkstyle - src/docbkx/resources/** - src/test/resources/*.truststore - src/test/resources/*.p12 - - - - - - - - - - - maven-project-info-reports-plugin - false - - - - dependency-info - dependency-management - issue-management - licenses - mailing-lists - scm - summary - - - - - - - org.codehaus.mojo - clirr-maven-plugin - - ${api.comparison.version} - - - - - - - \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/httpcomponents-core/4.4.16/httpcomponents-core-4.4.16.pom.sha1 b/.m2/repository/org/apache/httpcomponents/httpcomponents-core/4.4.16/httpcomponents-core-4.4.16.pom.sha1 deleted file mode 100644 index ea33d88..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcomponents-core/4.4.16/httpcomponents-core-4.4.16.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e0cbfde0384168cdd90e2633c1f101416d799090 \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/11/_remote.repositories b/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/11/_remote.repositories deleted file mode 100644 index 2a30ef9..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/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. -#Thu Apr 02 20:37:48 UTC 2026 -httpcomponents-parent-11.pom>central= diff --git a/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom b/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom deleted file mode 100644 index 2bada70..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom +++ /dev/null @@ -1,1026 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 21 - - org.apache.httpcomponents - httpcomponents-parent - 11 - pom - Apache HttpComponents Parent - http://hc.apache.org/ - Apache components to build HTTP enabled services - 2005 - - - - - - Apache Software Foundation - http://www.apache.org/ - - - - Jira - - https://issues.apache.org/jira/secure/BrowseProjects.jspa?selectedCategory=10280 - - - - scm:git:https://git-wip-us.apache.org/repos/asf/httpcomponents-parent.git - scm:git:https://git-wip-us.apache.org/repos/asf/httpcomponents-parent.git - https://github.com/apache/httpcomponents-parent/tree/${project.scm.tag} - master - - - - - 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 Chair - - 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 - - - - - - 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 - - - - - HttpClient User List - httpclient-users-subscribe@hc.apache.org - httpclient-users-unsubscribe@hc.apache.org - httpclient-users@hc.apache.org - http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/ - - http://www.nabble.com/HttpClient-User-f20180.html - http://marc.info/?l=httpclient-users - http://httpclient-users.markmail.org/search/ - http://hc.apache.org/mail/httpclient-users/ - - - - HttpComponents Dev List - dev-subscribe@hc.apache.org - dev-unsubscribe@hc.apache.org - dev@hc.apache.org - http://mail-archives.apache.org/mod_mbox/hc-dev/ - - http://www.nabble.com/HttpComponents-Dev-f20179.html - http://marc.info/?l=httpclient-commons-dev - http://apache-hc-dev.markmail.org/search/ - http://hc.apache.org/mail/dev/ - - - - HttpComponents Commits List - commits-subscribe@hc.apache.org - commits-unsubscribe@hc.apache.org - (Read Only) - http://mail-archives.apache.org/mod_mbox/hc-commits/ - - http://marc.info/?l=httpcomponents-commits - http://hc-commits.markmail.org/search/ - http://hc.apache.org/mail/commits/ - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - http://org-apache-announce.markmail.org/search/ - - - - - - - apache.website - Apache HttpComponents Website - ${hc.site.url} - - - - - - - apache.snapshots - Apache Snapshot Repository - http://repository.apache.org/snapshots - - false - - - - - - - - org.apache.rat - apache-rat-plugin - - - - - .pmd - - - - - maven-jar-plugin - - - - Apache ${project.name} - ${project.version} - Apache Software Foundation - Apache HttpComponents ${project.name} - ${project.version} - Apache Software Foundation - org.apache - - ${implementation.build} - ${maven.compiler.source} - ${maven.compiler.target} - - - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - org.apache.maven.plugins - maven-clean-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.0 - - ${maven.compiler.source} - ${maven.compiler.target} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-jar-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-javadoc-plugin - ${hc.javadoc.version} - - - true - - - true - true - - - - - - 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-release-plugin - 2.5.3 - - - org.apache.maven.plugins - maven-resources-plugin - 3.1.0 - - - copy-resources - pre-site - - copy-resources - - - ${basedir}/target/site/examples - - - src/examples - false - - - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.7.1 - - - org.apache.maven.wagon - wagon-ssh - 3.2.0 - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${hc.surefire.version} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${hc.surefire-report.version} - - - - com.agilejava.docbkx - docbkx-maven-plugin - 2.0.17 - - - org.docbook - docbook-xml - 4.4 - runtime - - - - - org.apache.felix - maven-bundle-plugin - 3.5.1 - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - - org.codehaus.mojo - clirr-maven-plugin - ${hc.clirr.version} - - ${minSeverity} - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${hc.checkstyle.version} - - - org.apache.httpcomponents - hc-stylecheck - 2 - - - - ${project.build.sourceEncoding} - - - - 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 - - - - project-team - issue-tracking - scm - mailing-list - - - - - - - - - - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.0.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 - ${hc.animal-sniffer.version} - - - checkAPIcompatibility - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${hc.animal-sniffer.signature.version} - - - - - - - - - - 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 - - - - - - - - travis-cobertura - - - - org.codehaus.mojo - cobertura-maven-plugin - ${hc.cobertura.version} - - - xml - - - - - org.eluder.coveralls - coveralls-maven-plugin - ${hc.coveralls.version} - - ${hc.coveralls.timestampFormat} - - - - - - - - travis-jacoco - - - - org.jacoco - jacoco-maven-plugin - ${hc.jacoco.version} - - - org.eluder.coveralls - coveralls-maven-plugin - ${hc.coveralls.version} - - ${hc.coveralls.timestampFormat} - - - - - - - - - use-toolchains - - - ${user.home}/.m2/toolchains.xml - - - - - - org.apache.maven.plugins - maven-toolchains-plugin - 1.1 - - - - ${maven.compiler.source} - - - - - - - toolchain - - - - - - - - - owasp - - - - org.owasp - dependency-check-maven - 3.3.1 - - - - aggregate - - - - - - - - - - - 3.0.5 - - - - - true - true - UTF-8 - UTF-8 - scp://people.apache.org/www/hc.apache.org/ - - - 2.8 - 3.0.1 - 3.0.0 - 2.22.0 - 2.22.1 - 3.0.0 - 2.17 - 0.12 - 1.16 - 1.0 - 0.8.1 - 2.7 - 4.3.0 - EpochMillis - - - yyyy-MM-dd HH:mm:ssZ - ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} - - - info - - diff --git a/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom.sha1 b/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom.sha1 deleted file mode 100644 index 229920b..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3ee7a841cc49326e8681089ea7ad6a3b81b88581 \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/13/_remote.repositories b/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/13/_remote.repositories deleted file mode 100644 index 49b9ba5..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:43:10 UTC 2026 -httpcomponents-parent-13.pom>central= diff --git a/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom b/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom deleted file mode 100644 index 5715f1c..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom.sha1 b/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom.sha1 deleted file mode 100644 index d7e6c60..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/14/_remote.repositories b/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/14/_remote.repositories deleted file mode 100644 index f9cdc53..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/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. -#Thu Apr 02 20:43:09 UTC 2026 -httpcomponents-parent-14.pom>central= diff --git a/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/14/httpcomponents-parent-14.pom b/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/14/httpcomponents-parent-14.pom deleted file mode 100644 index d7a6d3c..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/14/httpcomponents-parent-14.pom +++ /dev/null @@ -1,924 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 27 - - org.apache.httpcomponents - httpcomponents-parent - 14 - 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 - - - Arturo Bernal - abernal - abernal -at- apache.org - - Committer - PMC - - Europe/Brussels - - - - - - 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 - - - - - 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 - 3 - - - - - 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.24 - - - 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.2.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.21.2 - 3.10.0 - 3.5.0 - 3.6.2 - 3.3.1 - 3.5.0 - 1.0 - - - - diff --git a/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/14/httpcomponents-parent-14.pom.sha1 b/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/14/httpcomponents-parent-14.pom.sha1 deleted file mode 100644 index 6de6923..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcomponents-parent/14/httpcomponents-parent-14.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1754ab9ad3a48e78890c1bdcf82326bc3194f32e \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/_remote.repositories b/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/_remote.repositories deleted file mode 100644 index 8ca426d..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/_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. -#Thu Apr 02 20:38:35 UTC 2026 -httpcore-4.4.16.jar>central= -httpcore-4.4.16.pom>central= diff --git a/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar b/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar deleted file mode 100644 index f0bdebe..0000000 Binary files a/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar and /dev/null differ diff --git a/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar.sha1 b/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar.sha1 deleted file mode 100644 index 1721106..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -51cf043c87253c9f58b539c9f7e44c8894223850 \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.pom b/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.pom deleted file mode 100644 index e0f720e..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.pom +++ /dev/null @@ -1,157 +0,0 @@ - - - 4.0.0 - - org.apache.httpcomponents - httpcomponents-core - 4.4.16 - - httpcore - Apache HttpCore - 2005 - - Apache HttpComponents Core (blocking I/O) - - http://hc.apache.org/httpcomponents-core-ga - jar - - - - junit - junit - test - - - org.mockito - mockito-core - test - - - commons-logging - commons-logging - test - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-source - generate-sources - - add-source - - - - src/main/java-deprecated - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - org.apache.httpcomponents.httpcore - - - - - - - - src/main/resources - true - - **/*.properties - - - - - - - - - - maven-javadoc-plugin - - - true - ${maven.compiler.source} - - http://docs.oracle.com/javase/6/docs/api/ - - - - - - javadoc - - - - - - - maven-project-info-reports-plugin - false - - - - dependencies - dependency-info - summary - - - - - - - maven-jxr-plugin - - - - maven-surefire-report-plugin - - - - - - \ No newline at end of file diff --git a/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.pom.sha1 b/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.pom.sha1 deleted file mode 100644 index 08f47ab..0000000 --- a/.m2/repository/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fdcd45abd94151f990a359e1d367e325cfb50286 \ No newline at end of file diff --git a/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/_remote.repositories b/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/_remote.repositories deleted file mode 100644 index af24981..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -log4j-api-2.24.3.jar>central= -log4j-api-2.24.3.pom>central= diff --git a/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.jar b/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.jar deleted file mode 100644 index 4af1681..0000000 Binary files a/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.jar and /dev/null differ diff --git a/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.jar.sha1 b/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.jar.sha1 deleted file mode 100644 index dbab701..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b02c125db8b6d295adf72ae6e71af5d83bce2370 \ No newline at end of file diff --git a/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.pom b/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.pom deleted file mode 100644 index 5cdd78e..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.pom +++ /dev/null @@ -1,116 +0,0 @@ - - - - 4.0.0 - - org.apache.logging.log4j - log4j - 2.24.3 - ../log4j-parent - - log4j-api - 2.24.3 - Apache Log4j API - The logging API of the Log4j project. - Library and application code can log through this API. - It contains a simple built-in implementation (`SimpleLogger`) for trivial use cases. - Production applications are recommended to use Log4j API in combination with a fully-fledged implementation, such as Log4j Core. - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - true - java.sql;static=true, - - java.management;static=true, - - org.jspecify;transitive=false - !sun.reflect, - - org.jspecify.*;resolution:=optional - false - org.apache.logging.log4j - - - - org.jspecify - jspecify - provided - - - 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/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.pom.sha1 b/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.pom.sha1 deleted file mode 100644 index dd8bca7..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -60c8e518c0b24136f1bf45bfece1e34a7b0bbcf7 \ No newline at end of file diff --git a/.m2/repository/org/apache/logging/log4j/log4j-bom/2.21.1/_remote.repositories b/.m2/repository/org/apache/logging/log4j/log4j-bom/2.21.1/_remote.repositories deleted file mode 100644 index c419718..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:11 UTC 2026 -log4j-bom-2.21.1.pom>central= diff --git a/.m2/repository/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom b/.m2/repository/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom deleted file mode 100644 index 714f264..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.sha1 b/.m2/repository/org/apache/logging/log4j/log4j-bom/2.21.1/log4j-bom-2.21.1.pom.sha1 deleted file mode 100644 index 7192068..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/logging/log4j/log4j-bom/2.24.3/_remote.repositories b/.m2/repository/org/apache/logging/log4j/log4j-bom/2.24.3/_remote.repositories deleted file mode 100644 index 4febbf4..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j-bom/2.24.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. -#Thu Apr 02 20:37:36 UTC 2026 -log4j-bom-2.24.3.pom>central= diff --git a/.m2/repository/org/apache/logging/log4j/log4j-bom/2.24.3/log4j-bom-2.24.3.pom b/.m2/repository/org/apache/logging/log4j/log4j-bom/2.24.3/log4j-bom-2.24.3.pom deleted file mode 100644 index 9dd6e06..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j-bom/2.24.3/log4j-bom-2.24.3.pom +++ /dev/null @@ -1,362 +0,0 @@ - - - - 4.0.0 - - org.apache.logging - logging-parent - 11.3.0 - - - org.apache.logging.log4j - log4j-bom - 2.24.3 - 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 - - America/New York - - - 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.24.3 - - - org.apache.logging.log4j - log4j-api - 2.24.3 - - - org.apache.logging.log4j - log4j-api-test - 2.24.3 - - - org.apache.logging.log4j - log4j-appserver - 2.24.3 - - - org.apache.logging.log4j - log4j-cassandra - 2.24.3 - - - org.apache.logging.log4j - log4j-core - 2.24.3 - - - org.apache.logging.log4j - log4j-core-test - 2.24.3 - - - org.apache.logging.log4j - log4j-couchdb - 2.24.3 - - - org.apache.logging.log4j - log4j-docker - 2.24.3 - - - org.apache.logging.log4j - log4j-flume-ng - 2.23.1 - - - org.apache.logging.log4j - log4j-iostreams - 2.24.3 - - - org.apache.logging.log4j - log4j-jakarta-smtp - 2.24.3 - - - org.apache.logging.log4j - log4j-jakarta-web - 2.24.3 - - - org.apache.logging.log4j - log4j-jcl - 2.24.3 - - - org.apache.logging.log4j - log4j-jpa - 2.24.3 - - - org.apache.logging.log4j - log4j-jpl - 2.24.3 - - - org.apache.logging.log4j - log4j-jul - 2.24.3 - - - org.apache.logging.log4j - log4j-layout-template-json - 2.24.3 - - - org.apache.logging.log4j - log4j-mongodb4 - 2.24.3 - - - org.apache.logging.log4j - log4j-mongodb - 2.24.3 - - - org.apache.logging.log4j - log4j-slf4j2-impl - 2.24.3 - - - org.apache.logging.log4j - log4j-slf4j-impl - 2.24.3 - - - org.apache.logging.log4j - log4j-spring-boot - 2.24.3 - - - org.apache.logging.log4j - log4j-spring-cloud-config-client - 2.24.3 - - - org.apache.logging.log4j - log4j-taglib - 2.24.3 - - - org.apache.logging.log4j - log4j-to-jul - 2.24.3 - - - org.apache.logging.log4j - log4j-to-slf4j - 2.24.3 - - - org.apache.logging.log4j - log4j-web - 2.24.3 - - - - diff --git a/.m2/repository/org/apache/logging/log4j/log4j-bom/2.24.3/log4j-bom-2.24.3.pom.sha1 b/.m2/repository/org/apache/logging/log4j/log4j-bom/2.24.3/log4j-bom-2.24.3.pom.sha1 deleted file mode 100644 index 71a23b3..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j-bom/2.24.3/log4j-bom-2.24.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0c406a1ec906af56529d26e1f29572930213360f \ No newline at end of file diff --git a/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/_remote.repositories b/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/_remote.repositories deleted file mode 100644 index 6b8b6fd..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -log4j-to-slf4j-2.24.3.jar>central= -log4j-to-slf4j-2.24.3.pom>central= diff --git a/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.jar b/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.jar deleted file mode 100644 index bb7f9c4..0000000 Binary files a/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.jar and /dev/null differ diff --git a/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.jar.sha1 b/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.jar.sha1 deleted file mode 100644 index 59793f4..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -da1143e2a2531ee1c2d90baa98eb50a28a39d5a7 \ No newline at end of file diff --git a/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.pom b/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.pom deleted file mode 100644 index 573a526..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.pom +++ /dev/null @@ -1,148 +0,0 @@ - - - - 4.0.0 - - org.apache.logging.log4j - log4j - 2.24.3 - ../log4j-parent - - log4j-to-slf4j - 2.24.3 - Log4j API to SLF4J Adapter - Forwards the Log4j API calls to SLF4J. - (Refer to the `log4j-slf4j[2]-impl` artifacts for forwarding SLF4J to the Log4j API.) - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - org.jspecify;transitive=false - org.jspecify.*;resolution:=optional, - - org.slf4j.*;version="${slf4j.support.range}" - [1.7,3) - 2.0.16 - - - - - org.slf4j - slf4j-api - ${slf4j2.version} - - - - - - org.osgi - org.osgi.core - provided - - - org.jspecify - jspecify - 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 - - - org.apache.logging.log4j - log4j-api-test - test - - - org.mockito - mockito-core - test - - - - - - maven-enforcer-plugin - - - ban-logging-dependencies - - - - - ch.qos.logback:*:*:*:test - - - - - - - - - - diff --git a/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.pom.sha1 b/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.pom.sha1 deleted file mode 100644 index b790a4e..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0faeb9837303fd935aa7cfb2cb772c0ff79e9ae7 \ No newline at end of file diff --git a/.m2/repository/org/apache/logging/log4j/log4j/2.24.3/_remote.repositories b/.m2/repository/org/apache/logging/log4j/log4j/2.24.3/_remote.repositories deleted file mode 100644 index f9b1b0e..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j/2.24.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. -#Thu Apr 02 20:37:44 UTC 2026 -log4j-2.24.3.pom>central= diff --git a/.m2/repository/org/apache/logging/log4j/log4j/2.24.3/log4j-2.24.3.pom b/.m2/repository/org/apache/logging/log4j/log4j/2.24.3/log4j-2.24.3.pom deleted file mode 100644 index 9bdf225..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j/2.24.3/log4j-2.24.3.pom +++ /dev/null @@ -1,907 +0,0 @@ - - - - 4.0.0 - - org.apache.logging.log4j - log4j-bom - 2.24.3 - - log4j - 2.24.3 - pom - Apache Log4j Parent - Apache Log4j Parent - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - 2.17.2 - 3.5.12 - 1.5.6-6 - 7.0.5 - 2.35.2 - 1.7.0 - 2.12.0 - 15.4 - 0.45.0 - 2.3.3 - 2.0.3 - 9.1.0 - 3.3.4 - 1 - 4.0.1 - 2.1.3 - 2.10.0 - 1.3.4 - 3.17.0 - 1.2.17 - 1.10 - 1.17.1 - 4.13.2 - 4.0.22 - 1.3.14 - 5.15.0 - 0.2.0 - 2.0.8 - 1.2.15 - 3.9.9 - 6.0.0 - 1.2.0 - 2.2.224 - 1.27.1 - 2.2.2 - 3.8.0 - 1.6.2 - 3.11.17 - 3.5.1 - 1.37 - 1.14.9 - 6.1.3 - 33.3.0-jre - 2.0.3 - 3.0 - 3.5.0 - 2.15.0 - 2.7.18 - 2.0.1 - 4.5.14 - 2.2.4 - 9.6 - 3.26.3 - 2.4.1 - 3.4.4 - 4.13.5 - 2.0.2 - 2.17.0 - 5.3.39 - 2.0b6 - 0.9.0 - 2.40.1 - 2.7.3 - 2.2 - 4.11.0 - 1.9.1 - 2.7.15 - 4.4.16 - 2.4 - 4.13.5 - 5.10.3 - 1.11.0 - 0.6.0 - 3.11.5 - 4.2.2 - 2.1.3 - 3.21.0 - 1.6.0 - 4.0.5 - 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.apache.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.junit - junit-bom - ${junit-jupiter.version} - pom - import - - - org.mockito - mockito-bom - ${mockito.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.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-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} - - - com.conversantmedia - disruptor - ${conversant.disruptor.version} - - - com.lmax - disruptor - ${disruptor.version} - - - org.zapodot - embedded-ldap-junit - ${embedded-ldap.version} - - - com.google.guava - guava - ${guava.version} - - - com.google.guava - guava-testlib - ${guava.version} - - - com.h2database - h2 - ${h2.version} - - - 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} - - - 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.openjdk.nashorn - nashorn-core - ${nashorn.version} - - - org.apache.felix - org.apache.felix.framework - ${felix.version} - - - org.eclipse.platform - 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.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.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:* - - - - - - - - - org.codehaus.gmavenplus - gmavenplus-plugin - - - ban-static-transitive - verify - - execute - - - false - - - - - - - - - - - - plugin-processing - - - .log4j-plugin-processing-activator - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - define-log4jDocgenDescriptorFilepath - process-resources - - bsh-property - - - - log4jDocgenDescriptorFilepath - - Properties properties = project.getProperties(); - String pluginDescriptorsDir = "true".equals(properties.getProperty("log4j.docgen.skip")) - ? properties.getProperty("log4j.docgen.pluginDescriptorsDir.skipped") - : properties.getProperty("log4j.docgen.pluginDescriptorsDir"); - String log4jDocgenDescriptorFilepath = String.format("%s/%s-plugins.xml", new Object[] { - pluginDescriptorsDir, project.getArtifactId() - }); - - - - - - maven-compiler-plugin - - - default-compile - - - default-testCompile - - - generate-plugin-descriptors - - compile - testCompile - - - - - org.apache.logging.log4j - log4j-docgen - ${log4j-docgen.version} - - - org.apache.logging.log4j - log4j-core - ${project.version} - - - - org.apache.logging.log4j.docgen.processor.DescriptorGenerator - org.apache.logging.log4j.core.config.plugins.processor.PluginProcessor - - - -Alog4j.docgen.descriptorFilePath=${log4jDocgenDescriptorFilepath} - -Alog4j.docgen.groupId=${project.groupId} - -Alog4j.docgen.artifactId=${project.artifactId} - -Alog4j.docgen.version=${project.version} - -Alog4j.docgen.description=${project.description} - -Alog4j.docgen.typeFilter.excludePattern=${log4j.docgen.typeFilter.excludePattern} - - only - - - - - - - - ${maven.multiModuleProjectDirectory}/target/plugin-descriptors/skipped - ${log4j.docgen.pluginDescriptorsDir.phase2} - - - - diff --git a/.m2/repository/org/apache/logging/log4j/log4j/2.24.3/log4j-2.24.3.pom.sha1 b/.m2/repository/org/apache/logging/log4j/log4j/2.24.3/log4j-2.24.3.pom.sha1 deleted file mode 100644 index 6371384..0000000 --- a/.m2/repository/org/apache/logging/log4j/log4j/2.24.3/log4j-2.24.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -eeaac7ce30792ca954b8903288e066c2091a5b50 \ No newline at end of file diff --git a/.m2/repository/org/apache/logging/logging-parent/10.1.1/_remote.repositories b/.m2/repository/org/apache/logging/logging-parent/10.1.1/_remote.repositories deleted file mode 100644 index 0f9b6ff..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:11 UTC 2026 -logging-parent-10.1.1.pom>central= diff --git a/.m2/repository/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom b/.m2/repository/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom deleted file mode 100644 index d45ea94..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.sha1 b/.m2/repository/org/apache/logging/logging-parent/10.1.1/logging-parent-10.1.1.pom.sha1 deleted file mode 100644 index 3c626a3..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/logging/logging-parent/11.3.0/_remote.repositories b/.m2/repository/org/apache/logging/logging-parent/11.3.0/_remote.repositories deleted file mode 100644 index 133c585..0000000 --- a/.m2/repository/org/apache/logging/logging-parent/11.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. -#Thu Apr 02 20:37:36 UTC 2026 -logging-parent-11.3.0.pom>central= diff --git a/.m2/repository/org/apache/logging/logging-parent/11.3.0/logging-parent-11.3.0.pom b/.m2/repository/org/apache/logging/logging-parent/11.3.0/logging-parent-11.3.0.pom deleted file mode 100644 index 6c7d0d2..0000000 --- a/.m2/repository/org/apache/logging/logging-parent/11.3.0/logging-parent-11.3.0.pom +++ /dev/null @@ -1,1301 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 33 - - org.apache.logging - logging-parent - 11.3.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/download.html - - - 1.1.0 - 4.8.6 - 1.13.0 - 1.6.0 - 8.1.0 - 1.0.0 - 4.0.23 - 3.0.2 - 2.0.1 - 10.5.0 - [17,18) - 2.50.0 - https://logging.apache.org/cyclonedx/vdr.xml - 8 - 1.15.0 - 7.0.0.202409031743-r - $[Bundle-SymbolicName] - 11.3.0 - 2.43.0 - false - 1.22.1 - - 2.8.1 - 1.1.0 - 3.3.0 - 8 - 7.0.0 - 7.0.0 - - $[bnd-module-name];access=0 - 3.0.0 - 2.0.0 - 1.1.2 - 0.9.0 - 0.8.12 - 7.0.0 - 2.32.0 - $[project.groupId].$[subst;$[subst;$[project.artifactId];log4j-];[^A-Za-z0-9];.] - - 3.6.0 - 3.5.1 - 3.8.1 - 4.8.6.3 - 8 - 21.7.1 - 2024-09-17T15:46:19Z - 11.0.0 - 2.5.0 - - - - - org.apache.logging - logging-parent - ${site-project.version} - pom - - - 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} - - - 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} - - - com.gradle - develocity-maven-extension - ${develocity-maven-plugin.version} - - - com.gradle - common-custom-user-data-maven-extension - ${develocity-user-data-extension.version} - - - org.codehaus.mojo - flatten-maven-plugin - ${flatten-maven-plugin.version} - - - org.codehaus.gmavenplus - gmavenplus-plugin - ${gmavenplus-plugin.version} - - - org.apache.groovy - groovy - ${groovy.version} - runtime - - - org.apache.groovy - groovy-ant - ${groovy.version} - runtime - - - - - org.jacoco - jacoco-maven-plugin - ${jacoco-maven-plugin.version} - - - org.apache.logging.log4j - log4j-changelog-maven-plugin - ${log4j-changelog-maven-plugin.version} - - - maven-artifact-plugin - ${maven-artifact-plugin.version} - - - org.simplify4u.plugins - sign-maven-plugin - ${sign-maven-plugin.version} - - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs-maven-plugin.version} - - - com.diffplug.spotless - spotless-maven-plugin - ${spotless-maven-plugin.version} - - - org.codehaus.mojo - xml-maven-plugin - ${xml-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 - - - - - vulnerability-assertion - ${vdr.url} - - - xml - - - - - - 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 - - https://logging.apache.org/xml/ns - https://logging.apache.org/xml/ns/log4j-changelog-0.xsd - true - - - - - - - - - - - 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 gplus:execute@create-distribution - - - maven-enforcer-plugin - - - enforce-distribution-arguments - - enforce - - - - - attachmentFilepathPattern - You must set an `attachmentFilepathPattern` property for the regex pattern matched against the filepath relative to the main project directory 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 - - - - - - org.codehaus.gmavenplus - gmavenplus-plugin - - - create-distribution - - execute - - - - ${project.build.directory} - ${project.build.outputTimestamp} - ${attachmentCount} - ${attachmentFilepathPattern} - ${project.build.directory}/generated-site/antora/modules/ROOT/pages/_release-notes/${project.version}.adoc - - - - - - - - - - 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 - - - - - A release cannot have SNAPSHOT dependencies - true - - - A release cannot be a SNAPSHOT version - - - true - - - - - - - - - antora - - - src/site/antora - - - - - - org.apache.logging.log4j - log4j-changelog-maven-plugin - - - export-changelog - pre-site - - export - - - ${project.build.directory}/generated-site/antora/modules/ROOT/pages - - - - - - - - - - - - maven-antrun-plugin - - - copy-antora-yml - pre-site - - run - - - - - - - - - - - maven-resources-plugin - - - filter-antora-yml - pre-site - - copy-resources - - - ${project.build.directory}/generated-site/antora - - - ${project.build.directory}/antora-yml - true - - - - - - copy-site - pre-site - - copy-resources - - - ${project.build.directory}/generated-site - - - ${project.basedir}/src/site - - antora/antora.yml - - - - - - - - - com.github.eirslett - frontend-maven-plugin - ${frontend-maven-plugin.version} - - - install-node-and-npm - pre-site - - install-node-and-npm - - - v${node.version} - ${npm.version} - - - - install-antora - pre-site - - npm - - - - - - org.codehaus.mojo - exec-maven-plugin - ${exec-maven-plugin.version} - - - run-antora - site - - exec - - - ${project.basedir}/node/node - - --eval - require('@antora/cli')(['generate', '--playbook', 'antora-playbook.yaml', '--to-dir', 'target/site']) - - - - - - - - - true - true - - - - spotbugs-exclude - - - ${maven.multiModuleProjectDirectory}/spotbugs-exclude.xml - - - - - - com.github.spotbugs - spotbugs-maven-plugin - - ${maven.multiModuleProjectDirectory}/spotbugs-exclude.xml - - - - - - - coverage - - - - org.jacoco - jacoco-maven-plugin - - - prepare-jacoco-agent - - prepare-agent - - - - report-test-coverage - - report - - - - - - org/apache/log4j/** - org/apache/logging/** - - - **/test/** - - - - - - - - diff --git a/.m2/repository/org/apache/logging/logging-parent/11.3.0/logging-parent-11.3.0.pom.sha1 b/.m2/repository/org/apache/logging/logging-parent/11.3.0/logging-parent-11.3.0.pom.sha1 deleted file mode 100644 index f5db6b3..0000000 --- a/.m2/repository/org/apache/logging/logging-parent/11.3.0/logging-parent-11.3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -01cd611f1812fbb7ae78de8bbe57c2bb4129d5f2 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/_remote.repositories b/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/_remote.repositories deleted file mode 100644 index 750dae1..0000000 --- a/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.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. -#Thu Apr 02 20:38:39 UTC 2026 -doxia-sink-api-1.0.jar>central= -doxia-sink-api-1.0.pom>central= diff --git a/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar b/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar deleted file mode 100644 index 577b8eb..0000000 Binary files a/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar.sha1 b/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar.sha1 deleted file mode 100644 index 99b0f4d..0000000 --- a/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -13f502f2fb1d4e2db6f19352c85b83277084bb98 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom b/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom deleted file mode 100644 index 61a7301..0000000 --- a/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - 4.0.0 - - - doxia - org.apache.maven.doxia - 1.0 - ../pom.xml - - - doxia-sink-api - Doxia :: Sink API - Doxia Sink API. - diff --git a/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom.sha1 b/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom.sha1 deleted file mode 100644 index 02ac303..0000000 --- a/.m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5d842372fdb4c42d78824141f7be4c0d541c983f \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/doxia/doxia/1.0/_remote.repositories b/.m2/repository/org/apache/maven/doxia/doxia/1.0/_remote.repositories deleted file mode 100644 index bd857d6..0000000 --- a/.m2/repository/org/apache/maven/doxia/doxia/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. -#Thu Apr 02 20:38:37 UTC 2026 -doxia-1.0.pom>central= diff --git a/.m2/repository/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom b/.m2/repository/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom deleted file mode 100644 index 95a6b5e..0000000 --- a/.m2/repository/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom +++ /dev/null @@ -1,253 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 10 - ../../pom/maven/pom.xml - - - org.apache.maven.doxia - doxia - 1.0 - pom - - Doxia - Doxia is a content generation framework that provides powerful techniques for generating static and dynamic content, supporting a variety of markup languages. - http://maven.apache.org/doxia/doxia - 2005 - - - - Doxia Developer List - doxia-dev@maven.apache.org - doxia-dev-subscribe@maven.apache.org - doxia-dev-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-dev/ - - http://www.mail-archive.com/doxia-dev@maven.apache.org - http://www.nabble.com/Doxia---dev-f11816.html - http://maven.doxia.dev.markmail.org/ - - - - Doxia User List - doxia-users@maven.apache.org - doxia-users-subscribe@maven.apache.org - doxia-users-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-users/ - - http://www.mail-archive.com/doxia-users@maven.apache.org - http://www.nabble.com/Doxia---Users-f14483.html - http://maven.doxia.users.markmail.org/ - - - - Doxia Commits List - doxia-commits-subscribe@maven.apache.org - doxia-commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-commits/ - - http://www.mail-archive.com/doxia-commits@maven.apache.org - http://maven.doxia.commits.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - - - doxia-core - doxia-sink-api - doxia-modules - doxia-book - doxia-maven-plugin - - - - scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia/tags/doxia-1.0 - scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia/tags/doxia-1.0 - https://svn.apache.org/viewvc/maven/doxia/doxia/tags/doxia-1.0 - - - jira - http://jira.codehaus.org/browse/DOXIA - - - - apache.website - scp://people.apache.org/www/maven.apache.org/doxia/doxia-1.0.x - - - - - ${project.version} - - - - - - org.apache.maven.doxia - doxia-sink-api - ${projectVersion} - - - org.apache.maven.doxia - doxia-core - ${projectVersion} - - - org.apache.maven.doxia - doxia-core - ${projectVersion} - test-jar - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-30 - - - org.codehaus.plexus - plexus-utils - 1.5.7 - - - - - - junit - junit - 3.8.2 - test - - - - - - - org.codehaus.plexus - plexus-maven-plugin - - - - descriptor - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 1.4 - true - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/doxia/doxia/tags - - - - maven-surefire-plugin - - never - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.5 - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 1.4 - true - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - org.apache.maven.plugins - maven-jxr-plugin - - true - - - - - - - diff --git a/.m2/repository/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom.sha1 b/.m2/repository/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom.sha1 deleted file mode 100644 index d73839b..0000000 --- a/.m2/repository/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -250d5a027daedc96539e3b3def7da7911feb6aae \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/maven-archiver/3.6.2/_remote.repositories b/.m2/repository/org/apache/maven/maven-archiver/3.6.2/_remote.repositories deleted file mode 100644 index 1f6cfda..0000000 --- a/.m2/repository/org/apache/maven/maven-archiver/3.6.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. -#Thu Apr 02 20:43:08 UTC 2026 -maven-archiver-3.6.2.jar>central= -maven-archiver-3.6.2.pom>central= diff --git a/.m2/repository/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.jar b/.m2/repository/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.jar deleted file mode 100644 index cd8a368..0000000 Binary files a/.m2/repository/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.jar.sha1 b/.m2/repository/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.jar.sha1 deleted file mode 100644 index 4822afe..0000000 --- a/.m2/repository/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a2d949d87fed6db197cc3cceec93012dd2317ca0 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.pom b/.m2/repository/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.pom deleted file mode 100644 index db54b6f..0000000 --- a/.m2/repository/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.pom +++ /dev/null @@ -1,130 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 41 - - - - org.apache.maven - maven-archiver - 3.6.2 - - Apache Maven Archiver - Provides utility methods for creating JARs and other archive files from a Maven project. - - - scm:git:https://gitbox.apache.org/repos/asf/maven-archiver.git - scm:git:https://gitbox.apache.org/repos/asf/maven-archiver.git - maven-archiver-3.6.2 - https://github.com/apache/maven-archiver/tree/${project.scm.tag} - - - jira - https://issues.apache.org/jira/issues/?jql=project%3DMSHARED+AND+component%3Dmaven-archiver - - - Jenkins - https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-archiver/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 3.2.5 - 8 - 2024-03-24T22:30:44Z - - - - - - org.junit - junit-bom - 5.10.2 - pom - import - - - - - - - - org.apache.maven - maven-core - ${mavenVersion} - provided - - - - org.codehaus.plexus - plexus-archiver - 4.9.2 - - - org.codehaus.plexus - plexus-interpolation - 1.27 - - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.assertj - assertj-core - 3.25.3 - test - - - org.mockito - mockito-core - 4.11.0 - test - - - org.slf4j - slf4j-simple - 1.7.36 - test - - - diff --git a/.m2/repository/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.pom.sha1 b/.m2/repository/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.pom.sha1 deleted file mode 100644 index 7fd6f12..0000000 --- a/.m2/repository/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1eaa320b6d9c675e83099baf7a0ecf5ca232f9ba \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/maven-parent/10/_remote.repositories b/.m2/repository/org/apache/maven/maven-parent/10/_remote.repositories deleted file mode 100644 index 3a71050..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/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. -#Thu Apr 02 20:38:37 UTC 2026 -maven-parent-10.pom>central= diff --git a/.m2/repository/org/apache/maven/maven-parent/10/maven-parent-10.pom b/.m2/repository/org/apache/maven/maven-parent/10/maven-parent-10.pom deleted file mode 100644 index 436596f..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/10/maven-parent-10.pom +++ /dev/null @@ -1,984 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 4 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 10 - 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. - http://maven.apache.org/ - 2002 - - - - - jvanzyl - Jason van Zyl - jason@maven.org - ASF - - PMC Chair - - -5 - - - aheritier - Arnaud Heritier - aheritier@apache.org - OCTO Technology - http://www.octo.com - - PMC Member - - +1 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - ASF - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - PMC Member - - +1 - - - hboutemy - Herve Boutemy - hboutemy@apache.org - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - PMC Member - - -5 - - - jstrachan - James Strachan - - PMC Member - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - PMC Member - - +8 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - PMC Member - - -6 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - ASF - - PMC Member - - +1 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - PMC Member - - -6 - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - +1 - - - snicoll - Stephane Nicoll - snicoll@apache.org - ASF - - PMC Member - - +1 - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - PMC Member - - +1 - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - PMC Member - - -7 - - - dkulp - Daniel Kulp - dkulp@apache.org - IONA - - PMC Member - - -5 - - - - - aramirez - Allan Q. Ramirez - - Committer - - - - baerrach - Barrie Treloar - - Committer - - - - bayard - Henri Yandell - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - - Committer - - +1 - - - chrisjs - Chris Stevenson - - Committer - - - - dantran - Dan Tran - - Committer - - - - dblevins - David Blevins - - Committer - - - - dlr - Daniel Rall - - Committer - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Committer - - -8 - - - felipeal - Felipe Leme - - Committer - - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - jjensen - Jeff Jensen - - Committer - - - - mkleint - Milos Kleint - - Committer - - - - nicolas - Nicolas De Loof - nicolas@apache.org - Capgemini - - Committer - - +1 - - - oching - Maria Odea B. Ching - - Committer - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Committer - - -6 - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - rgoers - Ralph Goers - - Committer - - - - rinku - Rahul Thakur - - Committer - - - - shinobu - Shinobu Kuwai - - Committer - - - - smorgrav - Torbjorn Eikli Smorgrav - - Committer - - - - ogusakov - Oleg Gusakov - - Committer - - - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://markmail.org/list/org.apache.maven.announce - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://markmail.org/list/org.apache.maven.notifications - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-10 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-10 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-10 - - - Hudson - http://ci.sonatype.org - - - mail - -
notifications@maven.apache.org
-
-
-
-
- - - maven.staging - scp://people.apache.org/www/people.apache.org/builds/maven/${project.version}/staging-repo - - - apache.snapshots - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - Apache Development Snapshot Repository - scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - UTF-8 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.3 - - - org.apache.maven.plugins - maven-clean-plugin - 2.2 - - - 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.4 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-alpha-4 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - - org.apache.maven.plugins - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.4.3 - - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-8 - - false - deploy - -Prelease - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.0 - - - org.apache.maven.plugins - maven-resources-plugin - 2.3 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-scm-plugin - 1.1 - - - org.apache.maven.plugins - maven-site-plugin - 2.0-beta-7 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - 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.0-alpha-21 - - - - - - - - - - - maven-project-info-reports-plugin - 2.1 - - - - - - - quality-checks - - - quality-checks - true - - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - clean - - clean - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.2 - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - org.codehaus.mojo - taglist-maven-plugin - 2.2 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - ${project.build.sourceEncoding} - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - http://commons.apache.org/logging/apidocs/ - http://commons.apache.org/pool/apidocs/ - http://junit.sourceforge.net/javadoc/ - http://logging.apache.org/log4j/1.2/apidocs/ - http://jakarta.apache.org/regexp/apidocs/ - http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/ - - - - - - javadoc - test-javadoc - - - - - - - - - - - release - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - ${deploy.altRepository} - 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/.m2/repository/org/apache/maven/maven-parent/10/maven-parent-10.pom.sha1 b/.m2/repository/org/apache/maven/maven-parent/10/maven-parent-10.pom.sha1 deleted file mode 100644 index 3fdf2d3..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/10/maven-parent-10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -281aafa31dfa9544070448ea8f353434f53267e4 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/maven-parent/16/_remote.repositories b/.m2/repository/org/apache/maven/maven-parent/16/_remote.repositories deleted file mode 100644 index e9046cf..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/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. -#Thu Apr 02 20:38:37 UTC 2026 -maven-parent-16.pom>central= diff --git a/.m2/repository/org/apache/maven/maven-parent/16/maven-parent-16.pom b/.m2/repository/org/apache/maven/maven-parent/16/maven-parent-16.pom deleted file mode 100644 index 1d33f56..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/16/maven-parent-16.pom +++ /dev/null @@ -1,743 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 7 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 16 - 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. - http://maven.apache.org/ - 2002 - - - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Chair - - -5 - - - aheritier - Arnaud Héritier - aheritier@apache.org - - PMC Member - - +1 - - - baerrach - Barrie Treloar - - PMC Member - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - Sonatype - - PMC Member - - +1 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - PMC Member - - -6 - - - jvanzyl - Jason van Zyl - jason@maven.org - Sonatype - - Founder - PMC Member - - -5 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - ASF - - PMC Member - - +1 - - - mkleint - Milos Kleint - - PMC Member - - - - oching - Maria Odea B. Ching - - PMC Member - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - +1 - - - rgoers - Ralph Goers - rgoers@apache.org - Intuit - -8 - - PMC Member - - - - snicoll - Stephane Nicoll - snicoll@apache.org - ASF - - PMC Member - - +1 - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - PMC Member - - +1 - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - PMC Member - - -7 - - - - - aramirez - Allan Q. Ramirez - - Committer - - - - bayard - Henri Yandell - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - chrisjs - Chris Stevenson - - Committer - - - - dantran - Dan Tran - - Committer - - - - dblevins - David Blevins - - Committer - - - - dlr - Daniel Rall - - Committer - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Committer - - -8 - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - Committer - - -5 - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - Committer - - +1 - - - felipeal - Felipe Leme - - Committer - - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - jjensen - Jeff Jensen - - Committer - - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - Committer - - +1 - - - nicolas - Nicolas De Loof - nicolas@apache.org - Capgemini - - Committer - - +1 - - - ogusakov - Oleg Gusakov - - Committer - - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - Committer - - -6 - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Committer - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Committer - - +2 - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - rinku - Rahul Thakur - - Committer - - - - shinobu - Shinobu Kuwai - - Committer - - - - smorgrav - Torbjorn Eikli Smorgrav - - Committer - - - - stephenc - Stephen Connolly - stephenc@apache.org - - Committer - - 0 - - - markh - Mark Hobson - markh@apache.org - - Committer - - 0 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://markmail.org/list/org.apache.maven.announce - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://markmail.org/list/org.apache.maven.notifications - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-16 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-16 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-16 - - - Hudson - http://grid.sonatype.org/ci - - - mail - -
notifications@maven.apache.org
-
-
-
-
- - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - - quality-checks - - - quality-checks - true - - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - clean - - clean - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.3 - - config/maven_checks.xml - config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 2.5 - - ${project.build.sourceEncoding} - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - http://commons.apache.org/logging/apidocs/ - http://commons.apache.org/pool/apidocs/ - http://junit.sourceforge.net/javadoc/ - http://logging.apache.org/log4j/1.2/apidocs/ - http://jakarta.apache.org/regexp/apidocs/ - http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://plexus.codehaus.org/plexus-classworlds/apidocs/ - http://plexus.codehaus.org/plexus-containers/plexus-container-default/apidocs/ - - - - - - javadoc - test-javadoc - - - - - - - - - -
diff --git a/.m2/repository/org/apache/maven/maven-parent/16/maven-parent-16.pom.sha1 b/.m2/repository/org/apache/maven/maven-parent/16/maven-parent-16.pom.sha1 deleted file mode 100644 index f36d5e6..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/16/maven-parent-16.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -00fed95187c0c9bfd13c08a858cb6f00245a3fa9 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/maven-parent/23/_remote.repositories b/.m2/repository/org/apache/maven/maven-parent/23/_remote.repositories deleted file mode 100644 index 3267cc2..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/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. -#Thu Apr 02 20:38:41 UTC 2026 -maven-parent-23.pom>central= diff --git a/.m2/repository/org/apache/maven/maven-parent/23/maven-parent-23.pom b/.m2/repository/org/apache/maven/maven-parent/23/maven-parent-23.pom deleted file mode 100644 index 9ee715b..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/23/maven-parent-23.pom +++ /dev/null @@ -1,1061 +0,0 @@ - - - - - - 4.0.0 - - - - org.apache - apache - 13 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 23 - 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. - http://maven.apache.org/ - 2002 - - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Chair - - Europe/Paris - - - aheritier - Arnaud Héritier - aheritier@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 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - ASF - - PMC Member - - Europe/Paris - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - PMC Member - - +1 - - - markh - Mark Hobson - markh@apache.org - - PMC Member - - 0 - - - mkleint - Milos Kleint - - PMC Member - - - - oching - Maria Odea B. Ching - - PMC Member - - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - PMC Member - - -6 - - - rfscholte - Robert Scholte - rfscholte@apache.org - - PMC Member - - Europe/Amsterdam - - - 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 - - - struberg - Mark Struberg - struberg@apache.org - - PMC Member - - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wfay - Wayne Fay - wfay@apache.org - ASF - - PMC Member - - -6 - - - - - andham - Anders Hammar - andham@apache.org - +1 - - Committer - - - - bdemers - Brian Demers - Sonatype - bdemers@apache.org - -5 - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - Sonatype - - Committer - - +1 - - - cstamas - Tamas Cservenak - Sonatype - cstamas@apache.org - +1 - - Committer - - - - dantran - Dan Tran - - Committer - - - - dbradicich - Damian Bradicich - Sonatype - dbradicich@apache.org - -5 - - Committer - - - - 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 - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - Committer - - -5 - - - jjensen - Jeff Jensen - - Committer - - - - jvanzyl - Jason van Zyl - - Committer - - -5 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - - Committer - - +1 - - - mauro - Mauro Talevi - - Committer - - - - nicolas - Nicolas de Loof - - Committer - - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - simonetripodi - Simone Tripodi - simonetripodi@apache.org - - Committer - - +1 - - - tchemit - Tony Chemit - tchemit@apache.org - CodeLutin - - Committer - - Europe/Paris - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - Committer - - +1 - - - - - aramirez - Allan Q. Ramirez - - Emeritus - - - - bayard - Henri Yandell - - Emeritus - - - - chrisjs - Chris Stevenson - - Emeritus - - - - dblevins - David Blevins - - Emeritus - - - - dlr - Daniel Rall - - Emeritus - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Emeritus - - -8 - - - felipeal - Felipe Leme - - Emeritus - - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - Emeritus - - -6 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - ogusakov - Oleg Gusakov - - Emeritus - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Emeritus - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Emeritus - - +2 - - - 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 - - - jruiz - Johnny Ruiz III - jruiz@apache.org - - Emeritus - - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - Emeritus - - +1 - - - - - - Maven User List - users-subscribe@maven.apache.org - users-unsubscribe@maven.apache.org - users@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-users - - http://www.mail-archive.com/users@maven.apache.org/ - http://maven.40175.n5.nabble.com/Maven-Users-f40176.html - http://maven.users.markmail.org/ - - - - Maven Developer List - dev-subscribe@maven.apache.org - dev-unsubscribe@maven.apache.org - dev@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-dev - - http://www.mail-archive.com/dev@maven.apache.org/ - http://maven.40175.n5.nabble.com/Maven-Developers-f142166.html - http://maven.dev.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://maven.40175.n5.nabble.com/Maven-Issues-f219593.html - http://maven.issues.markmail.org/ - - - - Maven Commits List - commits-subscribe@maven.apache.org - commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-commits/ - - http://www.mail-archive.com/commits@maven.apache.org - http://maven.40175.n5.nabble.com/Maven-Commits-f277168.html - http://maven.commits.markmail.org/ - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://maven.40175.n5.nabble.com/Maven-Announcements-f326045.html - http://maven.announce.markmail.org/ - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://maven.40175.n5.nabble.com/Maven-Notifications-f301718.html - http://maven.notifications.markmail.org/ - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-23 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-23 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-23 - - - - Jenkins - https://builds.apache.org/view/M-R/view/Maven - - - mail - -
notifications@maven.apache.org
-
-
-
-
- - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content - - - - - https://analysis.apache.org/ - ${user.home}/maven-sites - - - - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.2 - provided - - - - - - - apache.snapshots - Apache Snapshot Repository - http://repository.apache.org/snapshots - - false - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.0 - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.2 - - true - - - - org.codehaus.modello - modello-maven-plugin - 1.4.1 - - true - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.plexus - plexus-component-metadata - 1.5.5 - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-release-plugin - 2.3.2 - - true - apache-release,rat - deploy - ${arguments} - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.6 - - false - - - - - index - summary - dependency-info - modules - license - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - plugin-management - plugins - distribution-management - - - - - - - - - - rat - - - - org.apache.rat - apache-rat-plugin - - - verify - - - rat - - - - - - - - - quality-checks - - - quality-checks - true - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.7.1 - - 1.5 - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.6 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.12.4 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.9.1 - - config/maven_checks.xml - config/maven-header.txt - - - - default - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.7.1 - - 1.5 - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.3 - - - default - - jxr - test-jxr - - - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9 - - true - - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://junit.sourceforge.net/javadoc/ - http://logging.apache.org/log4j/1.2/apidocs/ - http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/ - - true - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - 3.2 - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - default - - javadoc - test-javadoc - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.2 - - - org.codehaus.sonar-plugins - maven-report - 0.1 - - - - - -
diff --git a/.m2/repository/org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1 b/.m2/repository/org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1 deleted file mode 100644 index 9369c77..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f92ae4baba6616609a29f6287626ee3f50ed7d6e \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/maven-parent/33/_remote.repositories b/.m2/repository/org/apache/maven/maven-parent/33/_remote.repositories deleted file mode 100644 index 8849592..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:42:16 UTC 2026 -maven-parent-33.pom>central= diff --git a/.m2/repository/org/apache/maven/maven-parent/33/maven-parent-33.pom b/.m2/repository/org/apache/maven/maven-parent/33/maven-parent-33.pom deleted file mode 100644 index b70190b..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/maven/maven-parent/33/maven-parent-33.pom.sha1 b/.m2/repository/org/apache/maven/maven-parent/33/maven-parent-33.pom.sha1 deleted file mode 100644 index 18459ab..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/maven/maven-parent/36/_remote.repositories b/.m2/repository/org/apache/maven/maven-parent/36/_remote.repositories deleted file mode 100644 index 62113b3..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/36/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:38:36 UTC 2026 -maven-parent-36.pom>central= diff --git a/.m2/repository/org/apache/maven/maven-parent/36/maven-parent-36.pom b/.m2/repository/org/apache/maven/maven-parent/36/maven-parent-36.pom deleted file mode 100644 index b074c48..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/36/maven-parent-36.pom +++ /dev/null @@ -1,1453 +0,0 @@ - - - - - - 4.0.0 - - - - org.apache - apache - 26 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 36 - 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-36 - - - - 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-04-18T20:36:57Z - - - - - - - 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 - 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.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.2.0 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.16.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 - 3.0.0 - - - 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 - validate - - 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 - - - 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 - test-javadoc - - - - - - - - -
diff --git a/.m2/repository/org/apache/maven/maven-parent/36/maven-parent-36.pom.sha1 b/.m2/repository/org/apache/maven/maven-parent/36/maven-parent-36.pom.sha1 deleted file mode 100644 index 59718de..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/36/maven-parent-36.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -af78602525e1c7ac4575ef2e3059b7910bb79f3a \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/maven-parent/39/_remote.repositories b/.m2/repository/org/apache/maven/maven-parent/39/_remote.repositories deleted file mode 100644 index 0d60abb..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:40 UTC 2026 -maven-parent-39.pom>central= diff --git a/.m2/repository/org/apache/maven/maven-parent/39/maven-parent-39.pom b/.m2/repository/org/apache/maven/maven-parent/39/maven-parent-39.pom deleted file mode 100644 index 028b8fa..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/maven/maven-parent/39/maven-parent-39.pom.sha1 b/.m2/repository/org/apache/maven/maven-parent/39/maven-parent-39.pom.sha1 deleted file mode 100644 index 11b27ff..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/maven/maven-parent/41/_remote.repositories b/.m2/repository/org/apache/maven/maven-parent/41/_remote.repositories deleted file mode 100644 index bebd179..0000000 --- a/.m2/repository/org/apache/maven/maven-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. -#Thu Apr 02 20:43:04 UTC 2026 -maven-parent-41.pom>central= diff --git a/.m2/repository/org/apache/maven/maven-parent/41/maven-parent-41.pom b/.m2/repository/org/apache/maven/maven-parent/41/maven-parent-41.pom deleted file mode 100644 index dc9bf71..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/41/maven-parent-41.pom +++ /dev/null @@ -1,1593 +0,0 @@ - - - - 4.0.0 - - - - org.apache - apache - 31 - - - - org.apache.maven - maven-parent - 41 - 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 - - - bmarwell - Benjamin Marwell - bmarwell@apache.org - ASF - - PMC Member - - Europe/Berlin - - - 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 - - - henning - Henning Schmiedehausen - henning@apache.org - ASF - - PMC Member - - America/Los_Angeles - - - 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 - - - kwin - Konrad Windszus - kwin@apache.org - Cognizant Netcentric - - PMC Member - - Europe/Berlin - - - mkleint - Milos Kleint - - PMC Member - - - - mthmulders - Maarten Mulders - mthmulders@apache.org - Info Support - - PMC Member - - Europe/Amsterdam - - - 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 - - - slachiewicz - Sylwester Lachiewicz - slachiewicz@apache.org - - PMC Member - - Europe/Warsaw - - - 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 - - - - 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 - - - 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 - - - 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 - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - maven-parent-41 - 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.9.0.M2 - 4.0.0 - - 3.0.0 - 1.11.2 - - ParameterNumber,MethodLength,FileLength - 2023-11-08T22:48:46Z - - - - - - - org.eclipse.sisu - org.eclipse.sisu.inject - ${version.sisu-maven-plugin} - - - org.eclipse.sisu - org.eclipse.sisu.plexus - ${version.sisu-maven-plugin} - - - org.codehaus.plexus - plexus-utils - ${version.plexus-utils} - - - org.codehaus.plexus - plexus-xml - ${version.plexus-xml} - - - - - - - - - false - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - - - - - - - org.eclipse.sisu - sisu-maven-plugin - ${version.sisu-maven-plugin} - - - index-project - - main-index - test-index - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - java-annotations - - - - - org.codehaus.modello - modello-maven-plugin - 2.1.2 - - - - 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 - - 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.1 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.21.2 - - ${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.7.0 - - - - - enforce-bytecode-version - - enforce - - - - - ${maven.compiler.target} - - - true - - - - - - com.diffplug.spotless - spotless-maven-plugin - 2.40.0 - - - - - - 2.38.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 - - - - - - - - - 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 - - - - - - - - - - java11+ - - [11,) - - - - - - com.diffplug.spotless - spotless-maven-plugin - - - - - - apache-release - - - - org.cyclonedx - cyclonedx-maven-plugin - 2.7.10 - - - - makeAggregateBom - - package - - - - - - - - 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 - - false - false - - - - 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/.m2/repository/org/apache/maven/maven-parent/41/maven-parent-41.pom.sha1 b/.m2/repository/org/apache/maven/maven-parent/41/maven-parent-41.pom.sha1 deleted file mode 100644 index 7e70c55..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/41/maven-parent-41.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c60098252d5841553d75a7d7382db46e6859d84d \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/maven-parent/42/_remote.repositories b/.m2/repository/org/apache/maven/maven-parent/42/_remote.repositories deleted file mode 100644 index 5e336c9..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/42/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:42:16 UTC 2026 -maven-parent-42.pom>central= diff --git a/.m2/repository/org/apache/maven/maven-parent/42/maven-parent-42.pom b/.m2/repository/org/apache/maven/maven-parent/42/maven-parent-42.pom deleted file mode 100644 index ce7eb25..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/42/maven-parent-42.pom +++ /dev/null @@ -1,1616 +0,0 @@ - - - - 4.0.0 - - - - org.apache - apache - 32 - - - - org.apache.maven - maven-parent - 42 - 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 - - - bmarwell - Benjamin Marwell - bmarwell@apache.org - ASF - - PMC Member - - Europe/Berlin - - - 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 - - - henning - Henning Schmiedehausen - henning@apache.org - ASF - - PMC Member - - America/Los_Angeles - - - 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 - - - kwin - Konrad Windszus - kwin@apache.org - Cognizant Netcentric - - PMC Member - - Europe/Berlin - - - mkleint - Milos Kleint - - PMC Member - - - - mthmulders - Maarten Mulders - mthmulders@apache.org - Info Support - - PMC Member - - Europe/Amsterdam - - - 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 - - - slachiewicz - Sylwester Lachiewicz - slachiewicz@apache.org - - PMC Member - - Europe/Warsaw - - - 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 - - - - 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 - - - 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 - - - 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-extensions - maven-plugins - maven-shared-components - maven-skins - doxia-tools - docs - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - maven-parent-42 - 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 - ${javaVersion} - ${javaVersion} - true - - none - ${user.home}/maven-sites - - ../.. - true - 0.9.0.M2 - 4.0.1 - - 3.0.0 - 5.10.2 - 1.11.2 - - ParameterNumber,MethodLength,FileLength - 2024-04-13T21:16:10Z - - - - - - - org.eclipse.sisu - org.eclipse.sisu.inject - ${version.sisu-maven-plugin} - - - org.eclipse.sisu - org.eclipse.sisu.plexus - ${version.sisu-maven-plugin} - - - org.codehaus.plexus - plexus-utils - ${version.plexus-utils} - - - org.codehaus.plexus - plexus-xml - ${version.plexus-xml} - - - org.junit - junit-bom - ${versions.junit5} - pom - import - - - - - - - - - false - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - - - - - - - org.eclipse.sisu - sisu-maven-plugin - ${version.sisu-maven-plugin} - - - index-project - - main-index - test-index - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${maven.compiler.proc} - ${maven.compiler.showDeprecation} - - - - org.apache.maven.plugins - maven-plugin-plugin - - - java-annotations - - - - - org.codehaus.modello - modello-maven-plugin - 2.3.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 - - 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.2 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.21.2 - - ${maven.compiler.target} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - 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.8.0 - - - - - enforce-bytecode-version - - enforce - - - - - ${maven.compiler.target} - - - true - - - - - - com.diffplug.spotless - spotless-maven-plugin - 2.43.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 - - - - - - - - - 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-site-plugin - - - attach-descriptor - - attach-descriptor - - false - - - default-site - false - - true - - - - - - - - - - - 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 - - - - - - - - - - java11+ - - [11,) - - - - - - com.diffplug.spotless - spotless-maven-plugin - - - - - - apache-release - - - - org.cyclonedx - cyclonedx-maven-plugin - 2.8.0 - - - - makeAggregateBom - - package - - - - - - - - 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 - - false - false - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - default - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - true - - - - 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/.m2/repository/org/apache/maven/maven-parent/42/maven-parent-42.pom.sha1 b/.m2/repository/org/apache/maven/maven-parent/42/maven-parent-42.pom.sha1 deleted file mode 100644 index 07bf133..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/42/maven-parent-42.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c47c2942c1347b1f221c113c96056a8ba44a2f49 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/maven-parent/43/_remote.repositories b/.m2/repository/org/apache/maven/maven-parent/43/_remote.repositories deleted file mode 100644 index f92c7ad..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/43/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:37:41 UTC 2026 -maven-parent-43.pom>central= diff --git a/.m2/repository/org/apache/maven/maven-parent/43/maven-parent-43.pom b/.m2/repository/org/apache/maven/maven-parent/43/maven-parent-43.pom deleted file mode 100644 index 3bb7bea..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/43/maven-parent-43.pom +++ /dev/null @@ -1,1615 +0,0 @@ - - - - 4.0.0 - - - - org.apache - apache - 33 - - - - org.apache.maven - maven-parent - 43 - 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 - - - bmarwell - Benjamin Marwell - bmarwell@apache.org - ASF - - PMC Member - - Europe/Berlin - - - 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 - - - henning - Henning Schmiedehausen - henning@apache.org - ASF - - PMC Member - - America/Los_Angeles - - - 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 - - - kwin - Konrad Windszus - kwin@apache.org - Cognizant Netcentric - - PMC Member - - Europe/Berlin - - - mkleint - Milos Kleint - - PMC Member - - - - mthmulders - Maarten Mulders - mthmulders@apache.org - Info Support - - PMC Member - - Europe/Amsterdam - - - 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 - - - slachiewicz - Sylwester Lachiewicz - slachiewicz@apache.org - - PMC Member - - Europe/Warsaw - - - 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 - - - - 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 - - - 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 - - - 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-extensions - maven-plugins - maven-shared-components - maven-skins - doxia-tools - docs - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - maven-parent-43 - 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 - ${javaVersion} - ${javaVersion} - true - - none - ${user.home}/maven-sites - - ../.. - true - 0.9.0.M3 - 4.0.1 - - 3.0.1 - 5.10.3 - 1.12.0 - 6 - 2024-07-04T20:44:34Z - - - - - - - org.eclipse.sisu - org.eclipse.sisu.inject - ${version.sisu-maven-plugin} - - - org.eclipse.sisu - org.eclipse.sisu.plexus - ${version.sisu-maven-plugin} - - - org.codehaus.plexus - plexus-utils - ${version.plexus-utils} - - - org.codehaus.plexus - plexus-xml - ${version.plexus-xml} - - - org.junit - junit-bom - ${versions.junit5} - pom - import - - - - - - - - - false - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - - - - - - - org.eclipse.sisu - sisu-maven-plugin - ${version.sisu-maven-plugin} - - - index-project - - main-index - test-index - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${maven.compiler.proc} - ${maven.compiler.showDeprecation} - - - - org.apache.maven.plugins - maven-plugin-plugin - - - java-annotations - - - - - org.codehaus.modello - modello-maven-plugin - 2.4.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 - - config/maven_checks_nocodestyle.xml - - - src/main/java - - - src/test/java - - - - - - org.apache.maven.shared - maven-shared-resources - ${version.maven-shared-resources} - - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.4.0 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.23.0 - - ${maven.compiler.target} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-toolchains-plugin - 3.2.0 - - - org.codehaus.mojo - taglist-maven-plugin - 3.1.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.8.0 - - - - - enforce-bytecode-version - - enforce - - - - - ${maven.compiler.target} - - - true - - - - - - com.diffplug.spotless - spotless-maven-plugin - 2.43.0 - - - - - - - - config/maven-eclipse-importorder.txt - - - config/maven-header-plain.txt - - - - - false - - true - - - - true - - - - - org.apache.maven.shared - maven-shared-resources - ${version.maven-shared-resources} - - - - - - ${spotless.action} - - process-sources - - - - - - - - - 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-site-plugin - - - attach-descriptor - - attach-descriptor - - false - - - default-site - false - - true - - - - - - - - - - - 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 - - - - - - - - - - java11+ - - [11,) - - - - - - com.diffplug.spotless - spotless-maven-plugin - - - - - - apache-release - - - - org.cyclonedx - cyclonedx-maven-plugin - 2.8.0 - - - - makeAggregateBom - - package - - - - - - - - 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 - - false - false - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - default - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - true - - - - default - - cpd - pmd - - - - - - org.apache.maven.plugins - maven-jxr-plugin - - - default - - jxr - test-jxr - - - - - - - org.codehaus.mojo - taglist-maven-plugin - - true - - - - 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/.m2/repository/org/apache/maven/maven-parent/43/maven-parent-43.pom.sha1 b/.m2/repository/org/apache/maven/maven-parent/43/maven-parent-43.pom.sha1 deleted file mode 100644 index c14ca6a..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/43/maven-parent-43.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b9346196901d4f22b4f92a3c3f0d21d436308b03 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/maven-parent/44/_remote.repositories b/.m2/repository/org/apache/maven/maven-parent/44/_remote.repositories deleted file mode 100644 index ecc533b..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/44/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:37:41 UTC 2026 -maven-parent-44.pom>central= diff --git a/.m2/repository/org/apache/maven/maven-parent/44/maven-parent-44.pom b/.m2/repository/org/apache/maven/maven-parent/44/maven-parent-44.pom deleted file mode 100644 index 06a3721..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/44/maven-parent-44.pom +++ /dev/null @@ -1,1664 +0,0 @@ - - - - 4.0.0 - - - - org.apache - apache - 34 - - - - org.apache.maven - maven-parent - 44 - 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 - - - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - ASF - - PMC Chair - - Europe/Paris - - - 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 - - - bmarwell - Benjamin Marwell - bmarwell@apache.org - ASF - - PMC Member - - Europe/Berlin - - - 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 - - - henning - Henning Schmiedehausen - henning@apache.org - ASF - - PMC Member - - America/Los_Angeles - - - 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 - - - kwin - Konrad Windszus - kwin@apache.org - Cognizant Netcentric - - PMC Member - - Europe/Berlin - - - mkleint - Milos Kleint - - PMC Member - - - - mthmulders - Maarten Mulders - mthmulders@apache.org - Info Support - - PMC Member - - Europe/Amsterdam - - - 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 - - - slachiewicz - Sylwester Lachiewicz - slachiewicz@apache.org - - PMC Member - - Europe/Warsaw - - - 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 - - - - 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 - - - mauro - Mauro Talevi - - Committer - - - - mbuenger - Matthias Bünger - mbuenger@apache.org - - Committer - - Europe/Berlin - - - 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 - - - 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-extensions - maven-plugins - maven-shared-components - maven-skins - doxia-tools - docs - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git - v44 - 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 - ${javaVersion} - ${javaVersion} - true - true - - none - ${user.home}/maven-sites - - ../.. - LATEST - true - 0.9.0.M3 - 4.0.2 - - 3.0.1 - 5.12.1 - 6 - 2025-03-15T19:28:22Z - - - - - - - org.eclipse.sisu - org.eclipse.sisu.inject - ${version.sisu-maven-plugin} - - - org.eclipse.sisu - org.eclipse.sisu.plexus - ${version.sisu-maven-plugin} - - - org.codehaus.plexus - plexus-utils - ${version.plexus-utils} - - - org.codehaus.plexus - plexus-xml - ${version.plexus-xml} - - - org.junit - junit-bom - ${versions.junit5} - pom - import - - - - - - - - - org.eclipse.sisu - sisu-maven-plugin - ${version.sisu-maven-plugin} - - - index-project - - main-index - test-index - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${maven.compiler.proc} - ${maven.compiler.showDeprecation} - - - - org.apache.maven.plugins - maven-plugin-plugin - - - java-annotations - - - - - org.codehaus.modello - modello-maven-plugin - 2.4.0 - - 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. - - - - - 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 - - config/maven_checks_nocodestyle.xml - ${checkstyle.includeTestSourceDirectory} - true - - - - - org.apache.maven.shared - maven-shared-resources - ${version.maven-shared-resources} - - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.6.0 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.26.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 - - v@{project.version} - - - - org.apache.maven.plugins - maven-toolchains-plugin - 3.2.0 - - - org.codehaus.mojo - taglist-maven-plugin - 3.2.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 - - ${invoker.streamLogsOnFailures} - - true - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.codehaus.mojo - extra-enforcer-rules - 1.9.0 - - - - - enforce-bytecode-version - - enforce - - - - - ${maven.compiler.target} - - - true - - - - - - com.diffplug.spotless - spotless-maven-plugin - 2.44.3 - - - - - - - - config/maven-eclipse-importorder.txt - - - config/maven-header-plain.txt - - - - PRESERVE - - - false - - true - true - - - - true - - - - - org.apache.maven.shared - maven-shared-resources - ${version.maven-shared-resources} - - - - - - ${spotless.action} - - process-sources - - - - - - - - - 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-site-plugin - - - attach-descriptor - - attach-descriptor - - false - - - default-site - false - - true - - - - - - - - - - - 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 - - - - - - - - - - java11+ - - [11,) - - - - - - com.diffplug.spotless - spotless-maven-plugin - - - - - - apache-release - - - - org.cyclonedx - cyclonedx-maven-plugin - 2.9.1 - - - - makeAggregateBom - - package - - - - - - - - format-check - - - env.CI - - - - check - - - - format - - - !env.CI - - - - 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 - - false - false - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - default - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - true - - - - default - - cpd - pmd - - - - - - org.apache.maven.plugins - maven-jxr-plugin - - - default - - jxr - test-jxr - - - - - - - org.codehaus.mojo - taglist-maven-plugin - - true - - - - 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 - - - - - - - - - use-apache-snapshots - - - apache.snapshots - - - - - - false - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - - - - - false - - apache.snapshots - Apache Snapshot Repository - https://repository.apache.org/snapshots - - - - -
diff --git a/.m2/repository/org/apache/maven/maven-parent/44/maven-parent-44.pom.sha1 b/.m2/repository/org/apache/maven/maven-parent/44/maven-parent-44.pom.sha1 deleted file mode 100644 index 066fe5a..0000000 --- a/.m2/repository/org/apache/maven/maven-parent/44/maven-parent-44.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e7857131e733520e8e020e02f0d90f269cc37342 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/_remote.repositories b/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/_remote.repositories deleted file mode 100644 index 26b9d06..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.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. -#Thu Apr 02 20:37:41 UTC 2026 -maven-compiler-plugin-3.14.0.jar>central= -maven-compiler-plugin-3.14.0.pom>central= diff --git a/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/maven-compiler-plugin-3.14.0.jar b/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/maven-compiler-plugin-3.14.0.jar deleted file mode 100644 index 4becf0a..0000000 Binary files a/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/maven-compiler-plugin-3.14.0.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/maven-compiler-plugin-3.14.0.jar.sha1 b/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/maven-compiler-plugin-3.14.0.jar.sha1 deleted file mode 100644 index f46a485..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/maven-compiler-plugin-3.14.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8da644b4b26eb34e626ad9482a884a89e6657901 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/maven-compiler-plugin-3.14.0.pom b/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/maven-compiler-plugin-3.14.0.pom deleted file mode 100644 index 251df43..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/maven-compiler-plugin-3.14.0.pom +++ /dev/null @@ -1,278 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.plugins - maven-plugins - 43 - - - - maven-compiler-plugin - 3.14.0 - maven-plugin - - Apache Maven Compiler Plugin - The Compiler Plugin is used to compile the sources of your project. - 2001 - - - - Jan Sievers - - - - - 3.6.3 - - - - scm:git:https://github.com/apache/maven-compiler-plugin.git - scm:git:https://github.com/apache/maven-compiler-plugin.git - maven-compiler-plugin-3.14.0 - https://github.com/apache/maven-compiler-plugin/tree/${project.scm.tag} - - - GitHub - https://github.com/apache/maven-compiler-plugin/issues - - - Jenkins - https://ci-maven.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.9.9 - 2.15.0 - - 2.4.21 - 3.7.0 - 2.5.14-02 - 1.4.0 - 8 - false - 2025-02-17T21:03:09Z - org.apache.maven.plugins.compiler.its - - - - - 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.4.2 - - - org.apache.maven.shared - maven-shared-incremental - 1.1 - - - org.apache.maven - maven-core - - - org.apache.maven - maven-plugin-api - - - org.apache.maven.shared - maven-shared-utils - - - org.codehaus.plexus - plexus-component-annotations - - - - - - org.codehaus.plexus - plexus-java - ${plexus-java.version} - - - - org.codehaus.plexus - plexus-compiler-api - ${plexusCompilerVersion} - - - org.codehaus.plexus - plexus-compiler-manager - ${plexusCompilerVersion} - - - org.codehaus.plexus - plexus-compiler-javac - ${plexusCompilerVersion} - runtime - - - org.codehaus.plexus - plexus-utils - - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 4.0.0-alpha-2 - test - - - - org.codehaus.plexus - plexus-xml - test - - - org.mockito - mockito-core - 4.11.0 - test - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-params - test - - - - - - - false - - - true - - plexus.snapshots - https://oss.sonatype.org/content/repositories/plexus-snapshots - - - - - - - - com.diffplug.spotless - spotless-maven-plugin - - - - src/**/*.java - - - - - - - - - - org.eclipse.sisu - sisu-maven-plugin - - - - - - - run-its - - - - - org.apache.maven.plugins - maven-invoker-plugin - - - integration-test - - true - src/it - ${project.build.directory}/it - - */pom.xml - extras/*/pom.xml - multirelease-patterns/*/pom.xml - - - - setup*/pom.xml - - verify - ${project.build.directory}/local-repo - src/it/settings.xml - ${maven.it.failure.ignore} - true - - clean - test-compile - - - - - - - - - - - diff --git a/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/maven-compiler-plugin-3.14.0.pom.sha1 b/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/maven-compiler-plugin-3.14.0.pom.sha1 deleted file mode 100644 index 199b9b0..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/3.14.0/maven-compiler-plugin-3.14.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2462cca3877549cf4c116cf5e5b6b06a87695ab1 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/_remote.repositories b/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/_remote.repositories deleted file mode 100644 index eb3b8e8..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.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. -#Thu Apr 02 20:42:52 UTC 2026 -maven-jar-plugin-3.4.2.jar>central= -maven-jar-plugin-3.4.2.pom>central= diff --git a/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.jar b/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.jar deleted file mode 100644 index c1c3ad6..0000000 Binary files a/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.jar.sha1 b/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.jar.sha1 deleted file mode 100644 index 39e09c7..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0a0a87aac2d20eb362d902d560294294fb26eacb \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.pom b/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.pom deleted file mode 100644 index 910e227..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.pom +++ /dev/null @@ -1,244 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.plugins - maven-plugins - 42 - - - - maven-jar-plugin - 3.4.2 - maven-plugin - - Apache Maven JAR Plugin - Builds a Java Archive (JAR) file from the compiled project classes and resources. - - - - Jerome Lacoste - jerome@coffeebreaks.org - CoffeeBreaks - http://www.coffeebreaks.org - - Java Developer - - +1 - - - - - ${mavenVersion} - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-jar-plugin.git - scm:git:https://gitbox.apache.org/repos/asf/maven-jar-plugin.git - maven-jar-plugin-3.4.2 - https://github.com/apache/maven-jar-plugin/tree/${project.scm.tag} - - - JIRA - https://issues.apache.org/jira/browse/MJAR - - - Jenkins - https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-jar-plugin/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 8 - 3.6.3 - 3.6.2 - 2024-06-16T12:09:37Z - - - - - - commons-io - commons-io - 2.16.1 - - - - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - provided - - - org.apache.maven - maven-core - ${mavenVersion} - provided - - - org.apache.maven - maven-artifact - ${mavenVersion} - provided - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - - - org.apache.maven.shared - file-management - 3.1.0 - - - org.apache.maven - maven-archiver - ${mavenArchiverVersion} - - - - - org.codehaus.plexus - plexus-archiver - 4.9.2 - - - - - javax.inject - javax.inject - 1 - - - org.slf4j - slf4j-api - 1.7.36 - - - - - org.junit.jupiter - junit-jupiter-api - test - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 4.0.0-alpha-2 - test - - - org.mockito - mockito-core - 4.11.0 - test - - - org.mockito - mockito-junit-jupiter - 4.11.0 - test - - - org.codehaus.plexus - plexus-xml - test - - - - - - - true - src/main/filtered-resources - - - - - - org.apache.rat - apache-rat-plugin - - - - src/it/mjar-71-01/src/main/resources/META-INF/MANIFEST.MF - src/it/mjar-71-02/src/main/resources/META-INF/MANIFEST.MF - - - - - - - - - org.eclipse.sisu - sisu-maven-plugin - - - - - - - run-its - - - - org.apache.maven.plugins - maven-invoker-plugin - - - clean - package - - true - - - - integration-test - - install - integration-test - - - - - - - - - diff --git a/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.pom.sha1 b/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.pom.sha1 deleted file mode 100644 index 492d086..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -388d7cde37747422363dced3f5326238a7a578af \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/plugins/maven-plugins/39/_remote.repositories b/.m2/repository/org/apache/maven/plugins/maven-plugins/39/_remote.repositories deleted file mode 100644 index 512825f..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:40 UTC 2026 -maven-plugins-39.pom>central= diff --git a/.m2/repository/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom b/.m2/repository/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom deleted file mode 100644 index 32cacdb..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom.sha1 b/.m2/repository/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom.sha1 deleted file mode 100644 index acf6c37..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/maven/plugins/maven-plugins/42/_remote.repositories b/.m2/repository/org/apache/maven/plugins/maven-plugins/42/_remote.repositories deleted file mode 100644 index b10b270..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-plugins/42/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:42:52 UTC 2026 -maven-plugins-42.pom>central= diff --git a/.m2/repository/org/apache/maven/plugins/maven-plugins/42/maven-plugins-42.pom b/.m2/repository/org/apache/maven/plugins/maven-plugins/42/maven-plugins-42.pom deleted file mode 100644 index 6776123..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-plugins/42/maven-plugins-42.pom +++ /dev/null @@ -1,222 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven - maven-parent - 42 - - - 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-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 - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - false - - - default-site - false - - true - - - - - - - - - - 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/.m2/repository/org/apache/maven/plugins/maven-plugins/42/maven-plugins-42.pom.sha1 b/.m2/repository/org/apache/maven/plugins/maven-plugins/42/maven-plugins-42.pom.sha1 deleted file mode 100644 index 17f872c..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-plugins/42/maven-plugins-42.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -29c252d69753502d9e9435d05c1814c79e88f16e \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/plugins/maven-plugins/43/_remote.repositories b/.m2/repository/org/apache/maven/plugins/maven-plugins/43/_remote.repositories deleted file mode 100644 index a5d661b..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-plugins/43/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:37:41 UTC 2026 -maven-plugins-43.pom>central= diff --git a/.m2/repository/org/apache/maven/plugins/maven-plugins/43/maven-plugins-43.pom b/.m2/repository/org/apache/maven/plugins/maven-plugins/43/maven-plugins-43.pom deleted file mode 100644 index bc429d0..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-plugins/43/maven-plugins-43.pom +++ /dev/null @@ -1,214 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven - maven-parent - 43 - - - 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.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 - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - false - - - default-site - false - - true - - - - - - - - - - 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/.m2/repository/org/apache/maven/plugins/maven-plugins/43/maven-plugins-43.pom.sha1 b/.m2/repository/org/apache/maven/plugins/maven-plugins/43/maven-plugins-43.pom.sha1 deleted file mode 100644 index 1f04a28..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-plugins/43/maven-plugins-43.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f030fc4091a996ce3990bd7da5bcc9cb4561ca46 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/plugins/maven-resources-plugin/3.3.1/_remote.repositories b/.m2/repository/org/apache/maven/plugins/maven-resources-plugin/3.3.1/_remote.repositories deleted file mode 100644 index 89a617e..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:40 UTC 2026 -maven-resources-plugin-3.3.1.jar>central= -maven-resources-plugin-3.3.1.pom>central= diff --git a/.m2/repository/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar b/.m2/repository/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar deleted file mode 100644 index 6a792bc..0000000 Binary files a/.m2/repository/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar.sha1 b/.m2/repository/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar.sha1 deleted file mode 100644 index f0a8192..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom b/.m2/repository/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom deleted file mode 100644 index 3cf203c..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom.sha1 b/.m2/repository/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom.sha1 deleted file mode 100644 index 5e266d5..0000000 --- a/.m2/repository/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/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/_remote.repositories b/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/_remote.repositories deleted file mode 100644 index 0f72af3..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.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. -#Thu Apr 02 20:43:13 UTC 2026 -maven-shade-plugin-3.6.0.jar>central= -maven-shade-plugin-3.6.0.pom>central= diff --git a/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/maven-shade-plugin-3.6.0.jar b/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/maven-shade-plugin-3.6.0.jar deleted file mode 100644 index 354fc37..0000000 Binary files a/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/maven-shade-plugin-3.6.0.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/maven-shade-plugin-3.6.0.jar.sha1 b/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/maven-shade-plugin-3.6.0.jar.sha1 deleted file mode 100644 index 2ce20ae..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/maven-shade-plugin-3.6.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1c68587ad8241b48311e9b8e50c44484e3f3da00 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/maven-shade-plugin-3.6.0.pom b/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/maven-shade-plugin-3.6.0.pom deleted file mode 100644 index c9ae414..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/maven-shade-plugin-3.6.0.pom +++ /dev/null @@ -1,344 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.plugins - maven-plugins - 42 - - - - maven-shade-plugin - 3.6.0 - maven-plugin - - Apache Maven Shade Plugin - Repackages the project classes together with their dependencies into a single uber-jar, optionally renaming classes - or removing unused classes. - - - - Trask Stalnaker - - - Anthony Dahanne - - - Fabiano Cipriano de Oliveira - - - Markus Karg - - - Torsten Curdt - - - - - 3.6.3 - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-shade-plugin.git - scm:git:https://gitbox.apache.org/repos/asf/maven-shade-plugin.git - maven-shade-plugin-3.6.0 - https://github.com/apache/maven-shade-plugin/tree/${project.scm.tag} - - - jira - https://issues.apache.org/jira/browse/MSHADE - - - Jenkins - https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-shade-plugin/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 3.9.7 - 8 - ${project.version} - 9.7 - 1.7.36 - 2024-05-28T15:15:36Z - - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - provided - - - org.apache.maven - maven-model - ${mavenVersion} - provided - - - org.apache.maven - maven-core - ${mavenVersion} - provided - - - org.apache.maven - maven-artifact - ${mavenVersion} - provided - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - - - org.codehaus.plexus - plexus-utils - 3.5.1 - - - - - javax.inject - javax.inject - 1 - provided - - - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.ow2.asm - asm - ${asmVersion} - - - org.ow2.asm - asm-commons - ${asmVersion} - - - - org.jdom - jdom2 - 2.0.6.1 - - - org.apache.commons - commons-compress - 1.26.2 - - - commons-io - commons-io - 2.16.1 - - - org.vafer - jdependency - 2.10 - - - - - - org.eclipse.sisu - org.eclipse.sisu.plexus - test - - - com.google.inject - guice - 5.1.0 - test - - - junit - junit - 4.13.2 - test - - - org.hamcrest - hamcrest-core - 2.2 - test - - - org.xmlunit - xmlunit-legacy - 2.10.0 - test - - - org.mockito - mockito-core - 3.12.4 - test - - - org.slf4j - slf4j-simple - ${slf4j.version} - test - - - org.apache.maven - maven-compat - ${mavenVersion} - test - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 3.3.0 - test - - - - - - - - org.apache.rat - apache-rat-plugin - - - - src/it/mrm/repository/services-resource-transformer/*/META-INF/services/org.apache.maven.Shade - src/it/mrm/repository/services-resource-transformer-with-reloc-includes-excludes/*/META-INF/services/org.apache.maven.shade - rel-path-test-files/** - src/it/projects/dep-reduced-pom-use-base-version/repo/org/apache/maven/its/shade/drp/a/0.1-SNAPSHOT/_maven.repositories - src/it/projects/mshade-123/sample.txt - src/it/projects/MSHADE-133/src/main/resources/myConfig.yml - src/it/projects/rerun-with-reloc/src/main/resources/some-ordinary-resource.txt - src/it/projects/rerun-without-reloc/src/main/resources/some-ordinary-resource.txt - src/it/projects/MSHADE-182/src/main/resources/META-INF/services/relocateme.Service - src/it/projects/MSHADE-390-sisu-index/** - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-bytecode-version - - - - - module-info - - - org.vafer:jdependency - - - - - - - - - - - - - org.eclipse.sisu - sisu-maven-plugin - - - - - - - run-its - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - org.apache.maven.plugins - maven-invoker-plugin - - - package - - true - src/it/projects - src/it/mrm/settings.xml - - org.apache.maven.plugins:maven-shade-plugin:${project.version}:test-jar - - - - - org.codehaus.mojo - mrm-maven-plugin - 1.6.0 - - - - src/it/mrm/repository - - target/mock-repo - - - - - - - - start - stop - - - - - - - - - diff --git a/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/maven-shade-plugin-3.6.0.pom.sha1 b/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/maven-shade-plugin-3.6.0.pom.sha1 deleted file mode 100644 index 64e447e..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-shade-plugin/3.6.0/maven-shade-plugin-3.6.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6ecac7852b6fd5538b2a6af6c9361cd302c8558d \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/_remote.repositories b/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/_remote.repositories deleted file mode 100644 index cafd927..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/_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. -#Thu Apr 02 20:37:41 UTC 2026 -maven-surefire-plugin-3.5.3.jar>central= -maven-surefire-plugin-3.5.3.pom>central= diff --git a/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/maven-surefire-plugin-3.5.3.jar b/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/maven-surefire-plugin-3.5.3.jar deleted file mode 100644 index 41f967f..0000000 Binary files a/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/maven-surefire-plugin-3.5.3.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/maven-surefire-plugin-3.5.3.jar.sha1 b/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/maven-surefire-plugin-3.5.3.jar.sha1 deleted file mode 100644 index 1d3658b..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/maven-surefire-plugin-3.5.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e8a340079d94a7375a7c366c9cf1ab445fc309a6 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/maven-surefire-plugin-3.5.3.pom b/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/maven-surefire-plugin-3.5.3.pom deleted file mode 100644 index 101372e..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/maven-surefire-plugin-3.5.3.pom +++ /dev/null @@ -1,176 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.surefire - surefire - 3.5.3 - - - org.apache.maven.plugins - maven-surefire-plugin - maven-plugin - - Maven Surefire Plugin - Maven Surefire MOJO in maven-surefire-plugin. - - - ${mavenVersion} - - - - Surefire - Failsafe - - - - - org.slf4j - slf4j-simple - - - - org.apache.maven.surefire - surefire-api - ${project.version} - - - org.apache.maven.surefire - surefire-extensions-api - ${project.version} - - - org.apache.maven.surefire - maven-surefire-common - ${project.version} - - - org.apache.maven - maven-plugin-api - provided - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - junit - junit - test - - - org.junit.vintage - junit-vintage-engine - test - - - org.assertj - assertj-core - test - - - - - - - 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.5.2 - - - - - maven-assembly-plugin - - - build-site - - single - - package - - - src/assembly/site-source.xml - - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-report-plugin - - - - - - - reporting - - - - org.apache.maven.plugins - maven-changes-plugin - - false - - - - - jira-report - - - - - - - - - diff --git a/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/maven-surefire-plugin-3.5.3.pom.sha1 b/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/maven-surefire-plugin-3.5.3.pom.sha1 deleted file mode 100644 index 59c0d04..0000000 --- a/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/3.5.3/maven-surefire-plugin-3.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -83a51c0fb63bb2b03f0d1897ae3313f758cf36a7 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/_remote.repositories b/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/_remote.repositories deleted file mode 100644 index cb4735c..0000000 --- a/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.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. -#Thu Apr 02 20:38:39 UTC 2026 -maven-reporting-api-3.0.jar>central= -maven-reporting-api-3.0.pom>central= diff --git a/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar b/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar deleted file mode 100644 index 5e76d45..0000000 Binary files a/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar.sha1 b/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar.sha1 deleted file mode 100644 index 5239be5..0000000 --- a/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b2541dd07d08cd5eff9bd4554a2ad6a4198e2dfe \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom b/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom deleted file mode 100644 index fdf2b89..0000000 --- a/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 15 - - - org.apache.maven.reporting - maven-reporting-api - 3.0 - - Maven Reporting API - API to manage report generation. - - - - vsiveton - Vincent Siveton - vincent.siveton@gmail.com - - Java Developer - - -5 - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-reporting-api-3.0 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-reporting-api-3.0 - http://svn.apache.org/viewvc/maven/shared/tags/maven-reporting-api-3.0 - - - - jira - http://jira.codehaus.org/browse/MSHARED/component/14413 - - - - - org.apache.maven.doxia - doxia-sink-api - 1.0 - - - diff --git a/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom.sha1 b/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom.sha1 deleted file mode 100644 index d6e17f8..0000000 --- a/.m2/repository/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -eca7bd81ad86e6d8a978f37e1d077fee5c59d41e \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/_remote.repositories b/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/_remote.repositories deleted file mode 100644 index 3432650..0000000 --- a/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.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. -#Thu Apr 02 20:42:17 UTC 2026 -maven-resolver-api-1.4.1.jar>central= -maven-resolver-api-1.4.1.pom>central= diff --git a/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.jar b/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.jar deleted file mode 100644 index f3790a5..0000000 Binary files a/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.jar.sha1 b/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.jar.sha1 deleted file mode 100644 index b9481df..0000000 --- a/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ceee6b7ea1bc252afa585fa32f76c2cda206bdcd \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.pom b/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.pom deleted file mode 100644 index ced6a5f..0000000 --- a/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.resolver - maven-resolver - 1.4.1 - - - maven-resolver-api - - Maven Artifact Resolver API - - The application programming interface for the repository system. - - - - org.apache.maven.resolver - ${Automatic-Module-Name}.api - - - - - junit - junit - test - - - org.hamcrest - hamcrest-core - test - - - org.mockito - mockito-core - test - - - - - - - - org.apache.felix - maven-bundle-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.directory}/osgi/MANIFEST.MF - - - - - - diff --git a/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.pom.sha1 b/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.pom.sha1 deleted file mode 100644 index 8c80336..0000000 --- a/.m2/repository/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4eda1737c26ab3517013e30d9254c868c7097013 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/_remote.repositories b/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/_remote.repositories deleted file mode 100644 index 540683c..0000000 --- a/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.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. -#Thu Apr 02 20:42:17 UTC 2026 -maven-resolver-util-1.4.1.jar>central= -maven-resolver-util-1.4.1.pom>central= diff --git a/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.jar b/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.jar deleted file mode 100644 index d4f4de3..0000000 Binary files a/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.jar.sha1 b/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.jar.sha1 deleted file mode 100644 index 4adf6e9..0000000 --- a/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3f6d4f4bc3e24b46a776b47ccfeaed9d2ed01549 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.pom b/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.pom deleted file mode 100644 index cb22a61..0000000 --- a/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.pom +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.resolver - maven-resolver - 1.4.1 - - - maven-resolver-util - - Maven Artifact Resolver Utilities - - A collection of utility classes to ease usage of the repository system. - - - - org.apache.maven.resolver.util - ${Automatic-Module-Name} - - - - - org.apache.maven.resolver - maven-resolver-api - - - org.apache.maven.resolver - maven-resolver-test-util - test - - - junit - junit - test - - - org.hamcrest - hamcrest-core - test - - - - - - - org.apache.felix - maven-bundle-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.directory}/osgi/MANIFEST.MF - - - - - - diff --git a/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.pom.sha1 b/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.pom.sha1 deleted file mode 100644 index 4fe9ec0..0000000 --- a/.m2/repository/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bf9f92c4886f8281a215b486fc0ccc2242b809b8 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/resolver/maven-resolver/1.4.1/_remote.repositories b/.m2/repository/org/apache/maven/resolver/maven-resolver/1.4.1/_remote.repositories deleted file mode 100644 index 809345f..0000000 --- a/.m2/repository/org/apache/maven/resolver/maven-resolver/1.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. -#Thu Apr 02 20:42:15 UTC 2026 -maven-resolver-1.4.1.pom>central= diff --git a/.m2/repository/org/apache/maven/resolver/maven-resolver/1.4.1/maven-resolver-1.4.1.pom b/.m2/repository/org/apache/maven/resolver/maven-resolver/1.4.1/maven-resolver-1.4.1.pom deleted file mode 100644 index 59a1cc7..0000000 --- a/.m2/repository/org/apache/maven/resolver/maven-resolver/1.4.1/maven-resolver-1.4.1.pom +++ /dev/null @@ -1,511 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 33 - - - org.apache.maven.resolver - maven-resolver - 1.4.1 - pom - - Maven Artifact Resolver - - The parent and aggregator for the repository system. - - https://maven.apache.org/resolver/ - 2010 - - - - Matej Cimbora - - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-resolver.git - scm:git:https://gitbox.apache.org/repos/asf/maven-resolver.git - https://github.com/apache/maven-resolver/tree/${project.scm.tag} - maven-resolver-1.4.1 - - - jira - https://issues.apache.org/jira/browse/MRESOLVER - - - Jenkins - https://builds.apache.org/job/maven-box/job/maven-resolver/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 7 - true - resolver-archives/resolver-LATEST - None - 0.3.3 - 1.7.25 - - - - - maven-resolver-api - maven-resolver-spi - maven-resolver-util - maven-resolver-impl - maven-resolver-test-util - maven-resolver-connector-basic - maven-resolver-transport-classpath - maven-resolver-transport-file - maven-resolver-transport-http - maven-resolver-transport-wagon - maven-resolver-demos - - - - - - org.apache.maven.resolver - maven-resolver-api - ${project.version} - - - org.apache.maven.resolver - maven-resolver-spi - ${project.version} - - - org.apache.maven.resolver - maven-resolver-util - ${project.version} - - - org.apache.maven.resolver - maven-resolver-impl - ${project.version} - - - org.apache.maven.resolver - maven-resolver-connector-basic - ${project.version} - - - org.apache.maven.resolver - maven-resolver-transport-classpath - ${project.version} - - - org.apache.maven.resolver - maven-resolver-transport-file - ${project.version} - - - org.apache.maven.resolver - maven-resolver-transport-http - ${project.version} - - - org.apache.maven.resolver - maven-resolver-transport-wagon - ${project.version} - - - org.apache.maven.resolver - maven-resolver-test-util - ${project.version} - test - - - - junit - junit - 4.12 - test - - - org.hamcrest - hamcrest-core - 1.3 - test - - - org.mockito - mockito-core - 2.23.0 - test - - - - javax.inject - javax.inject - 1 - provided - - - - org.eclipse.sisu - org.eclipse.sisu.inject - ${sisuVersion} - - - org.eclipse.sisu - org.eclipse.sisu.plexus - ${sisuVersion} - - - javax.enterprise - cdi-api - - - - - org.sonatype.sisu - sisu-guice - 3.2.6 - no_aop - - - aopalliance - aopalliance - - - com.google.code.findbugs - jsr305 - - - - - - org.slf4j - slf4j-api - ${slf4jVersion} - - - org.slf4j - slf4j-simple - ${slf4jVersion} - test - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - false - true - true - - http://download.oracle.com/javase/6/docs/api/ - - - - noextend - a - Restriction: - - - noimplement - a - Restriction: - - - noinstantiate - a - Restriction: - - - nooverride - a - Restriction: - - - noreference - a - Restriction: - - - provisional - a - Provisional: - - - - - API - org.eclipse.aether* - - - SPI - org.eclipse.aether.spi* - - - Utilities - org.eclipse.aether.util* - - - Repository Connectors - org.eclipse.aether.connector* - - - Transporters - org.eclipse.aether.transport* - - - Implementation - org.eclipse.aether.impl* - - - Demo Maven Plugin - org.apache.maven.resolver.examples.maven* - - - Demo Snippets - org.apache.maven.resolver.examples* - - - Internals - org.eclipse.aether.internal* - - - - - - org.apache.maven.plugins - maven-release-plugin - - true - - - - org.apache.maven.plugins - maven-surefire-plugin - - -Xmx128m - ${surefire.redirectTestOutputToFile} - - ${project.build.directory}/surefire-tmp - - - - - org.eclipse.sisu - sisu-maven-plugin - ${sisuVersion} - - - generate-index - process-classes - - main-index - - - - - - org.apache.rat - apache-rat-plugin - - - src/test/resources/**/*.ini - src/test/resources/**/*.txt - src/test/resources/ssl/*-store - .travis.yml - - - - - org.apache.felix - maven-bundle-plugin - 3.5.0 - - ${project.build.directory}/osgi - - ${Bundle-SymbolicName} - ${project.url} - <_removeheaders>Bnd-LastModified,Include-Resource - - <_exportcontents>!*internal*,* - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${Automatic-Module-Name} - - - - - - - - - - - clirr - - - - org.codehaus.mojo - clirr-maven-plugin - - - check-api-compat - verify - - check-no-fork - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - aggregate - false - - aggregate - - - - - - org.apache.maven.plugins - maven-jxr-plugin - - - aggregate - false - - aggregate - - - - - - - - - m2e - - - m2e.version - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.eclipse.sisu - sisu-maven-plugin - [${sisuVersion},) - - test-index - main-index - - - - - - - - - - - - - - - - apache-release - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M2 - - - enforce-java - - enforce - - - - - (,9) - Release with Java 7 or 8 due to changed signatures of java.nio.ByteBuffer (MRESOLVER-67) - - - - - - - - - - - diff --git a/.m2/repository/org/apache/maven/resolver/maven-resolver/1.4.1/maven-resolver-1.4.1.pom.sha1 b/.m2/repository/org/apache/maven/resolver/maven-resolver/1.4.1/maven-resolver-1.4.1.pom.sha1 deleted file mode 100644 index db22a6f..0000000 --- a/.m2/repository/org/apache/maven/resolver/maven-resolver/1.4.1/maven-resolver-1.4.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7cffb7488c6b0c702113af053da975fdbd92df3d \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/file-management/3.1.0/_remote.repositories b/.m2/repository/org/apache/maven/shared/file-management/3.1.0/_remote.repositories deleted file mode 100644 index dbd36cd..0000000 --- a/.m2/repository/org/apache/maven/shared/file-management/3.1.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. -#Thu Apr 02 20:38:39 UTC 2026 -file-management-3.1.0.jar>central= -file-management-3.1.0.pom>central= diff --git a/.m2/repository/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.jar b/.m2/repository/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.jar deleted file mode 100644 index fb1d239..0000000 Binary files a/.m2/repository/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.jar.sha1 b/.m2/repository/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.jar.sha1 deleted file mode 100644 index 59f449d..0000000 --- a/.m2/repository/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f87a3a54c856714e4157b9ce7a5ff6ffc310d447 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.pom b/.m2/repository/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.pom deleted file mode 100644 index abcb7f0..0000000 --- a/.m2/repository/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.pom +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 36 - - - - file-management - 3.1.0 - - Apache Maven File Management API - API to collect files from a given directory using several include/exclude rules. - - - - Joakim Erdfelt - joakim@erdfelt.com - - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-file-management.git - scm:git:https://gitbox.apache.org/repos/asf/maven-file-management.git - https://github.com/apache/maven-file-management/tree/${project.scm.tag} - file-management-3.1.0 - - - jira - https://issues.apache.org/jira/browse/MSHARED/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - 8 - 1.7.36 - 2022-06-29T11:19:57Z - - - - - org.slf4j - slf4j-api - ${slf4jVersion} - - - - org.codehaus.plexus - plexus-utils - 3.4.2 - - - commons-io - commons-io - 2.11.0 - - - - - junit - junit - 4.13.2 - test - - - org.slf4j - slf4j-simple - ${slf4jVersion} - test - - - - - - - org.codehaus.modello - modello-maven-plugin - - 1.1.0 - - src/main/mdo/fileset.mdo - - - - - fileset - - xpp3-reader - xpp3-writer - java - - - - site-docs - pre-site - - xdoc - - - - - - org.apache.rat - apache-rat-plugin - - - src/test/resources/test*/**/*.txt - - - - - - diff --git a/.m2/repository/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.pom.sha1 b/.m2/repository/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.pom.sha1 deleted file mode 100644 index 46a3a94..0000000 --- a/.m2/repository/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8c2dcedec327bbb9daf24ced48fc59ce228a6b1f \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/_remote.repositories b/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/_remote.repositories deleted file mode 100644 index 96dc613..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.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. -#Thu Apr 02 20:42:17 UTC 2026 -maven-common-artifact-filters-3.4.0.jar>central= -maven-common-artifact-filters-3.4.0.pom>central= diff --git a/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.jar b/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.jar deleted file mode 100644 index 7c6df51..0000000 Binary files a/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.jar.sha1 b/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.jar.sha1 deleted file mode 100644 index 2407b86..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -25855b1fa26fa5a1b387375de4b14ac39df23981 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.pom b/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.pom deleted file mode 100644 index c3127da..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.pom +++ /dev/null @@ -1,145 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 42 - - - - maven-common-artifact-filters - 3.4.0 - - Apache Maven Common Artifact Filters - A collection of ready-made filters to control inclusion/exclusion of artifacts during dependency resolution. - - - scm:git:https://gitbox.apache.org/repos/asf/maven-common-artifact-filters.git - scm:git:https://gitbox.apache.org/repos/asf/maven-common-artifact-filters.git - maven-common-artifact-filters-3.4.0 - https://github.com/apache/maven-common-artifact-filters/tree/${project.scm.tag} - - - jira - https://issues.apache.org/jira/issues/?jql=project%20%3D%20MSHARED%20AND%20component%20%3D%20maven-common-artifact-filters - - - Jenkins - https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-common-artifact-filters/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 8 - 3.6.3 - 1.4.1 - MethodLength - 2024-06-05T14:42:54Z - - - - - org.slf4j - slf4j-api - 1.7.36 - - - - org.apache.maven - maven-artifact - ${mavenVersion} - provided - - - org.apache.maven - maven-model - ${mavenVersion} - provided - - - org.apache.maven - maven-core - ${mavenVersion} - provided - - - org.apache.maven.resolver - maven-resolver-api - ${resolverVersion} - provided - - - org.apache.maven.resolver - maven-resolver-util - ${resolverVersion} - - - - commons-io - commons-io - 2.16.1 - test - - - junit - junit - 4.13.2 - test - - - org.mockito - mockito-core - 4.8.0 - test - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 3.3.0 - test - - - org.codehaus.plexus - plexus-container-default - - - - - org.openjdk.jmh - jmh-core - 1.35 - test - - - org.openjdk.jmh - jmh-generator-annprocess - 1.35 - test - - - diff --git a/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.pom.sha1 b/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.pom.sha1 deleted file mode 100644 index 4ed6135..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3999b773fe3f35c42b07e8f855a59b372b828acf \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/_remote.repositories b/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/_remote.repositories deleted file mode 100644 index f170d67..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-filtering/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. -#Thu Apr 02 20:38:40 UTC 2026 -maven-filtering-3.3.1.jar>central= -maven-filtering-3.3.1.pom>central= diff --git a/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar b/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar deleted file mode 100644 index 581b945..0000000 Binary files a/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar.sha1 b/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar.sha1 deleted file mode 100644 index 69c976b..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7b613072bcce1d949b6d82f714af08b4535aae2b \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom b/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom deleted file mode 100644 index 785b971..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom +++ /dev/null @@ -1,182 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 39 - - - - maven-filtering - 3.3.1 - - Apache Maven Filtering - A component to assist in filtering of resource files with properties from a Maven project. - - - - Graham Leggett - - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-filtering.git - scm:git:https://gitbox.apache.org/repos/asf/maven-filtering.git - maven-filtering-3.3.1 - https://github.com/apache/maven-filtering/tree/${project.scm.tag} - - - JIRA - https://issues.apache.org/jira/issues/?jql=project%20%3D%20MSHARED%20AND%20component%20%3D%20maven-filtering - - - Jenkins - https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-filtering/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - 8 - 3.2.5 - 1.7.36 - 0.0.7 - 2023-03-21T10:53:39Z - - - - - javax.inject - javax.inject - 1 - - - org.slf4j - slf4j-api - ${slf4jVersion} - - - org.sonatype.plexus - plexus-build-api - ${plexusBuildApiVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - provided - - - org.apache.maven - maven-model - ${mavenVersion} - provided - - - org.apache.maven - maven-settings - ${mavenVersion} - provided - - - org.codehaus.plexus - plexus-utils - 3.5.1 - - - org.codehaus.plexus - plexus-interpolation - 1.26 - - - commons-io - commons-io - 2.11.0 - - - - org.mockito - mockito-core - 4.7.0 - test - - - junit - junit - 4.13.2 - test - - - org.hamcrest - hamcrest-core - 2.2 - test - - - org.slf4j - slf4j-simple - ${slf4jVersion} - test - - - org.sonatype.plexus - plexus-build-api - ${plexusBuildApiVersion} - tests - test - - - org.eclipse.sisu - org.eclipse.sisu.plexus - test - - - org.eclipse.sisu - org.eclipse.sisu.inject - test - - - - - - - - org.apache.rat - apache-rat-plugin - - - src/test/units-files/** - - - - - org.eclipse.sisu - sisu-maven-plugin - - - - diff --git a/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom.sha1 b/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom.sha1 deleted file mode 100644 index e48e145..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -892af5bd3778032e12cb527cab28ee8651fbee4f \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/15/_remote.repositories b/.m2/repository/org/apache/maven/shared/maven-shared-components/15/_remote.repositories deleted file mode 100644 index 267f6f8..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/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. -#Thu Apr 02 20:38:37 UTC 2026 -maven-shared-components-15.pom>central= diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom b/.m2/repository/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom deleted file mode 100644 index 0820bf9..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 16 - ../pom/maven/pom.xml - - - org.apache.maven.shared - maven-shared-components - 15 - pom - - Maven Shared Components - Maven shared components - http://maven.apache.org/shared/ - - - - Maven User List - users-subscribe@maven.apache.org - users-unsubscribe@maven.apache.org - users@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-users - - http://www.mail-archive.com/users@maven.apache.org/ - http://www.nabble.com/Maven---Users-f178.html - http://maven.users.markmail.org/ - - - - Maven Developer List - dev-subscribe@maven.apache.org - dev-unsubscribe@maven.apache.org - dev@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-dev - - http://www.mail-archive.com/dev@maven.apache.org/ - http://www.nabble.com/Maven-Developers-f179.html - http://maven.dev.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - Maven Commits List - commits-subscribe@maven.apache.org - commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-dev - - http://www.mail-archive.com/commits@maven.apache.org - http://www.nabble.com/Maven---Commits-f15575.html - http://maven.commits.markmail.org/ - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://maven.announce.markmail.org/ - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://maven.notifications.markmail.org/ - - - - - - file-management - maven-ant - maven-archiver - maven-common-artifact-filters - maven-dependency-analyzer - maven-dependency-tree - maven-downloader - maven-doxia-tools - maven-filtering - maven-invoker - maven-model-converter - maven-osgi - maven-reporting-impl - maven-repository-builder - maven-runtime - - maven-shared-io - maven-shared-jar - maven-shared-monitor - maven-verifier - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-15 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-15 - http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-components-15 - - - jira - http://jira.codehaus.org/browse/MSHARED - - - - apache.website - scp://people.apache.org/www/maven.apache.org/shared/ - - - - - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/shared/tags - - - - maven-site-plugin - - scp://people.apache.org/www/maven.apache.org/shared/${project.artifactId}-${project.version} - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - - - - jre-1.5+ - - !1.4 - - - maven-artifact-resolver - - - - parent-release - - - - maven-release-plugin - - -N -Papache-release - - - - maven-assembly-plugin - - - source-release-assembly - - - src - - - - - - - - - - diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom.sha1 b/.m2/repository/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom.sha1 deleted file mode 100644 index 62d8440..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ea4cecd1845e61708cd05f20d5d428a3d429e67c \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/19/_remote.repositories b/.m2/repository/org/apache/maven/shared/maven-shared-components/19/_remote.repositories deleted file mode 100644 index 09493b5..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/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. -#Thu Apr 02 20:38:41 UTC 2026 -maven-shared-components-19.pom>central= diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom b/.m2/repository/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom deleted file mode 100644 index f21fe02..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 23 - ../../pom/maven/pom.xml - - - org.apache.maven.shared - maven-shared-components - 19 - pom - - Maven Shared Components - Maven shared components - http://maven.apache.org/shared/ - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-19 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-19 - http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-components-19 - - - jira - http://jira.codehaus.org/browse/MSHARED - - - Jenkins - https://builds.apache.org/job/maven-shared/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/shared - - - - - ${user.home}/maven-sites - shared-archives/${project.artifactId}-${project.version} - - - - - apache.snapshots - Apache Snapshot Repository - http://repository.apache.org/snapshots - - false - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.7 - - - JIRA - - 1000 - true - ${project.artifactId}- - - org/apache/maven/shared - - [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 - 1 - - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/shared/tags - - - - org.apache.maven.plugins - maven-site-plugin - 3.2 - - true - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.0-beta-2 - - ${project.reporting.outputDirectory} - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - ${maven.site.cache}/${maven.site.path} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - - - - - site-release - - shared/${project.artifactId} - - - - diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1 b/.m2/repository/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1 deleted file mode 100644 index d739e08..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -650a49682d4c82f060c7cc8005f8734a5fd86af9 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/36/_remote.repositories b/.m2/repository/org/apache/maven/shared/maven-shared-components/36/_remote.repositories deleted file mode 100644 index 1c8456a..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/36/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:38:36 UTC 2026 -maven-shared-components-36.pom>central= diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/36/maven-shared-components-36.pom b/.m2/repository/org/apache/maven/shared/maven-shared-components/36/maven-shared-components-36.pom deleted file mode 100644 index 14f19f9..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/36/maven-shared-components-36.pom +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 36 - ../pom.xml - - - org.apache.maven.shared - maven-shared-components - pom - - Apache Maven Shared Components - Maven shared components - https://maven.apache.org/shared/ - - - jira - https://issues.apache.org/jira/browse/MSHARED - - - Jenkins - https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-shared/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/shared-archives/ - - - - - shared-archives/${project.artifactId}-LATEST - - - - - - - org.apache.maven.plugins - maven-changes-plugin - - - JIRA - - 1000 - true - ${project.artifactId}- - - org/apache/maven/shared - - [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-site-plugin - - true - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - scm-publish - site-deploy - - publish-scm - - - - - - - diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/36/maven-shared-components-36.pom.sha1 b/.m2/repository/org/apache/maven/shared/maven-shared-components/36/maven-shared-components-36.pom.sha1 deleted file mode 100644 index afcb2cb..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/36/maven-shared-components-36.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0376c5365dff8496ca0185247296d760ee80dfec \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/39/_remote.repositories b/.m2/repository/org/apache/maven/shared/maven-shared-components/39/_remote.repositories deleted file mode 100644 index 7626bf2..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/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. -#Thu Apr 02 20:38:39 UTC 2026 -maven-shared-components-39.pom>central= diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom b/.m2/repository/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom deleted file mode 100644 index 5db8c18..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom +++ /dev/null @@ -1,92 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven - maven-parent - 39 - ../pom.xml - - - org.apache.maven.shared - maven-shared-components - pom - - Apache Maven Shared Components - Maven shared components - https://maven.apache.org/shared/ - - - jira - https://issues.apache.org/jira/browse/MSHARED - - - Jenkins - https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-shared/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/shared-archives/ - - - - - shared-archives/${project.artifactId}-LATEST - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - true - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - ${project.reporting.outputDirectory} - - - - - scm-publish - - publish-scm - - site-deploy - - - - - - diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom.sha1 b/.m2/repository/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom.sha1 deleted file mode 100644 index 62581e3..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c6707d46530a62cdc0e6d9cf70061f80d002f862 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/41/_remote.repositories b/.m2/repository/org/apache/maven/shared/maven-shared-components/41/_remote.repositories deleted file mode 100644 index 7e24214..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/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. -#Thu Apr 02 20:43:04 UTC 2026 -maven-shared-components-41.pom>central= diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/41/maven-shared-components-41.pom b/.m2/repository/org/apache/maven/shared/maven-shared-components/41/maven-shared-components-41.pom deleted file mode 100644 index 41d61cb..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/41/maven-shared-components-41.pom +++ /dev/null @@ -1,91 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven - maven-parent - 41 - - - org.apache.maven.shared - maven-shared-components - pom - - Apache Maven Shared Components - Maven shared components - https://maven.apache.org/shared/ - - - jira - https://issues.apache.org/jira/browse/MSHARED - - - Jenkins - https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-shared/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/shared-archives/ - - - - - shared-archives/${project.artifactId}-LATEST - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - true - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - ${project.reporting.outputDirectory} - - - - - scm-publish - - publish-scm - - site-deploy - - - - - - diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/41/maven-shared-components-41.pom.sha1 b/.m2/repository/org/apache/maven/shared/maven-shared-components/41/maven-shared-components-41.pom.sha1 deleted file mode 100644 index 433c5f6..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/41/maven-shared-components-41.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f065cc41ea386a672156b8df42c4409ef1a972b2 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/42/_remote.repositories b/.m2/repository/org/apache/maven/shared/maven-shared-components/42/_remote.repositories deleted file mode 100644 index 836677b..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/42/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:42:16 UTC 2026 -maven-shared-components-42.pom>central= diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/42/maven-shared-components-42.pom b/.m2/repository/org/apache/maven/shared/maven-shared-components/42/maven-shared-components-42.pom deleted file mode 100644 index c30e3bd..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/42/maven-shared-components-42.pom +++ /dev/null @@ -1,111 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven - maven-parent - 42 - - - org.apache.maven.shared - maven-shared-components - pom - - Apache Maven Shared Components - Maven shared components - https://maven.apache.org/shared/ - - - jira - https://issues.apache.org/jira/browse/MSHARED - - - Jenkins - https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-shared/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/shared-archives/ - - - - - shared-archives/${project.artifactId}-LATEST - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - true - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - ${project.reporting.outputDirectory} - - - - - scm-publish - - publish-scm - - site-deploy - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - false - - - default-site - false - - true - - - - - - - diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-components/42/maven-shared-components-42.pom.sha1 b/.m2/repository/org/apache/maven/shared/maven-shared-components/42/maven-shared-components-42.pom.sha1 deleted file mode 100644 index 1c52d0c..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-components/42/maven-shared-components-42.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e20e297468e4a64b1fef019112bdbe19767a975f \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/_remote.repositories b/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/_remote.repositories deleted file mode 100644 index 8d85b24..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.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. -#Thu Apr 02 20:38:43 UTC 2026 -maven-shared-incremental-1.1.jar>central= -maven-shared-incremental-1.1.pom>central= diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar b/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar deleted file mode 100644 index 692c7d8..0000000 Binary files a/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar.sha1 b/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar.sha1 deleted file mode 100644 index 427c971..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -9d017a7584086755445c0a260dd9a1e9eae161a5 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom b/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom deleted file mode 100644 index f832f26..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom +++ /dev/null @@ -1,136 +0,0 @@ - - - - 4.0.0 - - org.apache.maven.shared - maven-shared-components - 19 - ../maven-shared-components/pom.xml - - - maven-shared-incremental - 1.1 - Maven Incremental Build support utilities - - Various utility classes and plexus components for supporting - incremental build functionality in maven plugins. - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-incremental-1.1 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-incremental-1.1 - http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-incremental-1.1 - - - - jira - https://jira.codehaus.org/browse/MSHARED/component/15650 - - - - 2.2.1 - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven.reporting - maven-reporting-api - - - org.apache.maven.wagon - wagon-file - - - org.apache.maven.wagon - wagon-http-lightweight - - - org.apache.maven.wagon - wagon-ssh - - - org.apache.maven.wagon - wagon-ssh-external - - - commons-cli - commons-cli - - - classworlds - classworlds - - - org.codehaus.plexus - plexus-container-default - - - org.codehaus.plexus - plexus-interactivity-api - - - - - org.apache.maven.shared - maven-shared-utils - 0.1 - - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - - - org.codehaus.plexus - plexus-component-api - 1.0-alpha-16 - provided - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - generate-metadata - - - - - - - - diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom.sha1 b/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom.sha1 deleted file mode 100644 index 2b3eca1..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c607b2c64c027151c440f27b5ec86e062b9e9953 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/_remote.repositories b/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/_remote.repositories deleted file mode 100644 index c1d297b..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.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. -#Thu Apr 02 20:38:43 UTC 2026 -maven-shared-utils-3.4.2.jar>central= -maven-shared-utils-3.4.2.pom>central= diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar b/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar deleted file mode 100644 index a72853d..0000000 Binary files a/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar.sha1 b/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar.sha1 deleted file mode 100644 index 3301420..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -bfa28296272a5915b08de9f11f34a94b0a818fd0 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.pom b/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.pom deleted file mode 100644 index 1034ff0..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.pom +++ /dev/null @@ -1,171 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 39 - - - maven-shared-utils - 3.4.2 - - Apache Maven Shared Utils - Shared utilities for use by Maven core and plugins - - - - Kathryn Newbould - - - - - scm:git:https://gitbox.apache.org/repos/asf/maven-shared-utils.git - scm:git:https://gitbox.apache.org/repos/asf/maven-shared-utils.git - maven-shared-utils-3.4.2 - https://github.com/apache/maven-shared-utils/tree/${project.scm.tag} - - - jira - https://issues.apache.org/jira/issues/?jql=project%20%3D%20MSHARED%20AND%20component%20%3D%20maven-shared-utils - - - Jenkins - https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-shared-utils/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} - - - - - RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength,ModifierOrder - 2023-05-11T20:49:40Z - 8 - 3.2.5 - - - - - org.slf4j - slf4j-api - 1.7.36 - - - - org.fusesource.jansi - jansi - 2.4.0 - true - - - - commons-io - commons-io - 2.11.0 - - - - junit - junit - 4.13.2 - test - - - org.hamcrest - hamcrest-core - 2.2 - test - - - org.apache.commons - commons-text - 1.10.0 - test - - - com.google.code.findbugs - jsr305 - 3.0.2 - provided - - - org.codehaus.plexus - plexus-utils - 3.5.1 - test - - - - - - - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-assembly-plugin - - - - org.codehaus.plexus - plexus-io - 3.4.1 - - - - - - - - - org.apache.rat - apache-rat-plugin - - - src/test/resources/directorywalker/**/* - src/test/resources/symlinks/**/* - src/test/resources/executable - - - - - org.apache.maven.plugins - maven-surefire-plugin - - false - - TestValue - - - - - - - diff --git a/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.pom.sha1 b/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.pom.sha1 deleted file mode 100644 index 4a3ff9b..0000000 --- a/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -78e0d256abbc6df63b2bb96493dd99daa29be63f \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/_remote.repositories b/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/_remote.repositories deleted file mode 100644 index 550ab14..0000000 --- a/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/_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. -#Thu Apr 02 20:42:18 UTC 2026 -common-java5-3.5.3.jar>central= -common-java5-3.5.3.pom>central= diff --git a/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/common-java5-3.5.3.jar b/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/common-java5-3.5.3.jar deleted file mode 100644 index 9be6ff9..0000000 Binary files a/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/common-java5-3.5.3.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/common-java5-3.5.3.jar.sha1 b/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/common-java5-3.5.3.jar.sha1 deleted file mode 100644 index 156f0d6..0000000 --- a/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/common-java5-3.5.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5b41922ab33685d3da2cf30bae5759431631f06c \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/common-java5-3.5.3.pom b/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/common-java5-3.5.3.pom deleted file mode 100644 index 0d4ca40..0000000 --- a/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/common-java5-3.5.3.pom +++ /dev/null @@ -1,90 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.surefire - surefire-providers - 3.5.3 - - - common-java5 - - Shared Java 5 Provider Base - Shared Java 5 code for all providers. - - - - org.apache.maven.surefire - surefire-shared-utils - - - - junit - junit - test - - - org.junit.vintage - junit-vintage-engine - test - - - org.assertj - assertj-core - test - - - - - - - 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.5.2 - - - - - - diff --git a/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/common-java5-3.5.3.pom.sha1 b/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/common-java5-3.5.3.pom.sha1 deleted file mode 100644 index 4ed631c..0000000 --- a/.m2/repository/org/apache/maven/surefire/common-java5/3.5.3/common-java5-3.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d4e39ecaf2701eede6988d058b3ffbf6ec5b5e95 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/_remote.repositories b/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/_remote.repositories deleted file mode 100644 index 4955adc..0000000 --- a/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/_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. -#Thu Apr 02 20:42:17 UTC 2026 -maven-surefire-common-3.5.3.jar>central= -maven-surefire-common-3.5.3.pom>central= diff --git a/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/maven-surefire-common-3.5.3.jar b/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/maven-surefire-common-3.5.3.jar deleted file mode 100644 index 50c5281..0000000 Binary files a/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/maven-surefire-common-3.5.3.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/maven-surefire-common-3.5.3.jar.sha1 b/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/maven-surefire-common-3.5.3.jar.sha1 deleted file mode 100644 index d7b916a..0000000 --- a/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/maven-surefire-common-3.5.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ad5d607e98053054a1494503d9020a8789a4dfb9 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/maven-surefire-common-3.5.3.pom b/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/maven-surefire-common-3.5.3.pom deleted file mode 100644 index aba5a85..0000000 --- a/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/maven-surefire-common-3.5.3.pom +++ /dev/null @@ -1,241 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.surefire - surefire - 3.5.3 - - - maven-surefire-common - - Maven Surefire Common - API used in Surefire and Failsafe MOJO. - - - - org.slf4j - slf4j-simple - - - - org.apache.maven.surefire - surefire-api - ${project.version} - - - org.apache.maven.surefire - surefire-logger-api - ${project.version} - - - org.apache.maven.surefire - surefire-extensions-api - ${project.version} - - - org.apache.maven.surefire - surefire-booter - ${project.version} - - - org.apache.maven - maven-core - provided - - - org.apache.maven - maven-plugin-api - provided - - - org.apache.maven - maven-artifact - provided - - - org.apache.maven - maven-model - provided - - - javax.inject - javax.inject - 1 - provided - - - org.apache.maven.resolver - maven-resolver-api - ${resolverVersion} - provided - - - org.apache.maven.resolver - maven-resolver-util - ${resolverVersion} - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - org.apache.maven.shared - maven-common-artifact-filters - - - org.codehaus.plexus - plexus-java - - - org.codehaus.plexus - plexus-component-annotations - 2.2.0 - provided - - - org.eclipse.sisu - org.eclipse.sisu.plexus - provided - - - org.fusesource.jansi - jansi - provided - - - org.apache.maven.surefire - surefire-shared-utils - - - com.google.code.findbugs - jsr305 - provided - - - - org.junit.vintage - junit-vintage-engine - test - - - - org.assertj - assertj-core - test - - - org.mockito - mockito-core - test - - - org.powermock - powermock-core - test - - - org.powermock - powermock-module-junit4 - test - - - org.powermock - powermock-api-mockito2 - test - - - org.jacoco - org.jacoco.agent - runtime - test - - - org.codehaus.plexus - plexus-xml - test - - - commons-io - commons-io - 2.18.0 - test - - - - - - - org.jacoco - jacoco-maven-plugin - - - jacoco-instrumentation - - instrument - - - - restore-classes - - restore-instrumented-classes - - - - - - maven-surefire-plugin - - ${jvm.args.tests} - - ${project.build.directory}/jacoco.exec - - - - - org.apache.maven.surefire - surefire-shadefire - - 3.5.2 - - - - - org.codehaus.plexus - plexus-component-metadata - 2.2.0 - - - - generate-metadata - - - - - - org.eclipse.sisu - sisu-maven-plugin - - - - diff --git a/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/maven-surefire-common-3.5.3.pom.sha1 b/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/maven-surefire-common-3.5.3.pom.sha1 deleted file mode 100644 index fc28122..0000000 --- a/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.5.3/maven-surefire-common-3.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0cf977e7c55a3c34e2df5e84ccb945320ee87b86 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/_remote.repositories b/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/_remote.repositories deleted file mode 100644 index 4253ebf..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/_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. -#Thu Apr 02 20:42:17 UTC 2026 -surefire-api-3.5.3.jar>central= -surefire-api-3.5.3.pom>central= diff --git a/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/surefire-api-3.5.3.jar b/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/surefire-api-3.5.3.jar deleted file mode 100644 index 720522b..0000000 Binary files a/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/surefire-api-3.5.3.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/surefire-api-3.5.3.jar.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/surefire-api-3.5.3.jar.sha1 deleted file mode 100644 index 0185309..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/surefire-api-3.5.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -62f9634651a6d844e12db88121e4dfc1dd6b2ef7 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/surefire-api-3.5.3.pom b/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/surefire-api-3.5.3.pom deleted file mode 100644 index 68fbf7e..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/surefire-api-3.5.3.pom +++ /dev/null @@ -1,110 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.surefire - surefire - 3.5.3 - - - surefire-api - - Surefire API - API used in Surefire and Failsafe MOJO, Booter, Common and test framework providers. - - - - org.apache.maven.surefire - surefire-logger-api - ${project.version} - - - org.apache.maven.surefire - surefire-shared-utils - - - com.google.code.findbugs - jsr305 - provided - - - - junit - junit - test - - - org.junit.vintage - junit-vintage-engine - test - - - org.assertj - assertj-core - test - - - org.mockito - mockito-core - test - - - org.powermock - powermock-reflect - test - - - - - - - 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.5.2 - - - - - - diff --git a/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/surefire-api-3.5.3.pom.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/surefire-api-3.5.3.pom.sha1 deleted file mode 100644 index d71bd5f..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-api/3.5.3/surefire-api-3.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -30b167d6ac2034903b9b1922c44564dac7596fd6 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/_remote.repositories b/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/_remote.repositories deleted file mode 100644 index e9ee803..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/_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. -#Thu Apr 02 20:42:17 UTC 2026 -surefire-booter-3.5.3.jar>central= -surefire-booter-3.5.3.pom>central= diff --git a/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/surefire-booter-3.5.3.jar b/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/surefire-booter-3.5.3.jar deleted file mode 100644 index 63a5dd4..0000000 Binary files a/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/surefire-booter-3.5.3.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/surefire-booter-3.5.3.jar.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/surefire-booter-3.5.3.jar.sha1 deleted file mode 100644 index 65c87da..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/surefire-booter-3.5.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ddb4e6e0770b0f51a527010db40823d8cfc3b754 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/surefire-booter-3.5.3.pom b/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/surefire-booter-3.5.3.pom deleted file mode 100644 index 4a0c6c5..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/surefire-booter-3.5.3.pom +++ /dev/null @@ -1,147 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.surefire - surefire - 3.5.3 - - - surefire-booter - - Surefire Booter - API and Facilities used by forked tests running in JVM sub-process. - - - - org.apache.maven.surefire - surefire-api - ${project.version} - - - org.apache.maven.surefire - surefire-extensions-spi - ${project.version} - - - org.apache.maven.surefire - surefire-shared-utils - - - org.apache.maven.surefire - surefire-logger-api - ${project.version} - - - com.google.code.findbugs - jsr305 - provided - - - junit - junit - test - - - org.junit.vintage - junit-vintage-engine - test - - - org.assertj - assertj-core - test - - - org.mockito - mockito-core - test - - - org.powermock - powermock-core - test - - - org.powermock - powermock-module-junit4 - test - - - org.powermock - powermock-api-mockito2 - test - - - - - - - maven-dependency-plugin - - - build-test-classpath - - build-classpath - - generate-sources - - test - target/test-classpath/cp.txt - - - - - - org.jacoco - jacoco-maven-plugin - - jacoco.agent - - - - jacoco-agent - - prepare-agent - - - - - - maven-surefire-plugin - - ${jvm.args.tests} ${jacoco.agent} - true - true - - - - org.apache.maven.surefire - surefire-shadefire - - 3.5.2 - - - - - - diff --git a/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/surefire-booter-3.5.3.pom.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/surefire-booter-3.5.3.pom.sha1 deleted file mode 100644 index 7559e21..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-booter/3.5.3/surefire-booter-3.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0443b2332dec49f48f3356a49c9d7533cc6dc435 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/_remote.repositories b/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/_remote.repositories deleted file mode 100644 index 673ad29..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/_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. -#Thu Apr 02 20:42:17 UTC 2026 -surefire-extensions-api-3.5.3.jar>central= -surefire-extensions-api-3.5.3.pom>central= diff --git a/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/surefire-extensions-api-3.5.3.jar b/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/surefire-extensions-api-3.5.3.jar deleted file mode 100644 index 71784f1..0000000 Binary files a/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/surefire-extensions-api-3.5.3.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/surefire-extensions-api-3.5.3.jar.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/surefire-extensions-api-3.5.3.jar.sha1 deleted file mode 100644 index 7a16431..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/surefire-extensions-api-3.5.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5b4dd76c8a83de00b12623fdfd6144ec0f2eb391 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/surefire-extensions-api-3.5.3.pom b/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/surefire-extensions-api-3.5.3.pom deleted file mode 100644 index 45a9591..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/surefire-extensions-api-3.5.3.pom +++ /dev/null @@ -1,104 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.surefire - surefire - 3.5.3 - - - surefire-extensions-api - Surefire Extensions API - - - - org.apache.maven.surefire - surefire-api - ${project.version} - provided - - - org.apache.maven.surefire - surefire-logger-api - ${project.version} - provided - - - com.google.code.findbugs - jsr305 - provided - - - org.apache.maven.surefire - surefire-shared-utils - - - org.junit.jupiter - junit-jupiter-api - test - - - org.assertj - assertj-core - test - - - org.mockito - mockito-core - test - - - - - - - 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.5.2 - - - - - - diff --git a/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/surefire-extensions-api-3.5.3.pom.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/surefire-extensions-api-3.5.3.pom.sha1 deleted file mode 100644 index a33ce29..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.5.3/surefire-extensions-api-3.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -60481ebd58fcbc0c37ae71d2e23c5026c3f2bc4f \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/_remote.repositories b/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/_remote.repositories deleted file mode 100644 index 70b306b..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/_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. -#Thu Apr 02 20:42:17 UTC 2026 -surefire-extensions-spi-3.5.3.jar>central= -surefire-extensions-spi-3.5.3.pom>central= diff --git a/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/surefire-extensions-spi-3.5.3.jar b/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/surefire-extensions-spi-3.5.3.jar deleted file mode 100644 index bc9bce2..0000000 Binary files a/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/surefire-extensions-spi-3.5.3.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/surefire-extensions-spi-3.5.3.jar.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/surefire-extensions-spi-3.5.3.jar.sha1 deleted file mode 100644 index fbde3a4..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/surefire-extensions-spi-3.5.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -500f6f7f4dadc15bbe2c14747a6384b8c03c8c01 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/surefire-extensions-spi-3.5.3.pom b/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/surefire-extensions-spi-3.5.3.pom deleted file mode 100644 index c208079..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/surefire-extensions-spi-3.5.3.pom +++ /dev/null @@ -1,45 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.surefire - surefire - 3.5.3 - - - surefire-extensions-spi - Surefire Extensions SPI - - - - org.apache.maven.surefire - surefire-api - ${project.version} - - - com.google.code.findbugs - jsr305 - provided - - - - diff --git a/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/surefire-extensions-spi-3.5.3.pom.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/surefire-extensions-spi-3.5.3.pom.sha1 deleted file mode 100644 index 34854b6..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.5.3/surefire-extensions-spi-3.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -75620fc51261659616444a9f155a5b2cb03ab6db \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/_remote.repositories b/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/_remote.repositories deleted file mode 100644 index 7af5419..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/_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. -#Thu Apr 02 20:42:18 UTC 2026 -surefire-junit-platform-3.5.3.jar>central= -surefire-junit-platform-3.5.3.pom>central= diff --git a/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/surefire-junit-platform-3.5.3.jar b/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/surefire-junit-platform-3.5.3.jar deleted file mode 100644 index 81ccbaf..0000000 Binary files a/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/surefire-junit-platform-3.5.3.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/surefire-junit-platform-3.5.3.jar.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/surefire-junit-platform-3.5.3.jar.sha1 deleted file mode 100644 index 86b1490..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/surefire-junit-platform-3.5.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -71f0604b839c89cb267b968cab4834882a93503d \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/surefire-junit-platform-3.5.3.pom b/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/surefire-junit-platform-3.5.3.pom deleted file mode 100644 index c40f1ec..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/surefire-junit-platform-3.5.3.pom +++ /dev/null @@ -1,163 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.surefire - surefire-providers - 3.5.3 - - - surefire-junit-platform - - Surefire JUnit Platform Runner - Surefire JUnit Platform Runner - - - - Konstantin Lutovich - - Contributed to the original provider implementation - - - - Shintaro Katafuchi - - Contributed to the original provider implementation - - - - Sam Brannen - - Contributed to the original provider implementation - - - - Stefan Bechtold - - Contributed to the original provider implementation - - - - Marc Philipp - - Contributed to the original provider implementation - - - - Matthias Merdes - - Contributed to the original provider implementation - - - - Johannes Link - - Contributed to the original provider implementation - - - - - - - org.apache.maven.surefire - common-java5 - ${project.version} - - - org.apache.maven.surefire - surefire-shared-utils - - - org.junit.platform - junit-platform-engine - - - org.junit.platform - junit-platform-launcher - - - org.junit.jupiter - junit-jupiter-engine - test - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-params - test - - - junit - junit - test - - - org.assertj - assertj-core - test - - - org.mockito - mockito-core - test - - - org.powermock - powermock-reflect - test - - - - - - - org.jacoco - jacoco-maven-plugin - - jacoco.agent - - - - jacoco-agent - - prepare-agent - - - - - - maven-surefire-plugin - - ${jvm.args.tests} ${jacoco.agent} - true - - **/JUnit47SuiteTest.java - - - - - - diff --git a/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/surefire-junit-platform-3.5.3.pom.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/surefire-junit-platform-3.5.3.pom.sha1 deleted file mode 100644 index 20bd71c..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-junit-platform/3.5.3/surefire-junit-platform-3.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ecea3a79bdea5247dfc4c1fec5fe232a0761d854 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/_remote.repositories b/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/_remote.repositories deleted file mode 100644 index 860775b..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/_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. -#Thu Apr 02 20:42:17 UTC 2026 -surefire-logger-api-3.5.3.jar>central= -surefire-logger-api-3.5.3.pom>central= diff --git a/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/surefire-logger-api-3.5.3.jar b/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/surefire-logger-api-3.5.3.jar deleted file mode 100644 index 6926163..0000000 Binary files a/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/surefire-logger-api-3.5.3.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/surefire-logger-api-3.5.3.jar.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/surefire-logger-api-3.5.3.jar.sha1 deleted file mode 100644 index 1c49573..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/surefire-logger-api-3.5.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7735a880761ef1aa7ace8f570989c8858b4123c9 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/surefire-logger-api-3.5.3.pom b/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/surefire-logger-api-3.5.3.pom deleted file mode 100644 index ab3cc41..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/surefire-logger-api-3.5.3.pom +++ /dev/null @@ -1,107 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.surefire - surefire - 3.5.3 - - - surefire-logger-api - - Surefire Logger API - Interfaces and Utilities related only to internal Surefire Logger API. Free of dependencies. - - - - tibordigana - Tibor Digaňa (tibor17) - tibordigana@apache.org - - PMC - - Europe/Bratislava - - - - - UTF-8 - - - - - junit - junit - test - - - org.junit.vintage - junit-vintage-engine - test - - - org.assertj - assertj-core - test - - - org.mockito - mockito-core - test - - - - - - - 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.5.2 - - - - - - - diff --git a/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/surefire-logger-api-3.5.3.pom.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/surefire-logger-api-3.5.3.pom.sha1 deleted file mode 100644 index a19dad1..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.5.3/surefire-logger-api-3.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -941c71913e17a8e3497e03c9803a0fbb95e232db \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-providers/3.5.3/_remote.repositories b/.m2/repository/org/apache/maven/surefire/surefire-providers/3.5.3/_remote.repositories deleted file mode 100644 index bf326b1..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-providers/3.5.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. -#Thu Apr 02 20:42:18 UTC 2026 -surefire-providers-3.5.3.pom>central= diff --git a/.m2/repository/org/apache/maven/surefire/surefire-providers/3.5.3/surefire-providers-3.5.3.pom b/.m2/repository/org/apache/maven/surefire/surefire-providers/3.5.3/surefire-providers-3.5.3.pom deleted file mode 100644 index 7887b3f..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-providers/3.5.3/surefire-providers-3.5.3.pom +++ /dev/null @@ -1,71 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.surefire - surefire - 3.5.3 - - - surefire-providers - pom - - Surefire Providers - Surefire Providers Aggregator POM - - - common-junit3 - common-java5 - common-junit4 - common-junit48 - surefire-junit3 - surefire-junit4 - surefire-junit47 - surefire-junit-platform - surefire-testng-utils - surefire-testng - - - - - org.apache.maven.surefire - surefire-api - ${project.version} - - - - - - - maven-surefire-plugin - - - org.apache.maven.surefire - surefire-shadefire - - 3.5.2 - - - - - - diff --git a/.m2/repository/org/apache/maven/surefire/surefire-providers/3.5.3/surefire-providers-3.5.3.pom.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-providers/3.5.3/surefire-providers-3.5.3.pom.sha1 deleted file mode 100644 index 56ab5ef..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-providers/3.5.3/surefire-providers-3.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6086e54f332e2efcc3b6d307636083e99cf1cf91 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/_remote.repositories b/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/_remote.repositories deleted file mode 100644 index eac66dd..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/_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. -#Thu Apr 02 20:42:17 UTC 2026 -surefire-shared-utils-3.5.3.jar>central= -surefire-shared-utils-3.5.3.pom>central= diff --git a/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/surefire-shared-utils-3.5.3.jar b/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/surefire-shared-utils-3.5.3.jar deleted file mode 100644 index a7b71eb..0000000 Binary files a/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/surefire-shared-utils-3.5.3.jar and /dev/null differ diff --git a/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/surefire-shared-utils-3.5.3.jar.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/surefire-shared-utils-3.5.3.jar.sha1 deleted file mode 100644 index f9669f4..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/surefire-shared-utils-3.5.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c3f98bb781d3d484700a86d12d820e746ef62360 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/surefire-shared-utils-3.5.3.pom b/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/surefire-shared-utils-3.5.3.pom deleted file mode 100644 index 2808e73..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/surefire-shared-utils-3.5.3.pom +++ /dev/null @@ -1,104 +0,0 @@ - - - - surefire - org.apache.maven.surefire - 3.5.3 - - 4.0.0 - surefire-shared-utils - Surefire Shared Utils - Relocated Java packages of maven-shared-utils and several Apache Commons utilities in Surefire. - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - maven-shade-plugin - - - - shade - - - - - ${project.groupId}:${project.artifactId} - - - - - *:* - - **/module-info.class - META-INF/MANIFEST.MF - - - - - - org.apache.maven.shared.utils - org.apache.maven.surefire.shared.utils - - - org.apache.commons.codec - org.apache.maven.surefire.shared.codec - - - org.apache.commons.io - org.apache.maven.surefire.shared.io - - - org.apache.commons.lang3 - org.apache.maven.surefire.shared.lang3 - - - org.apache.commons.compress - org.apache.maven.surefire.shared.compress - - - - - - - META-INF/DEPENDENCIES - - - - - - - - - - - ide-development - - - - maven-install-plugin - - - install-devel-jar - install - - install-file - - - surefire-shared-utils - 3-SNAPSHOT - target/${project.build.finalName}.jar - - - - - - - - - diff --git a/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/surefire-shared-utils-3.5.3.pom.sha1 b/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/surefire-shared-utils-3.5.3.pom.sha1 deleted file mode 100644 index bab27e5..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.5.3/surefire-shared-utils-3.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d286f1466dfe5ab673c16ff944d2cc65cbf70288 \ No newline at end of file diff --git a/.m2/repository/org/apache/maven/surefire/surefire/3.5.3/_remote.repositories b/.m2/repository/org/apache/maven/surefire/surefire/3.5.3/_remote.repositories deleted file mode 100644 index 3b97c54..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire/3.5.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. -#Thu Apr 02 20:37:41 UTC 2026 -surefire-3.5.3.pom>central= diff --git a/.m2/repository/org/apache/maven/surefire/surefire/3.5.3/surefire-3.5.3.pom b/.m2/repository/org/apache/maven/surefire/surefire/3.5.3/surefire-3.5.3.pom deleted file mode 100644 index 4962eca..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire/3.5.3/surefire-3.5.3.pom +++ /dev/null @@ -1,518 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven - maven-parent - 44 - - - org.apache.maven.surefire - surefire - 3.5.3 - 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.5.3 - 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.6.3 - 1.4.1 - 3.17.0 - 1.27.1 - 2.18.0 - 1.4.0 - - 3.3.4 - 2.0.9 - 0.8.12 - 5.11 - scm:git:https://github.com/apache/maven-surefire.git - surefire-archives/surefire-LATEST - ${javaVersion} - ${javaVersion} - - ${jvm9ArgsTests} -Xms32m -Xmx144m -XX:SoftRefLRUPolicyMSPerMB=50 -Djava.awt.headless=true -Djdk.net.URLClassPath.disableClassPathURLCheck=true - 2025-03-27T23:05:24Z - 1.7.36 - - - - - - org.slf4j - slf4j-simple - ${slf4jVersion} - test - - - - org.slf4j - slf4j-api - ${slf4jVersion} - - - org.apache.commons - commons-compress - ${commonsCompress} - - - org.apache.commons - commons-lang3 - ${commonsLang3Version} - - - commons-io - commons-io - ${commonsIoVersion} - - - 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.plugin-tools - maven-plugin-annotations - ${version.maven-plugin-tools} - - - org.apache.maven.shared - maven-shared-utils - ${mavenSharedUtilsVersion} - - - org.apache.maven.shared - maven-common-artifact-filters - 3.4.0 - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 3.3.0 - - - org.xmlunit - xmlunit-core - 2.10.0 - - - org.htmlunit - htmlunit - 4.11.1 - - - - org.fusesource.jansi - jansi - 2.4.1 - - - - org.apache.maven.shared - maven-verifier - 2.0.0-M1 - - - org.codehaus.plexus - plexus-java - ${plexus-java-version} - - - org.mockito - mockito-core - 3.12.4 - - - - 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.30.2-GA - - - - junit - junit - 4.13.2 - - - org.hamcrest - hamcrest - 3.0 - - - org.hamcrest - hamcrest-core - 3.0 - - - org.assertj - assertj-core - 3.27.3 - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - org.jacoco - org.jacoco.agent - ${jacocoVersion} - runtime - - - org.apache.maven.surefire - surefire-shared-utils - ${project.version} - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - true - - -Xdoclint:all - - UTF-8 - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.24 - - - maven-surefire-plugin - 3.5.2 - - - - false - ${jvm.args.tests} - - false - false - - - - maven-release-plugin - - clean install - false - surefire-@{project.version} - - - - 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 - - src/config/checkstyle-suppressions.xml - - - - org.jacoco - jacoco-maven-plugin - - - maven-deploy-plugin - - true - - - - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - - 3.5.2 - - - - - - - - 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.util.stream=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/.m2/repository/org/apache/maven/surefire/surefire/3.5.3/surefire-3.5.3.pom.sha1 b/.m2/repository/org/apache/maven/surefire/surefire/3.5.3/surefire-3.5.3.pom.sha1 deleted file mode 100644 index 9f2faaa..0000000 --- a/.m2/repository/org/apache/maven/surefire/surefire/3.5.3/surefire-3.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -95e714f96c69c4f233bfa3765cb5522394cd4e9f \ No newline at end of file diff --git a/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/_remote.repositories b/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/_remote.repositories deleted file mode 100644 index 517480a..0000000 --- a/.m2/repository/org/apache/poi/poi-ooxml-lite/5.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. -#Thu Apr 02 20:38:35 UTC 2026 -poi-ooxml-lite-5.2.5.jar>central= -poi-ooxml-lite-5.2.5.pom>central= diff --git a/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/poi-ooxml-lite-5.2.5.jar b/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/poi-ooxml-lite-5.2.5.jar deleted file mode 100644 index 1506927..0000000 Binary files a/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/poi-ooxml-lite-5.2.5.jar and /dev/null differ diff --git a/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/poi-ooxml-lite-5.2.5.jar.sha1 b/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/poi-ooxml-lite-5.2.5.jar.sha1 deleted file mode 100644 index f9a4731..0000000 --- a/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/poi-ooxml-lite-5.2.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -eaa61452d8f0d13080fbb4757a392f09f90e4c49 \ No newline at end of file diff --git a/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/poi-ooxml-lite-5.2.5.pom b/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/poi-ooxml-lite-5.2.5.pom deleted file mode 100644 index f6c5acc..0000000 --- a/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/poi-ooxml-lite-5.2.5.pom +++ /dev/null @@ -1,61 +0,0 @@ - - - - 4.0.0 - org.apache.poi - poi-ooxml-lite - 5.2.5 - Apache POI - Apache POI - Java API To Access Microsoft Format Files - https://poi.apache.org/ - - Apache Software Foundation - http://www.apache.org/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - 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/ - - - - - org.apache.xmlbeans - xmlbeans - 5.2.0 - compile - - - diff --git a/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/poi-ooxml-lite-5.2.5.pom.sha1 b/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/poi-ooxml-lite-5.2.5.pom.sha1 deleted file mode 100644 index 80c90e4..0000000 --- a/.m2/repository/org/apache/poi/poi-ooxml-lite/5.2.5/poi-ooxml-lite-5.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8c66a57138d099a516a2f0f9d6ec2cdf9177dd27 \ No newline at end of file diff --git a/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/_remote.repositories b/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/_remote.repositories deleted file mode 100644 index 6598539..0000000 --- a/.m2/repository/org/apache/poi/poi-ooxml/5.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. -#Thu Apr 02 20:38:35 UTC 2026 -poi-ooxml-5.2.5.jar>central= -poi-ooxml-5.2.5.pom>central= diff --git a/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/poi-ooxml-5.2.5.jar b/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/poi-ooxml-5.2.5.jar deleted file mode 100644 index d671a8c..0000000 Binary files a/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/poi-ooxml-5.2.5.jar and /dev/null differ diff --git a/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/poi-ooxml-5.2.5.jar.sha1 b/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/poi-ooxml-5.2.5.jar.sha1 deleted file mode 100644 index 6b14be4..0000000 --- a/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/poi-ooxml-5.2.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -df9f2c52371eeba24db8ea8cafa77285c3cc0742 \ No newline at end of file diff --git a/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/poi-ooxml-5.2.5.pom b/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/poi-ooxml-5.2.5.pom deleted file mode 100644 index 3a99ae7..0000000 --- a/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/poi-ooxml-5.2.5.pom +++ /dev/null @@ -1,184 +0,0 @@ - - - - 4.0.0 - org.apache.poi - poi-ooxml - 5.2.5 - Apache POI - API based on OPC and OOXML schemas - Apache POI - Java API To Access Microsoft Format Files - https://poi.apache.org/ - - Apache Software Foundation - http://www.apache.org/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - 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/ - - - - - org.apache.poi - poi - 5.2.5 - compile - - - org.apache.poi - poi-ooxml-lite - 5.2.5 - compile - - - org.apache.xmlbeans - xmlbeans - 5.2.0 - compile - - - org.apache.commons - commons-compress - 1.25.0 - compile - - - commons-io - commons-io - 2.15.0 - compile - - - com.github.virtuald - curvesapi - 1.08 - compile - - - org.apache.logging.log4j - log4j-api - 2.21.1 - compile - - - org.apache.commons - commons-collections4 - 4.4 - compile - - - org.apache.santuario - xmlsec - 3.0.3 - compile - true - - - org.bouncycastle - bcpkix-jdk18on - 1.77 - compile - true - - - org.bouncycastle - bcutil-jdk18on - 1.77 - compile - true - - - org.apache.pdfbox - pdfbox - 2.0.29 - compile - true - - - de.rototor.pdfbox - graphics2d - 0.43 - compile - true - - - org.apache.xmlgraphics - batik-svggen - 1.17 - compile - true - - - org.apache.xmlgraphics - batik-svgrasterizer - 1.17 - compile - - - xalan - xalan - - - true - - - org.apache.xmlgraphics - batik-codec - 1.17 - compile - - - xalan - xalan - - - true - - - org.apache.xmlgraphics - batik-bridge - 1.17 - compile - - - xalan - xalan - - - true - - - diff --git a/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/poi-ooxml-5.2.5.pom.sha1 b/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/poi-ooxml-5.2.5.pom.sha1 deleted file mode 100644 index 8161636..0000000 --- a/.m2/repository/org/apache/poi/poi-ooxml/5.2.5/poi-ooxml-5.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5b268ab30a35646e4eb5d153528a89afe4820658 \ No newline at end of file diff --git a/.m2/repository/org/apache/poi/poi/5.2.5/_remote.repositories b/.m2/repository/org/apache/poi/poi/5.2.5/_remote.repositories deleted file mode 100644 index 69f08c9..0000000 --- a/.m2/repository/org/apache/poi/poi/5.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. -#Thu Apr 02 20:38:35 UTC 2026 -poi-5.2.5.jar>central= -poi-5.2.5.pom>central= diff --git a/.m2/repository/org/apache/poi/poi/5.2.5/poi-5.2.5.jar b/.m2/repository/org/apache/poi/poi/5.2.5/poi-5.2.5.jar deleted file mode 100644 index 62e20d7..0000000 Binary files a/.m2/repository/org/apache/poi/poi/5.2.5/poi-5.2.5.jar and /dev/null differ diff --git a/.m2/repository/org/apache/poi/poi/5.2.5/poi-5.2.5.jar.sha1 b/.m2/repository/org/apache/poi/poi/5.2.5/poi-5.2.5.jar.sha1 deleted file mode 100644 index 0eca177..0000000 --- a/.m2/repository/org/apache/poi/poi/5.2.5/poi-5.2.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7e00f6b2f76375fe89022d5a7db8acb71cbd55f5 \ No newline at end of file diff --git a/.m2/repository/org/apache/poi/poi/5.2.5/poi-5.2.5.pom b/.m2/repository/org/apache/poi/poi/5.2.5/poi-5.2.5.pom deleted file mode 100644 index 7ab4916..0000000 --- a/.m2/repository/org/apache/poi/poi/5.2.5/poi-5.2.5.pom +++ /dev/null @@ -1,91 +0,0 @@ - - - - 4.0.0 - org.apache.poi - poi - 5.2.5 - Apache POI - Common - Apache POI - Java API To Access Microsoft Format Files - https://poi.apache.org/ - - Apache Software Foundation - http://www.apache.org/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - 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/ - - - - - commons-codec - commons-codec - 1.16.0 - compile - - - org.apache.commons - commons-collections4 - 4.4 - compile - - - org.apache.commons - commons-math3 - 3.6.1 - compile - - - commons-io - commons-io - 2.15.0 - compile - - - com.zaxxer - SparseBitSet - 1.3 - compile - - - org.apache.logging.log4j - log4j-api - 2.21.1 - compile - - - diff --git a/.m2/repository/org/apache/poi/poi/5.2.5/poi-5.2.5.pom.sha1 b/.m2/repository/org/apache/poi/poi/5.2.5/poi-5.2.5.pom.sha1 deleted file mode 100644 index 004ca73..0000000 --- a/.m2/repository/org/apache/poi/poi/5.2.5/poi-5.2.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -643d87ad458e6c7dafe78e35b6cf84403f94bc0d \ No newline at end of file diff --git a/.m2/repository/org/apache/pulsar/pulsar-bom/4.0.6/_remote.repositories b/.m2/repository/org/apache/pulsar/pulsar-bom/4.0.6/_remote.repositories deleted file mode 100644 index 9e27994..0000000 --- a/.m2/repository/org/apache/pulsar/pulsar-bom/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. -#Thu Apr 02 20:37:37 UTC 2026 -pulsar-bom-4.0.6.pom>central= diff --git a/.m2/repository/org/apache/pulsar/pulsar-bom/4.0.6/pulsar-bom-4.0.6.pom b/.m2/repository/org/apache/pulsar/pulsar-bom/4.0.6/pulsar-bom-4.0.6.pom deleted file mode 100644 index eba7509..0000000 --- a/.m2/repository/org/apache/pulsar/pulsar-bom/4.0.6/pulsar-bom-4.0.6.pom +++ /dev/null @@ -1,695 +0,0 @@ - - - - 4.0.0 - - pom - - org.apache - apache - 29 - - - - org.apache.pulsar - pulsar-bom - 4.0.6 - Pulsar BOM - Pulsar (Bill of Materials) - - https://github.com/apache/pulsar - - - Apache Software Foundation - https://www.apache.org/ - - 2017 - - - - Apache Pulsar developers - https://pulsar.apache.org/ - - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - https://github.com/apache/pulsar - scm:git:https://github.com/apache/pulsar.git - scm:git:ssh://git@github.com:apache/pulsar.git - - - - GitHub Actions - https://github.com/apache/pulsar/actions - - - - Github - https://github.com/apache/pulsar/issues - - - - 17 - 17 - UTF-8 - UTF-8 - 2025-07-30T10:37:25Z - 4.1 - 3.1.2 - 3.5.3 - - - - - - com.mycila - license-maven-plugin - ${license-maven-plugin.version} - - - -
../src/license-header.txt
-
-
-
-
- - org.apache.rat - apache-rat-plugin - - - - dependency-reduced-pom.xml - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${maven-checkstyle-plugin.version} - - true - - -
- - - org.apache.maven.wagon - wagon-ssh-external - ${wagon-ssh-external.version} - - -
- - - - - - - - org.apache.pulsar - bouncy-castle-bc - ${project.version} - - - org.apache.pulsar - bouncy-castle-bcfips - ${project.version} - - - org.apache.pulsar - bouncy-castle-parent - ${project.version} - - - org.apache.pulsar - buildtools - ${project.version} - - - org.apache.pulsar - distribution - ${project.version} - - - org.apache.pulsar - docker-images - ${project.version} - - - org.apache.pulsar - jclouds-shaded - ${project.version} - - - org.apache.pulsar - managed-ledger - ${project.version} - - - org.apache.pulsar - pulsar-all-docker-image - ${project.version} - - - org.apache.pulsar - pulsar-broker-auth-athenz - ${project.version} - - - org.apache.pulsar - pulsar-broker-auth-oidc - ${project.version} - - - org.apache.pulsar - pulsar-broker-auth-sasl - ${project.version} - - - org.apache.pulsar - pulsar-broker-common - ${project.version} - - - org.apache.pulsar - pulsar-broker - ${project.version} - - - org.apache.pulsar - pulsar-cli-utils - ${project.version} - - - org.apache.pulsar - pulsar-client-admin-api - ${project.version} - - - org.apache.pulsar - pulsar-client-admin-original - ${project.version} - - - org.apache.pulsar - pulsar-client-admin - ${project.version} - - - org.apache.pulsar - pulsar-client-all - ${project.version} - - - org.apache.pulsar - pulsar-client-api - ${project.version} - - - org.apache.pulsar - pulsar-client-auth-athenz - ${project.version} - - - org.apache.pulsar - pulsar-client-auth-sasl - ${project.version} - - - org.apache.pulsar - pulsar-client-messagecrypto-bc - ${project.version} - - - org.apache.pulsar - pulsar-client-original - ${project.version} - - - org.apache.pulsar - pulsar-client-tools-api - ${project.version} - - - org.apache.pulsar - pulsar-client-tools - ${project.version} - - - org.apache.pulsar - pulsar-client - ${project.version} - - - org.apache.pulsar - pulsar-common - ${project.version} - - - org.apache.pulsar - pulsar-config-validation - ${project.version} - - - org.apache.pulsar - pulsar-docker-image - ${project.version} - - - org.apache.pulsar - pulsar-docs-tools - ${project.version} - - - org.apache.pulsar - pulsar-functions-api-examples-builtin - ${project.version} - - - org.apache.pulsar - pulsar-functions-api-examples - ${project.version} - - - org.apache.pulsar - pulsar-functions-api - ${project.version} - - - org.apache.pulsar - pulsar-functions-instance - ${project.version} - - - org.apache.pulsar - pulsar-functions-local-runner-original - ${project.version} - - - org.apache.pulsar - pulsar-functions-local-runner - ${project.version} - - - org.apache.pulsar - pulsar-functions-proto - ${project.version} - - - org.apache.pulsar - pulsar-functions-runtime-all - ${project.version} - - - org.apache.pulsar - pulsar-functions-runtime - ${project.version} - - - org.apache.pulsar - pulsar-functions-secrets - ${project.version} - - - org.apache.pulsar - pulsar-functions-utils - ${project.version} - - - org.apache.pulsar - pulsar-functions-worker - ${project.version} - - - org.apache.pulsar - pulsar-functions - ${project.version} - - - org.apache.pulsar - pulsar-io-aerospike - ${project.version} - - - org.apache.pulsar - pulsar-io-alluxio - ${project.version} - - - org.apache.pulsar - pulsar-io-aws - ${project.version} - - - org.apache.pulsar - pulsar-io-batch-data-generator - ${project.version} - - - org.apache.pulsar - pulsar-io-batch-discovery-triggerers - ${project.version} - - - org.apache.pulsar - pulsar-io-canal - ${project.version} - - - org.apache.pulsar - pulsar-io-cassandra - ${project.version} - - - org.apache.pulsar - pulsar-io-common - ${project.version} - - - org.apache.pulsar - pulsar-io-core - ${project.version} - - - org.apache.pulsar - pulsar-io-data-generator - ${project.version} - - - org.apache.pulsar - pulsar-io-debezium-core - ${project.version} - - - org.apache.pulsar - pulsar-io-debezium-mongodb - ${project.version} - - - org.apache.pulsar - pulsar-io-debezium-mssql - ${project.version} - - - org.apache.pulsar - pulsar-io-debezium-mysql - ${project.version} - - - org.apache.pulsar - pulsar-io-debezium-oracle - ${project.version} - - - org.apache.pulsar - pulsar-io-debezium-postgres - ${project.version} - - - org.apache.pulsar - pulsar-io-debezium - ${project.version} - - - org.apache.pulsar - pulsar-io-distribution - ${project.version} - - - org.apache.pulsar - pulsar-io-docs - ${project.version} - - - org.apache.pulsar - pulsar-io-dynamodb - ${project.version} - - - org.apache.pulsar - pulsar-io-elastic-search - ${project.version} - - - org.apache.pulsar - pulsar-io-file - ${project.version} - - - org.apache.pulsar - pulsar-io-flume - ${project.version} - - - org.apache.pulsar - pulsar-io-hbase - ${project.version} - - - org.apache.pulsar - pulsar-io-hdfs3 - ${project.version} - - - org.apache.pulsar - pulsar-io-http - ${project.version} - - - org.apache.pulsar - pulsar-io-influxdb - ${project.version} - - - org.apache.pulsar - pulsar-io-jdbc-clickhouse - ${project.version} - - - org.apache.pulsar - pulsar-io-jdbc-core - ${project.version} - - - org.apache.pulsar - pulsar-io-jdbc-mariadb - ${project.version} - - - org.apache.pulsar - pulsar-io-jdbc-openmldb - ${project.version} - - - org.apache.pulsar - pulsar-io-jdbc-postgres - ${project.version} - - - org.apache.pulsar - pulsar-io-jdbc-sqlite - ${project.version} - - - org.apache.pulsar - pulsar-io-jdbc - ${project.version} - - - org.apache.pulsar - pulsar-io-kafka-connect-adaptor-nar - ${project.version} - - - org.apache.pulsar - pulsar-io-kafka-connect-adaptor - ${project.version} - - - org.apache.pulsar - pulsar-io-kafka - ${project.version} - - - org.apache.pulsar - pulsar-io-kinesis - ${project.version} - - - org.apache.pulsar - pulsar-io-mongo - ${project.version} - - - org.apache.pulsar - pulsar-io-netty - ${project.version} - - - org.apache.pulsar - pulsar-io-nsq - ${project.version} - - - org.apache.pulsar - pulsar-io-rabbitmq - ${project.version} - - - org.apache.pulsar - pulsar-io-redis - ${project.version} - - - org.apache.pulsar - pulsar-io-solr - ${project.version} - - - org.apache.pulsar - pulsar-io-twitter - ${project.version} - - - org.apache.pulsar - pulsar-io - ${project.version} - - - org.apache.pulsar - pulsar-metadata - ${project.version} - - - org.apache.pulsar - pulsar-offloader-distribution - ${project.version} - - - org.apache.pulsar - pulsar-package-bookkeeper-storage - ${project.version} - - - org.apache.pulsar - pulsar-package-core - ${project.version} - - - org.apache.pulsar - pulsar-package-filesystem-storage - ${project.version} - - - org.apache.pulsar - pulsar-package-management - ${project.version} - - - org.apache.pulsar - pulsar-proxy - ${project.version} - - - org.apache.pulsar - pulsar-server-distribution - ${project.version} - - - org.apache.pulsar - pulsar-shell-distribution - ${project.version} - - - org.apache.pulsar - pulsar-testclient - ${project.version} - - - org.apache.pulsar - pulsar-transaction-common - ${project.version} - - - org.apache.pulsar - pulsar-transaction-coordinator - ${project.version} - - - org.apache.pulsar - pulsar-transaction-parent - ${project.version} - - - org.apache.pulsar - pulsar-websocket - ${project.version} - - - org.apache.pulsar - pulsar - ${project.version} - - - org.apache.pulsar - structured-event-log - ${project.version} - - - org.apache.pulsar - testmocks - ${project.version} - - - org.apache.pulsar - tiered-storage-file-system - ${project.version} - - - org.apache.pulsar - tiered-storage-jcloud - ${project.version} - - - org.apache.pulsar - tiered-storage-parent - ${project.version} - - - -
diff --git a/.m2/repository/org/apache/pulsar/pulsar-bom/4.0.6/pulsar-bom-4.0.6.pom.sha1 b/.m2/repository/org/apache/pulsar/pulsar-bom/4.0.6/pulsar-bom-4.0.6.pom.sha1 deleted file mode 100644 index f7070a4..0000000 --- a/.m2/repository/org/apache/pulsar/pulsar-bom/4.0.6/pulsar-bom-4.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -615685d2ae11205b41433dbb4acb1f8faeb2dcc0 \ No newline at end of file diff --git a/.m2/repository/org/apache/pulsar/pulsar-client-reactive-bom/0.6.0/_remote.repositories b/.m2/repository/org/apache/pulsar/pulsar-client-reactive-bom/0.6.0/_remote.repositories deleted file mode 100644 index 406fc84..0000000 --- a/.m2/repository/org/apache/pulsar/pulsar-client-reactive-bom/0.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. -#Thu Apr 02 20:37:37 UTC 2026 -pulsar-client-reactive-bom-0.6.0.pom>central= diff --git a/.m2/repository/org/apache/pulsar/pulsar-client-reactive-bom/0.6.0/pulsar-client-reactive-bom-0.6.0.pom b/.m2/repository/org/apache/pulsar/pulsar-client-reactive-bom/0.6.0/pulsar-client-reactive-bom-0.6.0.pom deleted file mode 100644 index 97aed3c..0000000 --- a/.m2/repository/org/apache/pulsar/pulsar-client-reactive-bom/0.6.0/pulsar-client-reactive-bom-0.6.0.pom +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - 4.0.0 - org.apache.pulsar - pulsar-client-reactive-bom - 0.6.0 - pom - pulsar-client-reactive-bom - Reactive Java client for Apache Pulsar (Bill of Materials) - https://github.com/apache/pulsar-client-reactive - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - lhotari - Lari Hotari - lhotari@apache.org - - - cbornet - Christophe Bornet - cbornet@apache.org - - - - scm:git:https://github.com/apache/pulsar-client-reactive.git - scm:git:https://github.com/apache/pulsar-client-reactive.git - https://github.com/apache/pulsar-client-reactive - - - - - org.apache.pulsar - pulsar-client-reactive-adapter - 0.6.0 - - - org.apache.pulsar - pulsar-client-reactive-api - 0.6.0 - - - org.apache.pulsar - pulsar-client-reactive-jackson - 0.6.0 - - - org.apache.pulsar - pulsar-client-reactive-producer-cache-caffeine - 0.6.0 - - - org.apache.pulsar - pulsar-client-reactive-producer-cache-caffeine-shaded - 0.6.0 - - - - diff --git a/.m2/repository/org/apache/pulsar/pulsar-client-reactive-bom/0.6.0/pulsar-client-reactive-bom-0.6.0.pom.sha1 b/.m2/repository/org/apache/pulsar/pulsar-client-reactive-bom/0.6.0/pulsar-client-reactive-bom-0.6.0.pom.sha1 deleted file mode 100644 index beb63f5..0000000 --- a/.m2/repository/org/apache/pulsar/pulsar-client-reactive-bom/0.6.0/pulsar-client-reactive-bom-0.6.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b67e30756e97cc4ccee2d986b326fd5d0f923e73 \ No newline at end of file diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/_remote.repositories b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/_remote.repositories deleted file mode 100644 index c35a421..0000000 --- a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/_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. -#Thu Apr 02 20:38:35 UTC 2026 -tomcat-embed-core-10.1.44.jar>central= -tomcat-embed-core-10.1.44.pom>central= diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/tomcat-embed-core-10.1.44.jar b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/tomcat-embed-core-10.1.44.jar deleted file mode 100644 index 680b35b..0000000 Binary files a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/tomcat-embed-core-10.1.44.jar and /dev/null differ diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/tomcat-embed-core-10.1.44.jar.sha1 b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/tomcat-embed-core-10.1.44.jar.sha1 deleted file mode 100644 index fcf66b9..0000000 --- a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/tomcat-embed-core-10.1.44.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5e18d00936ca925c9249f1a8e77c0e8adf1d6287 \ No newline at end of file diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/tomcat-embed-core-10.1.44.pom b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/tomcat-embed-core-10.1.44.pom deleted file mode 100644 index 28f70eb..0000000 --- a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/tomcat-embed-core-10.1.44.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - - 4.0.0 - org.apache.tomcat.embed - tomcat-embed-core - 10.1.44 - 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.44 - compile - - - diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/tomcat-embed-core-10.1.44.pom.sha1 b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/tomcat-embed-core-10.1.44.pom.sha1 deleted file mode 100644 index 328e8e8..0000000 --- a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.44/tomcat-embed-core-10.1.44.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fb06315dc0c0cd954697ee6456839186bb70795e \ No newline at end of file diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/_remote.repositories b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/_remote.repositories deleted file mode 100644 index 2cbb910..0000000 --- a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/_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. -#Thu Apr 02 20:38:35 UTC 2026 -tomcat-embed-el-10.1.44.jar>central= -tomcat-embed-el-10.1.44.pom>central= diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/tomcat-embed-el-10.1.44.jar b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/tomcat-embed-el-10.1.44.jar deleted file mode 100644 index f015d88..0000000 Binary files a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/tomcat-embed-el-10.1.44.jar and /dev/null differ diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/tomcat-embed-el-10.1.44.jar.sha1 b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/tomcat-embed-el-10.1.44.jar.sha1 deleted file mode 100644 index b524acc..0000000 --- a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/tomcat-embed-el-10.1.44.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -6ee7685651c5eba1f4bef99f9dbb38b89d1a6cb6 \ No newline at end of file diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/tomcat-embed-el-10.1.44.pom b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/tomcat-embed-el-10.1.44.pom deleted file mode 100644 index db20991..0000000 --- a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/tomcat-embed-el-10.1.44.pom +++ /dev/null @@ -1,35 +0,0 @@ - - - - 4.0.0 - org.apache.tomcat.embed - tomcat-embed-el - 10.1.44 - 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/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/tomcat-embed-el-10.1.44.pom.sha1 b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/tomcat-embed-el-10.1.44.pom.sha1 deleted file mode 100644 index 1cd3f13..0000000 --- a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.44/tomcat-embed-el-10.1.44.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fad1485483bed3d9f563c98509b26388911b5a71 \ No newline at end of file diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/_remote.repositories b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/_remote.repositories deleted file mode 100644 index 2873c24..0000000 --- a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/_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. -#Thu Apr 02 20:38:35 UTC 2026 -tomcat-embed-websocket-10.1.44.jar>central= -tomcat-embed-websocket-10.1.44.pom>central= diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/tomcat-embed-websocket-10.1.44.jar b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/tomcat-embed-websocket-10.1.44.jar deleted file mode 100644 index 60f77b6..0000000 Binary files a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/tomcat-embed-websocket-10.1.44.jar and /dev/null differ diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/tomcat-embed-websocket-10.1.44.jar.sha1 b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/tomcat-embed-websocket-10.1.44.jar.sha1 deleted file mode 100644 index 33acd8d..0000000 --- a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/tomcat-embed-websocket-10.1.44.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1966a8224858c4b4480469bfcdcaa3f8faf59cc7 \ No newline at end of file diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/tomcat-embed-websocket-10.1.44.pom b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/tomcat-embed-websocket-10.1.44.pom deleted file mode 100644 index 8ea84f9..0000000 --- a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/tomcat-embed-websocket-10.1.44.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - - 4.0.0 - org.apache.tomcat.embed - tomcat-embed-websocket - 10.1.44 - 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.44 - compile - - - diff --git a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/tomcat-embed-websocket-10.1.44.pom.sha1 b/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/tomcat-embed-websocket-10.1.44.pom.sha1 deleted file mode 100644 index c4d96ad..0000000 --- a/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.44/tomcat-embed-websocket-10.1.44.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -251d825e841d3382e3fd4823d04e2b4aee784fc6 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/_remote.repositories b/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/_remote.repositories deleted file mode 100644 index b728e83..0000000 --- a/.m2/repository/org/apache/xmlbeans/xmlbeans/5.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. -#Thu Apr 02 20:38:35 UTC 2026 -xmlbeans-5.2.0.jar>central= -xmlbeans-5.2.0.pom>central= diff --git a/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/xmlbeans-5.2.0.jar b/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/xmlbeans-5.2.0.jar deleted file mode 100644 index c9ac97f..0000000 Binary files a/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/xmlbeans-5.2.0.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/xmlbeans-5.2.0.jar.sha1 b/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/xmlbeans-5.2.0.jar.sha1 deleted file mode 100644 index f34274d..0000000 --- a/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/xmlbeans-5.2.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -6198ac997b3f234f2b5393fa415f78fac2e06510 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/xmlbeans-5.2.0.pom b/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/xmlbeans-5.2.0.pom deleted file mode 100644 index a01a6f0..0000000 --- a/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/xmlbeans-5.2.0.pom +++ /dev/null @@ -1,134 +0,0 @@ - - - - - 4.0.0 - org.apache.xmlbeans - xmlbeans - 5.2.0 - - XmlBeans - XmlBeans main jar - https://xmlbeans.apache.org/ - - - jira - https://issues.apache.org/jira/browse/XMLBEANS - - - - - POI Users List - user-subscribe@poi.apache.org - user-unsubscribe@poi.apache.org - https://lists.apache.org/list.html?user@poi.apache.org - - - POI Developer List - dev-subscribe@poi.apache.org - dev-unsubscribe@poi.apache.org - https://lists.apache.org/list.html?dev@poi.apache.org - - - - - - The Apache Software License, Version 2.0 - https://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 - https://xmlbeans.apache.org/ - - - - - POI Team - poi - user@poi.apache.org - Apache POI - - - - - - org.apache.logging.log4j - log4j-api - 2.21.1 - - - net.sf.saxon - Saxon-HE - 12.3 - provided - - - com.github.javaparser - javaparser-core - 3.25.5 - provided - - - - - org.apache.maven - maven-plugin-api - 3.0 - provided - - - org.apache.maven - maven-model - 3.0 - provided - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.4 - provided - - - - - - java8 - - 1.8 - - - - xml-apis - xml-apis - 1.4.01 - - - - - diff --git a/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/xmlbeans-5.2.0.pom.sha1 b/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/xmlbeans-5.2.0.pom.sha1 deleted file mode 100644 index 097b40b..0000000 --- a/.m2/repository/org/apache/xmlbeans/xmlbeans/5.2.0/xmlbeans-5.2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3104398599e76910185cee2d1197edac9e5e395c \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/_remote.repositories deleted file mode 100644 index 6647f8c..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-anim-1.17.jar>central= -batik-anim-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/batik-anim-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/batik-anim-1.17.jar deleted file mode 100644 index 4d34e7c..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/batik-anim-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/batik-anim-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/batik-anim-1.17.jar.sha1 deleted file mode 100644 index b56a77e..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/batik-anim-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -89e5d61a4328d6755dd7903fb5e7f0b265ff8fbe \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/batik-anim-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/batik-anim-1.17.pom deleted file mode 100644 index 2a69041..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/batik-anim-1.17.pom +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - 4.0.0 - - batik-anim - ${project.groupId}:${project.artifactId} - Batik animation engine - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-awt-util - ${project.version} - - - ${project.groupId} - batik-css - ${project.version} - - - ${project.groupId} - batik-dom - ${project.version} - - - ${project.groupId} - batik-ext - ${project.version} - - - ${project.groupId} - batik-parser - ${project.version} - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - ${project.groupId} - batik-svg-dom - ${project.version} - - - ${project.groupId} - batik-util - ${project.version} - - - xml-apis - xml-apis-ext - ${xmlapisext.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/batik-anim-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/batik-anim-1.17.pom.sha1 deleted file mode 100644 index bda6ed4..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-anim/1.17/batik-anim-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e7e019799c84e9c02bec0d8faac6ed649f7db805 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/_remote.repositories deleted file mode 100644 index 22a09bf..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-awt-util-1.17.jar>central= -batik-awt-util-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/batik-awt-util-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/batik-awt-util-1.17.jar deleted file mode 100644 index a8e9aa5..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/batik-awt-util-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/batik-awt-util-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/batik-awt-util-1.17.jar.sha1 deleted file mode 100644 index 12d2634..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/batik-awt-util-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0e3f71c6f07da863228b64a59bf059c4611c3952 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/batik-awt-util-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/batik-awt-util-1.17.pom deleted file mode 100644 index dd32e6c..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/batik-awt-util-1.17.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - 4.0.0 - - batik-awt-util - ${project.groupId}:${project.artifactId} - Batik AWT utilities - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - ${project.groupId} - batik-util - ${project.version} - - - ${project.groupId} - xmlgraphics-commons - ${xmlgraphics.commons.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/batik-awt-util-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/batik-awt-util-1.17.pom.sha1 deleted file mode 100644 index 2dc8761..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.17/batik-awt-util-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b6893625f8eb05ff711ebff6807aadc269cad90a \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/_remote.repositories deleted file mode 100644 index 56105a0..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-bridge-1.17.jar>central= -batik-bridge-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/batik-bridge-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/batik-bridge-1.17.jar deleted file mode 100644 index 2da38d3..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/batik-bridge-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/batik-bridge-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/batik-bridge-1.17.jar.sha1 deleted file mode 100644 index acca2fe..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/batik-bridge-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d8246a26d8e0503fc30822fed2a8595b3659af90 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/batik-bridge-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/batik-bridge-1.17.pom deleted file mode 100644 index 4b1ea7f..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/batik-bridge-1.17.pom +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - 4.0.0 - - batik-bridge - ${project.groupId}:${project.artifactId} - Batik bridge - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-anim - ${project.version} - - - ${project.groupId} - batik-awt-util - ${project.version} - - - ${project.groupId} - batik-css - ${project.version} - - - ${project.groupId} - batik-dom - ${project.version} - - - ${project.groupId} - batik-gvt - ${project.version} - - - ${project.groupId} - batik-parser - ${project.version} - - - ${project.groupId} - batik-script - ${project.version} - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - ${project.groupId} - batik-svg-dom - ${project.version} - - - ${project.groupId} - batik-util - ${project.version} - - - ${project.groupId} - batik-xml - ${project.version} - - - ${project.groupId} - xmlgraphics-commons - ${xmlgraphics.commons.version} - - - xml-apis - xml-apis-ext - ${xmlapisext.version} - - - org.mozilla - rhino - ${rhino.version} - true - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/batik-bridge-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/batik-bridge-1.17.pom.sha1 deleted file mode 100644 index 0929628..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-bridge/1.17/batik-bridge-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -90515e69c20727e61f6a7bb29a44ed909c77aeb5 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/_remote.repositories deleted file mode 100644 index 6750963..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-codec-1.17.jar>central= -batik-codec-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/batik-codec-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/batik-codec-1.17.jar deleted file mode 100644 index 55fdf1d..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/batik-codec-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/batik-codec-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/batik-codec-1.17.jar.sha1 deleted file mode 100644 index f370db2..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/batik-codec-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7cceac705d050a9730e7032da43a42c66cfadc41 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/batik-codec-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/batik-codec-1.17.pom deleted file mode 100644 index ef1f90b..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/batik-codec-1.17.pom +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - 4.0.0 - - batik-codec - ${project.groupId}:${project.artifactId} - Batik image codecs - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-awt-util - ${project.version} - - - ${project.groupId} - batik-bridge - ${project.version} - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - ${project.groupId} - batik-transcoder - ${project.version} - - - ${project.groupId} - batik-util - ${project.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/batik-codec-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/batik-codec-1.17.pom.sha1 deleted file mode 100644 index 64e0d8b..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-codec/1.17/batik-codec-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0928f043b9398f612e0b2e17c1e5966e520f8e66 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/_remote.repositories deleted file mode 100644 index a0669b0..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-constants-1.17.jar>central= -batik-constants-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/batik-constants-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/batik-constants-1.17.jar deleted file mode 100644 index 364002c..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/batik-constants-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/batik-constants-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/batik-constants-1.17.jar.sha1 deleted file mode 100644 index 6a10531..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/batik-constants-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -22bf8b4c207dc46859db0269853186d8dfc8cb9a \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/batik-constants-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/batik-constants-1.17.pom deleted file mode 100644 index 6d3d8bf..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/batik-constants-1.17.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - 4.0.0 - - batik-constants - ${project.groupId}:${project.artifactId} - Batik constants library - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/batik-constants-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/batik-constants-1.17.pom.sha1 deleted file mode 100644 index a566d87..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-constants/1.17/batik-constants-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -71866a5a05a2692ea2253bd1e19e8a92983fa840 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/_remote.repositories deleted file mode 100644 index 5fbfa4f..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-css-1.17.jar>central= -batik-css-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/batik-css-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/batik-css-1.17.jar deleted file mode 100644 index 564ab0b..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/batik-css-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/batik-css-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/batik-css-1.17.jar.sha1 deleted file mode 100644 index 8bf4d1b..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/batik-css-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d5ff4e0463af8a0ea5ab8d782c5418bab2f45c4d \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/batik-css-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/batik-css-1.17.pom deleted file mode 100644 index d931a14..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/batik-css-1.17.pom +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - 4.0.0 - - batik-css - ${project.groupId}:${project.artifactId} - Batik CSS engine - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - ${project.groupId} - batik-util - ${project.version} - - - ${project.groupId} - xmlgraphics-commons - ${xmlgraphics.commons.version} - - - xml-apis - xml-apis-ext - ${xmlapisext.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/batik-css-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/batik-css-1.17.pom.sha1 deleted file mode 100644 index 11cf9b6..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-css/1.17/batik-css-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -97a21d72fcc125dd5086306b7682a20157f54d4c \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/_remote.repositories deleted file mode 100644 index 7725819..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-dom-1.17.jar>central= -batik-dom-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/batik-dom-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/batik-dom-1.17.jar deleted file mode 100644 index 78e7b4b..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/batik-dom-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/batik-dom-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/batik-dom-1.17.jar.sha1 deleted file mode 100644 index 9acd4e3..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/batik-dom-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -efcb39f1007187565c264a5f1d12ebcf67efb761 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/batik-dom-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/batik-dom-1.17.pom deleted file mode 100644 index 75ad0d0..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/batik-dom-1.17.pom +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - 4.0.0 - - batik-dom - ${project.groupId}:${project.artifactId} - Batik DOM implementation - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-css - ${project.version} - - - ${project.groupId} - batik-ext - ${project.version} - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - ${project.groupId} - batik-util - ${project.version} - - - ${project.groupId} - batik-xml - ${project.version} - - - xml-apis - xml-apis - ${xmlapis.version} - - - xml-apis - xml-apis-ext - ${xmlapisext.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/batik-dom-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/batik-dom-1.17.pom.sha1 deleted file mode 100644 index f3ec592..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-dom/1.17/batik-dom-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -140091fe1e1232cc132104a8d4935cc8a581fce0 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/_remote.repositories deleted file mode 100644 index 358332a..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-ext-1.17.jar>central= -batik-ext-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/batik-ext-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/batik-ext-1.17.jar deleted file mode 100644 index 40db40c..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/batik-ext-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/batik-ext-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/batik-ext-1.17.jar.sha1 deleted file mode 100644 index fed137a..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/batik-ext-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fd2e4166a14f8bbe099162ad88cfe64be09d35a2 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/batik-ext-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/batik-ext-1.17.pom deleted file mode 100644 index 26dfcd8..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/batik-ext-1.17.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - 4.0.0 - - batik-ext - ${project.groupId}:${project.artifactId} - Batik external code - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/batik-ext-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/batik-ext-1.17.pom.sha1 deleted file mode 100644 index d545d6e..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-ext/1.17/batik-ext-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6e7c726ee62457d7fcc26426782d26064fa269ae \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/_remote.repositories deleted file mode 100644 index d53e582..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-gvt-1.17.jar>central= -batik-gvt-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/batik-gvt-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/batik-gvt-1.17.jar deleted file mode 100644 index 9a29619..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/batik-gvt-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/batik-gvt-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/batik-gvt-1.17.jar.sha1 deleted file mode 100644 index 5f37ed6..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/batik-gvt-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -33f70788de9f7d31d69db22c0afaf304424ff799 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/batik-gvt-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/batik-gvt-1.17.pom deleted file mode 100644 index 2eb9e00..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/batik-gvt-1.17.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - 4.0.0 - - batik-gvt - ${project.groupId}:${project.artifactId} - Batik Graphics Vector Tree (GVT) - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-awt-util - ${project.version} - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - ${project.groupId} - batik-util - ${project.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/batik-gvt-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/batik-gvt-1.17.pom.sha1 deleted file mode 100644 index f4ce1db..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-gvt/1.17/batik-gvt-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e99caf71c3fac8a4d121d59220429410ef8679fe \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/_remote.repositories deleted file mode 100644 index 23823c3..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-i18n-1.17.jar>central= -batik-i18n-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/batik-i18n-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/batik-i18n-1.17.jar deleted file mode 100644 index 2682252..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/batik-i18n-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/batik-i18n-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/batik-i18n-1.17.jar.sha1 deleted file mode 100644 index b15a66b..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/batik-i18n-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -39b233a71430ffa9d0282d47789a58fa8bf4f861 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/batik-i18n-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/batik-i18n-1.17.pom deleted file mode 100644 index 245e8c9..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/batik-i18n-1.17.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - 4.0.0 - - batik-i18n - ${project.groupId}:${project.artifactId} - Batik i18n library - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/batik-i18n-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/batik-i18n-1.17.pom.sha1 deleted file mode 100644 index 8191691..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-i18n/1.17/batik-i18n-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ddcadbaa2048e6c2b34da4a293a8094ca69c9ec5 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/_remote.repositories deleted file mode 100644 index d8cb2b9..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-parser-1.17.jar>central= -batik-parser-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/batik-parser-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/batik-parser-1.17.jar deleted file mode 100644 index 386c854..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/batik-parser-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/batik-parser-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/batik-parser-1.17.jar.sha1 deleted file mode 100644 index 50b154f..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/batik-parser-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -da9d3057be108e6ac8799cc8efed1e2b490ba37c \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/batik-parser-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/batik-parser-1.17.pom deleted file mode 100644 index 89dd3b2..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/batik-parser-1.17.pom +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - 4.0.0 - - batik-parser - ${project.groupId}:${project.artifactId} - Batik SVG microsyntax parser - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-awt-util - ${project.version} - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - ${project.groupId} - batik-util - ${project.version} - - - ${project.groupId} - batik-xml - ${project.version} - - - xml-apis - xml-apis-ext - ${xmlapisext.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/batik-parser-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/batik-parser-1.17.pom.sha1 deleted file mode 100644 index be9f081..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-parser/1.17/batik-parser-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -01662a93aaa8604a707467589a804ff15871afb2 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/_remote.repositories deleted file mode 100644 index dcf0877..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-script-1.17.jar>central= -batik-script-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/batik-script-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/batik-script-1.17.jar deleted file mode 100644 index a212dcb..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/batik-script-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/batik-script-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/batik-script-1.17.jar.sha1 deleted file mode 100644 index 6dcb29d..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/batik-script-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -958bad8baa3a77a73152281418256b608801232d \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/batik-script-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/batik-script-1.17.pom deleted file mode 100644 index 49880ad..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/batik-script-1.17.pom +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - 4.0.0 - - batik-script - ${project.groupId}:${project.artifactId} - Batik script language support - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-anim - ${project.version} - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - ${project.groupId} - batik-util - ${project.version} - - - org.mozilla - rhino - ${rhino.version} - true - - - org.python - jython - ${jython.version} - true - - - - - - - maven-compiler-plugin - ${compiler.version} - - - **/jacl/* - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/batik-script-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/batik-script-1.17.pom.sha1 deleted file mode 100644 index b37ea4c..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-script/1.17/batik-script-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f20246262d11fcf01c79981ab3eb8003c0e01aa7 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/_remote.repositories deleted file mode 100644 index b075ee7..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-shared-resources-1.17.jar>central= -batik-shared-resources-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/batik-shared-resources-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/batik-shared-resources-1.17.jar deleted file mode 100644 index a06ea54..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/batik-shared-resources-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/batik-shared-resources-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/batik-shared-resources-1.17.jar.sha1 deleted file mode 100644 index 5fd4466..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/batik-shared-resources-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2862b81d9dc63990cb5586323b4a2410fc1f2249 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/batik-shared-resources-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/batik-shared-resources-1.17.pom deleted file mode 100644 index c1bae17..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/batik-shared-resources-1.17.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - 4.0.0 - - batik-shared-resources - ${project.groupId}:${project.artifactId} - Batik Shared Resources - - - org.apache.xmlgraphics - batik - 1.17 - - - - - - src/main/resources - - LICENSE - NOTICE - - META-INF - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/batik-shared-resources-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/batik-shared-resources-1.17.pom.sha1 deleted file mode 100644 index ef69940..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-shared-resources/1.17/batik-shared-resources-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4f4b7cd9e38ca3b7dc15acb077b0220638e2cea6 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/_remote.repositories deleted file mode 100644 index 7fdf892..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-svg-dom-1.17.jar>central= -batik-svg-dom-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/batik-svg-dom-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/batik-svg-dom-1.17.jar deleted file mode 100644 index 04d00c8..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/batik-svg-dom-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/batik-svg-dom-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/batik-svg-dom-1.17.jar.sha1 deleted file mode 100644 index 1deac08..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/batik-svg-dom-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -54a25b9b691bcc302c0dd36d80f56e81a9ebed91 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/batik-svg-dom-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/batik-svg-dom-1.17.pom deleted file mode 100644 index e990e31..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/batik-svg-dom-1.17.pom +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - 4.0.0 - - batik-svg-dom - ${project.groupId}:${project.artifactId} - Batik SVG DOM implementation - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-awt-util - ${project.version} - - - ${project.groupId} - batik-css - ${project.version} - - - ${project.groupId} - batik-dom - ${project.version} - - - ${project.groupId} - batik-ext - ${project.version} - - - ${project.groupId} - batik-parser - ${project.version} - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - ${project.groupId} - batik-util - ${project.version} - - - xml-apis - xml-apis-ext - ${xmlapisext.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/batik-svg-dom-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/batik-svg-dom-1.17.pom.sha1 deleted file mode 100644 index c0aa6b6..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-svg-dom/1.17/batik-svg-dom-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a3a7950cfd4590699db81027240c92a719806767 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/_remote.repositories deleted file mode 100644 index 2689d4d..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-svggen-1.17.jar>central= -batik-svggen-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/batik-svggen-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/batik-svggen-1.17.jar deleted file mode 100644 index 87019ec..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/batik-svggen-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/batik-svggen-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/batik-svggen-1.17.jar.sha1 deleted file mode 100644 index 8b53fad..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/batik-svggen-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2ecd4a5ab064e89172fbdd025c422e04a57a1024 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/batik-svggen-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/batik-svggen-1.17.pom deleted file mode 100644 index 413bf74..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/batik-svggen-1.17.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - 4.0.0 - - batik-svggen - ${project.groupId}:${project.artifactId} - Batik Java2D SVG generator - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-awt-util - ${project.version} - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - ${project.groupId} - batik-util - ${project.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/batik-svggen-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/batik-svggen-1.17.pom.sha1 deleted file mode 100644 index 8fb8938..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.17/batik-svggen-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4b51062dd6006b7fc85504b583c54d4c5c00f02d \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/_remote.repositories deleted file mode 100644 index 8ff3b12..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-transcoder-1.17.jar>central= -batik-transcoder-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/batik-transcoder-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/batik-transcoder-1.17.jar deleted file mode 100644 index 100a9b7..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/batik-transcoder-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/batik-transcoder-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/batik-transcoder-1.17.jar.sha1 deleted file mode 100644 index 48f011b..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/batik-transcoder-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -59714b2b8848f0ade8de47ca555f9a75d5191834 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/batik-transcoder-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/batik-transcoder-1.17.pom deleted file mode 100644 index 9b46ebd..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/batik-transcoder-1.17.pom +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - 4.0.0 - - batik-transcoder - ${project.groupId}:${project.artifactId} - Batik SVG transcoder - - - org.apache.xmlgraphics - batik - 1.17 - - - - - org.apache.xmlgraphics - batik-anim - ${project.version} - - - org.apache.xmlgraphics - batik-awt-util - ${project.version} - - - org.apache.xmlgraphics - batik-bridge - ${project.version} - - - org.apache.xmlgraphics - batik-dom - ${project.version} - - - org.apache.xmlgraphics - batik-gvt - ${project.version} - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - org.apache.xmlgraphics - batik-svggen - ${project.version} - - - org.apache.xmlgraphics - batik-util - ${project.version} - - - org.apache.xmlgraphics - batik-xml - ${project.version} - - - xml-apis - xml-apis-ext - ${xmlapisext.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/batik-transcoder-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/batik-transcoder-1.17.pom.sha1 deleted file mode 100644 index 640670d..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-transcoder/1.17/batik-transcoder-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -60c4eae1f49ee1eaafdd69fe4739858a9166b027 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/_remote.repositories deleted file mode 100644 index 6ca19f1..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-util-1.17.jar>central= -batik-util-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/batik-util-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/batik-util-1.17.jar deleted file mode 100644 index 2dae36f..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/batik-util-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/batik-util-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/batik-util-1.17.jar.sha1 deleted file mode 100644 index 304009b..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/batik-util-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -83ef2a8b449444a1d57e91e938522899317a8672 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/batik-util-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/batik-util-1.17.pom deleted file mode 100644 index 7d39819..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/batik-util-1.17.pom +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - 4.0.0 - - batik-util - ${project.groupId}:${project.artifactId} - Batik utility library - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-constants - ${project.version} - - - ${project.groupId} - batik-i18n - ${project.version} - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - ${project.groupId} - batik-test - ${project.version} - test - - - junit - junit - ${junit.version} - test - - - - - - - maven-surefire-plugin - ${surefire.version} - - - **/*TestCase.java - **/*TestCases.java - - true - - - - org.apache.maven.plugins - maven-jar-plugin - ${jar.version} - - - - test-jar - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/batik-util-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/batik-util-1.17.pom.sha1 deleted file mode 100644 index a8461a6..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-util/1.17/batik-util-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8201c8ea5d132152148bc0d87974dce28378c583 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/_remote.repositories deleted file mode 100644 index ab7feab..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -batik-xml-1.17.jar>central= -batik-xml-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/batik-xml-1.17.jar b/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/batik-xml-1.17.jar deleted file mode 100644 index d7d82d7..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/batik-xml-1.17.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/batik-xml-1.17.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/batik-xml-1.17.jar.sha1 deleted file mode 100644 index 5c2b5ab..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/batik-xml-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -15a0b4ba6260f3430632e4b1dad95383196107a8 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/batik-xml-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/batik-xml-1.17.pom deleted file mode 100644 index f57d321..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/batik-xml-1.17.pom +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - 4.0.0 - - batik-xml - ${project.groupId}:${project.artifactId} - Batik XML utilities - - - org.apache.xmlgraphics - batik - 1.17 - - - - - ${project.groupId} - batik-shared-resources - ${project.version} - - - ${project.groupId} - batik-util - ${project.version} - - - - - - - maven-dependency-plugin - ${dependency.version} - - - unpack-shared-resources - prepare-package - - unpack-dependencies - - - ${project.groupId} - batik-shared-resources - **/LICENSE,**/NOTICE - ${project.build.outputDirectory} - - - - - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/batik-xml-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/batik-xml-1.17.pom.sha1 deleted file mode 100644 index 2b41cca..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik-xml/1.17/batik-xml-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cbc630496897dac0689cedf0c441809c56fd3cae \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/batik/1.17/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/batik/1.17/_remote.repositories deleted file mode 100644 index 45c47e2..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik/1.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. -#Thu Apr 02 20:38:05 UTC 2026 -batik-1.17.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/batik/1.17/batik-1.17.pom b/.m2/repository/org/apache/xmlgraphics/batik/1.17/batik-1.17.pom deleted file mode 100644 index 2e2fc42..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik/1.17/batik-1.17.pom +++ /dev/null @@ -1,214 +0,0 @@ - - - 4.0.0 - - org.apache.xmlgraphics - batik - 1.17 - ${project.groupId}:${project.artifactId} - XML Graphics Batik - pom - http://xmlgraphics.apache.org/batik/ - 2000 - - - 2.15 - 3.3 - 3.1.1 - 3.0.1 - 3.1.1 - 1.8 - 4.11 - 2.7.0 - error - 2.8 - UTF-8 - 2.5.2 - 1.7.7 - 2.18.1 - 1.4.01 - 1.3.04 - 2.9 - ${env.JAVA_HOME} - - - - - Batik Users List - batik-users-subscribe@xmlgraphics.apache.org - batik-users-unsubscribe@xmlgraphics.apache.org - http://mail-archives.apache.org/mod_mbox/xmlgraphics-batik-users/ - - - Batik Developer List - batik-dev-subscribe@xmlgraphics.apache.org - batik-dev-unsubscribe@xmlgraphics.apache.org - http://mail-archives.apache.org/mod_mbox/xmlgraphics-batik-dev/ - - - Batik Commit List - batik-commits-subscribe@xmlgraphics.apache.org - batik-commits-unsubscribe@xmlgraphics.apache.org - http://mail-archives.apache.org/mod_mbox/xmlgraphics-batik-commits/ - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - Apache Software Foundation - http://www.apache.org/ - - - - batik-all - batik-anim - batik-awt-util - batik-bridge - batik-codec - batik-constants - batik-css - batik-dom - batik-ext - batik-extension - batik-gui-util - batik-gvt - batik-i18n - batik-parser - batik-rasterizer-ext - batik-rasterizer - batik-script - batik-shared-resources - batik-slideshow - batik-squiggle-ext - batik-squiggle - batik-svg-dom - batik-svgbrowser - batik-svggen - batik-svgpp - batik-svgrasterizer - batik-swing - batik-test - batik-transcoder - batik-util - batik-ttf2svg - batik-xml - batik-test-old - batik-test-svg - batik-test-swing - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${compiler.version} - - ${java.version} - ${java.version} - - false - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${project.info.reports.version} - - - org.apache.maven.plugins - maven-surefire-plugin - ${surefire.version} - - - org.codehaus.mojo - findbugs-maven-plugin - ${findbugs.version} - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${checkstyle.version} - - checkstyle.xml - warning - false - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 8 - none - - **/jacl/*.java - - - - - - - - - - custom-javac - - - jdk.path - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${compiler.version} - - ${java.version} - ${java.version} - ${jdk.path}/bin/javac - true - - - - - - - - - - scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/ - scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/ - - - - - - apache.snapshots.https - https://repository.apache.org/content/repositories/snapshots - - true - always - - - - - - - ${project.artifactId}-site - ${project.baseUri} - - - - diff --git a/.m2/repository/org/apache/xmlgraphics/batik/1.17/batik-1.17.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/batik/1.17/batik-1.17.pom.sha1 deleted file mode 100644 index 4d61757..0000000 --- a/.m2/repository/org/apache/xmlgraphics/batik/1.17/batik-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -109558bd7e689486fa48f284f7f232b907779184 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/_remote.repositories b/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/_remote.repositories deleted file mode 100644 index bc396ba..0000000 --- a/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/_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. -#Thu Apr 02 20:38:35 UTC 2026 -xmlgraphics-commons-2.9.jar>central= -xmlgraphics-commons-2.9.pom>central= diff --git a/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/xmlgraphics-commons-2.9.jar b/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/xmlgraphics-commons-2.9.jar deleted file mode 100644 index 44cc192..0000000 Binary files a/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/xmlgraphics-commons-2.9.jar and /dev/null differ diff --git a/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/xmlgraphics-commons-2.9.jar.sha1 b/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/xmlgraphics-commons-2.9.jar.sha1 deleted file mode 100644 index 0486fe7..0000000 --- a/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/xmlgraphics-commons-2.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -de2d1bd8d40474bbe876bb269410c750489f08e5 \ No newline at end of file diff --git a/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/xmlgraphics-commons-2.9.pom b/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/xmlgraphics-commons-2.9.pom deleted file mode 100644 index cb2e854..0000000 --- a/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/xmlgraphics-commons-2.9.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - - 4.0.0 - org.apache.xmlgraphics - xmlgraphics-commons - jar - Apache XML Graphics Commons - 2.9 - http://xmlgraphics.apache.org/commons/ - - Apache XML Graphics Commons is a library that consists of several reusable - components used by Apache Batik and Apache FOP. Many of these components - can easily be used separately outside the domains of SVG and XSL-FO. - - 2005 - - - XML Graphics General List - general-subscribe@xmlgraphics.apache.org - general-unsubscribe@xmlgraphics.apache.org - http://mail-archives.apache.org/mod_mbox/xmlgraphics-general/ - - - XML Graphics Commit List - commits-subscribe@xmlgraphics.apache.org - commits-unsubscribe@xmlgraphics.apache.org - http://mail-archives.apache.org/mod_mbox/xmlgraphics-commits/ - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:svn:http://svn.apache.org/repos/asf/xmlgraphics/commons/trunk - scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/commons/trunk - http://svn.apache.org/viewvc/xmlgraphics/commons/trunk/?root=Apache-SVN - - - Apache Software Foundation - http://www.apache.org/ - - - org.apache - apache - 7 - - - - commons-io - commons-io - 2.11.0 - - - commons-logging - commons-logging - 1.0.4 - - - diff --git a/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/xmlgraphics-commons-2.9.pom.sha1 b/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/xmlgraphics-commons-2.9.pom.sha1 deleted file mode 100644 index 0228b89..0000000 --- a/.m2/repository/org/apache/xmlgraphics/xmlgraphics-commons/2.9/xmlgraphics-commons-2.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0a733b2d0ccf7231af4e891751be0d77b6917b3a \ No newline at end of file diff --git a/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/_remote.repositories b/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/_remote.repositories deleted file mode 100644 index 737d53d..0000000 --- a/.m2/repository/org/apiguardian/apiguardian-api/1.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. -#Thu Apr 02 20:38:35 UTC 2026 -apiguardian-api-1.1.2.jar>central= -apiguardian-api-1.1.2.pom>central= diff --git a/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar b/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar deleted file mode 100644 index 2b678e1..0000000 Binary files a/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar and /dev/null differ diff --git a/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar.sha1 b/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar.sha1 deleted file mode 100644 index a60846c..0000000 --- a/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a231e0d844d2721b0fa1b238006d15c6ded6842a \ No newline at end of file diff --git a/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom b/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom deleted file mode 100644 index d0c8ac1..0000000 --- a/.m2/repository/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/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom.sha1 b/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom.sha1 deleted file mode 100644 index 0a0ab24..0000000 --- a/.m2/repository/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/.m2/repository/org/assertj/assertj-bom/3.24.2/_remote.repositories b/.m2/repository/org/assertj/assertj-bom/3.24.2/_remote.repositories deleted file mode 100644 index a991c6a..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:08 UTC 2026 -assertj-bom-3.24.2.pom>central= diff --git a/.m2/repository/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom b/.m2/repository/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom deleted file mode 100644 index 152bba5..0000000 --- a/.m2/repository/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/.m2/repository/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.sha1 b/.m2/repository/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom.sha1 deleted file mode 100644 index ff4270b..0000000 --- a/.m2/repository/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/.m2/repository/org/assertj/assertj-bom/3.27.4/_remote.repositories b/.m2/repository/org/assertj/assertj-bom/3.27.4/_remote.repositories deleted file mode 100644 index 057543c..0000000 --- a/.m2/repository/org/assertj/assertj-bom/3.27.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. -#Thu Apr 02 20:37:34 UTC 2026 -assertj-bom-3.27.4.pom>central= diff --git a/.m2/repository/org/assertj/assertj-bom/3.27.4/assertj-bom-3.27.4.pom b/.m2/repository/org/assertj/assertj-bom/3.27.4/assertj-bom-3.27.4.pom deleted file mode 100644 index aa17b66..0000000 --- a/.m2/repository/org/assertj/assertj-bom/3.27.4/assertj-bom-3.27.4.pom +++ /dev/null @@ -1,115 +0,0 @@ - - - 4.0.0 - org.assertj - assertj-bom - 3.27.4 - 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/ - 2012 - - AssertJ - https://assertj.github.io/doc/ - - - - Apache-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.27.4 - https://github.com/assertj/assertj/assertj-bom - - - GitHub - https://github.com/assertj/assertj/issues - - - - - org.assertj - assertj-core - 3.27.4 - - - org.assertj - assertj-guava - 3.27.4 - - - - diff --git a/.m2/repository/org/assertj/assertj-bom/3.27.4/assertj-bom-3.27.4.pom.sha1 b/.m2/repository/org/assertj/assertj-bom/3.27.4/assertj-bom-3.27.4.pom.sha1 deleted file mode 100644 index fc9283e..0000000 --- a/.m2/repository/org/assertj/assertj-bom/3.27.4/assertj-bom-3.27.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1821c8f199cbda8acfbf023363fe461488a9ab31 \ No newline at end of file diff --git a/.m2/repository/org/assertj/assertj-core/3.27.4/_remote.repositories b/.m2/repository/org/assertj/assertj-core/3.27.4/_remote.repositories deleted file mode 100644 index e2d4566..0000000 --- a/.m2/repository/org/assertj/assertj-core/3.27.4/_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. -#Thu Apr 02 20:38:35 UTC 2026 -assertj-core-3.27.4.jar>central= -assertj-core-3.27.4.pom>central= diff --git a/.m2/repository/org/assertj/assertj-core/3.27.4/assertj-core-3.27.4.jar b/.m2/repository/org/assertj/assertj-core/3.27.4/assertj-core-3.27.4.jar deleted file mode 100644 index b427ca5..0000000 Binary files a/.m2/repository/org/assertj/assertj-core/3.27.4/assertj-core-3.27.4.jar and /dev/null differ diff --git a/.m2/repository/org/assertj/assertj-core/3.27.4/assertj-core-3.27.4.jar.sha1 b/.m2/repository/org/assertj/assertj-core/3.27.4/assertj-core-3.27.4.jar.sha1 deleted file mode 100644 index cc8655e..0000000 --- a/.m2/repository/org/assertj/assertj-core/3.27.4/assertj-core-3.27.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -65e62575f7e422df6d290dc1cb15f3c97108b2b1 \ No newline at end of file diff --git a/.m2/repository/org/assertj/assertj-core/3.27.4/assertj-core-3.27.4.pom b/.m2/repository/org/assertj/assertj-core/3.27.4/assertj-core-3.27.4.pom deleted file mode 100644 index d439d04..0000000 --- a/.m2/repository/org/assertj/assertj-core/3.27.4/assertj-core-3.27.4.pom +++ /dev/null @@ -1,133 +0,0 @@ - - - 4.0.0 - org.assertj - assertj-core - 3.27.4 - AssertJ Core - Rich and fluent assertions for testing in Java - https://assertj.github.io/doc/#assertj-core - - - Apache-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-parent/assertj-core - scm:git:https://github.com/assertj/assertj.git/assertj-parent/assertj-core - assertj-build-3.27.4 - https://github.com/assertj/assertj/assertj-parent/assertj-core - - - - net.bytebuddy - byte-buddy - 1.15.11 - compile - - - junit - junit - 4.13.2 - provided - - - org.hamcrest - hamcrest-core - - - true - - - org.hamcrest - hamcrest - 3.0 - provided - true - - - org.junit.jupiter - junit-jupiter-api - 5.11.4 - provided - true - - - org.opentest4j - opentest4j - 1.3.0 - provided - true - - - diff --git a/.m2/repository/org/assertj/assertj-core/3.27.4/assertj-core-3.27.4.pom.sha1 b/.m2/repository/org/assertj/assertj-core/3.27.4/assertj-core-3.27.4.pom.sha1 deleted file mode 100644 index ae794fe..0000000 --- a/.m2/repository/org/assertj/assertj-core/3.27.4/assertj-core-3.27.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5633486f32602555f30753803e75ec2947a30e65 \ No newline at end of file diff --git a/.m2/repository/org/awaitility/awaitility-parent/4.2.2/_remote.repositories b/.m2/repository/org/awaitility/awaitility-parent/4.2.2/_remote.repositories deleted file mode 100644 index caaec9f..0000000 --- a/.m2/repository/org/awaitility/awaitility-parent/4.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. -#Thu Apr 02 20:37:58 UTC 2026 -awaitility-parent-4.2.2.pom>central= diff --git a/.m2/repository/org/awaitility/awaitility-parent/4.2.2/awaitility-parent-4.2.2.pom b/.m2/repository/org/awaitility/awaitility-parent/4.2.2/awaitility-parent-4.2.2.pom deleted file mode 100644 index 082aae6..0000000 --- a/.m2/repository/org/awaitility/awaitility-parent/4.2.2/awaitility-parent-4.2.2.pom +++ /dev/null @@ -1,297 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 9 - - - org.awaitility - awaitility-parent - pom - 4.2.2 - - 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.2 - - - - 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/.m2/repository/org/awaitility/awaitility-parent/4.2.2/awaitility-parent-4.2.2.pom.sha1 b/.m2/repository/org/awaitility/awaitility-parent/4.2.2/awaitility-parent-4.2.2.pom.sha1 deleted file mode 100644 index 770ca24..0000000 --- a/.m2/repository/org/awaitility/awaitility-parent/4.2.2/awaitility-parent-4.2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -02a8d8026fa7930758b534ec0dafe8db433ea0d8 \ No newline at end of file diff --git a/.m2/repository/org/awaitility/awaitility/4.2.2/_remote.repositories b/.m2/repository/org/awaitility/awaitility/4.2.2/_remote.repositories deleted file mode 100644 index dabe584..0000000 --- a/.m2/repository/org/awaitility/awaitility/4.2.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. -#Thu Apr 02 20:38:35 UTC 2026 -awaitility-4.2.2.jar>central= -awaitility-4.2.2.pom>central= diff --git a/.m2/repository/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.jar b/.m2/repository/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.jar deleted file mode 100644 index f5012fb..0000000 Binary files a/.m2/repository/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.jar and /dev/null differ diff --git a/.m2/repository/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.jar.sha1 b/.m2/repository/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.jar.sha1 deleted file mode 100644 index e0be0f2..0000000 --- a/.m2/repository/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7336242073ebf83fe034e42b46a403c5501b63c9 \ No newline at end of file diff --git a/.m2/repository/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.pom b/.m2/repository/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.pom deleted file mode 100644 index c9a1a4e..0000000 --- a/.m2/repository/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.pom +++ /dev/null @@ -1,86 +0,0 @@ - - - - 4.0.0 - - org.awaitility - awaitility-parent - 4.2.2 - - 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/.m2/repository/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.pom.sha1 b/.m2/repository/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.pom.sha1 deleted file mode 100644 index ddd6ba9..0000000 --- a/.m2/repository/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f472a77b624768a4392cfe5719786ac2d5b78318 \ No newline at end of file diff --git a/.m2/repository/org/bouncycastle/bcprov-jdk18on/1.76/_remote.repositories b/.m2/repository/org/bouncycastle/bcprov-jdk18on/1.76/_remote.repositories deleted file mode 100644 index 646e5d9..0000000 --- a/.m2/repository/org/bouncycastle/bcprov-jdk18on/1.76/_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. -#Thu Apr 02 20:38:35 UTC 2026 -bcprov-jdk18on-1.76.jar>central= -bcprov-jdk18on-1.76.pom>central= diff --git a/.m2/repository/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.jar b/.m2/repository/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.jar deleted file mode 100644 index c0c8994..0000000 Binary files a/.m2/repository/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.jar and /dev/null differ diff --git a/.m2/repository/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.jar.sha1 b/.m2/repository/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.jar.sha1 deleted file mode 100644 index 4e7bac1..0000000 --- a/.m2/repository/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3a785d0b41806865ad7e311162bfa3fa60b3965b \ No newline at end of file diff --git a/.m2/repository/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom b/.m2/repository/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom deleted file mode 100644 index c1597c4..0000000 --- a/.m2/repository/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/.m2/repository/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom.sha1 b/.m2/repository/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom.sha1 deleted file mode 100644 index 943249a..0000000 --- a/.m2/repository/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/.m2/repository/org/checkerframework/checker-compat-qual/2.5.5/_remote.repositories b/.m2/repository/org/checkerframework/checker-compat-qual/2.5.5/_remote.repositories deleted file mode 100644 index 797d286..0000000 --- a/.m2/repository/org/checkerframework/checker-compat-qual/2.5.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. -#Thu Apr 02 20:37:50 UTC 2026 -checker-compat-qual-2.5.5.pom>central= diff --git a/.m2/repository/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.pom b/.m2/repository/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.pom deleted file mode 100644 index 19f7f8f..0000000 --- a/.m2/repository/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.pom +++ /dev/null @@ -1,71 +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-compat-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.5.5 - - - 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/ - - - - - diff --git a/.m2/repository/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.pom.sha1 b/.m2/repository/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.pom.sha1 deleted file mode 100644 index 77b2b26..0000000 --- a/.m2/repository/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -493796785b3c508c4c25e539321218511bd1c1ae \ No newline at end of file diff --git a/.m2/repository/org/checkerframework/checker-qual/3.33.0/_remote.repositories b/.m2/repository/org/checkerframework/checker-qual/3.33.0/_remote.repositories deleted file mode 100644 index 73b9cfe..0000000 --- a/.m2/repository/org/checkerframework/checker-qual/3.33.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. -#Thu Apr 02 20:38:35 UTC 2026 -checker-qual-3.33.0.jar>central= -checker-qual-3.33.0.pom>central= diff --git a/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar b/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar deleted file mode 100644 index 61761fd..0000000 Binary files a/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar and /dev/null differ diff --git a/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar.sha1 b/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar.sha1 deleted file mode 100644 index 88bdfb2..0000000 --- a/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -de2b60b62da487644fc11f734e73c8b0b431238f \ No newline at end of file diff --git a/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom b/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom deleted file mode 100644 index 960d8cf..0000000 --- a/.m2/repository/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/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom.sha1 b/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom.sha1 deleted file mode 100644 index 41137c8..0000000 --- a/.m2/repository/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/.m2/repository/org/checkerframework/checker-qual/3.37.0/_remote.repositories b/.m2/repository/org/checkerframework/checker-qual/3.37.0/_remote.repositories deleted file mode 100644 index e0911cc..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:03 UTC 2026 -checker-qual-3.37.0.pom>central= diff --git a/.m2/repository/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom b/.m2/repository/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom deleted file mode 100644 index e423d3c..0000000 --- a/.m2/repository/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/.m2/repository/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom.sha1 b/.m2/repository/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.pom.sha1 deleted file mode 100644 index e9950db..0000000 --- a/.m2/repository/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/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/_remote.repositories deleted file mode 100644 index 628bb96..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.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. -#Thu Apr 02 20:43:08 UTC 2026 -plexus-archiver-4.9.2.jar>central= -plexus-archiver-4.9.2.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.jar b/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.jar deleted file mode 100644 index f74544e..0000000 Binary files a/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.jar and /dev/null differ diff --git a/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.jar.sha1 b/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.jar.sha1 deleted file mode 100644 index be05e6c..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a03ed402ef8468c1d1bda368d7213cad67f16a71 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.pom b/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.pom deleted file mode 100644 index f04f6d1..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.pom +++ /dev/null @@ -1,191 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus - 17 - - - plexus-archiver - 4.9.2 - Plexus Archiver Component - - https://codehaus-plexus.github.io/plexus-archiver/ - - - - Dan Tran - - - Richard van der Hoff - - - Tomasz 'Trog' Welman - trog@swmud.pl - - - - - scm:git:https://github.com/codehaus-plexus/plexus-archiver.git - scm:git:https://github.com/codehaus-plexus/plexus-archiver.git - plexus-archiver-4.9.2 - https://github.com/codehaus-plexus/plexus-archiver/tree/${project.scm.tag}/ - - - GitHub - https://github.com/codehaus-plexus/plexus-archiver/issues - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - 1.7.36 - 2024-03-14T22:25:33Z - - - - - - javax.inject - javax.inject - 1 - - - - org.codehaus.plexus - plexus-utils - 4.0.0 - - - org.codehaus.plexus - plexus-io - 3.4.2 - - - - commons-io - commons-io - 2.15.1 - - - org.apache.commons - commons-compress - 1.26.1 - - - - commons-codec - commons-codec - 1.16.1 - - - - org.slf4j - slf4j-api - ${slf4jVersion} - - - org.iq80.snappy - snappy - 0.4 - - - org.tukaani - xz - 1.9 - runtime - - - com.github.luben - zstd-jni - 1.5.5-11 - runtime - - - com.google.code.findbugs - jsr305 - 3.0.2 - provided - - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.slf4j - slf4j-simple - ${slf4jVersion} - test - - - - org.eclipse.sisu - org.eclipse.sisu.inject - ${sisuMavenPluginVersion} - test - - - com.google.inject - guice - 6.0.0 - test - - - org.assertj - assertj-core - 3.25.3 - test - - - - - - - org.apache.maven.plugins - maven-release-plugin - - - - **/src/test/resources/utf8/** - - - - - org.eclipse.sisu - sisu-maven-plugin - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - - scm-publish - - - publish-scm - - site-deploy - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.pom.sha1 deleted file mode 100644 index 80e13e7..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7d735c23385b28f42fffacbbb11c6cd3b9820227 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/_remote.repositories deleted file mode 100644 index fa88794..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.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. -#Thu Apr 02 20:38:43 UTC 2026 -plexus-compiler-api-2.15.0.jar>central= -plexus-compiler-api-2.15.0.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.jar b/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.jar deleted file mode 100644 index 7c0699e..0000000 Binary files a/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.jar and /dev/null differ diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.jar.sha1 b/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.jar.sha1 deleted file mode 100644 index 0e90e18..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1bd59395d358ca695fddc7b9dc594483f4140601 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.pom b/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.pom deleted file mode 100644 index a51f98d..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus-compiler - 2.15.0 - - - plexus-compiler-api - - Plexus Compiler Api - Plexus Compilers component's API to manipulate compilers. - - - - org.codehaus.plexus - plexus-utils - - - org.eclipse.sisu - org.eclipse.sisu.plexus - provided - - - org.slf4j - slf4j-api - 1.7.36 - - - org.junit.jupiter - junit-jupiter-api - test - - - org.hamcrest - hamcrest - test - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.pom.sha1 deleted file mode 100644 index 0e54bfd..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -85362b884310a05ede00e892923492aa7e96c9f1 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/_remote.repositories deleted file mode 100644 index 20ca3bd..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.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. -#Thu Apr 02 20:38:43 UTC 2026 -plexus-compiler-javac-2.15.0.jar>central= -plexus-compiler-javac-2.15.0.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.jar b/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.jar deleted file mode 100644 index b2585ce..0000000 Binary files a/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.jar and /dev/null differ diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.jar.sha1 b/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.jar.sha1 deleted file mode 100644 index 3aea88f..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -48069fe3c512b09e8aa32d77929c190a6faba790 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.pom b/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.pom deleted file mode 100644 index 43d4ae8..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.pom +++ /dev/null @@ -1,41 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus-compilers - 2.15.0 - - - plexus-compiler-javac - - Plexus Javac Component - Javac Compiler support for Plexus Compiler component. - - - - org.codehaus.plexus - plexus-utils - - - javax.inject - javax.inject - - - org.slf4j - slf4j-api - - - org.junit.jupiter - junit-jupiter-params - test - - - org.hamcrest - hamcrest - test - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.pom.sha1 deleted file mode 100644 index d12de09..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e391b900f6ace61b0c6dcd650afb6834b706ceca \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/_remote.repositories deleted file mode 100644 index a4131be..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.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. -#Thu Apr 02 20:38:43 UTC 2026 -plexus-compiler-manager-2.15.0.jar>central= -plexus-compiler-manager-2.15.0.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.jar b/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.jar deleted file mode 100644 index 89085d0..0000000 Binary files a/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.jar and /dev/null differ diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.jar.sha1 b/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.jar.sha1 deleted file mode 100644 index 29486de..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -4c6d2fc56063e2c62b953a2da9ad60c19097474d \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.pom b/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.pom deleted file mode 100644 index efc953b..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus-compiler - 2.15.0 - - - plexus-compiler-manager - - Plexus Compiler Manager - - - - org.codehaus.plexus - plexus-compiler-api - - - javax.inject - javax.inject - - - org.slf4j - slf4j-api - - - org.codehaus.plexus - plexus-xml - - - org.junit.jupiter - junit-jupiter-api - test - - - org.codehaus.plexus - plexus-testing - test - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.pom.sha1 deleted file mode 100644 index f927048..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -05e0554068987c383fcd50d94a663421b341c5f0 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler/2.15.0/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-compiler/2.15.0/_remote.repositories deleted file mode 100644 index 3b3d2ff..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler/2.15.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. -#Thu Apr 02 20:38:41 UTC 2026 -plexus-compiler-2.15.0.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler/2.15.0/plexus-compiler-2.15.0.pom b/.m2/repository/org/codehaus/plexus/plexus-compiler/2.15.0/plexus-compiler-2.15.0.pom deleted file mode 100644 index 709cc4d..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler/2.15.0/plexus-compiler-2.15.0.pom +++ /dev/null @@ -1,222 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus - 17 - - - plexus-compiler - 2.15.0 - pom - - Plexus Compiler - Plexus Compiler is a Plexus component to use different compilers through a uniform API. - - - plexus-compiler-api - plexus-compiler-manager - plexus-compilers - plexus-compiler-test - plexus-compiler-its - - - - ${scm.url} - ${scm.url} - plexus-compiler-2.15.0 - http://github.com/codehaus-plexus/plexus-compiler/tree/${project.scm.tag}/ - - - github - https://github.com/codehaus-plexus/plexus-compiler/issues - - - - github:gh-pages - ${scm.url} - - - - - scm:git:git@github.com:codehaus-plexus/plexus-compiler.git - 8 - true - 2024-03-10T16:44:32Z - 1.9.21 - 3.6.3 - ${mavenVersion} - 2.25.0 - false - clean install - 3.12.1 - - - - - - org.codehaus.plexus - plexus-compiler-api - ${project.version} - - - org.codehaus.plexus - plexus-compiler-test - ${project.version} - - - org.codehaus.plexus - plexus-compiler-aspectj - ${project.version} - - - org.codehaus.plexus - plexus-compiler-eclipse - ${project.version} - - - org.codehaus.plexus - plexus-compiler-javac-errorprone - ${project.version} - - - org.codehaus.plexus - plexus-compiler-javac - ${project.version} - - - org.codehaus.plexus - plexus-compiler-manager - ${project.version} - - - org.codehaus.plexus - plexus-component-annotations - 2.2.0 - - - javax.inject - javax.inject - 1 - - - org.junit - junit-bom - ${junit5Version} - pom - import - - - org.codehaus.plexus - plexus-testing - 1.3.0 - - - com.google.guava - guava - 33.0.0-jre - - - org.eclipse.sisu - org.eclipse.sisu.plexus - 0.9.0.M2 - - - org.eclipse.sisu - org.eclipse.sisu.inject - 0.9.0.M2 - - - org.hamcrest - hamcrest - 2.2 - - - org.codehaus.plexus - plexus-utils - 4.0.0 - - - org.codehaus.plexus - plexus-xml - 3.0.0 - - - org.slf4j - slf4j-api - 1.7.36 - - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - ${redirectTestOutputToFile} - - ${settings.localRepository} - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven.compiler.version} - - none - - - - org.apache.maven.plugins - maven-release-plugin - - plexus-release,tools.jar - true - - - - - - - org.apache.maven.plugins - maven-site-plugin - - ${scm.url} - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java - - enforce - - - - - [17,) - [ERROR] OLD JDK [${java.version}] in use. This projects requires JDK 17 or newer - - - - - - - - - org.eclipse.sisu - sisu-maven-plugin - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-compiler/2.15.0/plexus-compiler-2.15.0.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-compiler/2.15.0/plexus-compiler-2.15.0.pom.sha1 deleted file mode 100644 index d9c5132..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compiler/2.15.0/plexus-compiler-2.15.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a6e6866e422252517e7d3d37097117c09b369b99 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-compilers/2.15.0/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-compilers/2.15.0/_remote.repositories deleted file mode 100644 index b6c1a1f..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compilers/2.15.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. -#Thu Apr 02 20:38:42 UTC 2026 -plexus-compilers-2.15.0.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-compilers/2.15.0/plexus-compilers-2.15.0.pom b/.m2/repository/org/codehaus/plexus/plexus-compilers/2.15.0/plexus-compilers-2.15.0.pom deleted file mode 100644 index d60cafd..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compilers/2.15.0/plexus-compilers-2.15.0.pom +++ /dev/null @@ -1,48 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus-compiler - 2.15.0 - - - plexus-compilers - pom - - Plexus Compilers - - - plexus-compiler-aspectj - plexus-compiler-csharp - plexus-compiler-eclipse - plexus-compiler-javac - plexus-compiler-javac-errorprone - - - - - org.junit.jupiter - junit-jupiter-api - test - - - org.codehaus.plexus - plexus-compiler-api - - - org.codehaus.plexus - plexus-compiler-test - test - - - - commons-lang - commons-lang - 2.0 - test - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-compilers/2.15.0/plexus-compilers-2.15.0.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-compilers/2.15.0/plexus-compilers-2.15.0.pom.sha1 deleted file mode 100644 index 71560ea..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-compilers/2.15.0/plexus-compilers-2.15.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -26209faddddf2bbd50e438962d6f89059daba8fc \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/_remote.repositories deleted file mode 100644 index 091f5a9..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/_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. -#Thu Apr 02 20:38:40 UTC 2026 -plexus-interpolation-1.26.jar>central= -plexus-interpolation-1.26.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar b/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar deleted file mode 100644 index cfcf162..0000000 Binary files a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar and /dev/null differ diff --git a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar.sha1 b/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar.sha1 deleted file mode 100644 index c7ee893..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -25b919c664b79795ccde0ede5cee0fd68b544197 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom b/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom deleted file mode 100644 index 54f194c..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom +++ /dev/null @@ -1,77 +0,0 @@ - - 4.0.0 - - - org.codehaus.plexus - plexus - 5.1 - - - plexus-interpolation - 1.26 - bundle - - Plexus Interpolation API - - - scm:git:https://github.com/codehaus-plexus/plexus-interpolation.git - scm:git:https://github.com/codehaus-plexus/plexus-interpolation.git - http://github.com/codehaus-plexus/plexus-interpolation/tree/${project.scm.tag}/ - plexus-interpolation-1.26 - - - - JIRA - https://github.com/codehaus-plexus/plexus-interpolation/issues - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - - - - org.apache.felix - maven-bundle-plugin - 3.0.1 - true - - - org.codehaus.plexus.* - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - scm-publish - site-deploy - - publish-scm - - - - - - org.apache.maven.plugins - maven-release-plugin - - - - **/src/test/resources/utf8/** - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom.sha1 deleted file mode 100644 index 8ef2a03..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -af412be9edee5aad63bbb304752ac0deda35ff08 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/_remote.repositories deleted file mode 100644 index be3c7fe..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/_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. -#Thu Apr 02 20:43:08 UTC 2026 -plexus-interpolation-1.27.jar>central= -plexus-interpolation-1.27.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.jar b/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.jar deleted file mode 100644 index 494191b..0000000 Binary files a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.jar and /dev/null differ diff --git a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.jar.sha1 b/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.jar.sha1 deleted file mode 100644 index 4c4779f..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8dc73f4ff5eafcbb7ec035ba54736e828b272533 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.pom b/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.pom deleted file mode 100644 index 8076e4d..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.pom +++ /dev/null @@ -1,91 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus - 16 - - - plexus-interpolation - 1.27 - bundle - - Plexus Interpolation API - - - scm:git:https://github.com/codehaus-plexus/plexus-interpolation.git - scm:git:https://github.com/codehaus-plexus/plexus-interpolation.git - plexus-interpolation-1.27 - http://github.com/codehaus-plexus/plexus-interpolation/tree/${project.scm.tag}/ - - - - JIRA - https://github.com/codehaus-plexus/plexus-interpolation/issues - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - 2023-12-24T00:37:41Z - - - - - org.junit.jupiter - junit-jupiter - test - - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - true - - - org.codehaus.plexus.* - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - - scm-publish - - - publish-scm - - site-deploy - - - - - org.apache.maven.plugins - maven-release-plugin - - - - **/src/test/resources/utf8/** - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.pom.sha1 deleted file mode 100644 index f166ca6..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0562449f7a1f2ec670751e294799e8786f8003e3 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/_remote.repositories deleted file mode 100644 index 02d1f53..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-io/3.4.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. -#Thu Apr 02 20:43:08 UTC 2026 -plexus-io-3.4.2.jar>central= -plexus-io-3.4.2.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.jar b/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.jar deleted file mode 100644 index b167754..0000000 Binary files a/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.jar and /dev/null differ diff --git a/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.jar.sha1 b/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.jar.sha1 deleted file mode 100644 index 07c1db6..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -40deb3076e4597f1ef973dc794f3a510fa3a942d \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.pom b/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.pom deleted file mode 100644 index b2a7829..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.pom +++ /dev/null @@ -1,128 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus - 16 - - - plexus-io - 3.4.2 - - Plexus IO Components - - - scm:git:git@github.com:codehaus-plexus/plexus-io.git - scm:git:git@github.com:codehaus-plexus/plexus-io.git - plexus-io-3.4.2 - http://github.com/codehaus-plexus/plexus-io - - - jira - https://github.com/codehaus-plexus/plexus-io/issues - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - 1.7.36 - 2023-12-23T23:42:28Z - - - - - - javax.inject - javax.inject - 1 - - - - org.codehaus.plexus - plexus-utils - 4.0.0 - - - org.codehaus.plexus - plexus-xml - 3.0.0 - test - - - com.google.code.findbugs - jsr305 - 3.0.2 - provided - - - commons-io - commons-io - 2.15.1 - - - - - org.junit.jupiter - junit-jupiter-api - test - - - org.slf4j - slf4j-simple - ${slf4jVersion} - test - - - org.codehaus.plexus - plexus-testing - 1.3.0 - test - - - - org.eclipse.sisu - org.eclipse.sisu.inject - 0.9.0.M2 - test - - - com.google.inject - guice - 6.0.0 - test - - - - - - - org.eclipse.sisu - sisu-maven-plugin - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - - scm-publish - - - publish-scm - - site-deploy - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.pom.sha1 deleted file mode 100644 index 0e0acc7..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4faed3a6992fff12755fdb541824d809a6add4ee \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/_remote.repositories deleted file mode 100644 index e7f3176..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-java/1.4.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. -#Thu Apr 02 20:38:43 UTC 2026 -plexus-java-1.4.0.jar>central= -plexus-java-1.4.0.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/plexus-java-1.4.0.jar b/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/plexus-java-1.4.0.jar deleted file mode 100644 index cb91b48..0000000 Binary files a/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/plexus-java-1.4.0.jar and /dev/null differ diff --git a/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/plexus-java-1.4.0.jar.sha1 b/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/plexus-java-1.4.0.jar.sha1 deleted file mode 100644 index a2bc75c..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/plexus-java-1.4.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -85efa6e13ef450deb94f6cb0a812a4e7acf74009 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/plexus-java-1.4.0.pom b/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/plexus-java-1.4.0.pom deleted file mode 100644 index 0015682..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/plexus-java-1.4.0.pom +++ /dev/null @@ -1,133 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus-languages - 1.4.0 - - plexus-java - - Plexus Languages :: Java - - - - org.ow2.asm - asm - 9.7.1 - - - com.thoughtworks.qdox - qdox - 2.2.0 - - - javax.inject - javax.inject - 1 - true - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.mockito - mockito-core - 4.11.0 - test - - - org.mockito - mockito-junit-jupiter - 4.11.0 - test - - - org.assertj - assertj-core - 3.27.3 - test - - - - - - - org.eclipse.sisu - sisu-maven-plugin - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - - - - - - jdk9 - - [9,) - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - jdk9 - - compile - - - 9 - true - - ${project.basedir}/src/main/java9 - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - default-jar - - - - true - - - - - - - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/plexus-java-1.4.0.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/plexus-java-1.4.0.pom.sha1 deleted file mode 100644 index a8ebfab..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-java/1.4.0/plexus-java-1.4.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -132cb99064e47a034a993d9501578c82d0d08b34 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-languages/1.4.0/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-languages/1.4.0/_remote.repositories deleted file mode 100644 index 7c3c3c7..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-languages/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. -#Thu Apr 02 20:38:41 UTC 2026 -plexus-languages-1.4.0.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-languages/1.4.0/plexus-languages-1.4.0.pom b/.m2/repository/org/codehaus/plexus/plexus-languages/1.4.0/plexus-languages-1.4.0.pom deleted file mode 100644 index c95357d..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-languages/1.4.0/plexus-languages-1.4.0.pom +++ /dev/null @@ -1,125 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus - 20 - - - plexus-languages - 1.4.0 - pom - - Plexus Languages - Plexus Languages maintains shared language features. - - - plexus-java - - - - scm:git:https://github.com/codehaus-plexus/plexus-languages.git - scm:git:https://github.com/codehaus-plexus/plexus-languages.git - plexus-languages-1.4.0 - https://github.com/codehaus-plexus/plexus-languages/tree/plexus-languages - - - github - https://github.com/codehaus-plexus/plexus-languages/issues - - - GitHub - https://github.com/codehaus-plexus/plexus-languages/actions - - - - github:gh-pages - ${scm.url} - - - - - scm:git:https://github.com/codehaus-plexus/plexus-languages.git - 2025-02-08T13:55:05Z - - - - - - - org.apache.maven.plugins - maven-release-plugin - - true - - - - com.diffplug.spotless - spotless-maven-plugin - ${spotless-maven-plugin.version} - - - - src/main/java/**/*.java - src/main/java9/**/*.java - src/test/java/**/*.java - - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - ${scm.url} - - - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - - - - - - - - - - plexus-release - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java - - enforce - - - - - 9 - - - - - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-languages/1.4.0/plexus-languages-1.4.0.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-languages/1.4.0/plexus-languages-1.4.0.pom.sha1 deleted file mode 100644 index ee82288..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-languages/1.4.0/plexus-languages-1.4.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5ee78cd8c1813e574d13452742c2b0ac43346cb9 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/_remote.repositories deleted file mode 100644 index e96b3e0..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/_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. -#Thu Apr 02 20:38:39 UTC 2026 -plexus-utils-3.0.24.jar>central= -plexus-utils-3.0.24.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar b/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar deleted file mode 100644 index 0c2642b..0000000 Binary files a/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar and /dev/null differ diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar.sha1 b/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar.sha1 deleted file mode 100644 index bc67d34..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b4ac9780b37cb1b736eae9fbcef27609b7c911ef \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom b/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom deleted file mode 100644 index 9bfd0d3..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 4.0 - - - plexus-utils - 3.0.24 - - Plexus Common Utilities - A collection of various utility classes to ease working with strings, files, command lines, XML and - more. - - - - scm:git:git@github.com:codehaus-plexus/plexus-utils.git - scm:git:git@github.com:codehaus-plexus/plexus-utils.git - http://github.com/codehaus-plexus/plexus-utils - plexus-utils-3.0.24 - - - github - http://github.com/codehaus-plexus/plexus-utils/issues - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - - org.apache.maven.shared - maven-plugin-testing-harness - 1.1 - test - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - scm-publish - site-deploy - - publish-scm - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - JAVA_HOME - ${JAVA_HOME} - - - M2_HOME - ${M2_HOME} - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.1.1 - - - enforce-java - - enforce - - - - - 1.7.0 - - - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom.sha1 deleted file mode 100644 index 5ec4333..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -288f4a74efd0cea03e1d59272271f07d598b88d6 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.4.2/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-utils/3.4.2/_remote.repositories deleted file mode 100644 index 7a014a8..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.4.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. -#Thu Apr 02 20:38:37 UTC 2026 -plexus-utils-3.4.2.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.pom b/.m2/repository/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.pom deleted file mode 100644 index abcddf8..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.pom +++ /dev/null @@ -1,253 +0,0 @@ - - - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 8 - - - plexus-utils - 3.4.2 - - Plexus Common Utilities - A collection of various utility classes to ease working with strings, files, command lines, XML and - more. - - - - scm:git:git@github.com:codehaus-plexus/plexus-utils.git - scm:git:git@github.com:codehaus-plexus/plexus-utils.git - http://github.com/codehaus-plexus/plexus-utils - plexus-utils-3.4.2 - - - github - http://github.com/codehaus-plexus/plexus-utils/issues - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - 2022-05-17T20:30:09Z - - - - - org.apache.maven.shared - maven-plugin-testing-harness - 1.1 - test - - - org.openjdk.jmh - jmh-core - 1.35 - test - - - org.openjdk.jmh - jmh-generator-annprocess - 1.35 - test - - - junit - junit - 4.13.2 - test - - - - - - - - org.apache.maven.plugins - maven-resources-plugin - - 2.7 - - - - - - maven-compiler-plugin - - - default-compile - - compile - - - 1.8 - 1.8 - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - scm-publish - site-deploy - - publish-scm - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - JAVA_HOME - ${JAVA_HOME} - - - M2_HOME - ${M2_HOME} - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - jdk9+ - - [9,) - - - - - - maven-compiler-plugin - - - compile-java-9 - - compile - - - 9 - - ${project.basedir}/src/main/java9 - - true - - - - - - - - - - jdk10+ - - [10,) - - - - - - maven-compiler-plugin - - - compile-java-10 - - compile - - - 10 - - ${project.basedir}/src/main/java10 - - true - - - - - - - - - - plexus-release - - - - maven-enforcer-plugin - - - enforce-java - - enforce - - - - - 11 - - - - - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.pom.sha1 deleted file mode 100644 index eeea695..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2e7d0c48e7888250f5ecf22634fc7be5a9743e69 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.0/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.0/_remote.repositories deleted file mode 100644 index 7621a1e..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.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. -#Thu Apr 02 20:38:40 UTC 2026 -plexus-utils-3.5.0.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom b/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom deleted file mode 100644 index 719ec57..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 10 - - - plexus-utils - 3.5.0 - - Plexus Common Utilities - A collection of various utility classes to ease working with strings, files, command lines, XML and - more. - - - - scm:git:git@github.com:codehaus-plexus/plexus-utils.git - scm:git:git@github.com:codehaus-plexus/plexus-utils.git - http://github.com/codehaus-plexus/plexus-utils - plexus-utils-3.5.0 - - - github - http://github.com/codehaus-plexus/plexus-utils/issues - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - 2022-10-23T08:37:59Z - - - - - org.openjdk.jmh - jmh-core - 1.35 - test - - - org.openjdk.jmh - jmh-generator-annprocess - 1.35 - test - - - junit - junit - 4.13.2 - test - - - - - - - - org.apache.maven.plugins - maven-resources-plugin - - 2.7 - - - - - - maven-compiler-plugin - - - default-compile - - compile - - - 1.8 - 1.8 - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - scm-publish - site-deploy - - publish-scm - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - JAVA_HOME - ${JAVA_HOME} - - - M2_HOME - ${M2_HOME} - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - jdk9+ - - [9,) - - - - - - maven-compiler-plugin - - - compile-java-9 - - compile - - - 9 - - ${project.basedir}/src/main/java9 - - true - - - - - - - - - - jdk10+ - - [10,) - - - - - - maven-compiler-plugin - - - compile-java-10 - - compile - - - 10 - - ${project.basedir}/src/main/java10 - - true - - - - - - - - - - plexus-release - - - - maven-enforcer-plugin - - - enforce-java - - enforce - - - - - 11 - - - - - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom.sha1 deleted file mode 100644 index bcf6afe..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5b0a95ee86f9182f8e01ff878fc7e39dd841bc49 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/_remote.repositories deleted file mode 100644 index 70e5821..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.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. -#Thu Apr 02 20:38:40 UTC 2026 -plexus-utils-3.5.1.jar>central= -plexus-utils-3.5.1.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar b/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar deleted file mode 100644 index 1873c52..0000000 Binary files a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar and /dev/null differ diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar.sha1 b/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar.sha1 deleted file mode 100644 index 08b512b..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c6bfb17c97ecc8863e88778ea301be742c62b06d \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom b/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom deleted file mode 100644 index 854d2fd..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom +++ /dev/null @@ -1,277 +0,0 @@ - - - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 10 - - - plexus-utils - 3.5.1 - - Plexus Common Utilities - A collection of various utility classes to ease working with strings, files, command lines, XML and - more. - - - - scm:git:git@github.com:codehaus-plexus/plexus-utils.git - scm:git:git@github.com:codehaus-plexus/plexus-utils.git - http://github.com/codehaus-plexus/plexus-utils - plexus-utils-3.5.1 - - - github - http://github.com/codehaus-plexus/plexus-utils/issues - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - 2023-03-02T01:23:05Z - - - - - org.openjdk.jmh - jmh-core - 1.36 - test - - - org.openjdk.jmh - jmh-generator-annprocess - 1.36 - test - - - junit - junit - 4.13.2 - test - - - - - - - - org.apache.maven.plugins - maven-resources-plugin - - 2.7 - - - - - - maven-compiler-plugin - - - default-compile - - compile - - - 1.8 - 1.8 - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - scm-publish - site-deploy - - publish-scm - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - JAVA_HOME - ${JAVA_HOME} - - - M2_HOME - ${M2_HOME} - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - jdk9+ - - [9,) - - - - - - maven-compiler-plugin - - - compile-java-9 - - compile - - - 9 - - ${project.basedir}/src/main/java9 - - true - - - - - - - - - - jdk10+ - - [10,) - - - - - - maven-compiler-plugin - - - compile-java-10 - - compile - - - 10 - - ${project.basedir}/src/main/java10 - - true - - - - - - - - - - jdk11+ - - [11,) - - - - - - maven-compiler-plugin - - - compile-java-11 - - compile - - - 11 - - ${project.basedir}/src/main/java11 - - true - - - - - - - - - - plexus-release - - - - maven-enforcer-plugin - - - enforce-java - - enforce - - - - - 11 - - - - - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom.sha1 deleted file mode 100644 index ce8d9ab..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9b1bf6967abaa0a516a04ea096da08ec8d8fe0d7 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/_remote.repositories deleted file mode 100644 index af2acd4..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.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. -#Thu Apr 02 20:38:43 UTC 2026 -plexus-utils-4.0.1.jar>central= -plexus-utils-4.0.1.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.jar b/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.jar deleted file mode 100644 index 82b3383..0000000 Binary files a/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.jar and /dev/null differ diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.jar.sha1 b/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.jar.sha1 deleted file mode 100644 index b2a2f57..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2162c639aa9b081ef2a0be9d41643513e284bf99 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.pom b/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.pom deleted file mode 100644 index c8904eb..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.pom +++ /dev/null @@ -1,242 +0,0 @@ - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 17 - - - plexus-utils - 4.0.1 - - Plexus Common Utilities - A collection of various utility classes to ease working with strings, files, command lines and - more. - https://codehaus-plexus.github.io/plexus-utils/ - - - scm:git:https://github.com/codehaus-plexus/plexus-utils.git - ${project.scm.connection} - plexus-utils-4.0.1 - https://github.com/codehaus-plexus/plexus-utils/tree/${project.scm.tag}/ - - - github - https://github.com/codehaus-plexus/plexus-utils/issues - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - 2024-04-13T09:06:44Z - - - - - org.codehaus.plexus - plexus-xml - 3.0.0 - - true - - - org.junit.jupiter - junit-jupiter-api - test - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - - scm-publish - - - publish-scm - - site-deploy - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - JAVA_HOME - ${JAVA_HOME} - - - M2_HOME - ${M2_HOME} - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - jdk9+ - - [9,) - - - - - - maven-compiler-plugin - - - compile-java-9 - - compile - - - 9 - - ${project.basedir}/src/main/java9 - - true - - - - - - - - - - jdk10+ - - [10,) - - - - - - maven-compiler-plugin - - - compile-java-10 - - compile - - - 10 - - ${project.basedir}/src/main/java10 - - true - - - - - - - - - - jdk11+ - - [11,) - - - - - - maven-compiler-plugin - - - compile-java-11 - - compile - - - 11 - - ${project.basedir}/src/main/java11 - - true - - - - - - - - - - plexus-release - - - - maven-enforcer-plugin - - - enforce-java - - enforce - - - - - 11 - - - - - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.pom.sha1 deleted file mode 100644 index d33c5ff..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e0676726100b880bfb6e317ee364e953b77c1a93 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/_remote.repositories deleted file mode 100644 index c2fe44d..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.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. -#Thu Apr 02 20:38:43 UTC 2026 -plexus-xml-3.0.1.jar>central= -plexus-xml-3.0.1.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.jar b/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.jar deleted file mode 100644 index 25527a5..0000000 Binary files a/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.jar and /dev/null differ diff --git a/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.jar.sha1 b/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.jar.sha1 deleted file mode 100644 index db43dff..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b0e73c21402f03c2765674b8dede21673b3288cf \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.pom b/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.pom deleted file mode 100644 index 730973a..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.pom +++ /dev/null @@ -1,110 +0,0 @@ - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 18 - - - plexus-xml - 3.0.1 - - Plexus XML Utilities - A collection of various utility classes to ease working with XML in Maven 3. - https://codehaus-plexus.github.io/plexus-xml/ - - - scm:git:https://github.com/codehaus-plexus/plexus-xml.git - ${project.scm.connection} - plexus-xml-3.0.1 - https://github.com/codehaus-plexus/plexus-xml/tree/${project.scm.tag}/ - - - github - https://github.com/codehaus-plexus/plexus-xml/issues - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - 2024-05-21T21:11:54Z - - - - - org.openjdk.jmh - jmh-core - 1.37 - test - - - org.openjdk.jmh - jmh-generator-annprocess - 1.37 - test - - - org.junit.jupiter - junit-jupiter - test - - - org.codehaus.plexus - plexus-utils - 4.0.1 - test - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - - scm-publish - - - publish-scm - - site-deploy - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - true - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.pom.sha1 deleted file mode 100644 index a741fbb..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -589c7ceee7c159b87aea44a4de757a4cd9c81956 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus/10/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus/10/_remote.repositories deleted file mode 100644 index 18caa9d..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/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. -#Thu Apr 02 20:38:39 UTC 2026 -plexus-10.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus/10/plexus-10.pom b/.m2/repository/org/codehaus/plexus/plexus/10/plexus-10.pom deleted file mode 100644 index d1c9be1..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/10/plexus-10.pom +++ /dev/null @@ -1,773 +0,0 @@ - - - - - - 4.0.0 - - org.codehaus.plexus - plexus - pom - 10 - - Plexus - The Plexus project provides a full software stack for creating and executing software projects. - https://codehaus-plexus.github.io/ - 2001 - - Codehaus Plexus - https://codehaus-plexus.github.io/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - jvanzyl - Jason van Zyl - jason@maven.org - - Developer - Release Manager - - - - kaz - Pete Kazmier - - - - Developer - - - - jtaylor - James Taylor - james@jamestaylor.org - - - Developer - - - - dandiep - Dan Diephouse - dan@envoisolutions.com - Envoi solutions - - Developer - - - - kasper - Kasper Nielsen - apache@kav.dk - - - Developer - - - - bwalding - Ben Walding - bwalding@codehaus.org - Walding Consulting Services - - Developer - - - - mhw - Mark Wilkinson - mhw@kremvax.net - - Developer - - - - michal - Michal Maczka - mmaczka@interia.pl - - Developer - - - - evenisse - Emmanuel Venisse - evenisse@codehaus.org - - Developer - - - - Trygve Laugstøl - trygvis - trygvis@codehaus.org - - Developer - - - - Kenney Westerhof - kenney - kenney@codehaus.org - - Developer - - - - Carlos Sanchez - carlos - carlos@codehaus.org - - Developer - - - - Brett Porter - brett - brett@codehaus.org - - Developer - - - - John Casey - jdcasey - jdcasey@codehaus.org - - Developer - - - - Andrew Williams - handyande - andy@handyande.co.uk - - Developer - - - - Rahul Thakur - rahul - rahul.thakur.xdev@gmail.com - - Developer - - - - Joakim Erdfelt - joakime - joakim@erdfelt.com - - Developer - - - - Olivier Lamy - olamy - olamy@codehaus.org - - Developer - - - - Hervé Boutemy - hboutemy - hboutemy@apache.org - - Developer - - - - Oleg Gusakov - oleg - olegy@codehaus.org - - Developer - - - - Vincent Siveton - vsiveton - vsiveton@codehaus.org - - Developer - - - - Kristian Rosenvold - krosenvold - krosenvold@apache.org - - Developer - - - - Andreas Gudian - agudian - agudian@apache.org - - Developer - - - - Karl Heinz Marbaise - khmarbaise - khmarbaise@apache.org - - Developer - - - - Michael Osipov - michael-o - 1983-01-06@gmx.net - - Developer - - - - Gabriel Belingueres - belingueres - belingueres@gmail.com - - Developer - - - - - - - Plexus User List - http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org - http://archive.plexus.codehaus.org/user - user@plexus.codehaus.org - - - Plexus Developer List - http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org - http://archive.plexus.codehaus.org/dev - dev@plexus.codehaus.org - - - Plexus Announce List - http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org - http://archive.plexus.codehaus.org/announce - - - Plexus Commit List - http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org - http://archive.plexus.codehaus.org/scm - - - - - scm:git:git@github.com:codehaus-plexus/plexus-pom.git - scm:git:git@github.com:codehaus-plexus/plexus-pom.git - https://github.com/codehaus-plexus/plexus-pom/tree/${project.scm.tag}/ - plexus-10 - - - github - https://github.com/codehaus-plexus/plexus-pom/issues - - - - plexus-releases - Plexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - plexus-snapshots - Plexus Snapshot Repository - ${plexusDistMgmtSnapshotsUrl} - - - github:gh-pages - scm:git:git@github.com:codehaus-plexus - - - - - 8 - 1.${javaVersion} - 1.${javaVersion} - UTF-8 - https://oss.sonatype.org/content/repositories/plexus-snapshots - 2022-06-09T20:48:05Z - true - - - - - - org.codehaus.plexus - plexus-component-annotations - 2.1.1 - compile - - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.1.2 - - config/maven_checks.xml - https://raw.github.com/codehaus-plexus/plexus-pom/master/src/main/resources/config/plexus-header.txt - - - - - com.puppycrawl.tools - checkstyle - 9.3 - - - - org.apache.maven.shared - maven-shared-resources - 4 - - - - - 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-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-gpg-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.2 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.4.0 - - - org.apache.maven.plugins - maven-jxr-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.6.4 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.17.0 - - ${maven.compiler.source} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M6 - - deploy - forked-path - plexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.1.0 - - - ${project.scm.developerConnection} - gh-pages - - - - org.apache.maven.plugins - maven-site-plugin - 3.12.0 - - true - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.2 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.22.2 - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - org.codehaus.plexus - plexus-component-metadata - 2.1.1 - - - process-classes - - generate-metadata - - - - process-test-classes - - generate-test-metadata - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - 3.0.5 - This project requires at least Maven 3.0.5 - - - - - - - - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - index - summary - dependency-info - modules - licenses - team - scm - issue-management - mailing-lists - dependency-management - dependencies - dependency-convergence - ci-management - plugin-management - plugins - distribution-management - - - - - - - - - - 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.codehaus.mojo - findbugs-maven-plugin - - - org.codehaus.mojo - taglist-maven-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - default - - jxr - test-jxr - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - - http://junit.sourceforge.net/javadoc/ - - - - - default - - javadoc - test-javadoc - - - - - - - - - plexus-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 - - source-release - - posix - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - - sign - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - pre-JEP_247 - - [7,8] - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.codehaus.mojo - animal-sniffer-enforcer-rule - 1.21 - - - - - check-signatures - test - - enforce - - - - - - org.codehaus.mojo.signature - java1${javaVersion} - 1.0 - - - - - - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus/10/plexus-10.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus/10/plexus-10.pom.sha1 deleted file mode 100644 index 5c0b061..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/10/plexus-10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d521749acee596e7325804c5b8fa208efa9f4263 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus/16/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus/16/_remote.repositories deleted file mode 100644 index f3df549..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/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. -#Thu Apr 02 20:43:05 UTC 2026 -plexus-16.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus/16/plexus-16.pom b/.m2/repository/org/codehaus/plexus/plexus/16/plexus-16.pom deleted file mode 100644 index 9fd1199..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/16/plexus-16.pom +++ /dev/null @@ -1,857 +0,0 @@ - - - - 4.0.0 - - org.codehaus.plexus - plexus - 16 - pom - - Plexus - The Plexus project provides a full software stack for creating and executing software projects. - https://codehaus-plexus.github.io/plexus-pom/ - 2001 - - Codehaus Plexus - https://codehaus-plexus.github.io/ - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - jvanzyl - Jason van Zyl - jason@maven.org - - Developer - Release Manager - - - - kaz - Pete Kazmier - - - - Developer - - - - jtaylor - James Taylor - james@jamestaylor.org - - - Developer - - - - dandiep - Dan Diephouse - dan@envoisolutions.com - Envoi solutions - - Developer - - - - kasper - Kasper Nielsen - apache@kav.dk - - - Developer - - - - bwalding - Ben Walding - bwalding@codehaus.org - Walding Consulting Services - - Developer - - - - mhw - Mark Wilkinson - mhw@kremvax.net - - Developer - - - - michal - Michal Maczka - mmaczka@interia.pl - - Developer - - - - evenisse - Emmanuel Venisse - evenisse@codehaus.org - - Developer - - - - trygvis - Trygve Laugstøl - trygvis@codehaus.org - - Developer - - - - kenney - Kenney Westerhof - kenney@codehaus.org - - Developer - - - - carlos - Carlos Sanchez - carlos@codehaus.org - - Developer - - - - brett - Brett Porter - brett@codehaus.org - - Developer - - - - jdcasey - John Casey - jdcasey@codehaus.org - - Developer - - - - handyande - Andrew Williams - andy@handyande.co.uk - - Developer - - - - rahul - Rahul Thakur - rahul.thakur.xdev@gmail.com - - Developer - - - - joakime - Joakim Erdfelt - joakim@erdfelt.com - - Developer - - - - olamy - Olivier Lamy - olamy@codehaus.org - - Developer - - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - - Developer - - - - oleg - Oleg Gusakov - olegy@codehaus.org - - Developer - - - - vsiveton - Vincent Siveton - vsiveton@codehaus.org - - Developer - - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - Developer - - - - agudian - Andreas Gudian - agudian@apache.org - - Developer - - - - khmarbaise - Karl Heinz Marbaise - khmarbaise@apache.org - - Developer - - - - michael-o - Michael Osipov - 1983-01-06@gmx.net - - Developer - - - - belingueres - Gabriel Belingueres - belingueres@gmail.com - - Developer - - - - kwin - Konrad Windszus - kwin@apache.org - - Developer - - - - sjaranowski - Slawomir Jaranowski - sjaranowski@apache.org - - Developer - - - - slachiewicz - Sylwester Lachiewicz - slachiewicz@apache.org - ASF - - Developer - - - - gnodet - Guillaume Nodet - gnodet@apache.org - ASF - - Developer - - - - - - - Plexus and MojoHaus Development List - mojohaus-dev+subscribe@googlegroups.com - mojohaus-dev+unsubscribe@googlegroups.com - mojohaus-dev@googlegroups.com - https://groups.google.com/forum/#!forum/mojohaus-dev - - - Former (pre-2015-06) Development List - https://markmail.org/list/org.codehaus.plexus.dev - - - - - scm:git:https://github.com/codehaus-plexus/plexus-pom.git - ${project.scm.connection} - plexus-16 - https://github.com/codehaus-plexus/plexus-pom/tree/${project.scm.tag}/ - - - - github - https://github.com/codehaus-plexus/plexus-pom/issues - - - - - plexus-releases - Plexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - plexus-snapshots - Plexus Snapshot Repository - ${plexusDistMgmtSnapshotsUrl} - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - 8 - 3.2.5 - ${javaVersion} - ${javaVersion} - UTF-8 - https://oss.sonatype.org/content/repositories/plexus-snapshots - 2023-12-10T16:52:10Z - true - 2.41.1 - 3.10.2 - 1.11.2 - 3.2.2 - 5.10.1 - check - 0.9.0.M2 - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${mavenPluginToolsVersion} - provided - - - org.junit - junit-bom - ${junit5Version} - pom - import - - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.6.0 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.3.1 - - config/maven_checks.xml - - https://raw.githubusercontent.com/codehaus-plexus/plexus-pom/plexus-11/src/main/resources/config/plexus-header.txt - - - - - org.apache.maven.shared - maven-shared-resources - 5 - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.3.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - - 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-gpg-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-install-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - true - en - - true - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginToolsVersion} - - - default-descriptor - process-classes - - ./apidocs/ - - - - generate-helpmojo - - helpmojo - - - - - - org.apache.maven.plugins - maven-plugin-report-plugin - ${mavenPluginToolsVersion} - - - org.apache.maven.plugins - maven-pmd-plugin - 3.21.2 - - ${maven.compiler.source} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.5.0 - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - deploy - plexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.2.1 - - - ${project.scm.developerConnection} - gh-pages - - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - - true - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-surefire-plugin - ${mavenSurefireVersion} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${mavenSurefireVersion} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${mavenSurefireVersion} - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - org.eclipse.sisu - sisu-maven-plugin - ${sisuMavenPluginVersion} - - - generate-index - - main-index - test-index - - - - - - com.diffplug.spotless - spotless-maven-plugin - ${spotless-maven-plugin.version} - - - - - - - - javax,java,,\# - - - - - false - - true - - - - true - - - - - spotless-check - - ${spotless.action} - - process-sources - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.codehaus.mojo - extra-enforcer-rules - 1.7.0 - - - - - enforce-maven-and-java-bytecode - - enforce - - - - - ${minimalMavenBuildVersion} - This project requires at least Maven ${minimalMavenBuildVersion} - - - ${maven.compiler.target} - - - - - - - - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - index - summary - dependency-info - modules - licenses - team - scm - issue-management - mailing-lists - dependency-management - dependencies - dependency-convergence - ci-management - plugin-management - plugins - distribution-management - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-pmd-plugin - - - org.codehaus.mojo - taglist-maven-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - default - - jxr - test-jxr - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - default - - javadoc - - - - - - - - - plexus-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.5 - - - - - source-release-assembly - - single - - package - - true - - source-release - - posix - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - - sign - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - java11+ - - [11,) - - - - ${javaVersion} - - config/maven_checks_nocodestyle.xml - - - - - - - com.diffplug.spotless - spotless-maven-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - ${checkstyle.spotless.config} - - - - - - - format-check - - - !format - - - - check - - - - format - - - format - - - - apply - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus/16/plexus-16.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus/16/plexus-16.pom.sha1 deleted file mode 100644 index 5029600..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/16/plexus-16.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c81926f677c914cff35c0856a79e8713eea36f47 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus/17/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus/17/_remote.repositories deleted file mode 100644 index 4c89824..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/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. -#Thu Apr 02 20:38:42 UTC 2026 -plexus-17.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus/17/plexus-17.pom b/.m2/repository/org/codehaus/plexus/plexus/17/plexus-17.pom deleted file mode 100644 index fefa26d..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/17/plexus-17.pom +++ /dev/null @@ -1,870 +0,0 @@ - - - - 4.0.0 - - org.codehaus.plexus - plexus - 17 - pom - - Plexus - The Plexus project provides a full software stack for creating and executing software projects. - https://codehaus-plexus.github.io/plexus-pom/ - 2001 - - Codehaus Plexus - https://codehaus-plexus.github.io/ - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - jvanzyl - Jason van Zyl - jason@maven.org - - Developer - Release Manager - - - - kaz - Pete Kazmier - - - - Developer - - - - jtaylor - James Taylor - james@jamestaylor.org - - - Developer - - - - dandiep - Dan Diephouse - dan@envoisolutions.com - Envoi solutions - - Developer - - - - kasper - Kasper Nielsen - apache@kav.dk - - - Developer - - - - bwalding - Ben Walding - bwalding@codehaus.org - Walding Consulting Services - - Developer - - - - mhw - Mark Wilkinson - mhw@kremvax.net - - Developer - - - - michal - Michal Maczka - mmaczka@interia.pl - - Developer - - - - evenisse - Emmanuel Venisse - evenisse@codehaus.org - - Developer - - - - trygvis - Trygve Laugstøl - trygvis@codehaus.org - - Developer - - - - kenney - Kenney Westerhof - kenney@codehaus.org - - Developer - - - - carlos - Carlos Sanchez - carlos@codehaus.org - - Developer - - - - brett - Brett Porter - brett@codehaus.org - - Developer - - - - jdcasey - John Casey - jdcasey@codehaus.org - - Developer - - - - handyande - Andrew Williams - andy@handyande.co.uk - - Developer - - - - rahul - Rahul Thakur - rahul.thakur.xdev@gmail.com - - Developer - - - - joakime - Joakim Erdfelt - joakim@erdfelt.com - - Developer - - - - olamy - Olivier Lamy - olamy@codehaus.org - - Developer - - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - - Developer - - - - oleg - Oleg Gusakov - olegy@codehaus.org - - Developer - - - - vsiveton - Vincent Siveton - vsiveton@codehaus.org - - Developer - - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - Developer - - - - agudian - Andreas Gudian - agudian@apache.org - - Developer - - - - khmarbaise - Karl Heinz Marbaise - khmarbaise@apache.org - - Developer - - - - michael-o - Michael Osipov - 1983-01-06@gmx.net - - Developer - - - - belingueres - Gabriel Belingueres - belingueres@gmail.com - - Developer - - - - kwin - Konrad Windszus - kwin@apache.org - - Developer - - - - sjaranowski - Slawomir Jaranowski - sjaranowski@apache.org - - Developer - - - - slachiewicz - Sylwester Lachiewicz - slachiewicz@apache.org - ASF - - Developer - - - - gnodet - Guillaume Nodet - gnodet@apache.org - ASF - - Developer - - - - - - - Plexus and MojoHaus Development List - mojohaus-dev+subscribe@googlegroups.com - mojohaus-dev+unsubscribe@googlegroups.com - mojohaus-dev@googlegroups.com - https://groups.google.com/forum/#!forum/mojohaus-dev - - - - - scm:git:https://github.com/codehaus-plexus/plexus-pom.git - ${project.scm.connection} - plexus-17 - https://github.com/codehaus-plexus/plexus-pom/tree/${project.scm.tag}/ - - - - github - https://github.com/codehaus-plexus/plexus-pom/issues - - - - - plexus-releases - Plexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - plexus-snapshots - Plexus Snapshot Repository - ${plexusDistMgmtSnapshotsUrl} - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - 8 - 3.2.5 - ${javaVersion} - ${javaVersion} - UTF-8 - https://oss.sonatype.org/content/repositories/plexus-snapshots - 2024-03-04T19:09:56Z - true - 2.43.0 - 3.11.0 - 1.11.2 - 3.2.5 - 5.10.2 - check - 0.9.0.M2 - true - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${mavenPluginToolsVersion} - provided - - - org.junit - junit-bom - ${junit5Version} - pom - import - - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.6.0 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.3.1 - - config/maven_checks.xml - - https://raw.githubusercontent.com/codehaus-plexus/plexus-pom/plexus-11/src/main/resources/config/plexus-header.txt - - - - - org.apache.maven.shared - maven-shared-resources - 5 - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.3.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.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-gpg-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-install-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - true - true - - - - - - org.apache.maven.plugins - maven-invoker-plugin - 3.6.0 - - ${invoker.streamLogsOnFailures} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - true - en - - true - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.3.2 - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginToolsVersion} - - - default-descriptor - process-classes - - ./apidocs/ - - - - generate-helpmojo - - helpmojo - - - - - - org.apache.maven.plugins - maven-plugin-report-plugin - ${mavenPluginToolsVersion} - - - org.apache.maven.plugins - maven-pmd-plugin - 3.21.2 - - ${maven.compiler.source} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.5.0 - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - deploy - plexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.2.1 - - - ${project.scm.developerConnection} - gh-pages - - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - - true - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-surefire-plugin - ${mavenSurefireVersion} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${mavenSurefireVersion} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${mavenSurefireVersion} - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - org.eclipse.sisu - sisu-maven-plugin - ${sisuMavenPluginVersion} - - - generate-index - - main-index - test-index - - - - - - com.diffplug.spotless - spotless-maven-plugin - ${spotless-maven-plugin.version} - - - - - - - - javax,java,,\# - - - - - false - - true - - - - true - - - - - spotless-check - - ${spotless.action} - - process-sources - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.codehaus.mojo - extra-enforcer-rules - 1.7.0 - - - - - enforce-maven-and-java-bytecode - - enforce - - - - - ${minimalMavenBuildVersion} - This project requires at least Maven ${minimalMavenBuildVersion} - - - ${maven.compiler.target} - - - - - - - - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - index - summary - dependency-info - modules - licenses - team - scm - issue-management - mailing-lists - dependency-management - dependencies - dependency-convergence - ci-management - plugin-management - plugins - distribution-management - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-pmd-plugin - - - org.codehaus.mojo - taglist-maven-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - default - - jxr - test-jxr - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - default - - javadoc - - - - - - - - - plexus-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.5 - - - - - source-release-assembly - - single - - package - - true - - source-release - - posix - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - - sign - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - java11+ - - [11,) - - - - ${javaVersion} - - config/maven_checks_nocodestyle.xml - - - - - - - com.diffplug.spotless - spotless-maven-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - ${checkstyle.spotless.config} - - - - - - - format-check - - - !format - - - - check - - - - format - - - format - - - - apply - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus/17/plexus-17.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus/17/plexus-17.pom.sha1 deleted file mode 100644 index 4240ed6..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/17/plexus-17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d902df7874c7a06b2be8ee03082e5af695250cf1 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus/18/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus/18/_remote.repositories deleted file mode 100644 index a87cb7e..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/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. -#Thu Apr 02 20:38:42 UTC 2026 -plexus-18.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus/18/plexus-18.pom b/.m2/repository/org/codehaus/plexus/plexus/18/plexus-18.pom deleted file mode 100644 index 0794351..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/18/plexus-18.pom +++ /dev/null @@ -1,894 +0,0 @@ - - - - 4.0.0 - - org.codehaus.plexus - plexus - 18 - pom - - Plexus - The Plexus project provides a full software stack for creating and executing software projects. - https://codehaus-plexus.github.io/plexus-pom/ - 2001 - - Codehaus Plexus - https://codehaus-plexus.github.io/ - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - jvanzyl - Jason van Zyl - jason@maven.org - - Developer - Release Manager - - - - kaz - Pete Kazmier - - - - Developer - - - - jtaylor - James Taylor - james@jamestaylor.org - - - Developer - - - - dandiep - Dan Diephouse - dan@envoisolutions.com - Envoi solutions - - Developer - - - - kasper - Kasper Nielsen - apache@kav.dk - - - Developer - - - - bwalding - Ben Walding - bwalding@codehaus.org - Walding Consulting Services - - Developer - - - - mhw - Mark Wilkinson - mhw@kremvax.net - - Developer - - - - michal - Michal Maczka - mmaczka@interia.pl - - Developer - - - - evenisse - Emmanuel Venisse - evenisse@codehaus.org - - Developer - - - - trygvis - Trygve Laugstøl - trygvis@codehaus.org - - Developer - - - - kenney - Kenney Westerhof - kenney@codehaus.org - - Developer - - - - carlos - Carlos Sanchez - carlos@codehaus.org - - Developer - - - - brett - Brett Porter - brett@codehaus.org - - Developer - - - - jdcasey - John Casey - jdcasey@codehaus.org - - Developer - - - - handyande - Andrew Williams - andy@handyande.co.uk - - Developer - - - - rahul - Rahul Thakur - rahul.thakur.xdev@gmail.com - - Developer - - - - joakime - Joakim Erdfelt - joakim@erdfelt.com - - Developer - - - - olamy - Olivier Lamy - olamy@codehaus.org - - Developer - - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - - Developer - - - - oleg - Oleg Gusakov - olegy@codehaus.org - - Developer - - - - vsiveton - Vincent Siveton - vsiveton@codehaus.org - - Developer - - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - Developer - - - - agudian - Andreas Gudian - agudian@apache.org - - Developer - - - - khmarbaise - Karl Heinz Marbaise - khmarbaise@apache.org - - Developer - - - - michael-o - Michael Osipov - 1983-01-06@gmx.net - - Developer - - - - belingueres - Gabriel Belingueres - belingueres@gmail.com - - Developer - - - - kwin - Konrad Windszus - kwin@apache.org - - Developer - - - - sjaranowski - Slawomir Jaranowski - sjaranowski@apache.org - - Developer - - - - slachiewicz - Sylwester Lachiewicz - slachiewicz@apache.org - ASF - - Developer - - - - gnodet - Guillaume Nodet - gnodet@apache.org - ASF - - Developer - - - - - - - Plexus and MojoHaus Development List - mojohaus-dev+subscribe@googlegroups.com - mojohaus-dev+unsubscribe@googlegroups.com - mojohaus-dev@googlegroups.com - https://groups.google.com/forum/#!forum/mojohaus-dev - - - - - scm:git:https://github.com/codehaus-plexus/plexus-pom.git - ${project.scm.connection} - plexus-18 - https://github.com/codehaus-plexus/plexus-pom/tree/${project.scm.tag}/ - - - - github - https://github.com/codehaus-plexus/plexus-pom/issues - - - - - plexus-releases - Plexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - plexus-snapshots - Plexus Snapshot Repository - ${plexusDistMgmtSnapshotsUrl} - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - 8 - 3.2.5 - ${javaVersion} - ${javaVersion} - - none - true - UTF-8 - https://oss.sonatype.org/content/repositories/plexus-snapshots - 2024-05-21T19:07:45Z - true - 2.43.0 - 3.13.0 - 1.12.0 - 3.2.5 - 5.10.2 - check - 0.9.0.M2 - true - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${mavenPluginToolsVersion} - provided - - - org.junit - junit-bom - ${junit5Version} - pom - import - - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.7.1 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.3.1 - - config/maven_checks.xml - - https://raw.githubusercontent.com/codehaus-plexus/plexus-pom/plexus-11/src/main/resources/config/plexus-header.txt - - - - - org.apache.maven.shared - maven-shared-resources - 5 - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.3.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.13.0 - - ${maven.compiler.proc} - ${maven.compiler.showDeprecation} - - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.2 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.1 - - - org.apache.maven.plugins - maven-gpg-plugin - 3.2.4 - - - org.apache.maven.plugins - maven-install-plugin - 3.1.2 - - - org.apache.maven.plugins - maven-jar-plugin - 3.4.1 - - - - true - true - - - - - - org.apache.maven.plugins - maven-invoker-plugin - 3.6.1 - - ${invoker.streamLogsOnFailures} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - true - en - - true - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.3.2 - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginToolsVersion} - - - default-descriptor - process-classes - - ./apidocs/ - - - - generate-helpmojo - - helpmojo - - - - - - org.apache.maven.plugins - maven-plugin-report-plugin - ${mavenPluginToolsVersion} - - - org.apache.maven.plugins - maven-pmd-plugin - 3.22.0 - - ${maven.compiler.source} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.5.0 - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - deploy - plexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.2.1 - - - ${project.scm.developerConnection} - gh-pages - - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - - true - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-surefire-plugin - ${mavenSurefireVersion} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${mavenSurefireVersion} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${mavenSurefireVersion} - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - org.eclipse.sisu - sisu-maven-plugin - ${sisuMavenPluginVersion} - - - generate-index - - main-index - test-index - - - - - - com.diffplug.spotless - spotless-maven-plugin - ${spotless-maven-plugin.version} - - - - - - - - javax,java,,\# - - - - - false - - true - - - - true - - - - - spotless-check - - ${spotless.action} - - process-sources - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.codehaus.mojo - extra-enforcer-rules - 1.8.0 - - - - - enforce-maven-and-java-bytecode - - enforce - - - - - ${minimalMavenBuildVersion} - This project requires at least Maven ${minimalMavenBuildVersion} - - - ${maven.compiler.target} - - - - - - - - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - false - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - index - summary - dependency-info - modules - licenses - team - scm - issue-management - mailing-lists - dependency-management - dependencies - dependency-convergence - ci-management - plugin-management - plugins - distribution-management - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - org.apache.maven.plugins - maven-surefire-report-plugin - - false - false - - - - org.apache.maven.plugins - maven-pmd-plugin - - true - - - - default - - cpd - pmd - - - - - - org.codehaus.mojo - taglist-maven-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - default - - jxr - test-jxr - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - default - - javadoc - - - - - - - - - plexus-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.5 - - - - - source-release-assembly - - single - - package - - true - - source-release - - posix - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - - sign - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - java11+ - - [11,) - - - - ${javaVersion} - - config/maven_checks_nocodestyle.xml - - - - - - - com.diffplug.spotless - spotless-maven-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - ${checkstyle.spotless.config} - - - - - - - format-check - - - !format - - - - check - - - - format - - - format - - - - apply - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus/18/plexus-18.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus/18/plexus-18.pom.sha1 deleted file mode 100644 index 7ee0e93..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/18/plexus-18.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6dcf47484abcaaa8288f528ccbde76171eb3c155 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus/20/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus/20/_remote.repositories deleted file mode 100644 index 9031a00..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/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. -#Thu Apr 02 20:38:41 UTC 2026 -plexus-20.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus/20/plexus-20.pom b/.m2/repository/org/codehaus/plexus/plexus/20/plexus-20.pom deleted file mode 100644 index bd514ba..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/20/plexus-20.pom +++ /dev/null @@ -1,884 +0,0 @@ - - - - 4.0.0 - - org.codehaus.plexus - plexus - 20 - pom - - Plexus - The Plexus project provides a full software stack for creating and executing software projects. - https://codehaus-plexus.github.io/plexus-pom/ - 2001 - - Codehaus Plexus - https://codehaus-plexus.github.io/ - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - jvanzyl - Jason van Zyl - jason@maven.org - - Developer - Release Manager - - - - kaz - Pete Kazmier - - - - Developer - - - - jtaylor - James Taylor - james@jamestaylor.org - - - Developer - - - - dandiep - Dan Diephouse - dan@envoisolutions.com - Envoi solutions - - Developer - - - - kasper - Kasper Nielsen - apache@kav.dk - - - Developer - - - - bwalding - Ben Walding - bwalding@codehaus.org - Walding Consulting Services - - Developer - - - - mhw - Mark Wilkinson - mhw@kremvax.net - - Developer - - - - michal - Michal Maczka - mmaczka@interia.pl - - Developer - - - - evenisse - Emmanuel Venisse - evenisse@codehaus.org - - Developer - - - - trygvis - Trygve Laugstøl - trygvis@codehaus.org - - Developer - - - - kenney - Kenney Westerhof - kenney@codehaus.org - - Developer - - - - carlos - Carlos Sanchez - carlos@codehaus.org - - Developer - - - - brett - Brett Porter - brett@codehaus.org - - Developer - - - - jdcasey - John Casey - jdcasey@codehaus.org - - Developer - - - - handyande - Andrew Williams - andy@handyande.co.uk - - Developer - - - - rahul - Rahul Thakur - rahul.thakur.xdev@gmail.com - - Developer - - - - joakime - Joakim Erdfelt - joakim@erdfelt.com - - Developer - - - - olamy - Olivier Lamy - olamy@codehaus.org - - Developer - - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - - Developer - - - - oleg - Oleg Gusakov - olegy@codehaus.org - - Developer - - - - vsiveton - Vincent Siveton - vsiveton@codehaus.org - - Developer - - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - Developer - - - - agudian - Andreas Gudian - agudian@apache.org - - Developer - - - - khmarbaise - Karl Heinz Marbaise - khmarbaise@apache.org - - Developer - - - - michael-o - Michael Osipov - 1983-01-06@gmx.net - - Developer - - - - belingueres - Gabriel Belingueres - belingueres@gmail.com - - Developer - - - - kwin - Konrad Windszus - kwin@apache.org - - Developer - - - - sjaranowski - Slawomir Jaranowski - sjaranowski@apache.org - - Developer - - - - slachiewicz - Sylwester Lachiewicz - slachiewicz@apache.org - ASF - - Developer - - - - gnodet - Guillaume Nodet - gnodet@apache.org - ASF - - Developer - - - - - - - Plexus and MojoHaus Development List - mojohaus-dev+subscribe@googlegroups.com - mojohaus-dev+unsubscribe@googlegroups.com - mojohaus-dev@googlegroups.com - https://groups.google.com/forum/#!forum/mojohaus-dev - - - - - scm:git:https://github.com/codehaus-plexus/plexus-pom.git - ${project.scm.connection} - plexus-20 - https://github.com/codehaus-plexus/plexus-pom/tree/${project.scm.tag}/ - - - - github - https://github.com/codehaus-plexus/plexus-pom/issues - - - - - plexus-releases - Plexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - plexus-snapshots - Plexus Snapshot Repository - ${plexusDistMgmtSnapshotsUrl} - - - - github:gh-pages - ${project.scm.developerConnection} - - - - - 8 - 3.6.3 - ${javaVersion} - ${javaVersion} - ${javaVersion} - ${javaVersion} - - none - true - UTF-8 - https://oss.sonatype.org/content/repositories/plexus-snapshots - 2025-02-07T19:20:20Z - true - 2.44.2 - 3.15.1 - 2.0.1 - 3.5.2 - 5.11.4 - apply - 0.9.0.M3 - true - - - - - - org.junit - junit-bom - ${junit5Version} - pom - import - - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.7.1 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.6.0 - - config/maven_checks.xml - - https://raw.githubusercontent.com/codehaus-plexus/plexus-pom/plexus-11/src/main/resources/config/plexus-header.txt - - - - - org.apache.maven.shared - maven-shared-resources - 6 - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.4.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.13.0 - - ${maven.compiler.proc} - ${maven.compiler.showDeprecation} - - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.3 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.5.0 - - - org.apache.maven.plugins - maven-gpg-plugin - 3.2.7 - - true - - - - org.apache.maven.plugins - maven-install-plugin - 3.1.3 - - - org.apache.maven.plugins - maven-jar-plugin - 3.4.2 - - - - true - true - - - - - - org.apache.maven.plugins - maven-invoker-plugin - 3.9.0 - - ${invoker.streamLogsOnFailures} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.11.2 - - true - en - - true - - - - org.apache.maven.plugins - maven-jxr-plugin - 3.6.0 - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginToolsVersion} - - - default-descriptor - process-classes - - ./apidocs/ - - - - generate-helpmojo - - helpmojo - - - - - - org.apache.maven.plugins - maven-plugin-report-plugin - ${mavenPluginToolsVersion} - - - org.apache.maven.plugins - maven-pmd-plugin - 3.26.0 - - ${maven.compiler.source} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.8.0 - - - org.apache.maven.plugins - maven-release-plugin - 3.1.1 - - deploy - plexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.3.0 - - - ${project.scm.developerConnection} - gh-pages - - - - org.apache.maven.plugins - maven-site-plugin - 3.21.0 - - - true - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-surefire-plugin - ${mavenSurefireVersion} - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${mavenSurefireVersion} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${mavenSurefireVersion} - - - org.codehaus.mojo - taglist-maven-plugin - 3.2.1 - - - org.eclipse.sisu - sisu-maven-plugin - ${sisuMavenPluginVersion} - - - generate-index - - main-index - test-index - - - - - - com.diffplug.spotless - spotless-maven-plugin - ${spotless-maven-plugin.version} - - - - - - - - javax,java,,\# - - - - PRESERVE - - - false - - true - - - - - **/*.md - - - target/** - - - - - true - - - - - spotless-check - - ${spotless.action} - - process-sources - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.codehaus.mojo - extra-enforcer-rules - 1.9.0 - - - - - enforce-maven-and-java-bytecode - - enforce - - - - - ${minimalMavenBuildVersion} - This project requires at least Maven ${minimalMavenBuildVersion} - - - ${maven.compiler.target} - - - ${minimalJavaBuildVersion} - - - - - - - - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - false - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - index - summary - dependency-info - modules - licenses - team - scm - issue-management - mailing-lists - dependency-management - dependencies - dependency-convergence - ci-management - plugin-management - plugins - distribution-management - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - org.apache.maven.plugins - maven-surefire-report-plugin - - false - false - - - - org.apache.maven.plugins - maven-pmd-plugin - - true - - - - default - - cpd - pmd - - - - - - org.codehaus.mojo - taglist-maven-plugin - - true - - - - org.apache.maven.plugins - maven-jxr-plugin - - - default - - jxr - test-jxr - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - default - - javadoc - - - - - - - - - plexus-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.7 - - - - - source-release-assembly - - single - - package - - true - - source-release - - posix - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - - sign - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - java11+ - - [11,) - - - - - config/maven_checks_nocodestyle.xml - - - - - - - com.diffplug.spotless - spotless-maven-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - ${checkstyle.spotless.config} - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus/20/plexus-20.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus/20/plexus-20.pom.sha1 deleted file mode 100644 index d1ccf38..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/20/plexus-20.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9868732b15c69f770fda48dca1ff5d9d43d35a3c \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus/4.0/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus/4.0/_remote.repositories deleted file mode 100644 index 29bc566..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/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. -#Thu Apr 02 20:38:36 UTC 2026 -plexus-4.0.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom b/.m2/repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom deleted file mode 100644 index 8a6168e..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom +++ /dev/null @@ -1,652 +0,0 @@ - - - - - - 4.0.0 - - - org.sonatype.forge - forge-parent - 10 - - - - org.codehaus.plexus - plexus - pom - 4.0 - - Plexus - The Plexus project provides a full software stack for creating and executing software projects. - http://codehaus-plexus.github.io/ - 2001 - - Codehaus Plexus - http://codehaus-plexus.github.io/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - jvanzyl - Jason van Zyl - jason@maven.org - - Developer - Release Manager - - - - kaz - Pete Kazmier - - - - Developer - - - - jtaylor - James Taylor - james@jamestaylor.org - - - Developer - - - - dandiep - Dan Diephouse - dan@envoisolutions.com - Envoi solutions - - Developer - - - - kasper - Kasper Nielsen - apache@kav.dk - - - Developer - - - - bwalding - Ben Walding - bwalding@codehaus.org - Walding Consulting Services - - Developer - - - - mhw - Mark Wilkinson - mhw@kremvax.net - - Developer - - - - michal - Michal Maczka - mmaczka@interia.pl - - Developer - - - - evenisse - Emmanuel Venisse - evenisse@codehaus.org - - Developer - - - - Trygve Laugstøl - trygvis - trygvis@codehaus.org - - Developer - - - - Kenney Westerhof - kenney - kenney@codehaus.org - - Developer - - - - Carlos Sanchez - carlos - carlos@codehaus.org - - Developer - - - - Brett Porter - brett - brett@codehaus.org - - Developer - - - - John Casey - jdcasey - jdcasey@codehaus.org - - Developer - - - - Andrew Williams - handyande - andy@handyande.co.uk - - Developer - - - - Rahul Thakur - rahul - rahul.thakur.xdev@gmail.com - - Developer - - - - Joakim Erdfelt - joakime - joakim@erdfelt.com - - Developer - - - - Olivier Lamy - olamy - olamy@codehaus.org - - Developer - - - - Hervé Boutemy - hboutemy - hboutemy@apache.org - - Developer - - - - Oleg Gusakov - oleg - olegy@codehaus.org - - Developer - - - - Vincent Siveton - vsiveton - vsiveton@codehaus.org - - Developer - - - - Kristian Rosenvold - krosenvold - krosenvold@apache.org - - Developer - - - - Andreas Gudian - agudian - agudian@apache.org - - Developer - - - - - - - Plexus User List - http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org - http://archive.plexus.codehaus.org/user - user@plexus.codehaus.org - - - Plexus Developer List - http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org - http://archive.plexus.codehaus.org/dev - dev@plexus.codehaus.org - - - Plexus Announce List - http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org - http://archive.plexus.codehaus.org/announce - - - Plexus Commit List - http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org - http://archive.plexus.codehaus.org/scm - - - - - scm:git:git@github.com:codehaus-plexus/plexus-pom.git - scm:git:git@github.com:codehaus-plexus/plexus-pom.git - http://github.com/codehaus-plexus/plexus-pom/tree/${project.scm.tag}/ - plexus-4.0 - - - github - http://github.com/codehaus-plexus/plexus-pom/issues - - - - plexus-releases - Plexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - plexus-snapshots - Plexus Snapshot Repository - ${plexusDistMgmtSnapshotsUrl} - - - github:gh-pages - scm:git:git@github.com:codehaus-plexus - - - - - 3.0 - - - - 5 - 1.${javaVersion} - 1.${javaVersion} - UTF-8 - https://oss.sonatype.org/content/repositories/plexus-snapshots - - - - - - org.codehaus.plexus - plexus-component-annotations - 1.6 - compile - - - - - - - junit - junit - 4.12 - test - - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 2.6.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.3 - - ${maven.compiler.source} - ${maven.compiler.target} - - - - 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 - 2.10.1 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.4 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.8.1 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - deploy - false - -Pplexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 2.7 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.1 - - - ${project.scm.developerConnection} - gh-pages - - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - true - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.18.1 - - - org.codehaus.plexus - plexus-component-metadata - 1.6 - - - process-classes - - generate-metadata - - - - process-test-classes - - generate-test-metadata - - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.8.1 - - - - index - summary - dependency-info - modules - license - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - plugin-management - plugins - distribution-management - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.18.1 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.13 - - config/maven_checks.xml - https://raw.github.com/codehaus-plexus/plexus-pom/master/src/main/resources/config/plexus-header.txt - - - - default - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.2 - - ${maven.compiler.source} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.2 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.5 - - - default - - jxr - test-jxr - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - - http://junit.sourceforge.net/javadoc/ - - - - - default - - javadoc - test-javadoc - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.6 - - - - - - plexus-release - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - - sign - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - maven-3 - - - - ${basedir} - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom.sha1 deleted file mode 100644 index 7d56b79..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cdbb31ee91973d16e8f8b0bda51ed4211e7a9f57 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus/5.1/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus/5.1/_remote.repositories deleted file mode 100644 index ad27051..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/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. -#Thu Apr 02 20:38:39 UTC 2026 -plexus-5.1.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom b/.m2/repository/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom deleted file mode 100644 index 0434f10..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom +++ /dev/null @@ -1,700 +0,0 @@ - - - - - - 4.0.0 - - org.codehaus.plexus - plexus - pom - 5.1 - - Plexus - The Plexus project provides a full software stack for creating and executing software projects. - http://codehaus-plexus.github.io/ - 2001 - - Codehaus Plexus - http://codehaus-plexus.github.io/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - jvanzyl - Jason van Zyl - jason@maven.org - - Developer - Release Manager - - - - kaz - Pete Kazmier - - - - Developer - - - - jtaylor - James Taylor - james@jamestaylor.org - - - Developer - - - - dandiep - Dan Diephouse - dan@envoisolutions.com - Envoi solutions - - Developer - - - - kasper - Kasper Nielsen - apache@kav.dk - - - Developer - - - - bwalding - Ben Walding - bwalding@codehaus.org - Walding Consulting Services - - Developer - - - - mhw - Mark Wilkinson - mhw@kremvax.net - - Developer - - - - michal - Michal Maczka - mmaczka@interia.pl - - Developer - - - - evenisse - Emmanuel Venisse - evenisse@codehaus.org - - Developer - - - - Trygve Laugstøl - trygvis - trygvis@codehaus.org - - Developer - - - - Kenney Westerhof - kenney - kenney@codehaus.org - - Developer - - - - Carlos Sanchez - carlos - carlos@codehaus.org - - Developer - - - - Brett Porter - brett - brett@codehaus.org - - Developer - - - - John Casey - jdcasey - jdcasey@codehaus.org - - Developer - - - - Andrew Williams - handyande - andy@handyande.co.uk - - Developer - - - - Rahul Thakur - rahul - rahul.thakur.xdev@gmail.com - - Developer - - - - Joakim Erdfelt - joakime - joakim@erdfelt.com - - Developer - - - - Olivier Lamy - olamy - olamy@codehaus.org - - Developer - - - - Hervé Boutemy - hboutemy - hboutemy@apache.org - - Developer - - - - Oleg Gusakov - oleg - olegy@codehaus.org - - Developer - - - - Vincent Siveton - vsiveton - vsiveton@codehaus.org - - Developer - - - - Kristian Rosenvold - krosenvold - krosenvold@apache.org - - Developer - - - - Andreas Gudian - agudian - agudian@apache.org - - Developer - - - - Karl Heinz Marbaise - khmarbaise - khmarbaise@apache.org - - Developer - - - - Michael Osipov - michael-o - 1983-01-06@gmx.net - - Developer - - - - - - - Plexus User List - http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org - http://archive.plexus.codehaus.org/user - user@plexus.codehaus.org - - - Plexus Developer List - http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org - http://archive.plexus.codehaus.org/dev - dev@plexus.codehaus.org - - - Plexus Announce List - http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org - http://archive.plexus.codehaus.org/announce - - - Plexus Commit List - http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org - http://archive.plexus.codehaus.org/scm - - - - - scm:git:git@github.com:codehaus-plexus/plexus-pom.git - scm:git:git@github.com:codehaus-plexus/plexus-pom.git - http://github.com/codehaus-plexus/plexus-pom/tree/${project.scm.tag}/ - plexus-5.1 - - - github - http://github.com/codehaus-plexus/plexus-pom/issues - - - - plexus-releases - Plexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - plexus-snapshots - Plexus Snapshot Repository - ${plexusDistMgmtSnapshotsUrl} - - - github:gh-pages - scm:git:git@github.com:codehaus-plexus - - - - - 6 - 1.${javaVersion} - 1.${javaVersion} - UTF-8 - https://oss.sonatype.org/content/repositories/plexus-snapshots - - - - - - org.codehaus.plexus - plexus-component-annotations - 1.6 - compile - - - - - - - junit - junit - 4.12 - test - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.0.0 - - config/maven_checks.xml - https://raw.github.com/codehaus-plexus/plexus-pom/master/src/main/resources/config/plexus-header.txt - - - - - org.apache.maven.shared - maven-shared-resources - 2 - - - - - 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-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4.1 - - - 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 - 3.0.2 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.5.1 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.8 - - ${maven.compiler.source} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.9 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - deploy - forked-path - false - -Pplexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 3.0.2 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.0.0 - - - ${project.scm.developerConnection} - gh-pages - - - - org.apache.maven.plugins - maven-site-plugin - 3.7.1 - - true - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.20 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.20 - - - org.codehaus.mojo - cobertura-maven-plugin - 2.7 - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.4 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.codehaus.plexus - plexus-component-metadata - 1.7.1 - - - process-classes - - generate-metadata - - - - process-test-classes - - generate-test-metadata - - - - - - - - - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - 3.0.5 - This project requires at least Maven 3.0.5 - - - - - - - - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - index - summary - dependency-info - modules - license - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - plugin-management - plugins - distribution-management - - - - - - - - - - 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.codehaus.mojo - findbugs-maven-plugin - - - org.codehaus.mojo - taglist-maven-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - default - - jxr - test-jxr - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - - http://junit.sourceforge.net/javadoc/ - - - - - default - - javadoc - test-javadoc - - - - - - org.codehaus.mojo - cobertura-maven-plugin - - - - - - plexus-release - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - - 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/.m2/repository/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom.sha1 deleted file mode 100644 index f42e0ec..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2fca82e2eb5172f6a2909bea7accc733581a8c71 \ No newline at end of file diff --git a/.m2/repository/org/codehaus/plexus/plexus/8/_remote.repositories b/.m2/repository/org/codehaus/plexus/plexus/8/_remote.repositories deleted file mode 100644 index 98337bf..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/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. -#Thu Apr 02 20:38:37 UTC 2026 -plexus-8.pom>central= diff --git a/.m2/repository/org/codehaus/plexus/plexus/8/plexus-8.pom b/.m2/repository/org/codehaus/plexus/plexus/8/plexus-8.pom deleted file mode 100644 index afadba1..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/8/plexus-8.pom +++ /dev/null @@ -1,774 +0,0 @@ - - - - - - 4.0.0 - - org.codehaus.plexus - plexus - pom - 8 - - Plexus - The Plexus project provides a full software stack for creating and executing software projects. - https://codehaus-plexus.github.io/ - 2001 - - Codehaus Plexus - https://codehaus-plexus.github.io/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - jvanzyl - Jason van Zyl - jason@maven.org - - Developer - Release Manager - - - - kaz - Pete Kazmier - - - - Developer - - - - jtaylor - James Taylor - james@jamestaylor.org - - - Developer - - - - dandiep - Dan Diephouse - dan@envoisolutions.com - Envoi solutions - - Developer - - - - kasper - Kasper Nielsen - apache@kav.dk - - - Developer - - - - bwalding - Ben Walding - bwalding@codehaus.org - Walding Consulting Services - - Developer - - - - mhw - Mark Wilkinson - mhw@kremvax.net - - Developer - - - - michal - Michal Maczka - mmaczka@interia.pl - - Developer - - - - evenisse - Emmanuel Venisse - evenisse@codehaus.org - - Developer - - - - Trygve Laugstøl - trygvis - trygvis@codehaus.org - - Developer - - - - Kenney Westerhof - kenney - kenney@codehaus.org - - Developer - - - - Carlos Sanchez - carlos - carlos@codehaus.org - - Developer - - - - Brett Porter - brett - brett@codehaus.org - - Developer - - - - John Casey - jdcasey - jdcasey@codehaus.org - - Developer - - - - Andrew Williams - handyande - andy@handyande.co.uk - - Developer - - - - Rahul Thakur - rahul - rahul.thakur.xdev@gmail.com - - Developer - - - - Joakim Erdfelt - joakime - joakim@erdfelt.com - - Developer - - - - Olivier Lamy - olamy - olamy@codehaus.org - - Developer - - - - Hervé Boutemy - hboutemy - hboutemy@apache.org - - Developer - - - - Oleg Gusakov - oleg - olegy@codehaus.org - - Developer - - - - Vincent Siveton - vsiveton - vsiveton@codehaus.org - - Developer - - - - Kristian Rosenvold - krosenvold - krosenvold@apache.org - - Developer - - - - Andreas Gudian - agudian - agudian@apache.org - - Developer - - - - Karl Heinz Marbaise - khmarbaise - khmarbaise@apache.org - - Developer - - - - Michael Osipov - michael-o - 1983-01-06@gmx.net - - Developer - - - - Gabriel Belingueres - belingueres - belingueres@gmail.com - - Developer - - - - - - - Plexus User List - http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org - http://archive.plexus.codehaus.org/user - user@plexus.codehaus.org - - - Plexus Developer List - http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org - http://archive.plexus.codehaus.org/dev - dev@plexus.codehaus.org - - - Plexus Announce List - http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org - http://archive.plexus.codehaus.org/announce - - - Plexus Commit List - http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org - http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org - http://archive.plexus.codehaus.org/scm - - - - - scm:git:git@github.com:codehaus-plexus/plexus-pom.git - scm:git:git@github.com:codehaus-plexus/plexus-pom.git - https://github.com/codehaus-plexus/plexus-pom/tree/${project.scm.tag}/ - plexus-8 - - - github - https://github.com/codehaus-plexus/plexus-pom/issues - - - - plexus-releases - Plexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - plexus-snapshots - Plexus Snapshot Repository - ${plexusDistMgmtSnapshotsUrl} - - - github:gh-pages - scm:git:git@github.com:codehaus-plexus - - - - - 8 - 1.${javaVersion} - 1.${javaVersion} - UTF-8 - https://oss.sonatype.org/content/repositories/plexus-snapshots - 2021-07-29T17:33:03Z - true - - - - - - org.codehaus.plexus - plexus-component-annotations - 2.1.0 - compile - - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 3.1.2 - - config/maven_checks.xml - https://raw.github.com/codehaus-plexus/plexus-pom/master/src/main/resources/config/plexus-header.txt - - - - - com.puppycrawl.tools - checkstyle - 8.42 - - - - org.apache.maven.shared - maven-shared-resources - 3 - - - - - 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-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M3 - - - 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 - 3.2.0 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-jxr-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.6.1 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.14.0 - - ${maven.compiler.source} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.1.2 - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M4 - - deploy - forked-path - false - -Pplexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 3.1.0 - - - ${project.scm.developerConnection} - gh-pages - - - - org.apache.maven.plugins - maven-site-plugin - 3.9.1 - - true - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.2 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.22.2 - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.codehaus.plexus - plexus-component-metadata - 2.1.0 - - - process-classes - - generate-metadata - - - - process-test-classes - - generate-test-metadata - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - 3.0.5 - This project requires at least Maven 3.0.5 - - - - - - - - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - index - summary - dependency-info - modules - licenses - team - scm - issue-management - mailing-lists - dependency-management - dependencies - dependency-convergence - ci-management - plugin-management - plugins - distribution-management - - - - - - - - - - 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.codehaus.mojo - findbugs-maven-plugin - - - org.codehaus.mojo - taglist-maven-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - default - - jxr - test-jxr - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - - http://junit.sourceforge.net/javadoc/ - - - - - default - - javadoc - test-javadoc - - - - - - - - - plexus-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 - - source-release - - posix - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - - sign - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - pre-JEP_247 - - [7,8] - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.codehaus.mojo - animal-sniffer-enforcer-rule - 1.20 - - - - - check-signatures - test - - enforce - - - - - - org.codehaus.mojo.signature - java1${javaVersion} - 1.0 - - - - - - - - - - - - diff --git a/.m2/repository/org/codehaus/plexus/plexus/8/plexus-8.pom.sha1 b/.m2/repository/org/codehaus/plexus/plexus/8/plexus-8.pom.sha1 deleted file mode 100644 index 4e2c944..0000000 --- a/.m2/repository/org/codehaus/plexus/plexus/8/plexus-8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b3982e53f063775a9ab1d8522a5928ffadfcf54a \ No newline at end of file diff --git a/.m2/repository/org/eclipse/angus/all/2.0.4/_remote.repositories b/.m2/repository/org/eclipse/angus/all/2.0.4/_remote.repositories deleted file mode 100644 index 70d0757..0000000 --- a/.m2/repository/org/eclipse/angus/all/2.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. -#Thu Apr 02 20:38:05 UTC 2026 -all-2.0.4.pom>central= diff --git a/.m2/repository/org/eclipse/angus/all/2.0.4/all-2.0.4.pom b/.m2/repository/org/eclipse/angus/all/2.0.4/all-2.0.4.pom deleted file mode 100644 index 809b0fa..0000000 --- a/.m2/repository/org/eclipse/angus/all/2.0.4/all-2.0.4.pom +++ /dev/null @@ -1,773 +0,0 @@ - - - - - - - org.eclipse.ee4j - project - 1.0.9 - - - - 4.0.0 - org.eclipse.angus - all - pom - 2.0.4 - Angus Mail Project - ${project.name} - http://eclipse-ee4j.github.io/angus-mail - - - scm:git:ssh://git@github.com/eclipse-ee4j/angus-mail.git - scm:git:ssh://git@github.com/eclipse-ee4j/angus-mail.git - https://github.com/eclipse-ee4j/angus-mail - - - - GitHub - https://github.com/eclipse-ee4j/angus-mail/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 - - - - - ${project.build.directory}/common-resources - ${project.build.commonResourcesDirectory}/legal - ${project.build.commonResourcesDirectory}/config/copyright-exclude - false - true - false - true - High - 4.8.3.1 - - 2024-02-14T00:00:00Z - UTF-8 - 11 - Angus Mail API documentation - Angus Mail v${angus-mail.version}]]> - angus-dev@eclipse.org.
-Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.]]>
- - 2.1 - 2.1.3 - 2.1.3 - 3.0.0 - 5.0.0 - 2.0.2 - ${project.version} - 23.1.2 - - ${mail-api.version} - false - true -
- - - - shannon - Bill Shannon - bill.shannon@oracle.com - Oracle - - lead - - - - - - - - oracle.com - file:/tmp - - - - - - - jakarta.activation - jakarta.activation-api - ${activation-api.version} - - - jakarta.mail - jakarta.mail-api - ${mail-api.version} - - - org.eclipse.angus - angus-activation - ${angus.activation.version} - - - org.eclipse.angus - angus-mail - ${project.version} - - - org.eclipse.angus - angus-core - ${project.version} - - - org.eclipse.angus - dsn - ${project.version} - - - org.eclipse.angus - imap - ${project.version} - - - org.eclipse.angus - smtp - ${project.version} - - - org.eclipse.angus - pop3 - ${project.version} - - - org.eclipse.angus - logging-mailhandler - ${project.version} - - - org.eclipse.angus - gimap - ${project.version} - - - org.eclipse.angus - mbox - ${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} - - - org.eclipse.angus - taglib - ${project.version} - - - jakarta.servlet - jakarta.servlet-api - ${servlet-api.version} - - - jakarta.servlet.jsp - jakarta.servlet.jsp-api - ${jsp-api.version} - - - junit - junit - 4.13.2 - - - - - - - - core - dsn - mailhandler - providers - - - - install - - - - 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.5.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.plugin.version} - - ${spotbugs.skip} - ${spotbugs.threshold} - - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.4.1 - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - - - 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-war-plugin - 3.4.0 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 3.5.0 - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - - ${copyright.exclude} - - ${copyright.scmonly} - - ${copyright.update} - - ${copyright.ignoreyear} - false - - - - org.apache.maven.plugins - maven-antrun-plugin - 3.1.0 - - - org.apache.ant - ant - 1.10.14 - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-version - - enforce - - - - - [3.6.3,) - - - [11,) - - - - - - - - - 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 - - - - - org.eclipse.angus - all - ${project.version} - resources - zip - ${project.build.commonResourcesDirectory} - - - - - - - - - - org.apache.felix - maven-bundle-plugin - - - <_noextraheaders>true - * - - javax.security.sasl;resolution:=optional, - sun.security.util;resolution:=optional, - * - - - true - - - false - - - - - - - osgi-manifest - process-classes - - manifest - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - false - - - - default-compile - - ${skip9} - 9 - - - example/app/internal/** - - true - - - -Xlint - -Xlint:-options - -Xlint:-path - - - - - - base-compile - - compile - - - false - 8 - 8 - - module-info.java - **/nativeimage/** - - example/app/internal/** - - - - - default-testCompile - - ${skip9} - 9 - - - - test-base-compile - - testCompile - - - ${skip8} - 8 - 8 - - module-info.java - - - - - - - - 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-legal-resources - generate-resources - - add-resource - - - - - ${legal.doc.source} - META-INF - - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - - false - - - - - - attach-sources - - jar-no-fork - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${skip9} - - - false - - - ${angus-mail.javadoc.source} - false - ${angus-mail.javadoc.title} - ${angus-mail.javadoc.title} - ${angus-mail.javadoc.title} - true - true - true - true - true -
${angus-mail.javadoc.header}
- ${angus-mail.javadoc.bottom} - - true - false -
-
-
-
- - - - - - com.github.spotbugs - spotbugs-maven-plugin - - - ${spotbugs.skip} - ${spotbugs.threshold} - ${spotbugs.exclude} - - - - - - - - - build-only - - demos - doc - - - true - - - - - jdk8 - - 1.8 - - - true - false - - - - - - oss-release - - - - 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/.m2/repository/org/eclipse/angus/all/2.0.4/all-2.0.4.pom.sha1 b/.m2/repository/org/eclipse/angus/all/2.0.4/all-2.0.4.pom.sha1 deleted file mode 100644 index c0fbaa1..0000000 --- a/.m2/repository/org/eclipse/angus/all/2.0.4/all-2.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6c3bd613f190a2fedce7287134a4407019c450f1 \ No newline at end of file diff --git a/.m2/repository/org/eclipse/angus/angus-activation-project/2.0.2/_remote.repositories b/.m2/repository/org/eclipse/angus/angus-activation-project/2.0.2/_remote.repositories deleted file mode 100644 index a35294c..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:05 UTC 2026 -angus-activation-project-2.0.2.pom>central= diff --git a/.m2/repository/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom b/.m2/repository/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom deleted file mode 100644 index 4adcd5a..0000000 --- a/.m2/repository/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/.m2/repository/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom.sha1 b/.m2/repository/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom.sha1 deleted file mode 100644 index e68fa64..0000000 --- a/.m2/repository/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/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/_remote.repositories b/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/_remote.repositories deleted file mode 100644 index b46e4a8..0000000 --- a/.m2/repository/org/eclipse/angus/angus-activation/2.0.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. -#Thu Apr 02 20:38:35 UTC 2026 -angus-activation-2.0.2.jar>central= -angus-activation-2.0.2.pom>central= diff --git a/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.jar b/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.jar deleted file mode 100644 index 93c7aad..0000000 Binary files a/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.jar and /dev/null differ diff --git a/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.jar.sha1 b/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.jar.sha1 deleted file mode 100644 index be8f235..0000000 --- a/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -41f1e0ddd157c856926ed149ab837d110955a9fc \ No newline at end of file diff --git a/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom b/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom deleted file mode 100644 index 66cec84..0000000 --- a/.m2/repository/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/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom.sha1 b/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom.sha1 deleted file mode 100644 index fb5cb2a..0000000 --- a/.m2/repository/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/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/_remote.repositories b/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/_remote.repositories deleted file mode 100644 index 6640b97..0000000 --- a/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/_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. -#Thu Apr 02 20:38:35 UTC 2026 -jakarta.mail-2.0.4.jar>central= -jakarta.mail-2.0.4.pom>central= diff --git a/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/jakarta.mail-2.0.4.jar b/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/jakarta.mail-2.0.4.jar deleted file mode 100644 index 27fae7f..0000000 Binary files a/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/jakarta.mail-2.0.4.jar and /dev/null differ diff --git a/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/jakarta.mail-2.0.4.jar.sha1 b/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/jakarta.mail-2.0.4.jar.sha1 deleted file mode 100644 index 76624f0..0000000 --- a/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/jakarta.mail-2.0.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c9186aca3267c1ee38ada22acfb12d7ef5c73593 \ No newline at end of file diff --git a/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/jakarta.mail-2.0.4.pom b/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/jakarta.mail-2.0.4.pom deleted file mode 100644 index 912ad68..0000000 --- a/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/jakarta.mail-2.0.4.pom +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - org.eclipse.angus - all - 2.0.4 - ../../pom.xml - - 4.0.0 - jakarta.mail - jar - Angus Mail default provider - - - ${project.version} - - jakarta.mail - Jakarta Mail API Design Specification - jakarta.mail - META-INF/gfprobe-provider.xml - false - ${project.basedir}/exclude.xml - ${project.build.directory}/generated-sources/dependencies - ${project.build.directory}/generated-sources/version - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - unpack-sources - generate-sources - - unpack-dependencies - - - provided - sources - graal-sdk - true - - module-info.*,META-INF/versions/**,META-INF/MANIFEST.MF,jakarta/mail/Version.java - - ${dep.sources} - - - - unpack-version-sources - generate-resources - - unpack-dependencies - - - jakarta.mail-api - provided - sources - true - jakarta/mail/Version.java - ${dep.sources}/../version-resources - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-resource - generate-resources - - add-resource - - - - - ${dep.sources} - - **/*.java - - - - - - - add-sources - generate-sources - - add-source - - - - ${dep.sources} - - - - - add-version-sources - generate-sources - - add-source - - - - ${dep.sources.version} - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - fix-default-provider - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-resources-plugin - - - copy-resources - generate-resources - - copy-resources - - - ${dep.sources.version} - - - ${dep.sources}/../version-resources - true - - - - - - - - - org.apache.felix - maven-bundle-plugin - - - - org.glassfish.hk2.osgiresourcelocator;resolution:=optional, - sun.security.util;resolution:=optional, - * - - =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))" - ]]> - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - -
Jakarta Mail API v${mail-api.version}]]>
- angus-dev@eclipse.org.
-Copyright © 2019, ${current.year} Eclipse Foundation. All rights reserved.
-Use is subject to license terms.]]> -
-
-
-
-
- - - - jakarta.activation - jakarta.activation-api - - - - org.eclipse.angus - angus-activation - runtime - - - - junit - junit - test - - - - - jakarta.mail - jakarta.mail-api - provided - - - org.eclipse.angus - angus-mail - provided - - - - org.graalvm.sdk - graal-sdk - true - provided - - -
diff --git a/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/jakarta.mail-2.0.4.pom.sha1 b/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/jakarta.mail-2.0.4.pom.sha1 deleted file mode 100644 index eef8d61..0000000 --- a/.m2/repository/org/eclipse/angus/jakarta.mail/2.0.4/jakarta.mail-2.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -36265d4e9a330f833a86f75d2d8bfc5bb634e06d \ No newline at end of file diff --git a/.m2/repository/org/eclipse/ee4j/project/1.0.6/_remote.repositories b/.m2/repository/org/eclipse/ee4j/project/1.0.6/_remote.repositories deleted file mode 100644 index 1061fc8..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:00 UTC 2026 -project-1.0.6.pom>central= diff --git a/.m2/repository/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom b/.m2/repository/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom deleted file mode 100644 index eb7064a..0000000 --- a/.m2/repository/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/.m2/repository/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom.sha1 b/.m2/repository/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom.sha1 deleted file mode 100644 index 6df9eed..0000000 --- a/.m2/repository/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/.m2/repository/org/eclipse/ee4j/project/1.0.7/_remote.repositories b/.m2/repository/org/eclipse/ee4j/project/1.0.7/_remote.repositories deleted file mode 100644 index c621f58..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:44 UTC 2026 -project-1.0.7.pom>central= diff --git a/.m2/repository/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom b/.m2/repository/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom deleted file mode 100644 index 0ecdc4a..0000000 --- a/.m2/repository/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/.m2/repository/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom.sha1 b/.m2/repository/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom.sha1 deleted file mode 100644 index 20c2e43..0000000 --- a/.m2/repository/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/.m2/repository/org/eclipse/ee4j/project/1.0.8/_remote.repositories b/.m2/repository/org/eclipse/ee4j/project/1.0.8/_remote.repositories deleted file mode 100644 index bc1830a..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:11 UTC 2026 -project-1.0.8.pom>central= diff --git a/.m2/repository/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom b/.m2/repository/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom deleted file mode 100644 index 2028be0..0000000 --- a/.m2/repository/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/.m2/repository/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.sha1 b/.m2/repository/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom.sha1 deleted file mode 100644 index 6119d2b..0000000 --- a/.m2/repository/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/.m2/repository/org/eclipse/ee4j/project/1.0.9/_remote.repositories b/.m2/repository/org/eclipse/ee4j/project/1.0.9/_remote.repositories deleted file mode 100644 index 7646bc4..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:35 UTC 2026 -project-1.0.9.pom>central= diff --git a/.m2/repository/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom b/.m2/repository/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom deleted file mode 100644 index 624d156..0000000 --- a/.m2/repository/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/.m2/repository/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.sha1 b/.m2/repository/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom.sha1 deleted file mode 100644 index 15bbeff..0000000 --- a/.m2/repository/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/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.25/_remote.repositories b/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.25/_remote.repositories deleted file mode 100644 index 61c0369..0000000 --- a/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.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. -#Thu Apr 02 20:37:35 UTC 2026 -jetty-ee10-bom-12.0.25.pom>central= diff --git a/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.25/jetty-ee10-bom-12.0.25.pom b/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.25/jetty-ee10-bom-12.0.25.pom deleted file mode 100644 index 1deb31d..0000000 --- a/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.25/jetty-ee10-bom-12.0.25.pom +++ /dev/null @@ -1,260 +0,0 @@ - - - 4.0.0 - org.eclipse.jetty.ee10 - jetty-ee10-bom - 12.0.25 - pom - EE10 :: BOM - Jetty EE10 APIs BOM artifact - https://jetty.org/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 - - - lachlan-roberts - Lachlan Roberts - lachlan@webtide.com - Webtide, LLC - https://webtide.com - Australia/Sydney - - - - - 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.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-apache-jsp - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-cdi - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-fcgi-proxy - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-glassfish-jstl - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-jaspi - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-jndi - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-jspc-maven-plugin - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-maven-plugin - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-plus - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-proxy - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-quickstart - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-runner - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-servlet - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-servlets - 12.0.25 - - - org.eclipse.jetty.ee10 - jetty-ee10-webapp - 12.0.25 - - - org.eclipse.jetty.ee10.osgi - jetty-ee10-osgi-alpn - 12.0.25 - - - org.eclipse.jetty.ee10.osgi - jetty-ee10-osgi-boot - 12.0.25 - - - org.eclipse.jetty.ee10.osgi - jetty-ee10-osgi-boot-jsp - 12.0.25 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jakarta-client - 12.0.25 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jakarta-client-webapp - 12.0.25 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jakarta-common - 12.0.25 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jakarta-server - 12.0.25 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jetty-client-webapp - 12.0.25 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jetty-server - 12.0.25 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-servlet - 12.0.25 - - - - diff --git a/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.25/jetty-ee10-bom-12.0.25.pom.sha1 b/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.25/jetty-ee10-bom-12.0.25.pom.sha1 deleted file mode 100644 index ce95a8c..0000000 --- a/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.25/jetty-ee10-bom-12.0.25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -29971e373b777ac8d352601cb1a4154e76154397 \ No newline at end of file diff --git a/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.7/_remote.repositories b/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.7/_remote.repositories deleted file mode 100644 index a382039..0000000 --- a/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.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. -#Thu Apr 02 20:38:11 UTC 2026 -jetty-ee10-bom-12.0.7.pom>central= diff --git a/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.7/jetty-ee10-bom-12.0.7.pom b/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.7/jetty-ee10-bom-12.0.7.pom deleted file mode 100644 index b3a5893..0000000 --- a/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.7/jetty-ee10-bom-12.0.7.pom +++ /dev/null @@ -1,252 +0,0 @@ - - - 4.0.0 - org.eclipse.jetty.ee10 - jetty-ee10-bom - 12.0.7 - 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.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-apache-jsp - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-cdi - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-fcgi-proxy - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-glassfish-jstl - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-jaspi - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-jndi - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-jspc-maven-plugin - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-maven-plugin - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-plus - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-proxy - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-quickstart - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-runner - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-servlet - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-servlets - 12.0.7 - - - org.eclipse.jetty.ee10 - jetty-ee10-webapp - 12.0.7 - - - org.eclipse.jetty.ee10.osgi - jetty-ee10-osgi-alpn - 12.0.7 - - - org.eclipse.jetty.ee10.osgi - jetty-ee10-osgi-boot - 12.0.7 - - - org.eclipse.jetty.ee10.osgi - jetty-ee10-osgi-boot-jsp - 12.0.7 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jakarta-client - 12.0.7 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jakarta-client-webapp - 12.0.7 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jakarta-common - 12.0.7 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jakarta-server - 12.0.7 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jetty-client-webapp - 12.0.7 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-jetty-server - 12.0.7 - - - org.eclipse.jetty.ee10.websocket - jetty-ee10-websocket-servlet - 12.0.7 - - - - diff --git a/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.7/jetty-ee10-bom-12.0.7.pom.sha1 b/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.7/jetty-ee10-bom-12.0.7.pom.sha1 deleted file mode 100644 index 7658638..0000000 --- a/.m2/repository/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.7/jetty-ee10-bom-12.0.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7938cf6ce7a7031824f285defe45df9c593b9771 \ No newline at end of file diff --git a/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.25/_remote.repositories b/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.25/_remote.repositories deleted file mode 100644 index 7776c69..0000000 --- a/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.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. -#Thu Apr 02 20:37:35 UTC 2026 -jetty-bom-12.0.25.pom>central= diff --git a/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.25/jetty-bom-12.0.25.pom b/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.25/jetty-bom-12.0.25.pom deleted file mode 100644 index d90e486..0000000 --- a/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.25/jetty-bom-12.0.25.pom +++ /dev/null @@ -1,415 +0,0 @@ - - - 4.0.0 - org.eclipse.jetty - jetty-bom - 12.0.25 - pom - Core :: BOM - Jetty Core BOM artifact - https://jetty.org/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 - - - lachlan-roberts - Lachlan Roberts - lachlan@webtide.com - Webtide, LLC - https://webtide.com - Australia/Sydney - - - - - 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.25 - - - org.eclipse.jetty - jetty-alpn-conscrypt-client - 12.0.25 - - - org.eclipse.jetty - jetty-alpn-conscrypt-server - 12.0.25 - - - org.eclipse.jetty - jetty-alpn-java-client - 12.0.25 - - - org.eclipse.jetty - jetty-alpn-java-server - 12.0.25 - - - org.eclipse.jetty - jetty-alpn-server - 12.0.25 - - - org.eclipse.jetty - jetty-client - 12.0.25 - - - org.eclipse.jetty - jetty-deploy - 12.0.25 - - - org.eclipse.jetty - jetty-ee - 12.0.25 - - - org.eclipse.jetty - jetty-http - 12.0.25 - - - org.eclipse.jetty - jetty-http-spi - 12.0.25 - - - org.eclipse.jetty - jetty-http-tools - 12.0.25 - - - org.eclipse.jetty - jetty-io - 12.0.25 - - - org.eclipse.jetty - jetty-jmx - 12.0.25 - - - org.eclipse.jetty - jetty-jndi - 12.0.25 - - - org.eclipse.jetty - jetty-keystore - 12.0.25 - - - org.eclipse.jetty - jetty-openid - 12.0.25 - - - org.eclipse.jetty - jetty-osgi - 12.0.25 - - - org.eclipse.jetty - jetty-plus - 12.0.25 - - - org.eclipse.jetty - jetty-proxy - 12.0.25 - - - org.eclipse.jetty - jetty-rewrite - 12.0.25 - - - org.eclipse.jetty - jetty-security - 12.0.25 - - - org.eclipse.jetty - jetty-server - 12.0.25 - - - org.eclipse.jetty - jetty-session - 12.0.25 - - - org.eclipse.jetty - jetty-slf4j-impl - 12.0.25 - - - org.eclipse.jetty - jetty-start - 12.0.25 - - - org.eclipse.jetty - jetty-unixdomain-server - 12.0.25 - - - org.eclipse.jetty - jetty-util - 12.0.25 - - - org.eclipse.jetty - jetty-util-ajax - 12.0.25 - - - org.eclipse.jetty - jetty-xml - 12.0.25 - - - org.eclipse.jetty.demos - jetty-demo-handler - 12.0.25 - - - org.eclipse.jetty.fcgi - jetty-fcgi-client - 12.0.25 - - - org.eclipse.jetty.fcgi - jetty-fcgi-proxy - 12.0.25 - - - org.eclipse.jetty.fcgi - jetty-fcgi-server - 12.0.25 - - - org.eclipse.jetty.http2 - jetty-http2-client - 12.0.25 - - - org.eclipse.jetty.http2 - jetty-http2-client-transport - 12.0.25 - - - org.eclipse.jetty.http2 - jetty-http2-common - 12.0.25 - - - org.eclipse.jetty.http2 - jetty-http2-hpack - 12.0.25 - - - org.eclipse.jetty.http2 - jetty-http2-server - 12.0.25 - - - org.eclipse.jetty.http3 - jetty-http3-client - 12.0.25 - - - org.eclipse.jetty.http3 - jetty-http3-client-transport - 12.0.25 - - - org.eclipse.jetty.http3 - jetty-http3-common - 12.0.25 - - - org.eclipse.jetty.http3 - jetty-http3-qpack - 12.0.25 - - - org.eclipse.jetty.http3 - jetty-http3-server - 12.0.25 - - - org.eclipse.jetty.quic - jetty-quic-client - 12.0.25 - - - org.eclipse.jetty.quic - jetty-quic-common - 12.0.25 - - - org.eclipse.jetty.quic - jetty-quic-quiche-common - 12.0.25 - - - org.eclipse.jetty.quic - jetty-quic-quiche-foreign - 12.0.25 - - - org.eclipse.jetty.quic - jetty-quic-quiche-jna - 12.0.25 - - - org.eclipse.jetty.quic - jetty-quic-server - 12.0.25 - - - org.eclipse.jetty.websocket - jetty-websocket-core-client - 12.0.25 - - - org.eclipse.jetty.websocket - jetty-websocket-core-common - 12.0.25 - - - org.eclipse.jetty.websocket - jetty-websocket-core-server - 12.0.25 - - - org.eclipse.jetty.websocket - jetty-websocket-jetty-api - 12.0.25 - - - org.eclipse.jetty.websocket - jetty-websocket-jetty-client - 12.0.25 - - - org.eclipse.jetty.websocket - jetty-websocket-jetty-common - 12.0.25 - - - org.eclipse.jetty.websocket - jetty-websocket-jetty-server - 12.0.25 - - - - diff --git a/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.25/jetty-bom-12.0.25.pom.sha1 b/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.25/jetty-bom-12.0.25.pom.sha1 deleted file mode 100644 index 1223578..0000000 --- a/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.25/jetty-bom-12.0.25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3914f6234f2a768ad92a6a21ff7a6e982dddc722 \ No newline at end of file diff --git a/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.7/_remote.repositories b/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.7/_remote.repositories deleted file mode 100644 index baf352d..0000000 --- a/.m2/repository/org/eclipse/jetty/jetty-bom/12.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. -#Thu Apr 02 20:38:11 UTC 2026 -jetty-bom-12.0.7.pom>central= diff --git a/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.7/jetty-bom-12.0.7.pom b/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.7/jetty-bom-12.0.7.pom deleted file mode 100644 index 6ce2859..0000000 --- a/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.7/jetty-bom-12.0.7.pom +++ /dev/null @@ -1,402 +0,0 @@ - - - 4.0.0 - org.eclipse.jetty - jetty-bom - 12.0.7 - 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.7 - - - org.eclipse.jetty - jetty-alpn-conscrypt-client - 12.0.7 - - - org.eclipse.jetty - jetty-alpn-conscrypt-server - 12.0.7 - - - org.eclipse.jetty - jetty-alpn-java-client - 12.0.7 - - - org.eclipse.jetty - jetty-alpn-java-server - 12.0.7 - - - org.eclipse.jetty - jetty-alpn-server - 12.0.7 - - - org.eclipse.jetty - jetty-client - 12.0.7 - - - org.eclipse.jetty - jetty-deploy - 12.0.7 - - - org.eclipse.jetty - jetty-http - 12.0.7 - - - org.eclipse.jetty - jetty-http-spi - 12.0.7 - - - org.eclipse.jetty - jetty-http-tools - 12.0.7 - - - org.eclipse.jetty - jetty-io - 12.0.7 - - - org.eclipse.jetty - jetty-jmx - 12.0.7 - - - org.eclipse.jetty - jetty-jndi - 12.0.7 - - - org.eclipse.jetty - jetty-keystore - 12.0.7 - - - org.eclipse.jetty - jetty-openid - 12.0.7 - - - org.eclipse.jetty - jetty-osgi - 12.0.7 - - - org.eclipse.jetty - jetty-plus - 12.0.7 - - - org.eclipse.jetty - jetty-proxy - 12.0.7 - - - org.eclipse.jetty - jetty-rewrite - 12.0.7 - - - org.eclipse.jetty - jetty-security - 12.0.7 - - - org.eclipse.jetty - jetty-server - 12.0.7 - - - org.eclipse.jetty - jetty-session - 12.0.7 - - - org.eclipse.jetty - jetty-slf4j-impl - 12.0.7 - - - org.eclipse.jetty - jetty-start - 12.0.7 - - - org.eclipse.jetty - jetty-unixdomain-server - 12.0.7 - - - org.eclipse.jetty - jetty-util - 12.0.7 - - - org.eclipse.jetty - jetty-util-ajax - 12.0.7 - - - org.eclipse.jetty - jetty-xml - 12.0.7 - - - org.eclipse.jetty.demos - jetty-demo-handler - 12.0.7 - - - org.eclipse.jetty.fcgi - jetty-fcgi-client - 12.0.7 - - - org.eclipse.jetty.fcgi - jetty-fcgi-proxy - 12.0.7 - - - org.eclipse.jetty.fcgi - jetty-fcgi-server - 12.0.7 - - - org.eclipse.jetty.http2 - jetty-http2-client - 12.0.7 - - - org.eclipse.jetty.http2 - jetty-http2-client-transport - 12.0.7 - - - org.eclipse.jetty.http2 - jetty-http2-common - 12.0.7 - - - org.eclipse.jetty.http2 - jetty-http2-hpack - 12.0.7 - - - org.eclipse.jetty.http2 - jetty-http2-server - 12.0.7 - - - org.eclipse.jetty.http3 - jetty-http3-client - 12.0.7 - - - org.eclipse.jetty.http3 - jetty-http3-client-transport - 12.0.7 - - - org.eclipse.jetty.http3 - jetty-http3-common - 12.0.7 - - - org.eclipse.jetty.http3 - jetty-http3-qpack - 12.0.7 - - - org.eclipse.jetty.http3 - jetty-http3-server - 12.0.7 - - - org.eclipse.jetty.quic - jetty-quic-client - 12.0.7 - - - org.eclipse.jetty.quic - jetty-quic-common - 12.0.7 - - - org.eclipse.jetty.quic - jetty-quic-quiche-common - 12.0.7 - - - org.eclipse.jetty.quic - jetty-quic-quiche-foreign-incubator - 12.0.7 - - - org.eclipse.jetty.quic - jetty-quic-quiche-jna - 12.0.7 - - - org.eclipse.jetty.quic - jetty-quic-server - 12.0.7 - - - org.eclipse.jetty.websocket - jetty-websocket-core-client - 12.0.7 - - - org.eclipse.jetty.websocket - jetty-websocket-core-common - 12.0.7 - - - org.eclipse.jetty.websocket - jetty-websocket-core-server - 12.0.7 - - - org.eclipse.jetty.websocket - jetty-websocket-jetty-api - 12.0.7 - - - org.eclipse.jetty.websocket - jetty-websocket-jetty-client - 12.0.7 - - - org.eclipse.jetty.websocket - jetty-websocket-jetty-common - 12.0.7 - - - org.eclipse.jetty.websocket - jetty-websocket-jetty-server - 12.0.7 - - - - diff --git a/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.7/jetty-bom-12.0.7.pom.sha1 b/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.7/jetty-bom-12.0.7.pom.sha1 deleted file mode 100644 index 0c23dc9..0000000 --- a/.m2/repository/org/eclipse/jetty/jetty-bom/12.0.7/jetty-bom-12.0.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -982e5db42b04d3b80c54e6bfabd12743549eb425 \ No newline at end of file diff --git a/.m2/repository/org/glassfish/jaxb/jaxb-bom/4.0.5/_remote.repositories b/.m2/repository/org/glassfish/jaxb/jaxb-bom/4.0.5/_remote.repositories deleted file mode 100644 index 916b538..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:34 UTC 2026 -jaxb-bom-4.0.5.pom>central= diff --git a/.m2/repository/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom b/.m2/repository/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom deleted file mode 100644 index 69a00c6..0000000 --- a/.m2/repository/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/.m2/repository/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.sha1 b/.m2/repository/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom.sha1 deleted file mode 100644 index b9e4471..0000000 --- a/.m2/repository/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/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.11/_remote.repositories b/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.11/_remote.repositories deleted file mode 100644 index 82bbed7..0000000 --- a/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.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. -#Thu Apr 02 20:37:35 UTC 2026 -jersey-bom-3.1.11.pom>central= diff --git a/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.11/jersey-bom-3.1.11.pom b/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.11/jersey-bom-3.1.11.pom deleted file mode 100644 index b23e919..0000000 --- a/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.11/jersey-bom-3.1.11.pom +++ /dev/null @@ -1,462 +0,0 @@ - - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.9 - - - - org.glassfish.jersey - jersey-bom - 3.1.11 - 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.providers - jersey-test-framework-provider-netty - ${project.version} - - - org.glassfish.jersey.test-framework - jersey-test-framework-util - ${project.version} - - - - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 2.4 - true - - - - - - - project-info - - false - - - - - - localhost - http://localhost - - - - - diff --git a/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.11/jersey-bom-3.1.11.pom.sha1 b/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.11/jersey-bom-3.1.11.pom.sha1 deleted file mode 100644 index 91980d7..0000000 --- a/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.11/jersey-bom-3.1.11.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5d1ab1b808af24548739597c110c1512023557d7 \ No newline at end of file diff --git a/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.5/_remote.repositories b/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.5/_remote.repositories deleted file mode 100644 index 822092a..0000000 --- a/.m2/repository/org/glassfish/jersey/jersey-bom/3.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. -#Thu Apr 02 20:38:11 UTC 2026 -jersey-bom-3.1.5.pom>central= diff --git a/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.5/jersey-bom-3.1.5.pom b/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.5/jersey-bom-3.1.5.pom deleted file mode 100644 index 0620bea..0000000 --- a/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.5/jersey-bom-3.1.5.pom +++ /dev/null @@ -1,462 +0,0 @@ - - - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.8 - - - - org.glassfish.jersey - jersey-bom - 3.1.5 - 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/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.5/jersey-bom-3.1.5.pom.sha1 b/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.5/jersey-bom-3.1.5.pom.sha1 deleted file mode 100644 index 0e904e2..0000000 --- a/.m2/repository/org/glassfish/jersey/jersey-bom/3.1.5/jersey-bom-3.1.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ef2484f7cac8d70c8565a467b983371757ed14ac \ No newline at end of file diff --git a/.m2/repository/org/hamcrest/hamcrest/3.0/_remote.repositories b/.m2/repository/org/hamcrest/hamcrest/3.0/_remote.repositories deleted file mode 100644 index afe65d1..0000000 --- a/.m2/repository/org/hamcrest/hamcrest/3.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. -#Thu Apr 02 20:38:35 UTC 2026 -hamcrest-3.0.jar>central= -hamcrest-3.0.pom>central= diff --git a/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.jar b/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.jar deleted file mode 100644 index 763ffd9..0000000 Binary files a/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.jar and /dev/null differ diff --git a/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.jar.sha1 b/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.jar.sha1 deleted file mode 100644 index bb2d976..0000000 --- a/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8fd9b78a8e6a6510a078a9e30e9e86a6035cfaf7 \ No newline at end of file diff --git a/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.pom b/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.pom deleted file mode 100644 index aa2f564..0000000 --- a/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.pom +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - 4.0.0 - org.hamcrest - hamcrest - 3.0 - Hamcrest - Core API and libraries of hamcrest matcher framework. - http://hamcrest.org/JavaHamcrest/ - - - BSD-3-Clause - https://raw.githubusercontent.com/hamcrest/JavaHamcrest/master/LICENSE - - - - - joewalnes - Joe Walnes - - - npryce - Nat Pryce - - - sf105 - Steve Freeman - - - - scm:git:https://github.com/hamcrest/JavaHamcrest.git - scm:git:ssh://github.com/hamcrest/JavaHamcrest.git - https://github.com/hamcrest/JavaHamcrest - - diff --git a/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.pom.sha1 b/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.pom.sha1 deleted file mode 100644 index 4088a9a..0000000 --- a/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3c85240a040ddb51dc33d405ef0e075ec68b6796 \ No newline at end of file diff --git a/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar b/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar deleted file mode 100644 index 92697e5..0000000 Binary files a/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar and /dev/null differ diff --git a/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar.sha1 b/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar.sha1 deleted file mode 100644 index 737c8d8..0000000 --- a/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7959933ebcc0f05b2eaa5af0a0c8689fa257b15c \ No newline at end of file diff --git a/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.pom b/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.pom deleted file mode 100644 index 26afa5e..0000000 --- a/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.pom +++ /dev/null @@ -1,320 +0,0 @@ - - - 4.0.0 - - org.hdrhistogram - HdrHistogram - 2.2.2 - - 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.2.2 - - - - - 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.13.2 - 5.9.3 - 5.9.3 - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - - - - . - META-INF - - LICENSE.txt - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - true - - - org.apache.maven.plugins - maven-jar-plugin - 3.4.1 - true - - - - true - true - org.HdrHistogram - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - 8 - all,-missing - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.1 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.13.0 - - 8 - 8 - 8 - UTF-8 - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.5 - - false - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.1 - - true - false - release - deploy - - - - com.google.code.maven-replacer-plugin - maven-replacer-plugin - 1.4.1 - - - process-sources - - replace - - - - - ${version.template.file} - ${version.file} - - - \$BUILD_TIME\$ - ${maven.build.timestamp} - - - \$VERSION\$ - ${project.version} - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 3.6.1 - - - copy-installed - package - - copy - - - - - ${project.groupId} - ${project.artifactId} - ${project.version} - ${project.packaging} - HdrHistogram.jar - - - ${project.basedir} - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://oss.sonatype.org/ - true - - - - - - - - deploy - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - sign-artifacts - verify - - sign - - - - - - - - - release - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - sign-artifacts - verify - - sign - - - - - - - - - - - - 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/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.pom.sha1 b/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.pom.sha1 deleted file mode 100644 index 7d93b33..0000000 --- a/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -824c7f02ba75bfce93dafdd63c62a1808ce2767d \ No newline at end of file diff --git a/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/_remote.repositories b/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/_remote.repositories deleted file mode 100644 index 2fa837d..0000000 --- a/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.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. -#Thu Apr 02 20:38:35 UTC 2026 -HdrHistogram-2.2.2.jar>central= -HdrHistogram-2.2.2.pom>central= diff --git a/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/_remote.repositories b/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/_remote.repositories deleted file mode 100644 index 333fa60..0000000 --- a/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -hibernate-validator-8.0.3.Final.jar>central= -hibernate-validator-8.0.3.Final.pom>central= diff --git a/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/hibernate-validator-8.0.3.Final.jar b/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/hibernate-validator-8.0.3.Final.jar deleted file mode 100644 index d700c8b..0000000 Binary files a/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/hibernate-validator-8.0.3.Final.jar and /dev/null differ diff --git a/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/hibernate-validator-8.0.3.Final.jar.sha1 b/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/hibernate-validator-8.0.3.Final.jar.sha1 deleted file mode 100644 index 9e2fad9..0000000 --- a/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/hibernate-validator-8.0.3.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -4425f554297a1c5ba03a3f30e559a9fd91048cf8 \ No newline at end of file diff --git a/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/hibernate-validator-8.0.3.Final.pom b/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/hibernate-validator-8.0.3.Final.pom deleted file mode 100644 index bd258eb..0000000 --- a/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/hibernate-validator-8.0.3.Final.pom +++ /dev/null @@ -1,151 +0,0 @@ - - - - 4.0.0 - org.hibernate.validator - hibernate-validator - 8.0.3.Final - Hibernate Validator Engine - Hibernate's Jakarta Bean Validation reference implementation. - https://hibernate.org/validator - - - Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - epbernard - Emmanuel Bernard - emmanuel@hibernate.org - https://in.relation.to/emmanuel-bernard/ - Red Hat, Inc. - - - hardy.ferentschik - Hardy Ferentschik - hferents@redhat.com - https://in.relation.to/hardy-ferentschik/ - Red Hat, Inc. - - - gunnar.morling - Gunnar Morling - gunnar@hibernate.org - https://in.relation.to/gunnar-morling/ - Red Hat, Inc. - - - kevinpollet - Kevin Pollet - kevin.pollet@serli.com - https://www.serli.com/ - SERLI - - - davide.dalto - Davide D'Alto - davide@hibernate.org - https://in.relation.to/davide-dalto/ - Red Hat, Inc. - - - guillaume.smet - Guillaume Smet - guillaume.smet@hibernate.org - https://in.relation.to/guillaume-smet/ - Red Hat, Inc. - - - marko.bekhta - Marko Bekhta - marko.prykladna@gmail.com - https//in.relation.to/marko-bekhta/ - - - - scm:git:git://github.com/hibernate/hibernate-validator.git - scm:git:git@github.com:hibernate/hibernate-validator.git - https://github.com/hibernate/hibernate-validator - - - - jakarta.validation - jakarta.validation-api - 3.0.2 - compile - - - org.jboss.logging - jboss-logging - 3.4.3.Final - compile - - - com.fasterxml - classmate - 1.5.1 - compile - - - org.glassfish.expressly - expressly - 5.0.0 - provided - - - org.jboss.logging - jboss-logging-processor - 2.2.1.Final - provided - - - org.jboss.logging - jboss-logging-annotations - 2.2.1.Final - provided - - - jakarta.persistence - jakarta.persistence-api - 3.1.0 - compile - true - - - joda-time - joda-time - 2.9.7 - compile - true - - - com.thoughtworks.paranamer - paranamer - 2.8 - compile - true - - - javax.money - money-api - 1.0.1 - compile - true - - - org.openjfx - javafx-base - 11.0.2 - compile - true - - - diff --git a/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/hibernate-validator-8.0.3.Final.pom.sha1 b/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/hibernate-validator-8.0.3.Final.pom.sha1 deleted file mode 100644 index 6310f42..0000000 --- a/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.3.Final/hibernate-validator-8.0.3.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -81998cfb95da8aee957191ff3b63f472151c99b5 \ No newline at end of file diff --git a/.m2/repository/org/infinispan/infinispan-bom/14.0.27.Final/_remote.repositories b/.m2/repository/org/infinispan/infinispan-bom/14.0.27.Final/_remote.repositories deleted file mode 100644 index 74bcdc1..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:10 UTC 2026 -infinispan-bom-14.0.27.Final.pom>central= diff --git a/.m2/repository/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom b/.m2/repository/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom deleted file mode 100644 index c795e0a..0000000 --- a/.m2/repository/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/.m2/repository/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.sha1 b/.m2/repository/org/infinispan/infinispan-bom/14.0.27.Final/infinispan-bom-14.0.27.Final.pom.sha1 deleted file mode 100644 index 7e4593d..0000000 --- a/.m2/repository/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/.m2/repository/org/infinispan/infinispan-bom/15.2.5.Final/_remote.repositories b/.m2/repository/org/infinispan/infinispan-bom/15.2.5.Final/_remote.repositories deleted file mode 100644 index 28b04af..0000000 --- a/.m2/repository/org/infinispan/infinispan-bom/15.2.5.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. -#Thu Apr 02 20:37:35 UTC 2026 -infinispan-bom-15.2.5.Final.pom>central= diff --git a/.m2/repository/org/infinispan/infinispan-bom/15.2.5.Final/infinispan-bom-15.2.5.Final.pom b/.m2/repository/org/infinispan/infinispan-bom/15.2.5.Final/infinispan-bom-15.2.5.Final.pom deleted file mode 100644 index 2b463d5..0000000 --- a/.m2/repository/org/infinispan/infinispan-bom/15.2.5.Final/infinispan-bom-15.2.5.Final.pom +++ /dev/null @@ -1,401 +0,0 @@ - - - 4.0.0 - - - org.infinispan - infinispan-build-configuration-parent - 15.2.5.Final - ../configuration/pom.xml - - - infinispan-bom - pom - - Infinispan BOM - Infinispan BOM module - https://infinispan.org - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - placeholder - See https://github.com/infinispan/infinispan/graphs/contributors - - - - scm:git:git@github.com:infinispan/infinispan.git - scm:git:git@github.com:infinispan/infinispan.git - https://github.com/infinispan/infinispan - - - github - https://github.com/infinispan/infinispan/issues - - - - ${version.console} - - - - - - org.infinispan - infinispan-api - ${version.infinispan} - - - org.infinispan - infinispan-cachestore-jdbc - ${version.infinispan} - - - org.infinispan - infinispan-cachestore-jdbc-common - ${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-embedded - ${version.infinispan} - - - org.infinispan - infinispan-cdi-remote - ${version.infinispan} - - - org.infinispan - infinispan-checkstyle - ${version.infinispan} - - - org.infinispan - infinispan-cli-client - ${version.infinispan} - - - org.infinispan - infinispan-client-hotrod - ${version.infinispan} - - - org.infinispan - infinispan-client-hotrod-legacy - ${version.infinispan} - - - org.infinispan - infinispan-client-rest - ${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-spi - ${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-jboss-marshalling - ${version.infinispan} - - - org.infinispan - infinispan-hibernate-cache-commons - ${version.infinispan} - - - org.infinispan - infinispan-counter-api - ${version.infinispan} - - - org.infinispan - infinispan-hibernate-cache-spi - ${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-objectfilter - ${version.infinispan} - - - org.infinispan - infinispan-query-core - ${version.infinispan} - - - org.infinispan - infinispan-query - ${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-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-junit4 - ${version.infinispan} - - - - org.infinispan - infinispan-server-testdriver-junit5 - ${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-anchored-keys - ${version.infinispan} - - - org.infinispan - infinispan-commons-graalvm - ${version.infinispan} - - - org.infinispan - infinispan-core-graalvm - ${version.infinispan} - - - org.infinispan.protostream - protostream - ${version.protostream} - - - org.infinispan.protostream - protostream-types - ${version.protostream} - - - org.infinispan.protostream - protostream-processor - ${version.protostream} - - provided - - - - diff --git a/.m2/repository/org/infinispan/infinispan-bom/15.2.5.Final/infinispan-bom-15.2.5.Final.pom.sha1 b/.m2/repository/org/infinispan/infinispan-bom/15.2.5.Final/infinispan-bom-15.2.5.Final.pom.sha1 deleted file mode 100644 index 7ea6b5d..0000000 --- a/.m2/repository/org/infinispan/infinispan-bom/15.2.5.Final/infinispan-bom-15.2.5.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bd7deef915f56d2f85b37de2318c2a6f60c4d274 \ No newline at end of file diff --git a/.m2/repository/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/_remote.repositories b/.m2/repository/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/_remote.repositories deleted file mode 100644 index 9c312cb..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:10 UTC 2026 -infinispan-build-configuration-parent-14.0.27.Final.pom>central= diff --git a/.m2/repository/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom b/.m2/repository/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom deleted file mode 100644 index 1e50cd9..0000000 --- a/.m2/repository/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/.m2/repository/org/infinispan/infinispan-build-configuration-parent/14.0.27.Final/infinispan-build-configuration-parent-14.0.27.Final.pom.sha1 b/.m2/repository/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 998f449..0000000 --- a/.m2/repository/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/.m2/repository/org/infinispan/infinispan-build-configuration-parent/15.2.5.Final/_remote.repositories b/.m2/repository/org/infinispan/infinispan-build-configuration-parent/15.2.5.Final/_remote.repositories deleted file mode 100644 index 4e19e0d..0000000 --- a/.m2/repository/org/infinispan/infinispan-build-configuration-parent/15.2.5.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. -#Thu Apr 02 20:37:35 UTC 2026 -infinispan-build-configuration-parent-15.2.5.Final.pom>central= diff --git a/.m2/repository/org/infinispan/infinispan-build-configuration-parent/15.2.5.Final/infinispan-build-configuration-parent-15.2.5.Final.pom b/.m2/repository/org/infinispan/infinispan-build-configuration-parent/15.2.5.Final/infinispan-build-configuration-parent-15.2.5.Final.pom deleted file mode 100644 index 97e23c7..0000000 --- a/.m2/repository/org/infinispan/infinispan-build-configuration-parent/15.2.5.Final/infinispan-build-configuration-parent-15.2.5.Final.pom +++ /dev/null @@ -1,357 +0,0 @@ - - - 4.0.0 - - org.infinispan - infinispan-build-configuration-parent - 15.2.5.Final - pom - - Infinispan Common Parent - Infinispan common parent POM module - https://infinispan.org - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - placeholder - See https://github.com/infinispan/infinispan/graphs/contributors - - - - scm:git:git@github.com:infinispan/infinispan.git - scm:git:git@github.com:infinispan/infinispan.git - https://github.com/infinispan/infinispan - - - github - https://github.com/infinispan/infinispan/issues - - - - ${maven.snapshots.repo.id} - ${maven.snapshots.repo.url} - - - ${maven.releases.repo.id} - ${maven.releases.repo.url} - - - 2009 - - - 17 - 17 - 17 - - 2025-07-17T11:32:42Z - - - Infinispan - infinispan - infinispan - ${project.version} - ${project.version} - Feelin Blue - ispn - 15.2 - ${infinispan.module.slot.prefix}-${infinispan.base.version} - ${infinispan.base.version} - community-operators - operatorhubio-catalog - infinispan - 9E31AB27445478DB - WildFly - wildfly - - - org.wildfly - 32.0.0.Final - - - 3.9.0 - 17 - - - 2.8.4 - 2.6 - 1.10.15 - 1.8.1 - 1.0b3 - 3.5.3 - 1.8.1.Final - 1.0.11.RELEASE - 1.70 - 4.0.24 - 3.2.0 - 1.27.1 - 15.2.1.Final - 0.3.0 - 6.13.5 - 2.5.2 - 4.0.5 - 24.0.0 - 2.4.21 - 2.2 - 6.4.10.Final - 7.2.3.Final - 15.2.5.Final - 1.2.0.Beta3 - 1.4.0.Final - 1.0.9.Final - 2.0.4 - 2.5 - 6.5.4.RELEASE - 4.5.13 - 1.1.0 - 2.18.3 - 2.16.0 - 0.8.13 - 2.1.1 - 2.0.1 - 2.0.1 - 4.1.0 - 3.1.0 - 1.1.1 - 3.6.1.Final - 3.0.4.Final - 2.2.2.Final - 5.0.6.CR1 - 7.2.1.Final - 3.0.6.Final - 1.2.6 - 2.0.0 - 3.3.4 - 1.0 - 5.4.5.Final - 1.0.14.Final - 2.9.0 - 1.1.0 - 4.13.2 - 5.11.4 - 2.23.1 - 9.11.1 - 1.11 - 1.14.5 - 5.16.1 - 1.15.3 - 3.3 - 15.6 - 4.1.119.Final - 0.0.26.Final - 1.37 - 5.0.1.Final - 2.6.2.Final - 9.7.1 - 4.0.2 - 5.0.3.Final - 2.5.5.SP12 - 5.0.13.Final - 1.0.4 - 9.10.0 - 3.1.10 - 2.15.0 - 1.0.5 - - - 1.3.6 - 0.16.0 - 2.2.2 - 2.0.3 - - 3.15.3 - 23.1.6 - 3.2.7 - - 1.39.0 - - 1.39.0-alpha - - 2.8.0 - - 6.2.5 - 3.4.4 - 3.4.2 - - 3.6.1 - 1.3.9 - 1.4.21 - - - 3.6.0 - 0.10.6 - 3.9.9 - 3.5.2 - 3.1.0 - 3.3.1 - 3.7.1 - 3.6.0 - 4.2.1 - 3.4.1 - 3.14.0 - 3.8.1 - 3.1.4 - 3.5.0 - 3.5.0 - 9.0.1 - 3.2.7 - 3.5.1 - 3.1.4 - 3.9.0 - 3.4.2 - 3.11.2 - 3.15.1 - 3.9.0 - 1.7.1 - 3.1.1 - 3.1.0 - 3.3.1 - 2.1.0 - 3.6.0 - 0.7.0 - 3.3.1 - 3.5.2 - 3.4.0 - 6.0.5.Final - 7.3.1.Final - 3.26.0 - 9.2.0 - 4.9.3.0 - 5.1.3.Final - - - 10.22.0 - 7.0.0-rc3 - - - true - - - - - - - - - - - com.github.spotbugs - spotbugs-maven-plugin - ${version.spotbugs.plugin} - - - org.owasp - dependency-check-maven - ${version.owasp-dependency-check-plugin} - - - org.sonatype.central - central-publishing-maven-plugin - ${version.maven.sonatype.central} - true - - true - Infinispan ${project.version} - central - true - - - - 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} - - - - - - io.github.git-commit-id - git-commit-id-maven-plugin - ${version.maven.git-commit-id} - - - git - - revision - - initialize - - - - UTC - true - false - true - - - - - - - io.github.git-commit-id - git-commit-id-maven-plugin - - - - - - - community-release - - - release-mode - upstream - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - false - - - - org.apache.maven.plugins - maven-gpg-plugin - - - org.sonatype.central - central-publishing-maven-plugin - true - - - - - - diff --git a/.m2/repository/org/infinispan/infinispan-build-configuration-parent/15.2.5.Final/infinispan-build-configuration-parent-15.2.5.Final.pom.sha1 b/.m2/repository/org/infinispan/infinispan-build-configuration-parent/15.2.5.Final/infinispan-build-configuration-parent-15.2.5.Final.pom.sha1 deleted file mode 100644 index 0f26e46..0000000 --- a/.m2/repository/org/infinispan/infinispan-build-configuration-parent/15.2.5.Final/infinispan-build-configuration-parent-15.2.5.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8d45c0114db9ef1156ce14e6b7eefc17ea122d13 \ No newline at end of file diff --git a/.m2/repository/org/iq80/snappy/snappy/0.4/_remote.repositories b/.m2/repository/org/iq80/snappy/snappy/0.4/_remote.repositories deleted file mode 100644 index 5b7bff6..0000000 --- a/.m2/repository/org/iq80/snappy/snappy/0.4/_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. -#Thu Apr 02 20:43:08 UTC 2026 -snappy-0.4.jar>central= -snappy-0.4.pom>central= diff --git a/.m2/repository/org/iq80/snappy/snappy/0.4/snappy-0.4.jar b/.m2/repository/org/iq80/snappy/snappy/0.4/snappy-0.4.jar deleted file mode 100644 index c653482..0000000 Binary files a/.m2/repository/org/iq80/snappy/snappy/0.4/snappy-0.4.jar and /dev/null differ diff --git a/.m2/repository/org/iq80/snappy/snappy/0.4/snappy-0.4.jar.sha1 b/.m2/repository/org/iq80/snappy/snappy/0.4/snappy-0.4.jar.sha1 deleted file mode 100644 index ae0427d..0000000 --- a/.m2/repository/org/iq80/snappy/snappy/0.4/snappy-0.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a42b2d92a89efd35bb14738000dabcac6bd07a8d \ No newline at end of file diff --git a/.m2/repository/org/iq80/snappy/snappy/0.4/snappy-0.4.pom b/.m2/repository/org/iq80/snappy/snappy/0.4/snappy-0.4.pom deleted file mode 100644 index 4667ab3..0000000 --- a/.m2/repository/org/iq80/snappy/snappy/0.4/snappy-0.4.pom +++ /dev/null @@ -1,372 +0,0 @@ - - - - 4.0.0 - - org.iq80.snappy - snappy - 0.4 - jar - - snappy - - Port of Snappy to Java - http://github.com/dain/snappy - - 2011 - - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html - repo - - - - - - dain - Dain Sundstrom - dain@iq80.com - - - electrum - David Phillips - david@acz.org - - - - - UTF-8 - - - - scm:git:git://github.com/dain/snapy.git - scm:git:git@github.com:dain/snapy.git - http://github.com/dain/snapy/tree/master - - - - 3.0 - - - - - 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/ - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - org.apache.hadoop - hadoop-core - 0.20.2 - true - provided - - - com.google.guava - guava - 13.0.1 - test - - - org.xerial.snappy - snappy-java - 1.0.4.1 - test - - - org.testng - testng - 6.0.1 - test - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0 - - - enforce-versions - - enforce - - - - - 3.0.0 - - - 1.6 - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - - org.apache.maven.plugins - maven-jar-plugin - 2.3.2 - - - binary - package - - jar - - - bin - - - org.iq80.snappy.Main - - - - - - - - - org.skife.maven - really-executable-jar-maven-plugin - 1.0.3 - - - package - - really-executable-jar - - - bin - - - - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.8.1 - - - libsnappyjava.jnilib - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - true - - - - create-source-jar - - jar-no-fork - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - 1.6 - 1.6 - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.3.2 - - true - true - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.4 - - - xml - - - - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.3 - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.5 - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8 - - - com.google.doclava - doclava - 1.0.2 - - com.google.doclava.Doclava - - ${sun.boot.class.path} - - -quiet - -federate JDK http://download.oracle.com/javase/6/docs/api/index.html? - -federate Guice http://google-guice.googlecode.com/svn/trunk/javadoc/ - -federationxml JDK http://doclava.googlecode.com/svn/static/api/openjdk-6.xml - -hdf project.name "${project.name}" - -d ${project.build.directory}/apidocs - - false - - -J-Xmx1024m - - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - forked-path - -Psonatype-oss-release - false - false - true - true - - - - - - com.mycila.maven-license-plugin - maven-license-plugin - 1.9.0 - -
license-header.txt
- - SLASHSTAR_STYLE - - - **/README.md - **/README.txt - **/config.properties - **/log.properties - testdata/** - snappy-cc/** - .gitignore - notice.md - license.txt - -
-
-
-
-
- - - - sonatype-oss-release - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - true - - - - sign-artifacts - verify - - sign - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - - -
diff --git a/.m2/repository/org/iq80/snappy/snappy/0.4/snappy-0.4.pom.sha1 b/.m2/repository/org/iq80/snappy/snappy/0.4/snappy-0.4.pom.sha1 deleted file mode 100644 index 7d75471..0000000 --- a/.m2/repository/org/iq80/snappy/snappy/0.4/snappy-0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a2a52b5dc6183010d4e3d12a520ced355607ce32 \ No newline at end of file diff --git a/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/_remote.repositories b/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/_remote.repositories deleted file mode 100644 index 49043c0..0000000 --- a/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/_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. -#Thu Apr 02 20:37:40 UTC 2026 -jacoco-maven-plugin-0.8.12.jar>central= -jacoco-maven-plugin-0.8.12.pom>central= diff --git a/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/jacoco-maven-plugin-0.8.12.jar b/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/jacoco-maven-plugin-0.8.12.jar deleted file mode 100644 index 84c9435..0000000 Binary files a/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/jacoco-maven-plugin-0.8.12.jar and /dev/null differ diff --git a/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/jacoco-maven-plugin-0.8.12.jar.sha1 b/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/jacoco-maven-plugin-0.8.12.jar.sha1 deleted file mode 100644 index 7772b95..0000000 --- a/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/jacoco-maven-plugin-0.8.12.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0ebdd2e9c56c5c3c5661a37128ca50c522638736 \ No newline at end of file diff --git a/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/jacoco-maven-plugin-0.8.12.pom b/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/jacoco-maven-plugin-0.8.12.pom deleted file mode 100644 index e40e225..0000000 --- a/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/jacoco-maven-plugin-0.8.12.pom +++ /dev/null @@ -1,138 +0,0 @@ - - - - 4.0.0 - - - org.jacoco - org.jacoco.build - 0.8.12 - ../org.jacoco.build - - - jacoco-maven-plugin - maven-plugin - https://www.jacoco.org/jacoco/trunk/doc/maven.html - - JaCoCo :: Maven Plugin - The JaCoCo Maven Plugin provides the JaCoCo runtime agent to your tests and allows basic report creation. - - - 3.0 - - - - 8 - 8 - 8 - - - - - org.apache.maven - maven-plugin-api - ${project.prerequisites.maven} - provided - - - org.apache.maven - maven-core - ${project.prerequisites.maven} - provided - - - org.codehaus.plexus - plexus-utils - 3.0.24 - - - org.apache.maven.shared - file-management - 3.1.0 - - - - org.apache.maven.reporting - maven-reporting-api - ${project.prerequisites.maven} - - - - ${project.groupId} - org.jacoco.agent - runtime - - - ${project.groupId} - org.jacoco.core - - - ${project.groupId} - org.jacoco.report - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.4 - - provided - - - - - src - - - META-INF - META-INF - - - - - - org.apache.maven.plugins - maven-toolchains-plugin - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - default-descriptor - process-classes - - - help-goal - - helpmojo - - - - report - package - - report - - - - - - - diff --git a/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/jacoco-maven-plugin-0.8.12.pom.sha1 b/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/jacoco-maven-plugin-0.8.12.pom.sha1 deleted file mode 100644 index d297f26..0000000 --- a/.m2/repository/org/jacoco/jacoco-maven-plugin/0.8.12/jacoco-maven-plugin-0.8.12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -86a63b125c87d4891811e5c85322b92f1214791e \ No newline at end of file diff --git a/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/_remote.repositories b/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/_remote.repositories deleted file mode 100644 index ff241ac..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/_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. -#Thu Apr 02 20:38:39 UTC 2026 -org.jacoco.agent-0.8.12-runtime.jar>central= -org.jacoco.agent-0.8.12.pom>central= diff --git a/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12-runtime.jar b/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12-runtime.jar deleted file mode 100644 index e3c7d7d..0000000 Binary files a/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12-runtime.jar and /dev/null differ diff --git a/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12-runtime.jar.sha1 b/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12-runtime.jar.sha1 deleted file mode 100644 index fe63168..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12-runtime.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2bec6efe140e3a38a81607181476a4016ef2c613 \ No newline at end of file diff --git a/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12.pom b/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12.pom deleted file mode 100644 index b98e2b1..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12.pom +++ /dev/null @@ -1,106 +0,0 @@ - - - - 4.0.0 - - - org.jacoco - org.jacoco.build - 0.8.12 - ../org.jacoco.build - - - org.jacoco.agent - - JaCoCo :: Agent - JaCoCo Agent - - - src - - - - org.apache.maven.plugins - maven-dependency-plugin - - - prepare-package - - copy - - - - - ${project.groupId} - org.jacoco.agent.rt - all - ${project.version} - jacocoagent.jar - - - ${project.build.directory}/classes - false - false - true - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - attach-artifacts - package - - attach-artifact - - - - - ${project.build.directory}/classes/jacocoagent.jar - jar - runtime - - - - - - - - - org.apache.felix - maven-bundle-plugin - - - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - diff --git a/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12.pom.sha1 b/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12.pom.sha1 deleted file mode 100644 index eb30687..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -907f9b276b82958b7ff0423ee8af979059412da0 \ No newline at end of file diff --git a/.m2/repository/org/jacoco/org.jacoco.build/0.8.12/_remote.repositories b/.m2/repository/org/jacoco/org.jacoco.build/0.8.12/_remote.repositories deleted file mode 100644 index 2c25e64..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.build/0.8.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. -#Thu Apr 02 20:37:40 UTC 2026 -org.jacoco.build-0.8.12.pom>central= diff --git a/.m2/repository/org/jacoco/org.jacoco.build/0.8.12/org.jacoco.build-0.8.12.pom b/.m2/repository/org/jacoco/org.jacoco.build/0.8.12/org.jacoco.build-0.8.12.pom deleted file mode 100644 index fef442f..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.build/0.8.12/org.jacoco.build-0.8.12.pom +++ /dev/null @@ -1,1253 +0,0 @@ - - - - 4.0.0 - - org.jacoco - org.jacoco.build - 0.8.12 - pom - - JaCoCo - JaCoCo - Java Code Coverage Library - http://jacoco.org - 2009 - - Mountainminds GmbH & Co. KG - - - - EPL-2.0 - https://www.eclipse.org/legal/epl-2.0/ - repo - - - - - - mtnminds - Marc R. Hoffmann - hoffmann@mountainminds.com - +1 - - Project Lead - - - - brock_j - Brock Janiczak - brockj@gmail.com - +10 - - Developer - - - - mandrikov - Evgeny Mandrikov - mandrikov@gmail.com - http://godin.net.ru - SonarSource - http://www.sonarsource.com - +3 - - Build and release manager - - - - mfriedenhagen - Mirko Friedenhagen - mfriedenhagen@gmail.com - +1 - - Developer - - - - - - - Radek Liba - - - Christoph Beck - - - - - - ../org.jacoco.core - ../org.jacoco.report - ../org.jacoco.agent.rt - ../org.jacoco.agent - ../org.jacoco.ant - ../org.jacoco.cli - ../org.jacoco.examples - ../jacoco-maven-plugin - - ../org.jacoco.tests - - ../org.jacoco.doc - ../jacoco - - - - scm:git:git://github.com/jacoco/jacoco.git - scm:git:ssh://git@github.com:jacoco/jacoco.git - https://github.com/jacoco/jacoco - - - GitHub - https://github.com/jacoco/jacoco/issues - - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - - - - UTF-8 - https://oss.sonatype.org/content/repositories/snapshots/ - - yyyyMMddhhmm - http://www.jacoco.org/jacoco - ${project.inceptionYear}, 2024 - - 1.5 - ${bytecode.version} - ${bytecode.version} - - - ${jvm.args} - - - 9.7 - 1.9.16 - 2.0.28 - 4.13.1 - 20100721 - - - - - ../org.jacoco.doc/target/site/jacoco-aggregate/jacoco.xml - ../${project.artifactId}.test/target/surefire-reports/ - - - 1.5 - 1.5 - - - - - - - ${project.groupId} - org.jacoco.core - ${project.version} - - - ${project.groupId} - org.jacoco.report - ${project.version} - - - ${project.groupId} - org.jacoco.agent - ${project.version} - - - ${project.groupId} - org.jacoco.agent - runtime - ${project.version} - - - ${project.groupId} - org.jacoco.agent.rt - ${project.version} - - - ${project.groupId} - org.jacoco.ant - ${project.version} - - - ${project.groupId} - org.jacoco.ant - nodeps - ${project.version} - - - ${project.groupId} - org.jacoco.cli - ${project.version} - - - ${project.groupId} - org.jacoco.examples - ${project.version} - - - - org.ow2.asm - asm-bom - ${asm.version} - pom - import - - - org.apache.ant - ant - ${ant.version} - - - org.apache.ant - ant-junit - ${ant.version} - - - org.apache.ant - ant-junit4 - ${ant.version} - - - org.apache.ant - ant-launcher - ${ant.version} - - - org.apache.ant - ant-antunit - 1.4 - - - args4j - args4j - ${args4j.version} - - - junit - junit - ${junit.version} - - - - - - - - src - false - - **/*.java - **/*.kt - **/*.groovy - **/*.scala - **/*.properties - - - - src - true - - **/*.properties - - - **/*-test.properties - - - - src - false - - **/*-test.properties - - - - . - true - - about.html - - - - - - - - - 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-clean-plugin - 3.2.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.6.0 - - - org.apache.maven.plugins - maven-deploy-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-install-plugin - 3.1.1 - - - org.apache.maven.plugins - maven-invoker-plugin - 2.0.0 - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - true - false - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.6.4 - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - true - forked-path - false - - -Prelease - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-shade-plugin - 3.5.0 - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - org.apache.maven.plugins - maven-surefire-plugin - - 2.19.1 - - - org.apache.maven.plugins - maven-site-plugin - 3.12.1 - - - org.apache.maven.plugins - maven-toolchains-plugin - 3.1.0 - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.23 - - - org.codehaus.mojo - build-helper-maven-plugin - 3.4.0 - - - org.codehaus.mojo - buildnumber-maven-plugin - 3.1.0 - - - org.codehaus.mojo - xml-maven-plugin - 1.1.0 - - - org.codehaus.mojo - exec-maven-plugin - 3.1.0 - - - - com.github.genthaler - beanshell-maven-plugin - 1.4 - - - org.apache.felix - maven-bundle-plugin - 3.5.1 - - - com.diffplug.spotless - spotless-maven-plugin - 2.41.1 - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - ${project.build.sourceDirectory} - ${project.build.outputDirectory} - - - - - org.apache.maven.plugins - maven-shade-plugin - - false - - - - *:* - - META-INF/*.SF - META-INF/*.DSA - META-INF/*.RSA - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - - - 420 - - 493 - 493 - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce - validate - - enforce - - - - - 17 - - - - [3.5.4,3.8.2),(3.8.2,) - - - The rules for repo1.maven.org are that pom.xml files should not include repository definitions. - true - true - - - No SNAPSHOT versions allowed for dependencies - true - - - - - - - - - com.diffplug.spotless - spotless-maven-plugin - - - UNIX - - src/**/*.java - - - 4.30 - ../org.jacoco.core/.settings/org.eclipse.jdt.core.prefs - - - java,javax,org,com, - true - - - - - - - - **/*.properties - **/*.html - **/*.css - **/*.js - **/*.xml - **/*.xsl - **/*.dtd - - - target/** - - UNIX - - - - - - - - prepare-package - - check - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - check-license-header - validate - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - validate - - parse-version - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - - create - - - - - false - false - true - 0000000 - build.commitId - - - - - com.github.genthaler - beanshell-maven-plugin - - - parse-version - validate - - run - - - true - - - - - - - - org.apache.felix - maven-bundle-plugin - - - ${project.artifactId} - ${qualified.bundle.version} - ${project.description} - - !about.html, - *.internal*;x-internal:=true;version="${version;===;${Bundle-Version}}", - *;version="${version;===;${Bundle-Version}}" - - - org.jacoco.*;version="${range;[===,==+);${Bundle-Version}}", - org.objectweb.asm.*;version="${range;[===,=+);${asm.version}}" - - J2SE-1.5 - scm:git:git://github.com/jacoco/jacoco.git;path="${project.artifactId}";commitId=${build.commitId} - - - - - - - - - - maven-jdk9 - - [9,12) - - - 6 - - - - - maven-jdk12 - - [12,) - - - 7 - - - - - - integration-tests - - - jdk.version - - - - - - - org.apache.maven.plugins - maven-toolchains-plugin - - - validate - - toolchain - - - - - - - ${jdk.version} - - - - - - - - - - - java18-bytecode - - - bytecode.version - 18 - - - - 17 - 17 - - - - - java19-bytecode - - - bytecode.version - 19 - - - - 17 - 17 - - - - - java20-bytecode - - - bytecode.version - 20 - - - - 17 - 17 - - - - - java21-bytecode - - - bytecode.version - 21 - - - - 17 - 17 - - - - - java22-bytecode - - - bytecode.version - 22 - - - - 17 - 17 - - - - - java23-bytecode - - - bytecode.version - 23 - - - - 17 - 17 - - - - - - ecj - - - ecj - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - eclipse - - - - org.eclipse.jdt - ecj - 3.37.0 - - - org.codehaus.plexus - plexus-compiler-eclipse - 2.8.5 - - - - - - - - - - - jdk6 - - - jdk.version - 6 - - - - -XX:-FailOverToOldVerifier -Xverify:all - - - - - jdk7 - - - jdk.version - 7 - - - - -XX:-FailOverToOldVerifier -Xverify:all - - - - - jdk8 - - - jdk.version - 8 - - - - -XX:-FailOverToOldVerifier -Xverify:all - - - - - jdk9 - - - jdk.version - 9 - - - - 6 - - - - - jdk10 - - - jdk.version - 10 - - - - 6 - - - - - jdk11 - - - jdk.version - 11 - - - - 6 - - - - - jdk12 - - - jdk.version - 12 - - - - 7 - - - - - - sources - - - src/ - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - verify - - jar-no-fork - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - - release - - - - org.apache.maven.plugins - maven-enforcer-plugin - false - - - enforce-release-rules - verify - - enforce - - - - - - build.commitId - [0-9a-f]{40} - - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - enforce-java-api-compatibility - verify - - check - - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - - m2e - - - m2e.version - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.apache.maven.plugins - maven-antrun-plugin - [0,) - - run - - - - - - - - - org.apache.maven.plugins - maven-invoker-plugin - [0,) - - install - - - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - [0,) - - unpack - copy-dependencies - - - - - - - - - org.codehaus.groovy.maven - gmaven-plugin - [0,) - - execute - - - - - - - - - org.codehaus.mojo - xml-maven-plugin - [0,) - - transform - - - - - - - - - org.jacoco - jacoco-maven-plugin - [0,) - - prepare-agent - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - [0,) - - enforce - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - [0,) - - parse-version - - - - - - - - - - - - - - - - - diff --git a/.m2/repository/org/jacoco/org.jacoco.build/0.8.12/org.jacoco.build-0.8.12.pom.sha1 b/.m2/repository/org/jacoco/org.jacoco.build/0.8.12/org.jacoco.build-0.8.12.pom.sha1 deleted file mode 100644 index aada53d..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.build/0.8.12/org.jacoco.build-0.8.12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ae9ec17957c52ffa34ec82bb59bc0a2b9b3554c0 \ No newline at end of file diff --git a/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/_remote.repositories b/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/_remote.repositories deleted file mode 100644 index 246e7cc..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/_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. -#Thu Apr 02 20:38:39 UTC 2026 -org.jacoco.core-0.8.12.jar>central= -org.jacoco.core-0.8.12.pom>central= diff --git a/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/org.jacoco.core-0.8.12.jar b/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/org.jacoco.core-0.8.12.jar deleted file mode 100644 index 85029df..0000000 Binary files a/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/org.jacoco.core-0.8.12.jar and /dev/null differ diff --git a/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/org.jacoco.core-0.8.12.jar.sha1 b/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/org.jacoco.core-0.8.12.jar.sha1 deleted file mode 100644 index 2731bf0..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/org.jacoco.core-0.8.12.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c2a45bd054bbacfe9998cbbf1a49010c62e48cbc \ No newline at end of file diff --git a/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/org.jacoco.core-0.8.12.pom b/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/org.jacoco.core-0.8.12.pom deleted file mode 100644 index 76504a1..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/org.jacoco.core-0.8.12.pom +++ /dev/null @@ -1,70 +0,0 @@ - - - - 4.0.0 - - - org.jacoco - org.jacoco.build - 0.8.12 - ../org.jacoco.build - - - org.jacoco.core - - JaCoCo :: Core - JaCoCo Core - - - - org.ow2.asm - asm - - - org.ow2.asm - asm-commons - - - org.ow2.asm - asm-tree - - - - - src - - - - org.apache.felix - maven-bundle-plugin - - - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - diff --git a/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/org.jacoco.core-0.8.12.pom.sha1 b/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/org.jacoco.core-0.8.12.pom.sha1 deleted file mode 100644 index ee3df59..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.core/0.8.12/org.jacoco.core-0.8.12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bc76db6af48fc259f0c66ac8b6d9ce2dd73ea77b \ No newline at end of file diff --git a/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/_remote.repositories b/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/_remote.repositories deleted file mode 100644 index 187da5d..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/_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. -#Thu Apr 02 20:38:39 UTC 2026 -org.jacoco.report-0.8.12.jar>central= -org.jacoco.report-0.8.12.pom>central= diff --git a/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/org.jacoco.report-0.8.12.jar b/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/org.jacoco.report-0.8.12.jar deleted file mode 100644 index d90532d..0000000 Binary files a/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/org.jacoco.report-0.8.12.jar and /dev/null differ diff --git a/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/org.jacoco.report-0.8.12.jar.sha1 b/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/org.jacoco.report-0.8.12.jar.sha1 deleted file mode 100644 index e66bf14..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/org.jacoco.report-0.8.12.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d3df59a453cbc44c939f74868fb6c82127290c0c \ No newline at end of file diff --git a/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/org.jacoco.report-0.8.12.pom b/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/org.jacoco.report-0.8.12.pom deleted file mode 100644 index 6542442..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/org.jacoco.report-0.8.12.pom +++ /dev/null @@ -1,62 +0,0 @@ - - - - 4.0.0 - - - org.jacoco - org.jacoco.build - 0.8.12 - ../org.jacoco.build - - - org.jacoco.report - - JaCoCo :: Report - JaCoCo Report - - - - ${project.groupId} - org.jacoco.core - - - - - src - - - - org.apache.felix - maven-bundle-plugin - - - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - diff --git a/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/org.jacoco.report-0.8.12.pom.sha1 b/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/org.jacoco.report-0.8.12.pom.sha1 deleted file mode 100644 index 98eb846..0000000 --- a/.m2/repository/org/jacoco/org.jacoco.report/0.8.12/org.jacoco.report-0.8.12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b71d923c8c450a6628abeb6254f6bc13360af369 \ No newline at end of file diff --git a/.m2/repository/org/jboss/jboss-parent/39/_remote.repositories b/.m2/repository/org/jboss/jboss-parent/39/_remote.repositories deleted file mode 100644 index 41fd15f..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:10 UTC 2026 -jboss-parent-39.pom>central= diff --git a/.m2/repository/org/jboss/jboss-parent/39/jboss-parent-39.pom b/.m2/repository/org/jboss/jboss-parent/39/jboss-parent-39.pom deleted file mode 100644 index 072347d..0000000 --- a/.m2/repository/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/.m2/repository/org/jboss/jboss-parent/39/jboss-parent-39.pom.sha1 b/.m2/repository/org/jboss/jboss-parent/39/jboss-parent-39.pom.sha1 deleted file mode 100644 index 7d2f489..0000000 --- a/.m2/repository/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/.m2/repository/org/jboss/jboss-parent/42/_remote.repositories b/.m2/repository/org/jboss/jboss-parent/42/_remote.repositories deleted file mode 100644 index cb804b5..0000000 --- a/.m2/repository/org/jboss/jboss-parent/42/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:38:01 UTC 2026 -jboss-parent-42.pom>central= diff --git a/.m2/repository/org/jboss/jboss-parent/42/jboss-parent-42.pom b/.m2/repository/org/jboss/jboss-parent/42/jboss-parent-42.pom deleted file mode 100644 index 1ad1b3f..0000000 --- a/.m2/repository/org/jboss/jboss-parent/42/jboss-parent-42.pom +++ /dev/null @@ -1,1673 +0,0 @@ - - - - - 4.0.0 - - org.jboss - 42 - jboss-parent - - pom - - JBoss 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/ - - - - - - Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - JBoss by Red Hat - http://www.jboss.org - - - - - - - 3.1.0 - 3.2.1 - 3.6.0 - 3.5.0 - 3.2.0 - 5.1.9 - 3.3.1 - 3.3.2 - 4.1.10.1 - 2.7 - 3.11.0 - 3.6.1 - 3.1.1 - 1.7.1 - 3.3.0 - 1.0.0 - 3.2.1 - 3.1.1 - 3.4.1 - 3.0.5 - 3.1.0 - 3.4.0 - 1.0.2 - 3.1.1 - 3.3.0 - 3.6.3 - 2.1 - 3.3.1 - 2.3.0 - 2.9 - 4.9.0 - 3.10.2 - 3.21.2 - 3.0.0 - 3.0.1 - 3.3.1 - - - 3.2.4 - 3.12.1 - 3.7.0.1746 - 3.3.0 - ${version.surefire} - ${version.surefire} - ${version.surefire} - 2.16.2 - 3.4.0 - 4.6.2 - - - - - 10.12.6 - 3.2.3 - - - - - 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 - - - 11 - 11 - ${maven.compiler.target} - ${maven.compiler.source} - - - ${maven.compiler.target} - ${maven.compiler.source} - ${maven.compiler.testTarget} - ${maven.compiler.testSource} - - - 3.6.2 - ${maven.compiler.argument.source} - ERROR - - - true - - - ${maven.compiler.argument.target} - - - false - -Pjboss-release - - - source-release - - -Xdoclint:none - - - - - - - - - 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.apache.maven.plugins - maven-surefire-report-plugin - ${version.surefire-report.plugin} - - - 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.5 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - gnu - - - - - - org.apache.maven.plugins - maven-deploy-plugin - - ${jboss.releases.repo.id}::${jboss.releases.repo.url} - ${jboss.snapshots.repo.id}::${jboss.snapshots.repo.url} - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - gpg-sign - - - - - org.apache.maven.plugins - maven-gpg-plugin - - true - - - - - sign - - - - - - - - - - - - - - compile-java11-release-flag - - - ${basedir}/build-release-11 - - [11,) - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - default-compile - compile - - compile - - - 11 - - - - - - - - - - compile-java17-release-flag - - - ${basedir}/build-release-17 - - [17,) - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - default-compile - compile - - compile - - - 17 - - - - - - - - - - compile-java21-release-flag - - - ${basedir}/build-release-21 - - [21,) - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - default-compile - compile - - compile - - - 21 - - - - - - - - - - - java11-test - - [12,) - - java11.home - - - ${basedir}/build-test-java11 - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - java11-test - test - - test - - - ${java11.home}/bin/java - - - - - - - - - - - java12-mr-build - - [12,) - - ${basedir}/src/main/java12 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java12 - compile - - compile - - - 12 - ${project.build.directory} - ${project.basedir}/src/main/java12 - true - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - java13-mr-build - - [13,) - - ${basedir}/src/main/java13 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java13 - compile - - compile - - - 13 - ${project.build.directory} - ${project.basedir}/src/main/java13 - true - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - java14-mr-build - - [14,) - - ${basedir}/src/main/java14 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java14 - compile - - compile - - - 14 - ${project.build.directory} - ${project.basedir}/src/main/java14 - true - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - java15-mr-build - - [15,) - - ${basedir}/src/main/java15 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java15 - compile - - compile - - - 15 - ${project.build.directory} - ${project.basedir}/src/main/java15 - true - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - java16-mr-build - - [16,) - - ${basedir}/src/main/java16 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java16 - compile - - compile - - - 16 - ${project.build.directory} - ${project.basedir}/src/main/java16 - true - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - java17-mr-build - - [17,) - - ${basedir}/src/main/java17 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java17 - compile - - compile - - - 17 - ${project.build.directory} - ${project.basedir}/src/main/java17 - true - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - 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.directory}/classes/META-INF/versions/17 - - - - ${project.build.directory}/classes/META-INF/versions/16 - - - ${project.build.directory}/classes/META-INF/versions/15 - - - ${project.build.directory}/classes/META-INF/versions/14 - - - ${project.build.directory}/classes/META-INF/versions/13 - - - ${project.build.directory}/classes/META-INF/versions/12 - - ${project.build.outputDirectory} - - - - - - - - - - - - - java17-test-classpath - - [17,18) - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - default-test - - ${project.build.outputDirectory}/META-INF/versions/17 - - - - ${project.build.directory}/classes/META-INF/versions/16 - - - ${project.build.directory}/classes/META-INF/versions/15 - - - ${project.build.directory}/classes/META-INF/versions/14 - - - ${project.build.directory}/classes/META-INF/versions/13 - - - ${project.build.directory}/classes/META-INF/versions/12 - - ${project.build.outputDirectory} - - - - - - - - - - - - - java18-mr-build - - [18,) - - ${basedir}/src/main/java18 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java18 - compile - - compile - - - 18 - ${project.build.directory} - ${project.basedir}/src/main/java18 - true - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - java19-mr-build - - [19,) - - ${basedir}/src/main/java19 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java19 - compile - - compile - - - 19 - ${project.build.directory} - ${project.basedir}/src/main/java19 - true - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - java20-mr-build - - [20,) - - ${basedir}/src/main/java20 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java20 - compile - - compile - - - 20 - ${project.build.directory} - ${project.basedir}/src/main/java20 - true - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - java21-mr-build - - [21,) - - ${basedir}/src/main/java21 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java21 - compile - - compile - - - 21 - ${project.build.directory} - ${project.basedir}/src/main/java21 - true - - - - - - maven-jar-plugin - - - - true - - - - - - - - - - - java21-test - - [22,) - - java21.home - - - ${basedir}/build-test-java21 - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - java21-test - test - - test - - - ${java21.home}/bin/java - ${project.build.directory}/classes/META-INF/versions/21 - - - - ${project.build.directory}/classes/META-INF/versions/20 - - - ${project.build.directory}/classes/META-INF/versions/19 - - - ${project.build.directory}/classes/META-INF/versions/18 - - - ${project.build.directory}/classes/META-INF/versions/17 - - - ${project.build.directory}/classes/META-INF/versions/16 - - - ${project.build.directory}/classes/META-INF/versions/15 - - - ${project.build.directory}/classes/META-INF/versions/14 - - - ${project.build.directory}/classes/META-INF/versions/13 - - - ${project.build.directory}/classes/META-INF/versions/12 - - ${project.build.outputDirectory} - - - - - - - - - - - - - java21-test-classpath - - [21,22) - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - default-test - - ${project.build.outputDirectory}/META-INF/versions/21 - - - - ${project.build.directory}/classes/META-INF/versions/20 - - - ${project.build.directory}/classes/META-INF/versions/19 - - - ${project.build.directory}/classes/META-INF/versions/18 - - - ${project.build.directory}/classes/META-INF/versions/17 - - - ${project.build.directory}/classes/META-INF/versions/16 - - - ${project.build.directory}/classes/META-INF/versions/15 - - - ${project.build.directory}/classes/META-INF/versions/14 - - - ${project.build.directory}/classes/META-INF/versions/13 - - - ${project.build.directory}/classes/META-INF/versions/12 - - ${project.build.outputDirectory} - - - - - - - - - - - -
diff --git a/.m2/repository/org/jboss/jboss-parent/42/jboss-parent-42.pom.sha1 b/.m2/repository/org/jboss/jboss-parent/42/jboss-parent-42.pom.sha1 deleted file mode 100644 index ff7d4e8..0000000 --- a/.m2/repository/org/jboss/jboss-parent/42/jboss-parent-42.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f7ebd5204a6209cb2287b29b3079867874428161 \ No newline at end of file diff --git a/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/_remote.repositories b/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/_remote.repositories deleted file mode 100644 index ed54725..0000000 --- a/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/_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. -#Thu Apr 02 20:38:35 UTC 2026 -jboss-logging-3.6.1.Final.jar>central= -jboss-logging-3.6.1.Final.pom>central= diff --git a/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.jar b/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.jar deleted file mode 100644 index 6bb6f7f..0000000 Binary files a/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.jar and /dev/null differ diff --git a/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.jar.sha1 b/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.jar.sha1 deleted file mode 100644 index b14be73..0000000 --- a/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -886afbb445b4016a37c8960a7aef6ebd769ce7e5 \ No newline at end of file diff --git a/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.pom b/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.pom deleted file mode 100644 index cc738f6..0000000 --- a/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.pom +++ /dev/null @@ -1,400 +0,0 @@ - - - - - - - org.jboss.logging - logging-parent - 1.0.3.Final - - - 4.0.0 - org.jboss.logging - jboss-logging - 3.6.1.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.5.8 - 2.1 - 1.2.17 - 2.23.1 - 3.0.6.Final - 5.11.0 - 2.0.12 - - - 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 - - none - ${project.build.sourceDirectory} - - - - 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/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.pom.sha1 b/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.pom.sha1 deleted file mode 100644 index 8e66b54..0000000 --- a/.m2/repository/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -97f38f9f48945abd18071cc972168d850bf82e83 \ No newline at end of file diff --git a/.m2/repository/org/jboss/logging/logging-parent/1.0.3.Final/_remote.repositories b/.m2/repository/org/jboss/logging/logging-parent/1.0.3.Final/_remote.repositories deleted file mode 100644 index 638a782..0000000 --- a/.m2/repository/org/jboss/logging/logging-parent/1.0.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. -#Thu Apr 02 20:38:00 UTC 2026 -logging-parent-1.0.3.Final.pom>central= diff --git a/.m2/repository/org/jboss/logging/logging-parent/1.0.3.Final/logging-parent-1.0.3.Final.pom b/.m2/repository/org/jboss/logging/logging-parent/1.0.3.Final/logging-parent-1.0.3.Final.pom deleted file mode 100644 index 2e29b5f..0000000 --- a/.m2/repository/org/jboss/logging/logging-parent/1.0.3.Final/logging-parent-1.0.3.Final.pom +++ /dev/null @@ -1,129 +0,0 @@ - - - - org.jboss - jboss-parent - 42 - - - 4.0.0 - - org.jboss.logging - logging-parent - 1.0.3.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 - - - ${maven.compiler.target} - - 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.3.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/.m2/repository/org/jboss/logging/logging-parent/1.0.3.Final/logging-parent-1.0.3.Final.pom.sha1 b/.m2/repository/org/jboss/logging/logging-parent/1.0.3.Final/logging-parent-1.0.3.Final.pom.sha1 deleted file mode 100644 index 6a5d551..0000000 --- a/.m2/repository/org/jboss/logging/logging-parent/1.0.3.Final/logging-parent-1.0.3.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -732894b34db1a04dcf4aa1330c921e2197f8141c \ No newline at end of file diff --git a/.m2/repository/org/jdom/jdom2/2.0.6.1/_remote.repositories b/.m2/repository/org/jdom/jdom2/2.0.6.1/_remote.repositories deleted file mode 100644 index 9f0a941..0000000 --- a/.m2/repository/org/jdom/jdom2/2.0.6.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. -#Thu Apr 02 20:38:35 UTC 2026 -jdom2-2.0.6.1.jar>central= -jdom2-2.0.6.1.pom>central= diff --git a/.m2/repository/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar b/.m2/repository/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar deleted file mode 100644 index da95839..0000000 Binary files a/.m2/repository/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar and /dev/null differ diff --git a/.m2/repository/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar.sha1 b/.m2/repository/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar.sha1 deleted file mode 100644 index 62985cd..0000000 --- a/.m2/repository/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -dc15dff8f701b227ee523eeb7a17f77c10eafe2f \ No newline at end of file diff --git a/.m2/repository/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.pom b/.m2/repository/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.pom deleted file mode 100644 index d09bdb5..0000000 --- a/.m2/repository/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.pom +++ /dev/null @@ -1,140 +0,0 @@ - - 4.0.0 - org.jdom - jdom2 - jar - - JDOM - 2.0.6.1 - - - A complete, Java-based solution for accessing, manipulating, - and outputting XML data - - http://www.jdom.org - - - JDOM - http://www.jdom.org - - - - - JDOM-interest Mailing List - jdom-interest@jdom.org - http://jdom.markmail.org/ - - - - - - Similar to Apache License but with the acknowledgment clause removed - https://raw.github.com/hunterhacker/jdom/master/LICENSE.txt - repo - . - - 4. Products derived from this software may not be called "JDOM", nor - may "JDOM" appear in their name, without prior written permission - from the JDOM Project Management . - - In addition, we request (but do not require) that you include in the - end-user documentation provided with the redistribution and/or in the - software itself an acknowledgement equivalent to the following: - "This product includes software developed by the - JDOM Project (http://www.jdom.org/)." - Alternatively, the acknowledgment may be graphical using the logos - available at http://www.jdom.org/images/logos. - - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - This software consists of voluntary contributions made by many - individuals on behalf of the JDOM Project and was originally - created by Jason Hunter and - Brett McLaughlin . For more information - on the JDOM Project, please see . - - */ - - - - ]]> - - - - - git@github.com:/hunterhacker/jdom - scm:git:git@github.com:hunterhacker/jdom - scm:git:git@github.com:hunterhacker/jdom - - - - - hunterhacker - Jason Hunter - jhunter@servlets.com - - - rolfl - Rolf Lear - jdom@tuis.net - - - - - - jaxen - jaxen - 1.2.0 - true - - - xerces - xercesImpl - 2.11.0 - true - - - xalan - xalan - 2.7.2 - true - - - - - - 1.5 - - \ No newline at end of file diff --git a/.m2/repository/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.pom.sha1 b/.m2/repository/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.pom.sha1 deleted file mode 100644 index 4cb5016..0000000 --- a/.m2/repository/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -172940c5c8e5198f95111b14aa4de1cf99528073 \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/annotations/13.0/_remote.repositories b/.m2/repository/org/jetbrains/annotations/13.0/_remote.repositories deleted file mode 100644 index 0696717..0000000 --- a/.m2/repository/org/jetbrains/annotations/13.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. -#Thu Apr 02 20:38:35 UTC 2026 -annotations-13.0.jar>central= -annotations-13.0.pom>central= diff --git a/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.jar b/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.jar deleted file mode 100644 index fb794be..0000000 Binary files a/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.jar and /dev/null differ diff --git a/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.jar.sha1 b/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.jar.sha1 deleted file mode 100644 index 688afc8..0000000 --- a/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -919f0dfe192fb4e063e7dacadee7f8bb9a2672a9 \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.pom b/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.pom deleted file mode 100644 index ab9b560..0000000 --- a/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.pom +++ /dev/null @@ -1,139 +0,0 @@ - - - - 4.0.0 - - org.jetbrains - annotations - 13.0 - jar - - IntelliJ IDEA Annotations - A set of annotations used for code inspection support and code documentation. - http://www.jetbrains.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/intellij-community - scm:git:https://github.com/JetBrains/intellij-community.git - - - - - JetBrains - JetBrains Team - JetBrains - http://www.jetbrains.com - - - - - UTF-8 - - - - - - maven-antrun-plugin - 1.7 - - - generate-sources - - - - - - - - - - - run - - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - - attach-sources - - jar - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - 1.5 - 1.5 - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - attach-javadocs - - jar - - - - - - - maven-gpg-plugin - 1.4 - - 66770193 - ${basedir}/.gnupg - - - - sign-artifacts - verify - - sign - - - - - - - - - - - sonatype-nexus-staging - http://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - sonatype-nexus-snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - - - diff --git a/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.pom.sha1 b/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.pom.sha1 deleted file mode 100644 index 0cd2aae..0000000 --- a/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fa7d3d07cc80547e2d15bf4839d3267c637c642f \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.23/_remote.repositories b/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.23/_remote.repositories deleted file mode 100644 index e9b094f..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:11 UTC 2026 -kotlin-bom-1.9.23.pom>central= diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom b/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom deleted file mode 100644 index e24196d..0000000 --- a/.m2/repository/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/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.sha1 b/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.23/kotlin-bom-1.9.23.pom.sha1 deleted file mode 100644 index c960590..0000000 --- a/.m2/repository/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/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.25/_remote.repositories b/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.25/_remote.repositories deleted file mode 100644 index 980c305..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.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. -#Thu Apr 02 20:37:36 UTC 2026 -kotlin-bom-1.9.25.pom>central= diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.25/kotlin-bom-1.9.25.pom b/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.25/kotlin-bom-1.9.25.pom deleted file mode 100644 index 79a04fa..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.25/kotlin-bom-1.9.25.pom +++ /dev/null @@ -1,225 +0,0 @@ - - - - 4.0.0 - - org.jetbrains.kotlin - kotlin-bom - 1.9.25 - 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/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.25/kotlin-bom-1.9.25.pom.sha1 b/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.25/kotlin-bom-1.9.25.pom.sha1 deleted file mode 100644 index 8cb060f..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-bom/1.9.25/kotlin-bom-1.9.25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5cb0d3721afe45482021451dd6eb94c6849d9e0c \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/_remote.repositories b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/_remote.repositories deleted file mode 100644 index 315e3d6..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/_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. -#Thu Apr 02 20:38:35 UTC 2026 -kotlin-stdlib-common-1.9.25.jar>central= -kotlin-stdlib-common-1.9.25.pom>central= diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/kotlin-stdlib-common-1.9.25.jar b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/kotlin-stdlib-common-1.9.25.jar deleted file mode 100644 index 980208b..0000000 Binary files a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/kotlin-stdlib-common-1.9.25.jar and /dev/null differ diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/kotlin-stdlib-common-1.9.25.jar.sha1 b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/kotlin-stdlib-common-1.9.25.jar.sha1 deleted file mode 100644 index cd83e76..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/kotlin-stdlib-common-1.9.25.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8c6b97a73550bb942dfad2325907ccfea9dea68e \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/kotlin-stdlib-common-1.9.25.pom b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/kotlin-stdlib-common-1.9.25.pom deleted file mode 100644 index c014a6e..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/kotlin-stdlib-common-1.9.25.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - 4.0.0 - org.jetbrains.kotlin - kotlin-stdlib-common - 1.9.25 - Kotlin Stdlib Common - Kotlin Common Standard Library (legacy, use kotlin-stdlib instead) - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - compile - true - - - diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/kotlin-stdlib-common-1.9.25.pom.sha1 b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/kotlin-stdlib-common-1.9.25.pom.sha1 deleted file mode 100644 index dd1725b..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.25/kotlin-stdlib-common-1.9.25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8620f02aa96f93cd46e5825c6d5010e64f96e394 \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/_remote.repositories b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/_remote.repositories deleted file mode 100644 index feccbf0..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/_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. -#Thu Apr 02 20:38:35 UTC 2026 -kotlin-stdlib-jdk7-1.9.25.jar>central= -kotlin-stdlib-jdk7-1.9.25.pom>central= diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.jar b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.jar deleted file mode 100644 index 805fc0f..0000000 Binary files a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.jar and /dev/null differ diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.jar.sha1 b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.jar.sha1 deleted file mode 100644 index 01b4f36..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1c166692314a2639e5edfed0d23ed7eee4a5c7a5 \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.pom b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.pom deleted file mode 100644 index 9628fcc..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.pom +++ /dev/null @@ -1,36 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-stdlib-jdk7 - 1.9.25 - Kotlin Stdlib Jdk7 - Kotlin Standard Library JDK 7 extension - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - compile - - - diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.pom.sha1 b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.pom.sha1 deleted file mode 100644 index ed14389..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -efd16cc3d573de6b7478aa1f3460ee35f5ca02ed \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/_remote.repositories b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/_remote.repositories deleted file mode 100644 index 2418c71..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/_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. -#Thu Apr 02 20:38:35 UTC 2026 -kotlin-stdlib-jdk8-1.9.25.jar>central= -kotlin-stdlib-jdk8-1.9.25.pom>central= diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.jar b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.jar deleted file mode 100644 index cdd9189..0000000 Binary files a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.jar and /dev/null differ diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.jar.sha1 b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.jar.sha1 deleted file mode 100644 index 785d12a..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -20d44e880a284f7b5cd99dd69450b403073f49b2 \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.pom b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.pom deleted file mode 100644 index 2540746..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 1.9.25 - Kotlin Stdlib Jdk8 - Kotlin Standard Library JDK 8 extension - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - compile - - - org.jetbrains.kotlin - kotlin-stdlib-jdk7 - 1.9.25 - compile - - - diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.pom.sha1 b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.pom.sha1 deleted file mode 100644 index 2e86631..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -19b49809d1ecdc34d03d44048805f3e4fa088d9a \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/_remote.repositories b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/_remote.repositories deleted file mode 100644 index 974a7cf..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/_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. -#Thu Apr 02 20:38:35 UTC 2026 -kotlin-stdlib-1.9.25.jar>central= -kotlin-stdlib-1.9.25.pom>central= diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar deleted file mode 100644 index 3fc1bfd..0000000 Binary files a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar and /dev/null differ diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar.sha1 b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar.sha1 deleted file mode 100644 index e555bf5..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f700a2f2b8f0d6d0fde48f56d894dc722fb029d7 \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.pom b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.pom deleted file mode 100644 index 996693a..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.pom +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - 4.0.0 - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - Kotlin Stdlib - Kotlin Standard Library - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.9.25 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk7 - 1.8.0 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 1.8.0 - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.9.25 - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.9.25 - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.9.25 - - - - - - org.jetbrains - annotations - 13.0 - compile - - - diff --git a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.pom.sha1 b/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.pom.sha1 deleted file mode 100644 index f8eda58..0000000 --- a/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cd80842137758a376e09fd243351e10abb0fa13c \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/_remote.repositories b/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/_remote.repositories deleted file mode 100644 index 478704c..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:11 UTC 2026 -kotlinx-coroutines-bom-1.7.3.pom>central= diff --git a/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom b/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom deleted file mode 100644 index 623dbfb..0000000 --- a/.m2/repository/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/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.sha1 b/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.7.3/kotlinx-coroutines-bom-1.7.3.pom.sha1 deleted file mode 100644 index 1d49b3f..0000000 --- a/.m2/repository/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/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.8.1/_remote.repositories b/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.8.1/_remote.repositories deleted file mode 100644 index 31bd0ee..0000000 --- a/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.8.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. -#Thu Apr 02 20:37:36 UTC 2026 -kotlinx-coroutines-bom-1.8.1.pom>central= diff --git a/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.8.1/kotlinx-coroutines-bom-1.8.1.pom b/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.8.1/kotlinx-coroutines-bom-1.8.1.pom deleted file mode 100644 index 496df4b..0000000 --- a/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.8.1/kotlinx-coroutines-bom-1.8.1.pom +++ /dev/null @@ -1,119 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlinx - kotlinx-coroutines-bom - 1.8.1 - 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.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core-jvm - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-debug - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-guava - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-javafx - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk8 - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk9 - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-play-services - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactive - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactor - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx2 - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx3 - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-slf4j - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-swing - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test-jvm - 1.8.1 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test - 1.8.1 - - - - diff --git a/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.8.1/kotlinx-coroutines-bom-1.8.1.pom.sha1 b/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.8.1/kotlinx-coroutines-bom-1.8.1.pom.sha1 deleted file mode 100644 index 1457436..0000000 --- a/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.8.1/kotlinx-coroutines-bom-1.8.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -945379b6526660d8768667a096584f2b041dc0ec \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.9.0/_remote.repositories b/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.9.0/_remote.repositories deleted file mode 100644 index 5f06289..0000000 --- a/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/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. -#Thu Apr 02 20:37:53 UTC 2026 -kotlinx-coroutines-bom-1.9.0.pom>central= diff --git a/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.9.0/kotlinx-coroutines-bom-1.9.0.pom b/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.9.0/kotlinx-coroutines-bom-1.9.0.pom deleted file mode 100644 index 1962d2b..0000000 --- a/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.9.0/kotlinx-coroutines-bom-1.9.0.pom +++ /dev/null @@ -1,119 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlinx - kotlinx-coroutines-bom - 1.9.0 - 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.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core-jvm - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-debug - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-guava - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-javafx - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk8 - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk9 - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-play-services - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactive - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactor - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx2 - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx3 - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-slf4j - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-swing - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test-jvm - 1.9.0 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test - 1.9.0 - - - - diff --git a/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.9.0/kotlinx-coroutines-bom-1.9.0.pom.sha1 b/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.9.0/kotlinx-coroutines-bom-1.9.0.pom.sha1 deleted file mode 100644 index 3860d08..0000000 --- a/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.9.0/kotlinx-coroutines-bom-1.9.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -11a86a1aa2fb0ecb72e865e4e0b421be56eb30fb \ No newline at end of file diff --git a/.m2/repository/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/_remote.repositories b/.m2/repository/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/_remote.repositories deleted file mode 100644 index bac67f7..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:36 UTC 2026 -kotlinx-serialization-bom-1.6.3.pom>central= diff --git a/.m2/repository/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom b/.m2/repository/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom deleted file mode 100644 index e72d177..0000000 --- a/.m2/repository/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/.m2/repository/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.sha1 b/.m2/repository/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom.sha1 deleted file mode 100644 index 7ddee76..0000000 --- a/.m2/repository/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/.m2/repository/org/jsoup/jsoup/1.17.2/_remote.repositories b/.m2/repository/org/jsoup/jsoup/1.17.2/_remote.repositories deleted file mode 100644 index 8a2c0d7..0000000 --- a/.m2/repository/org/jsoup/jsoup/1.17.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. -#Thu Apr 02 20:38:35 UTC 2026 -jsoup-1.17.2.jar>central= -jsoup-1.17.2.pom>central= diff --git a/.m2/repository/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.jar b/.m2/repository/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.jar deleted file mode 100644 index 52ae16d..0000000 Binary files a/.m2/repository/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.jar and /dev/null differ diff --git a/.m2/repository/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.jar.sha1 b/.m2/repository/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.jar.sha1 deleted file mode 100644 index 016ffa3..0000000 --- a/.m2/repository/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1e75b08d7019546a954f1e359477f916f537a34d \ No newline at end of file diff --git a/.m2/repository/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.pom b/.m2/repository/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.pom deleted file mode 100644 index 7f2825e..0000000 --- a/.m2/repository/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.pom +++ /dev/null @@ -1,460 +0,0 @@ - - - 4.0.0 - jsoup Java HTML Parser - - org.jsoup - jsoup - 1.17.2 - https://jsoup.org/ - jsoup is a Java library that simplifies working with real-world HTML and XML. It offers an easy-to-use API for URL fetching, data parsing, extraction, and manipulation using DOM API methods, CSS, and xpath selectors. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers. - 2009 - - GitHub - https://github.com/jhy/jsoup/issues - - - - The MIT License - https://jsoup.org/license - repo - - - - https://github.com/jhy/jsoup - scm:git:https://github.com/jhy/jsoup.git - - jsoup-1.17.2 - - - Jonathan Hedley - https://jhy.io/ - - - - UTF-8 - 9.4.53.v20231009 - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.1 - - UTF-8 - - - -Xpkginfo:always - - - false - - - - compile-java-8 - - 1.8 - 1.8 - - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.23 - - - animal-sniffer - compile - - check - - - - org.codehaus.mojo.signature - java18 - 1.0 - - - net.sf.androidscents.signature - android-api-level-10 - 2.3.3_r2 - - - java.util.function.* - java.util.stream.* - java.lang.ThreadLocal - java.io.UncheckedIOException - java.util.List - java.util.Objects - java.util.Optional - java.util.Spliterator - java.util.Spliterators - - java.net.HttpURLConnection - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - none - 8 - true - - - - attach-javadoc - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - org/jsoup/examples/** - - - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - true - - - true - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - org/jsoup/examples/** - - - - - org.apache.felix - maven-bundle-plugin - 5.1.9 - - - bundle-manifest - process-classes - - manifest - - - - - - https://jsoup.org/ - org.jsoup.* - org.jspecify.annotations;version=!;resolution:=optional,* - - - - - org.apache.maven.plugins - maven-resources-plugin - 3.3.1 - - - maven-release-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 3.2.3 - - - -Xss256k - - - - maven-failsafe-plugin - 3.2.3 - - - - integration-test - verify - - - - - methods - 8 - - - - - com.github.siom79.japicmp - japicmp-maven-plugin - 0.18.3 - - - - - org.jsoup - jsoup - 1.16.2 - jar - - - - - false - true - true - - - - - - - METHOD_NEW_DEFAULT - true - true - - - METHOD_ABSTRACT_NOW_DEFAULT - true - true - - - - - CLASS_GENERIC_TEMPLATE_CHANGED - true - true - - - - - - - - package - - cmp - - - - - - - - ./ - META-INF/ - false - - LICENSE - README.md - CHANGES - - - - - - - - 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/ - - - - - - - compile-multi-release - - [9,2000) - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - compile-java-8 - - 8 - - - - compile-java-9 - compile - - compile - - - 9 - - ${project.basedir}/src/main/java9 - - true - - - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - package - - sign - - - - - - - - - failsafe - - - - maven-failsafe-plugin - 3.2.3 - - - - integration-test - verify - - - - - - - - - - - - - - org.junit.jupiter - junit-jupiter - 5.10.1 - test - - - - - com.google.code.gson - gson - 2.10.1 - test - - - - - org.eclipse.jetty - jetty-server - ${jetty.version} - test - - - - - org.eclipse.jetty - jetty-servlet - ${jetty.version} - test - - - - - org.eclipse.jetty - jetty-proxy - ${jetty.version} - test - - - - - org.jspecify - jspecify - 0.3.0 - provided - - - - - - - - - - - jhy - Jonathan Hedley - jonathan@hedley.net - - Lead Developer - - +11 - - - - diff --git a/.m2/repository/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.pom.sha1 b/.m2/repository/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.pom.sha1 deleted file mode 100644 index 4b15b2b..0000000 --- a/.m2/repository/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -92b1e98d4686c63d6469f4db30ff35b4b363aa14 \ No newline at end of file diff --git a/.m2/repository/org/junit/junit-bom/5.10.0/_remote.repositories b/.m2/repository/org/junit/junit-bom/5.10.0/_remote.repositories deleted file mode 100644 index 79d5f7a..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:02 UTC 2026 -junit-bom-5.10.0.pom>central= diff --git a/.m2/repository/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom b/.m2/repository/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom deleted file mode 100644 index 1ea4b70..0000000 --- a/.m2/repository/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/.m2/repository/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom.sha1 b/.m2/repository/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom.sha1 deleted file mode 100644 index bf971d8..0000000 --- a/.m2/repository/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/.m2/repository/org/junit/junit-bom/5.10.1/_remote.repositories b/.m2/repository/org/junit/junit-bom/5.10.1/_remote.repositories deleted file mode 100644 index d4b2fbb..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:43:05 UTC 2026 -junit-bom-5.10.1.pom>central= diff --git a/.m2/repository/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom b/.m2/repository/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom deleted file mode 100644 index 40f6957..0000000 --- a/.m2/repository/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/.m2/repository/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom.sha1 b/.m2/repository/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom.sha1 deleted file mode 100644 index 1645590..0000000 --- a/.m2/repository/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/.m2/repository/org/junit/junit-bom/5.10.2/_remote.repositories b/.m2/repository/org/junit/junit-bom/5.10.2/_remote.repositories deleted file mode 100644 index 790b529..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:11 UTC 2026 -junit-bom-5.10.2.pom>central= diff --git a/.m2/repository/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom b/.m2/repository/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom deleted file mode 100644 index 92e6e60..0000000 --- a/.m2/repository/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/.m2/repository/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.sha1 b/.m2/repository/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom.sha1 deleted file mode 100644 index 69f18a0..0000000 --- a/.m2/repository/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/.m2/repository/org/junit/junit-bom/5.10.3/_remote.repositories b/.m2/repository/org/junit/junit-bom/5.10.3/_remote.repositories deleted file mode 100644 index e7d057b..0000000 --- a/.m2/repository/org/junit/junit-bom/5.10.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. -#Thu Apr 02 20:37:41 UTC 2026 -junit-bom-5.10.3.pom>central= diff --git a/.m2/repository/org/junit/junit-bom/5.10.3/junit-bom-5.10.3.pom b/.m2/repository/org/junit/junit-bom/5.10.3/junit-bom-5.10.3.pom deleted file mode 100644 index 60a7276..0000000 --- a/.m2/repository/org/junit/junit-bom/5.10.3/junit-bom-5.10.3.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.10.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.10.3 - - - org.junit.jupiter - junit-jupiter-api - 5.10.3 - - - org.junit.jupiter - junit-jupiter-engine - 5.10.3 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.10.3 - - - org.junit.jupiter - junit-jupiter-params - 5.10.3 - - - org.junit.platform - junit-platform-commons - 1.10.3 - - - org.junit.platform - junit-platform-console - 1.10.3 - - - org.junit.platform - junit-platform-engine - 1.10.3 - - - org.junit.platform - junit-platform-jfr - 1.10.3 - - - org.junit.platform - junit-platform-launcher - 1.10.3 - - - org.junit.platform - junit-platform-reporting - 1.10.3 - - - org.junit.platform - junit-platform-runner - 1.10.3 - - - org.junit.platform - junit-platform-suite - 1.10.3 - - - org.junit.platform - junit-platform-suite-api - 1.10.3 - - - org.junit.platform - junit-platform-suite-commons - 1.10.3 - - - org.junit.platform - junit-platform-suite-engine - 1.10.3 - - - org.junit.platform - junit-platform-testkit - 1.10.3 - - - org.junit.vintage - junit-vintage-engine - 5.10.3 - - - - diff --git a/.m2/repository/org/junit/junit-bom/5.10.3/junit-bom-5.10.3.pom.sha1 b/.m2/repository/org/junit/junit-bom/5.10.3/junit-bom-5.10.3.pom.sha1 deleted file mode 100644 index 04bad92..0000000 --- a/.m2/repository/org/junit/junit-bom/5.10.3/junit-bom-5.10.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fe8295327d9e5cb3bf1641493dd1485bc714b1e4 \ No newline at end of file diff --git a/.m2/repository/org/junit/junit-bom/5.11.0-M2/_remote.repositories b/.m2/repository/org/junit/junit-bom/5.11.0-M2/_remote.repositories deleted file mode 100644 index 96545ab..0000000 --- a/.m2/repository/org/junit/junit-bom/5.11.0-M2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:43:09 UTC 2026 -junit-bom-5.11.0-M2.pom>central= diff --git a/.m2/repository/org/junit/junit-bom/5.11.0-M2/junit-bom-5.11.0-M2.pom b/.m2/repository/org/junit/junit-bom/5.11.0-M2/junit-bom-5.11.0-M2.pom deleted file mode 100644 index 9f86f87..0000000 --- a/.m2/repository/org/junit/junit-bom/5.11.0-M2/junit-bom-5.11.0-M2.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.11.0-M2 - 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.11.0-M2 - - - org.junit.jupiter - junit-jupiter-api - 5.11.0-M2 - - - org.junit.jupiter - junit-jupiter-engine - 5.11.0-M2 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.11.0-M2 - - - org.junit.jupiter - junit-jupiter-params - 5.11.0-M2 - - - org.junit.platform - junit-platform-commons - 1.11.0-M2 - - - org.junit.platform - junit-platform-console - 1.11.0-M2 - - - org.junit.platform - junit-platform-engine - 1.11.0-M2 - - - org.junit.platform - junit-platform-jfr - 1.11.0-M2 - - - org.junit.platform - junit-platform-launcher - 1.11.0-M2 - - - org.junit.platform - junit-platform-reporting - 1.11.0-M2 - - - org.junit.platform - junit-platform-runner - 1.11.0-M2 - - - org.junit.platform - junit-platform-suite - 1.11.0-M2 - - - org.junit.platform - junit-platform-suite-api - 1.11.0-M2 - - - org.junit.platform - junit-platform-suite-commons - 1.11.0-M2 - - - org.junit.platform - junit-platform-suite-engine - 1.11.0-M2 - - - org.junit.platform - junit-platform-testkit - 1.11.0-M2 - - - org.junit.vintage - junit-vintage-engine - 5.11.0-M2 - - - - diff --git a/.m2/repository/org/junit/junit-bom/5.11.0-M2/junit-bom-5.11.0-M2.pom.sha1 b/.m2/repository/org/junit/junit-bom/5.11.0-M2/junit-bom-5.11.0-M2.pom.sha1 deleted file mode 100644 index 3c40658..0000000 --- a/.m2/repository/org/junit/junit-bom/5.11.0-M2/junit-bom-5.11.0-M2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6c517cddae7893aba5bf9f051c44860a4fc18211 \ No newline at end of file diff --git a/.m2/repository/org/junit/junit-bom/5.11.0/_remote.repositories b/.m2/repository/org/junit/junit-bom/5.11.0/_remote.repositories deleted file mode 100644 index b3f75f0..0000000 --- a/.m2/repository/org/junit/junit-bom/5.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. -#Thu Apr 02 20:38:01 UTC 2026 -junit-bom-5.11.0.pom>central= diff --git a/.m2/repository/org/junit/junit-bom/5.11.0/junit-bom-5.11.0.pom b/.m2/repository/org/junit/junit-bom/5.11.0/junit-bom-5.11.0.pom deleted file mode 100644 index db386f4..0000000 --- a/.m2/repository/org/junit/junit-bom/5.11.0/junit-bom-5.11.0.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.11.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.11.0 - - - org.junit.jupiter - junit-jupiter-api - 5.11.0 - - - org.junit.jupiter - junit-jupiter-engine - 5.11.0 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.11.0 - - - org.junit.jupiter - junit-jupiter-params - 5.11.0 - - - org.junit.platform - junit-platform-commons - 1.11.0 - - - org.junit.platform - junit-platform-console - 1.11.0 - - - org.junit.platform - junit-platform-engine - 1.11.0 - - - org.junit.platform - junit-platform-jfr - 1.11.0 - - - org.junit.platform - junit-platform-launcher - 1.11.0 - - - org.junit.platform - junit-platform-reporting - 1.11.0 - - - org.junit.platform - junit-platform-runner - 1.11.0 - - - org.junit.platform - junit-platform-suite - 1.11.0 - - - org.junit.platform - junit-platform-suite-api - 1.11.0 - - - org.junit.platform - junit-platform-suite-commons - 1.11.0 - - - org.junit.platform - junit-platform-suite-engine - 1.11.0 - - - org.junit.platform - junit-platform-testkit - 1.11.0 - - - org.junit.vintage - junit-vintage-engine - 5.11.0 - - - - diff --git a/.m2/repository/org/junit/junit-bom/5.11.0/junit-bom-5.11.0.pom.sha1 b/.m2/repository/org/junit/junit-bom/5.11.0/junit-bom-5.11.0.pom.sha1 deleted file mode 100644 index 0a642cd..0000000 --- a/.m2/repository/org/junit/junit-bom/5.11.0/junit-bom-5.11.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a4a8a67d5348d748a6345d6f1d08846fb2780ed9 \ No newline at end of file diff --git a/.m2/repository/org/junit/junit-bom/5.11.4/_remote.repositories b/.m2/repository/org/junit/junit-bom/5.11.4/_remote.repositories deleted file mode 100644 index ba1d62a..0000000 --- a/.m2/repository/org/junit/junit-bom/5.11.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. -#Thu Apr 02 20:37:45 UTC 2026 -junit-bom-5.11.4.pom>central= diff --git a/.m2/repository/org/junit/junit-bom/5.11.4/junit-bom-5.11.4.pom b/.m2/repository/org/junit/junit-bom/5.11.4/junit-bom-5.11.4.pom deleted file mode 100644 index 04d3dcd..0000000 --- a/.m2/repository/org/junit/junit-bom/5.11.4/junit-bom-5.11.4.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.11.4 - 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.11.4 - - - org.junit.jupiter - junit-jupiter-api - 5.11.4 - - - org.junit.jupiter - junit-jupiter-engine - 5.11.4 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.11.4 - - - org.junit.jupiter - junit-jupiter-params - 5.11.4 - - - org.junit.platform - junit-platform-commons - 1.11.4 - - - org.junit.platform - junit-platform-console - 1.11.4 - - - org.junit.platform - junit-platform-engine - 1.11.4 - - - org.junit.platform - junit-platform-jfr - 1.11.4 - - - org.junit.platform - junit-platform-launcher - 1.11.4 - - - org.junit.platform - junit-platform-reporting - 1.11.4 - - - org.junit.platform - junit-platform-runner - 1.11.4 - - - org.junit.platform - junit-platform-suite - 1.11.4 - - - org.junit.platform - junit-platform-suite-api - 1.11.4 - - - org.junit.platform - junit-platform-suite-commons - 1.11.4 - - - org.junit.platform - junit-platform-suite-engine - 1.11.4 - - - org.junit.platform - junit-platform-testkit - 1.11.4 - - - org.junit.vintage - junit-vintage-engine - 5.11.4 - - - - diff --git a/.m2/repository/org/junit/junit-bom/5.11.4/junit-bom-5.11.4.pom.sha1 b/.m2/repository/org/junit/junit-bom/5.11.4/junit-bom-5.11.4.pom.sha1 deleted file mode 100644 index 1cc37fb..0000000 --- a/.m2/repository/org/junit/junit-bom/5.11.4/junit-bom-5.11.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c02d99183d700dae681ed4a699dfcbe3d77dc507 \ No newline at end of file diff --git a/.m2/repository/org/junit/junit-bom/5.12.1/_remote.repositories b/.m2/repository/org/junit/junit-bom/5.12.1/_remote.repositories deleted file mode 100644 index 85e3b67..0000000 --- a/.m2/repository/org/junit/junit-bom/5.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. -#Thu Apr 02 20:37:41 UTC 2026 -junit-bom-5.12.1.pom>central= diff --git a/.m2/repository/org/junit/junit-bom/5.12.1/junit-bom-5.12.1.pom b/.m2/repository/org/junit/junit-bom/5.12.1/junit-bom-5.12.1.pom deleted file mode 100644 index 3c6b0c4..0000000 --- a/.m2/repository/org/junit/junit-bom/5.12.1/junit-bom-5.12.1.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.12.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.12.1 - - - org.junit.jupiter - junit-jupiter-api - 5.12.1 - - - org.junit.jupiter - junit-jupiter-engine - 5.12.1 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.12.1 - - - org.junit.jupiter - junit-jupiter-params - 5.12.1 - - - org.junit.platform - junit-platform-commons - 1.12.1 - - - org.junit.platform - junit-platform-console - 1.12.1 - - - org.junit.platform - junit-platform-engine - 1.12.1 - - - org.junit.platform - junit-platform-jfr - 1.12.1 - - - org.junit.platform - junit-platform-launcher - 1.12.1 - - - org.junit.platform - junit-platform-reporting - 1.12.1 - - - org.junit.platform - junit-platform-runner - 1.12.1 - - - org.junit.platform - junit-platform-suite - 1.12.1 - - - org.junit.platform - junit-platform-suite-api - 1.12.1 - - - org.junit.platform - junit-platform-suite-commons - 1.12.1 - - - org.junit.platform - junit-platform-suite-engine - 1.12.1 - - - org.junit.platform - junit-platform-testkit - 1.12.1 - - - org.junit.vintage - junit-vintage-engine - 5.12.1 - - - - diff --git a/.m2/repository/org/junit/junit-bom/5.12.1/junit-bom-5.12.1.pom.sha1 b/.m2/repository/org/junit/junit-bom/5.12.1/junit-bom-5.12.1.pom.sha1 deleted file mode 100644 index a1c5774..0000000 --- a/.m2/repository/org/junit/junit-bom/5.12.1/junit-bom-5.12.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d4bbd68fa141b078fd8a46f313faa41c54b0af78 \ No newline at end of file diff --git a/.m2/repository/org/junit/junit-bom/5.12.2/_remote.repositories b/.m2/repository/org/junit/junit-bom/5.12.2/_remote.repositories deleted file mode 100644 index 4377854..0000000 --- a/.m2/repository/org/junit/junit-bom/5.12.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. -#Thu Apr 02 20:37:36 UTC 2026 -junit-bom-5.12.2.pom>central= diff --git a/.m2/repository/org/junit/junit-bom/5.12.2/junit-bom-5.12.2.pom b/.m2/repository/org/junit/junit-bom/5.12.2/junit-bom-5.12.2.pom deleted file mode 100644 index 282a83e..0000000 --- a/.m2/repository/org/junit/junit-bom/5.12.2/junit-bom-5.12.2.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.12.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.12.2 - - - org.junit.jupiter - junit-jupiter-api - 5.12.2 - - - org.junit.jupiter - junit-jupiter-engine - 5.12.2 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.12.2 - - - org.junit.jupiter - junit-jupiter-params - 5.12.2 - - - org.junit.platform - junit-platform-commons - 1.12.2 - - - org.junit.platform - junit-platform-console - 1.12.2 - - - org.junit.platform - junit-platform-engine - 1.12.2 - - - org.junit.platform - junit-platform-jfr - 1.12.2 - - - org.junit.platform - junit-platform-launcher - 1.12.2 - - - org.junit.platform - junit-platform-reporting - 1.12.2 - - - org.junit.platform - junit-platform-runner - 1.12.2 - - - org.junit.platform - junit-platform-suite - 1.12.2 - - - org.junit.platform - junit-platform-suite-api - 1.12.2 - - - org.junit.platform - junit-platform-suite-commons - 1.12.2 - - - org.junit.platform - junit-platform-suite-engine - 1.12.2 - - - org.junit.platform - junit-platform-testkit - 1.12.2 - - - org.junit.vintage - junit-vintage-engine - 5.12.2 - - - - diff --git a/.m2/repository/org/junit/junit-bom/5.12.2/junit-bom-5.12.2.pom.sha1 b/.m2/repository/org/junit/junit-bom/5.12.2/junit-bom-5.12.2.pom.sha1 deleted file mode 100644 index 7c13626..0000000 --- a/.m2/repository/org/junit/junit-bom/5.12.2/junit-bom-5.12.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -886881ed1abab1372cfafc4c75c1e37f7199b54b \ No newline at end of file diff --git a/.m2/repository/org/junit/junit-bom/5.7.1/_remote.repositories b/.m2/repository/org/junit/junit-bom/5.7.1/_remote.repositories deleted file mode 100644 index 3b39a34..0000000 --- a/.m2/repository/org/junit/junit-bom/5.7.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. -#Thu Apr 02 20:38:40 UTC 2026 -junit-bom-5.7.1.pom>central= diff --git a/.m2/repository/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom b/.m2/repository/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom deleted file mode 100644 index 9c7e47d..0000000 --- a/.m2/repository/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - 4.0.0 - org.junit - junit-bom - 5.7.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.7.1 - - - org.junit.jupiter - junit-jupiter-api - 5.7.1 - - - org.junit.jupiter - junit-jupiter-engine - 5.7.1 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.7.1 - - - org.junit.jupiter - junit-jupiter-params - 5.7.1 - - - org.junit.platform - junit-platform-commons - 1.7.1 - - - org.junit.platform - junit-platform-console - 1.7.1 - - - org.junit.platform - junit-platform-engine - 1.7.1 - - - org.junit.platform - junit-platform-jfr - 1.7.1 - - - org.junit.platform - junit-platform-launcher - 1.7.1 - - - org.junit.platform - junit-platform-reporting - 1.7.1 - - - org.junit.platform - junit-platform-runner - 1.7.1 - - - org.junit.platform - junit-platform-suite-api - 1.7.1 - - - org.junit.platform - junit-platform-testkit - 1.7.1 - - - org.junit.vintage - junit-vintage-engine - 5.7.1 - - - - diff --git a/.m2/repository/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom.sha1 b/.m2/repository/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom.sha1 deleted file mode 100644 index 4be19e7..0000000 --- a/.m2/repository/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ea517dcd1a0692cf193264d3e3ef0cc1a4a7b410 \ No newline at end of file diff --git a/.m2/repository/org/junit/junit-bom/5.7.2/_remote.repositories b/.m2/repository/org/junit/junit-bom/5.7.2/_remote.repositories deleted file mode 100644 index 111ae79..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:06 UTC 2026 -junit-bom-5.7.2.pom>central= diff --git a/.m2/repository/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom b/.m2/repository/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom deleted file mode 100644 index f1ebe97..0000000 --- a/.m2/repository/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/.m2/repository/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom.sha1 b/.m2/repository/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom.sha1 deleted file mode 100644 index 70a543b..0000000 --- a/.m2/repository/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/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/_remote.repositories b/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/_remote.repositories deleted file mode 100644 index 372e180..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.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. -#Thu Apr 02 20:38:35 UTC 2026 -junit-jupiter-api-5.12.2.jar>central= -junit-jupiter-api-5.12.2.pom>central= diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/junit-jupiter-api-5.12.2.jar b/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/junit-jupiter-api-5.12.2.jar deleted file mode 100644 index 8598a77..0000000 Binary files a/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/junit-jupiter-api-5.12.2.jar and /dev/null differ diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/junit-jupiter-api-5.12.2.jar.sha1 b/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/junit-jupiter-api-5.12.2.jar.sha1 deleted file mode 100644 index ac6e8b1..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/junit-jupiter-api-5.12.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -6de3a3256c5d90f4a439edcb6c2e8dc5180907b0 \ No newline at end of file diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/junit-jupiter-api-5.12.2.pom b/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/junit-jupiter-api-5.12.2.pom deleted file mode 100644 index bb33f75..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/junit-jupiter-api-5.12.2.pom +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.jupiter - junit-jupiter-api - 5.12.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.12.2 - pom - import - - - - - - org.opentest4j - opentest4j - 1.3.0 - compile - - - org.junit.platform - junit-platform-commons - 1.12.2 - compile - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/junit-jupiter-api-5.12.2.pom.sha1 b/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/junit-jupiter-api-5.12.2.pom.sha1 deleted file mode 100644 index 30dac75..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.12.2/junit-jupiter-api-5.12.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -25c911b89cdf08691f0b87ca03650510133a4c72 \ No newline at end of file diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/_remote.repositories b/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/_remote.repositories deleted file mode 100644 index aab10dd..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.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. -#Thu Apr 02 20:38:35 UTC 2026 -junit-jupiter-engine-5.12.2.jar>central= -junit-jupiter-engine-5.12.2.pom>central= diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/junit-jupiter-engine-5.12.2.jar b/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/junit-jupiter-engine-5.12.2.jar deleted file mode 100644 index 63b4a07..0000000 Binary files a/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/junit-jupiter-engine-5.12.2.jar and /dev/null differ diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/junit-jupiter-engine-5.12.2.jar.sha1 b/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/junit-jupiter-engine-5.12.2.jar.sha1 deleted file mode 100644 index 57121d0..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/junit-jupiter-engine-5.12.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b8df7575b8cd3a94dbe27b481d1cd52c57864559 \ No newline at end of file diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/junit-jupiter-engine-5.12.2.pom b/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/junit-jupiter-engine-5.12.2.pom deleted file mode 100644 index d859878..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/junit-jupiter-engine-5.12.2.pom +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.jupiter - junit-jupiter-engine - 5.12.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.12.2 - pom - import - - - - - - org.junit.platform - junit-platform-engine - 1.12.2 - compile - - - org.junit.jupiter - junit-jupiter-api - 5.12.2 - compile - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/junit-jupiter-engine-5.12.2.pom.sha1 b/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/junit-jupiter-engine-5.12.2.pom.sha1 deleted file mode 100644 index c501c8d..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.12.2/junit-jupiter-engine-5.12.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2e42272f390d44f5134de341a87b1962b6ec4d31 \ No newline at end of file diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/_remote.repositories b/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/_remote.repositories deleted file mode 100644 index 730f3d7..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.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. -#Thu Apr 02 20:38:35 UTC 2026 -junit-jupiter-params-5.12.2.jar>central= -junit-jupiter-params-5.12.2.pom>central= diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/junit-jupiter-params-5.12.2.jar b/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/junit-jupiter-params-5.12.2.jar deleted file mode 100644 index 5c215ea..0000000 Binary files a/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/junit-jupiter-params-5.12.2.jar and /dev/null differ diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/junit-jupiter-params-5.12.2.jar.sha1 b/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/junit-jupiter-params-5.12.2.jar.sha1 deleted file mode 100644 index ab7058d..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/junit-jupiter-params-5.12.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ff1434a66d1fb84c2c709cde2e2d56d5c8f4fad3 \ No newline at end of file diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/junit-jupiter-params-5.12.2.pom b/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/junit-jupiter-params-5.12.2.pom deleted file mode 100644 index 63b9e10..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/junit-jupiter-params-5.12.2.pom +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.jupiter - junit-jupiter-params - 5.12.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.12.2 - pom - import - - - - - - org.junit.jupiter - junit-jupiter-api - 5.12.2 - compile - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/junit-jupiter-params-5.12.2.pom.sha1 b/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/junit-jupiter-params-5.12.2.pom.sha1 deleted file mode 100644 index db1128c..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.12.2/junit-jupiter-params-5.12.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d4715f506eea86ceb20fac2fbeeae95207a27c37 \ No newline at end of file diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/_remote.repositories b/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/_remote.repositories deleted file mode 100644 index ce9507f..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.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. -#Thu Apr 02 20:38:35 UTC 2026 -junit-jupiter-5.12.2.jar>central= -junit-jupiter-5.12.2.pom>central= diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/junit-jupiter-5.12.2.jar b/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/junit-jupiter-5.12.2.jar deleted file mode 100644 index a373a88..0000000 Binary files a/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/junit-jupiter-5.12.2.jar and /dev/null differ diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/junit-jupiter-5.12.2.jar.sha1 b/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/junit-jupiter-5.12.2.jar.sha1 deleted file mode 100644 index 217a963..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/junit-jupiter-5.12.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -64d3ec64ae06517bc14b7faaaec7c996b0d05bea \ No newline at end of file diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/junit-jupiter-5.12.2.pom b/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/junit-jupiter-5.12.2.pom deleted file mode 100644 index 8040e66..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/junit-jupiter-5.12.2.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.jupiter - junit-jupiter - 5.12.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.12.2 - pom - import - - - - - - org.junit.jupiter - junit-jupiter-api - 5.12.2 - compile - - - org.junit.jupiter - junit-jupiter-params - 5.12.2 - compile - - - org.junit.jupiter - junit-jupiter-engine - 5.12.2 - runtime - - - diff --git a/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/junit-jupiter-5.12.2.pom.sha1 b/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/junit-jupiter-5.12.2.pom.sha1 deleted file mode 100644 index 4b5f8f7..0000000 --- a/.m2/repository/org/junit/jupiter/junit-jupiter/5.12.2/junit-jupiter-5.12.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4d07b05d43bf3544a5e70c8b06f6d35e7c8f99df \ No newline at end of file diff --git a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/_remote.repositories b/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/_remote.repositories deleted file mode 100644 index 1d529cd..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.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. -#Thu Apr 02 20:42:18 UTC 2026 -junit-platform-commons-1.12.1.jar>central= -junit-platform-commons-1.12.1.pom>central= diff --git a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/junit-platform-commons-1.12.1.jar b/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/junit-platform-commons-1.12.1.jar deleted file mode 100644 index a675093..0000000 Binary files a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/junit-platform-commons-1.12.1.jar and /dev/null differ diff --git a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/junit-platform-commons-1.12.1.jar.sha1 b/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/junit-platform-commons-1.12.1.jar.sha1 deleted file mode 100644 index 2003688..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/junit-platform-commons-1.12.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d34adac31a6974eec6611cc129927a2e2cfe89ee \ No newline at end of file diff --git a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/junit-platform-commons-1.12.1.pom b/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/junit-platform-commons-1.12.1.pom deleted file mode 100644 index e4c070c..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/junit-platform-commons-1.12.1.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.platform - junit-platform-commons - 1.12.1 - 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.12.1 - pom - import - - - - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/junit-platform-commons-1.12.1.pom.sha1 b/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/junit-platform-commons-1.12.1.pom.sha1 deleted file mode 100644 index 23e0095..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.1/junit-platform-commons-1.12.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d18718e7b2206d56a5b0ffaeeacf1160f1e0aec3 \ No newline at end of file diff --git a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/_remote.repositories b/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/_remote.repositories deleted file mode 100644 index 135c786..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.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. -#Thu Apr 02 20:38:35 UTC 2026 -junit-platform-commons-1.12.2.jar>central= -junit-platform-commons-1.12.2.pom>central= diff --git a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/junit-platform-commons-1.12.2.jar b/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/junit-platform-commons-1.12.2.jar deleted file mode 100644 index a01aeb9..0000000 Binary files a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/junit-platform-commons-1.12.2.jar and /dev/null differ diff --git a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/junit-platform-commons-1.12.2.jar.sha1 b/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/junit-platform-commons-1.12.2.jar.sha1 deleted file mode 100644 index 2d05bd9..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/junit-platform-commons-1.12.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b89e88a89ee009937374a4c96912e007b34c8e35 \ No newline at end of file diff --git a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/junit-platform-commons-1.12.2.pom b/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/junit-platform-commons-1.12.2.pom deleted file mode 100644 index 4f66658..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/junit-platform-commons-1.12.2.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.platform - junit-platform-commons - 1.12.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.12.2 - pom - import - - - - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/junit-platform-commons-1.12.2.pom.sha1 b/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/junit-platform-commons-1.12.2.pom.sha1 deleted file mode 100644 index 37cccf0..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-commons/1.12.2/junit-platform-commons-1.12.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1be4c4fea677f3fe6a576b0637897121f31e311b \ No newline at end of file diff --git a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/_remote.repositories b/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/_remote.repositories deleted file mode 100644 index a241fd4..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.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. -#Thu Apr 02 20:42:18 UTC 2026 -junit-platform-engine-1.12.1.jar>central= -junit-platform-engine-1.12.1.pom>central= diff --git a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/junit-platform-engine-1.12.1.jar b/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/junit-platform-engine-1.12.1.jar deleted file mode 100644 index 2921659..0000000 Binary files a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/junit-platform-engine-1.12.1.jar and /dev/null differ diff --git a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/junit-platform-engine-1.12.1.jar.sha1 b/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/junit-platform-engine-1.12.1.jar.sha1 deleted file mode 100644 index 443283a..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/junit-platform-engine-1.12.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fc105f3430d6392a4d033fe6f9d58eddd1a03594 \ No newline at end of file diff --git a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/junit-platform-engine-1.12.1.pom b/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/junit-platform-engine-1.12.1.pom deleted file mode 100644 index b54fb01..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/junit-platform-engine-1.12.1.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.platform - junit-platform-engine - 1.12.1 - 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.12.1 - pom - import - - - - - - org.opentest4j - opentest4j - 1.3.0 - compile - - - org.junit.platform - junit-platform-commons - 1.12.1 - compile - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/junit-platform-engine-1.12.1.pom.sha1 b/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/junit-platform-engine-1.12.1.pom.sha1 deleted file mode 100644 index 51dd645..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.1/junit-platform-engine-1.12.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -78220b09598b242ea590c15ed9f076d12d0112d4 \ No newline at end of file diff --git a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/_remote.repositories b/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/_remote.repositories deleted file mode 100644 index 5c2f33a..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.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. -#Thu Apr 02 20:38:35 UTC 2026 -junit-platform-engine-1.12.2.jar>central= -junit-platform-engine-1.12.2.pom>central= diff --git a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/junit-platform-engine-1.12.2.jar b/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/junit-platform-engine-1.12.2.jar deleted file mode 100644 index b130d6e..0000000 Binary files a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/junit-platform-engine-1.12.2.jar and /dev/null differ diff --git a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/junit-platform-engine-1.12.2.jar.sha1 b/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/junit-platform-engine-1.12.2.jar.sha1 deleted file mode 100644 index 4f6896b..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/junit-platform-engine-1.12.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8519ece93f91b8115705d36be2c36d49808935cd \ No newline at end of file diff --git a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/junit-platform-engine-1.12.2.pom b/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/junit-platform-engine-1.12.2.pom deleted file mode 100644 index 61582e1..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/junit-platform-engine-1.12.2.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.platform - junit-platform-engine - 1.12.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.12.2 - pom - import - - - - - - org.opentest4j - opentest4j - 1.3.0 - compile - - - org.junit.platform - junit-platform-commons - 1.12.2 - compile - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/junit-platform-engine-1.12.2.pom.sha1 b/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/junit-platform-engine-1.12.2.pom.sha1 deleted file mode 100644 index 6d04489..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-engine/1.12.2/junit-platform-engine-1.12.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -564ee0fdaaa552c068416a5c59f24a943492333e \ No newline at end of file diff --git a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/_remote.repositories b/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/_remote.repositories deleted file mode 100644 index 47200c9..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.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. -#Thu Apr 02 20:42:18 UTC 2026 -junit-platform-launcher-1.12.1.jar>central= -junit-platform-launcher-1.12.1.pom>central= diff --git a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/junit-platform-launcher-1.12.1.jar b/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/junit-platform-launcher-1.12.1.jar deleted file mode 100644 index aefa08f..0000000 Binary files a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/junit-platform-launcher-1.12.1.jar and /dev/null differ diff --git a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/junit-platform-launcher-1.12.1.jar.sha1 b/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/junit-platform-launcher-1.12.1.jar.sha1 deleted file mode 100644 index fd3fb2a..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/junit-platform-launcher-1.12.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ff5af5e325705fb1d5926a0235cc655c4e96bf1d \ No newline at end of file diff --git a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/junit-platform-launcher-1.12.1.pom b/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/junit-platform-launcher-1.12.1.pom deleted file mode 100644 index e5a9003..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/junit-platform-launcher-1.12.1.pom +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.platform - junit-platform-launcher - 1.12.1 - JUnit Platform Launcher - Module "junit-platform-launcher" 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.12.1 - pom - import - - - - - - org.junit.platform - junit-platform-engine - 1.12.1 - compile - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/junit-platform-launcher-1.12.1.pom.sha1 b/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/junit-platform-launcher-1.12.1.pom.sha1 deleted file mode 100644 index a1af0a2..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.1/junit-platform-launcher-1.12.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c6d96301b5734bf7f0ba5d960369f02be3226272 \ No newline at end of file diff --git a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/_remote.repositories b/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/_remote.repositories deleted file mode 100644 index 4c39229..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.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. -#Thu Apr 02 20:42:19 UTC 2026 -junit-platform-launcher-1.12.2.jar>central= -junit-platform-launcher-1.12.2.pom>central= diff --git a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/junit-platform-launcher-1.12.2.jar b/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/junit-platform-launcher-1.12.2.jar deleted file mode 100644 index 5310fee..0000000 Binary files a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/junit-platform-launcher-1.12.2.jar and /dev/null differ diff --git a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/junit-platform-launcher-1.12.2.jar.sha1 b/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/junit-platform-launcher-1.12.2.jar.sha1 deleted file mode 100644 index 4a6919a..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/junit-platform-launcher-1.12.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -79d49ad13017c67a8bf76e10ba5ac8937d811772 \ No newline at end of file diff --git a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/junit-platform-launcher-1.12.2.pom b/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/junit-platform-launcher-1.12.2.pom deleted file mode 100644 index df2c81d..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/junit-platform-launcher-1.12.2.pom +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - 4.0.0 - org.junit.platform - junit-platform-launcher - 1.12.2 - JUnit Platform Launcher - Module "junit-platform-launcher" 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.12.2 - pom - import - - - - - - org.junit.platform - junit-platform-engine - 1.12.2 - compile - - - org.apiguardian - apiguardian-api - 1.1.2 - compile - - - diff --git a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/junit-platform-launcher-1.12.2.pom.sha1 b/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/junit-platform-launcher-1.12.2.pom.sha1 deleted file mode 100644 index 0e37549..0000000 --- a/.m2/repository/org/junit/platform/junit-platform-launcher/1.12.2/junit-platform-launcher-1.12.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6885d5c49ab9e6cf26caa299bcc983e9dc615b81 \ No newline at end of file diff --git a/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar b/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar deleted file mode 100644 index e7251b7..0000000 Binary files a/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar and /dev/null differ diff --git a/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar.sha1 b/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar.sha1 deleted file mode 100644 index 52f2250..0000000 --- a/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -769c0b82cb2421c8256300e907298a9410a2a3d3 \ No newline at end of file diff --git a/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom b/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom deleted file mode 100644 index 715c11b..0000000 --- a/.m2/repository/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/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom.sha1 b/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom.sha1 deleted file mode 100644 index 9e93e63..0000000 --- a/.m2/repository/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/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/_remote.repositories b/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/_remote.repositories deleted file mode 100644 index 2e673d5..0000000 --- a/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -LatencyUtils-2.0.3.jar>central= -LatencyUtils-2.0.3.pom>central= diff --git a/.m2/repository/org/mockito/mockito-bom/4.11.0/_remote.repositories b/.m2/repository/org/mockito/mockito-bom/4.11.0/_remote.repositories deleted file mode 100644 index 4edafd8..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:44 UTC 2026 -mockito-bom-4.11.0.pom>central= diff --git a/.m2/repository/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom b/.m2/repository/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom deleted file mode 100644 index e042288..0000000 --- a/.m2/repository/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/.m2/repository/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom.sha1 b/.m2/repository/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom.sha1 deleted file mode 100644 index eca6b1c..0000000 --- a/.m2/repository/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/.m2/repository/org/mockito/mockito-bom/5.17.0/_remote.repositories b/.m2/repository/org/mockito/mockito-bom/5.17.0/_remote.repositories deleted file mode 100644 index 05ab28e..0000000 --- a/.m2/repository/org/mockito/mockito-bom/5.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. -#Thu Apr 02 20:37:36 UTC 2026 -mockito-bom-5.17.0.pom>central= diff --git a/.m2/repository/org/mockito/mockito-bom/5.17.0/mockito-bom-5.17.0.pom b/.m2/repository/org/mockito/mockito-bom/5.17.0/mockito-bom-5.17.0.pom deleted file mode 100644 index 9bbf615..0000000 --- a/.m2/repository/org/mockito/mockito-bom/5.17.0/mockito-bom-5.17.0.pom +++ /dev/null @@ -1,98 +0,0 @@ - - - 4.0.0 - org.mockito - mockito-bom - 5.17.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.17.0 - - - org.mockito - mockito-android - 5.17.0 - - - org.mockito - mockito-errorprone - 5.17.0 - - - org.mockito - mockito-junit-jupiter - 5.17.0 - - - org.mockito - mockito-proxy - 5.17.0 - - - org.mockito - mockito-subclass - 5.17.0 - - - - diff --git a/.m2/repository/org/mockito/mockito-bom/5.17.0/mockito-bom-5.17.0.pom.sha1 b/.m2/repository/org/mockito/mockito-bom/5.17.0/mockito-bom-5.17.0.pom.sha1 deleted file mode 100644 index 5db25ad..0000000 --- a/.m2/repository/org/mockito/mockito-bom/5.17.0/mockito-bom-5.17.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -079ec0488607bfbf4d8cce86d7e531dab2b5992b \ No newline at end of file diff --git a/.m2/repository/org/mockito/mockito-bom/5.7.0/_remote.repositories b/.m2/repository/org/mockito/mockito-bom/5.7.0/_remote.repositories deleted file mode 100644 index d7c1e8c..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:12 UTC 2026 -mockito-bom-5.7.0.pom>central= diff --git a/.m2/repository/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom b/.m2/repository/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom deleted file mode 100644 index 3b7536a..0000000 --- a/.m2/repository/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/.m2/repository/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.sha1 b/.m2/repository/org/mockito/mockito-bom/5.7.0/mockito-bom-5.7.0.pom.sha1 deleted file mode 100644 index 7928a92..0000000 --- a/.m2/repository/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/.m2/repository/org/mockito/mockito-core/5.17.0/_remote.repositories b/.m2/repository/org/mockito/mockito-core/5.17.0/_remote.repositories deleted file mode 100644 index 82eb4b8..0000000 --- a/.m2/repository/org/mockito/mockito-core/5.17.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. -#Thu Apr 02 20:38:35 UTC 2026 -mockito-core-5.17.0.jar>central= -mockito-core-5.17.0.pom>central= diff --git a/.m2/repository/org/mockito/mockito-core/5.17.0/mockito-core-5.17.0.jar b/.m2/repository/org/mockito/mockito-core/5.17.0/mockito-core-5.17.0.jar deleted file mode 100644 index 4b63310..0000000 Binary files a/.m2/repository/org/mockito/mockito-core/5.17.0/mockito-core-5.17.0.jar and /dev/null differ diff --git a/.m2/repository/org/mockito/mockito-core/5.17.0/mockito-core-5.17.0.jar.sha1 b/.m2/repository/org/mockito/mockito-core/5.17.0/mockito-core-5.17.0.jar.sha1 deleted file mode 100644 index eb83949..0000000 --- a/.m2/repository/org/mockito/mockito-core/5.17.0/mockito-core-5.17.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f5fe5a2f94eb65f4f83ca0607bfe13ec0d9c6f3b \ No newline at end of file diff --git a/.m2/repository/org/mockito/mockito-core/5.17.0/mockito-core-5.17.0.pom b/.m2/repository/org/mockito/mockito-core/5.17.0/mockito-core-5.17.0.pom deleted file mode 100644 index e61bf1d..0000000 --- a/.m2/repository/org/mockito/mockito-core/5.17.0/mockito-core-5.17.0.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - org.mockito - mockito-core - 5.17.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.15.11 - compile - - - net.bytebuddy - byte-buddy-agent - 1.15.11 - compile - - - org.objenesis - objenesis - 3.3 - runtime - - - diff --git a/.m2/repository/org/mockito/mockito-core/5.17.0/mockito-core-5.17.0.pom.sha1 b/.m2/repository/org/mockito/mockito-core/5.17.0/mockito-core-5.17.0.pom.sha1 deleted file mode 100644 index 6634757..0000000 --- a/.m2/repository/org/mockito/mockito-core/5.17.0/mockito-core-5.17.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -021386b7e176aa5b77d44021929e714842749898 \ No newline at end of file diff --git a/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/_remote.repositories b/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/_remote.repositories deleted file mode 100644 index a5a0cee..0000000 --- a/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.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. -#Thu Apr 02 20:38:35 UTC 2026 -mockito-junit-jupiter-5.17.0.jar>central= -mockito-junit-jupiter-5.17.0.pom>central= diff --git a/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/mockito-junit-jupiter-5.17.0.jar b/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/mockito-junit-jupiter-5.17.0.jar deleted file mode 100644 index 8e12f3c..0000000 Binary files a/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/mockito-junit-jupiter-5.17.0.jar and /dev/null differ diff --git a/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/mockito-junit-jupiter-5.17.0.jar.sha1 b/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/mockito-junit-jupiter-5.17.0.jar.sha1 deleted file mode 100644 index d357aa4..0000000 --- a/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/mockito-junit-jupiter-5.17.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -4399e19e3fb5b55230027583323e4c883d5da07d \ No newline at end of file diff --git a/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/mockito-junit-jupiter-5.17.0.pom b/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/mockito-junit-jupiter-5.17.0.pom deleted file mode 100644 index 5aa3ba9..0000000 --- a/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/mockito-junit-jupiter-5.17.0.pom +++ /dev/null @@ -1,77 +0,0 @@ - - - 4.0.0 - org.mockito - mockito-junit-jupiter - 5.17.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.17.0 - compile - - - org.junit.jupiter - junit-jupiter-api - 5.11.4 - runtime - - - diff --git a/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/mockito-junit-jupiter-5.17.0.pom.sha1 b/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/mockito-junit-jupiter-5.17.0.pom.sha1 deleted file mode 100644 index 34cba25..0000000 --- a/.m2/repository/org/mockito/mockito-junit-jupiter/5.17.0/mockito-junit-jupiter-5.17.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -af2c2ab97b38e79bc453dc72cd4a709cda4cc8e5 \ No newline at end of file diff --git a/.m2/repository/org/mongodb/bson-record-codec/5.5.1/_remote.repositories b/.m2/repository/org/mongodb/bson-record-codec/5.5.1/_remote.repositories deleted file mode 100644 index 06ea9e5..0000000 --- a/.m2/repository/org/mongodb/bson-record-codec/5.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -bson-record-codec-5.5.1.jar>central= -bson-record-codec-5.5.1.pom>central= diff --git a/.m2/repository/org/mongodb/bson-record-codec/5.5.1/bson-record-codec-5.5.1.jar b/.m2/repository/org/mongodb/bson-record-codec/5.5.1/bson-record-codec-5.5.1.jar deleted file mode 100644 index 3f57d74..0000000 Binary files a/.m2/repository/org/mongodb/bson-record-codec/5.5.1/bson-record-codec-5.5.1.jar and /dev/null differ diff --git a/.m2/repository/org/mongodb/bson-record-codec/5.5.1/bson-record-codec-5.5.1.jar.sha1 b/.m2/repository/org/mongodb/bson-record-codec/5.5.1/bson-record-codec-5.5.1.jar.sha1 deleted file mode 100644 index 8e82a35..0000000 --- a/.m2/repository/org/mongodb/bson-record-codec/5.5.1/bson-record-codec-5.5.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ff3e62ca21ffa6fcdffc45d3780ffee0543a3b05 \ No newline at end of file diff --git a/.m2/repository/org/mongodb/bson-record-codec/5.5.1/bson-record-codec-5.5.1.pom b/.m2/repository/org/mongodb/bson-record-codec/5.5.1/bson-record-codec-5.5.1.pom deleted file mode 100644 index b279ad0..0000000 --- a/.m2/repository/org/mongodb/bson-record-codec/5.5.1/bson-record-codec-5.5.1.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - 4.0.0 - org.mongodb - bson-record-codec - 5.5.1 - BSON Record Codec - The BSON Codec for Java records - https://bsonspec.org - - - The Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Various - MongoDB - - - - scm:https://github.com/mongodb/mongo-java-driver.git - scm:https://github.com/mongodb/mongo-java-driver.git - https://github.com/mongodb/mongo-java-driver - - - - org.mongodb - bson - 5.5.1 - compile - - - org.slf4j - slf4j-api - 1.7.6 - compile - true - - - diff --git a/.m2/repository/org/mongodb/bson-record-codec/5.5.1/bson-record-codec-5.5.1.pom.sha1 b/.m2/repository/org/mongodb/bson-record-codec/5.5.1/bson-record-codec-5.5.1.pom.sha1 deleted file mode 100644 index d3d24ee..0000000 --- a/.m2/repository/org/mongodb/bson-record-codec/5.5.1/bson-record-codec-5.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cf6f5ee622355951920e63ec738f1f9cf25cacc8 \ No newline at end of file diff --git a/.m2/repository/org/mongodb/bson/5.5.1/_remote.repositories b/.m2/repository/org/mongodb/bson/5.5.1/_remote.repositories deleted file mode 100644 index b35e221..0000000 --- a/.m2/repository/org/mongodb/bson/5.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -bson-5.5.1.jar>central= -bson-5.5.1.pom>central= diff --git a/.m2/repository/org/mongodb/bson/5.5.1/bson-5.5.1.jar b/.m2/repository/org/mongodb/bson/5.5.1/bson-5.5.1.jar deleted file mode 100644 index 17dd67c..0000000 Binary files a/.m2/repository/org/mongodb/bson/5.5.1/bson-5.5.1.jar and /dev/null differ diff --git a/.m2/repository/org/mongodb/bson/5.5.1/bson-5.5.1.jar.sha1 b/.m2/repository/org/mongodb/bson/5.5.1/bson-5.5.1.jar.sha1 deleted file mode 100644 index d693dc1..0000000 --- a/.m2/repository/org/mongodb/bson/5.5.1/bson-5.5.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -58d899dce48b970ee25995802f78d828bae4a1b6 \ No newline at end of file diff --git a/.m2/repository/org/mongodb/bson/5.5.1/bson-5.5.1.pom b/.m2/repository/org/mongodb/bson/5.5.1/bson-5.5.1.pom deleted file mode 100644 index 7a78bad..0000000 --- a/.m2/repository/org/mongodb/bson/5.5.1/bson-5.5.1.pom +++ /dev/null @@ -1,37 +0,0 @@ - - - 4.0.0 - org.mongodb - bson - 5.5.1 - BSON - The BSON library - https://bsonspec.org - - - The Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Various - MongoDB - - - - scm:https://github.com/mongodb/mongo-java-driver.git - scm:https://github.com/mongodb/mongo-java-driver.git - https://github.com/mongodb/mongo-java-driver - - - - org.slf4j - slf4j-api - 1.7.6 - compile - true - - - diff --git a/.m2/repository/org/mongodb/bson/5.5.1/bson-5.5.1.pom.sha1 b/.m2/repository/org/mongodb/bson/5.5.1/bson-5.5.1.pom.sha1 deleted file mode 100644 index 71ad5ad..0000000 --- a/.m2/repository/org/mongodb/bson/5.5.1/bson-5.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3013e6536bf20004fb3396db7b4f3c9461378a7f \ No newline at end of file diff --git a/.m2/repository/org/mongodb/mongodb-driver-bom/5.5.1/_remote.repositories b/.m2/repository/org/mongodb/mongodb-driver-bom/5.5.1/_remote.repositories deleted file mode 100644 index 21c651d..0000000 --- a/.m2/repository/org/mongodb/mongodb-driver-bom/5.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. -#Thu Apr 02 20:37:36 UTC 2026 -mongodb-driver-bom-5.5.1.pom>central= diff --git a/.m2/repository/org/mongodb/mongodb-driver-bom/5.5.1/mongodb-driver-bom-5.5.1.pom b/.m2/repository/org/mongodb/mongodb-driver-bom/5.5.1/mongodb-driver-bom-5.5.1.pom deleted file mode 100644 index d07bb55..0000000 --- a/.m2/repository/org/mongodb/mongodb-driver-bom/5.5.1/mongodb-driver-bom-5.5.1.pom +++ /dev/null @@ -1,117 +0,0 @@ - - - 4.0.0 - org.mongodb - mongodb-driver-bom - 5.5.1 - pom - bom - This Bill of Materials POM simplifies dependency management when referencing multiple MongoDB Java Driver artifacts in projects using Gradle or Maven. - https://www.mongodb.com/ - - - The Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Various - MongoDB - - - - scm:https://github.com/mongodb/mongo-java-driver.git - scm:https://github.com/mongodb/mongo-java-driver.git - https://github.com/mongodb/mongo-java-driver - - - - - org.mongodb - mongodb-crypt - 5.5.1 - - - org.mongodb - mongodb-driver-core - 5.5.1 - - - org.mongodb - bson - 5.5.1 - - - org.mongodb - bson-record-codec - 5.5.1 - - - org.mongodb - mongodb-driver-sync - 5.5.1 - - - org.mongodb - mongodb-driver-reactivestreams - 5.5.1 - - - org.mongodb - bson-kotlin - 5.5.1 - - - org.mongodb - bson-kotlinx - 5.5.1 - - - org.mongodb - mongodb-driver-kotlin-coroutine - 5.5.1 - - - org.mongodb - mongodb-driver-kotlin-sync - 5.5.1 - - - org.mongodb - mongodb-driver-kotlin-extensions - 5.5.1 - - - org.mongodb.scala - mongo-scala-bson_2.13 - 5.5.1 - - - org.mongodb.scala - mongo-scala-driver_2.13 - 5.5.1 - - - org.mongodb.scala - mongo-scala-bson_2.12 - 5.5.1 - - - org.mongodb.scala - mongo-scala-bson_2.11 - 5.5.1 - - - org.mongodb.scala - mongo-scala-driver_2.12 - 5.5.1 - - - org.mongodb.scala - mongo-scala-driver_2.11 - 5.5.1 - - - - diff --git a/.m2/repository/org/mongodb/mongodb-driver-bom/5.5.1/mongodb-driver-bom-5.5.1.pom.sha1 b/.m2/repository/org/mongodb/mongodb-driver-bom/5.5.1/mongodb-driver-bom-5.5.1.pom.sha1 deleted file mode 100644 index 9746eac..0000000 --- a/.m2/repository/org/mongodb/mongodb-driver-bom/5.5.1/mongodb-driver-bom-5.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -98b9ad6110e7c02a3aae2945a3af20ffdd54ec90 \ No newline at end of file diff --git a/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/_remote.repositories b/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/_remote.repositories deleted file mode 100644 index 0a17c06..0000000 --- a/.m2/repository/org/mongodb/mongodb-driver-core/5.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -mongodb-driver-core-5.5.1.jar>central= -mongodb-driver-core-5.5.1.pom>central= diff --git a/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/mongodb-driver-core-5.5.1.jar b/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/mongodb-driver-core-5.5.1.jar deleted file mode 100644 index f31389e..0000000 Binary files a/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/mongodb-driver-core-5.5.1.jar and /dev/null differ diff --git a/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/mongodb-driver-core-5.5.1.jar.sha1 b/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/mongodb-driver-core-5.5.1.jar.sha1 deleted file mode 100644 index 31b2f74..0000000 --- a/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/mongodb-driver-core-5.5.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8e4056228072c05edec24f325cca34194983ad84 \ No newline at end of file diff --git a/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/mongodb-driver-core-5.5.1.pom b/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/mongodb-driver-core-5.5.1.pom deleted file mode 100644 index 40064e2..0000000 --- a/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/mongodb-driver-core-5.5.1.pom +++ /dev/null @@ -1,148 +0,0 @@ - - - 4.0.0 - org.mongodb - mongodb-driver-core - 5.5.1 - MongoDB Java Driver Core - Shared components for the Synchronous and Reactive Streams implementations of the MongoDB Java Driver. - https://www.mongodb.com/ - - - The Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Various - MongoDB - - - - scm:https://github.com/mongodb/mongo-java-driver.git - scm:https://github.com/mongodb/mongo-java-driver.git - https://github.com/mongodb/mongo-java-driver - - - - - io.netty - netty-bom - 4.1.87.Final - pom - import - - - - - - org.mongodb - bson - 5.5.1 - compile - - - org.mongodb - bson-record-codec - 5.5.1 - runtime - - - org.slf4j - slf4j-api - 1.7.6 - compile - true - - - io.netty - netty-buffer - compile - true - - - io.netty - netty-handler - compile - true - - - io.netty - netty-transport - compile - true - - - org.mongodb - bson-kotlin - 5.5.1 - runtime - true - - - org.mongodb - bson-kotlinx - 5.5.1 - runtime - true - - - org.mongodb - mongodb-crypt - 5.5.1 - runtime - true - - - com.github.jnr - jnr-unixsocket - 0.38.17 - runtime - true - - - com.amazonaws - aws-java-sdk-core - 1.12.782 - runtime - true - - - com.amazonaws - aws-java-sdk-sts - 1.12.782 - runtime - true - - - software.amazon.awssdk - auth - 2.30.31 - runtime - true - - - software.amazon.awssdk - sts - 2.30.31 - runtime - true - - - org.xerial.snappy - snappy-java - 1.1.10.3 - runtime - true - - - com.github.luben - zstd-jni - 1.5.5-3 - runtime - true - - - diff --git a/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/mongodb-driver-core-5.5.1.pom.sha1 b/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/mongodb-driver-core-5.5.1.pom.sha1 deleted file mode 100644 index b84ee94..0000000 --- a/.m2/repository/org/mongodb/mongodb-driver-core/5.5.1/mongodb-driver-core-5.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -926085e4adf23f3b3f3695d5d10e8a867b1ba100 \ No newline at end of file diff --git a/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/_remote.repositories b/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/_remote.repositories deleted file mode 100644 index 278c3df..0000000 --- a/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -mongodb-driver-sync-5.5.1.jar>central= -mongodb-driver-sync-5.5.1.pom>central= diff --git a/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/mongodb-driver-sync-5.5.1.jar b/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/mongodb-driver-sync-5.5.1.jar deleted file mode 100644 index 2fe74a8..0000000 Binary files a/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/mongodb-driver-sync-5.5.1.jar and /dev/null differ diff --git a/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/mongodb-driver-sync-5.5.1.jar.sha1 b/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/mongodb-driver-sync-5.5.1.jar.sha1 deleted file mode 100644 index bf6c75a..0000000 --- a/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/mongodb-driver-sync-5.5.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7e8d22f9567868a73eede1bcb281e4f87537626c \ No newline at end of file diff --git a/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/mongodb-driver-sync-5.5.1.pom b/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/mongodb-driver-sync-5.5.1.pom deleted file mode 100644 index 36dad5d..0000000 --- a/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/mongodb-driver-sync-5.5.1.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - 4.0.0 - org.mongodb - mongodb-driver-sync - 5.5.1 - MongoDB Driver - The MongoDB Synchronous Driver - https://www.mongodb.com/ - - - The Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Various - MongoDB - - - - scm:https://github.com/mongodb/mongo-java-driver.git - scm:https://github.com/mongodb/mongo-java-driver.git - https://github.com/mongodb/mongo-java-driver - - - - org.mongodb - bson - 5.5.1 - compile - - - org.mongodb - mongodb-driver-core - 5.5.1 - compile - - - org.slf4j - slf4j-api - 1.7.6 - compile - true - - - diff --git a/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/mongodb-driver-sync-5.5.1.pom.sha1 b/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/mongodb-driver-sync-5.5.1.pom.sha1 deleted file mode 100644 index eb1b391..0000000 --- a/.m2/repository/org/mongodb/mongodb-driver-sync/5.5.1/mongodb-driver-sync-5.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d2a79fae603d4aef7cf02f7d4a704742265f3fce \ No newline at end of file diff --git a/.m2/repository/org/objenesis/objenesis-parent/3.3/_remote.repositories b/.m2/repository/org/objenesis/objenesis-parent/3.3/_remote.repositories deleted file mode 100644 index 0418676..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:59 UTC 2026 -objenesis-parent-3.3.pom>central= diff --git a/.m2/repository/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom b/.m2/repository/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom deleted file mode 100644 index 7c30871..0000000 --- a/.m2/repository/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/.m2/repository/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom.sha1 b/.m2/repository/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom.sha1 deleted file mode 100644 index 5533a5d..0000000 --- a/.m2/repository/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/.m2/repository/org/objenesis/objenesis/3.3/_remote.repositories b/.m2/repository/org/objenesis/objenesis/3.3/_remote.repositories deleted file mode 100644 index a327707..0000000 --- a/.m2/repository/org/objenesis/objenesis/3.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -objenesis-3.3.jar>central= -objenesis-3.3.pom>central= diff --git a/.m2/repository/org/objenesis/objenesis/3.3/objenesis-3.3.jar b/.m2/repository/org/objenesis/objenesis/3.3/objenesis-3.3.jar deleted file mode 100644 index d660190..0000000 Binary files a/.m2/repository/org/objenesis/objenesis/3.3/objenesis-3.3.jar and /dev/null differ diff --git a/.m2/repository/org/objenesis/objenesis/3.3/objenesis-3.3.jar.sha1 b/.m2/repository/org/objenesis/objenesis/3.3/objenesis-3.3.jar.sha1 deleted file mode 100644 index 5af6ca9..0000000 --- a/.m2/repository/org/objenesis/objenesis/3.3/objenesis-3.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1049c09f1de4331e8193e579448d0916d75b7631 \ No newline at end of file diff --git a/.m2/repository/org/objenesis/objenesis/3.3/objenesis-3.3.pom b/.m2/repository/org/objenesis/objenesis/3.3/objenesis-3.3.pom deleted file mode 100644 index 8a9e057..0000000 --- a/.m2/repository/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/.m2/repository/org/objenesis/objenesis/3.3/objenesis-3.3.pom.sha1 b/.m2/repository/org/objenesis/objenesis/3.3/objenesis-3.3.pom.sha1 deleted file mode 100644 index cb4a0de..0000000 --- a/.m2/repository/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/.m2/repository/org/opentest4j/opentest4j/1.3.0/_remote.repositories b/.m2/repository/org/opentest4j/opentest4j/1.3.0/_remote.repositories deleted file mode 100644 index 177b7ca..0000000 --- a/.m2/repository/org/opentest4j/opentest4j/1.3.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. -#Thu Apr 02 20:38:35 UTC 2026 -opentest4j-1.3.0.jar>central= -opentest4j-1.3.0.pom>central= diff --git a/.m2/repository/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar b/.m2/repository/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar deleted file mode 100644 index 7ec7bc5..0000000 Binary files a/.m2/repository/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar and /dev/null differ diff --git a/.m2/repository/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar.sha1 b/.m2/repository/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar.sha1 deleted file mode 100644 index d18f43f..0000000 --- a/.m2/repository/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -152ea56b3a72f655d4fd677fc0ef2596c3dd5e6e \ No newline at end of file diff --git a/.m2/repository/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom b/.m2/repository/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom deleted file mode 100644 index c89bd03..0000000 --- a/.m2/repository/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/.m2/repository/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom.sha1 b/.m2/repository/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom.sha1 deleted file mode 100644 index 598cb5f..0000000 --- a/.m2/repository/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/.m2/repository/org/ow2/asm/asm-bom/9.7/_remote.repositories b/.m2/repository/org/ow2/asm/asm-bom/9.7/_remote.repositories deleted file mode 100644 index beeb72e..0000000 --- a/.m2/repository/org/ow2/asm/asm-bom/9.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. -#Thu Apr 02 20:37:40 UTC 2026 -asm-bom-9.7.pom>central= diff --git a/.m2/repository/org/ow2/asm/asm-bom/9.7/asm-bom-9.7.pom b/.m2/repository/org/ow2/asm/asm-bom/9.7/asm-bom-9.7.pom deleted file mode 100644 index 88242a6..0000000 --- a/.m2/repository/org/ow2/asm/asm-bom/9.7/asm-bom-9.7.pom +++ /dev/null @@ -1,105 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm-bom - 9.7 - pom - 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.7 - - - org.ow2.asm - asm-tree - 9.7 - - - org.ow2.asm - asm-analysis - 9.7 - - - org.ow2.asm - asm-util - 9.7 - - - org.ow2.asm - asm-commons - 9.7 - - - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/.m2/repository/org/ow2/asm/asm-bom/9.7/asm-bom-9.7.pom.sha1 b/.m2/repository/org/ow2/asm/asm-bom/9.7/asm-bom-9.7.pom.sha1 deleted file mode 100644 index 32a1db5..0000000 --- a/.m2/repository/org/ow2/asm/asm-bom/9.7/asm-bom-9.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7f0450961f056bbbbc096cb5a7ee73cf0e0567a4 \ No newline at end of file diff --git a/.m2/repository/org/ow2/asm/asm-commons/9.7/_remote.repositories b/.m2/repository/org/ow2/asm/asm-commons/9.7/_remote.repositories deleted file mode 100644 index 1eb4b00..0000000 --- a/.m2/repository/org/ow2/asm/asm-commons/9.7/_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. -#Thu Apr 02 20:38:39 UTC 2026 -asm-commons-9.7.jar>central= -asm-commons-9.7.pom>central= diff --git a/.m2/repository/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.jar b/.m2/repository/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.jar deleted file mode 100644 index 6a7d3a1..0000000 Binary files a/.m2/repository/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.jar and /dev/null differ diff --git a/.m2/repository/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.jar.sha1 b/.m2/repository/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.jar.sha1 deleted file mode 100644 index 1de4404..0000000 --- a/.m2/repository/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e86dda4696d3c185fcc95d8d311904e7ce38a53f \ No newline at end of file diff --git a/.m2/repository/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.pom b/.m2/repository/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.pom deleted file mode 100644 index f33539c..0000000 --- a/.m2/repository/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.pom +++ /dev/null @@ -1,89 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm-commons - 9.7 - 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.7 - compile - - - org.ow2.asm - asm-tree - 9.7 - compile - - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/.m2/repository/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.pom.sha1 b/.m2/repository/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.pom.sha1 deleted file mode 100644 index e57d8eb..0000000 --- a/.m2/repository/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0c3096037f951d9ccbc7b236a5d70376b101582f \ No newline at end of file diff --git a/.m2/repository/org/ow2/asm/asm-tree/9.7/_remote.repositories b/.m2/repository/org/ow2/asm/asm-tree/9.7/_remote.repositories deleted file mode 100644 index 7d24da5..0000000 --- a/.m2/repository/org/ow2/asm/asm-tree/9.7/_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. -#Thu Apr 02 20:38:39 UTC 2026 -asm-tree-9.7.jar>central= -asm-tree-9.7.pom>central= diff --git a/.m2/repository/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.jar b/.m2/repository/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.jar deleted file mode 100644 index bbb3ca3..0000000 Binary files a/.m2/repository/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.jar and /dev/null differ diff --git a/.m2/repository/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.jar.sha1 b/.m2/repository/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.jar.sha1 deleted file mode 100644 index d4eeef6..0000000 --- a/.m2/repository/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e446a17b175bfb733b87c5c2560ccb4e57d69f1a \ No newline at end of file diff --git a/.m2/repository/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.pom b/.m2/repository/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.pom deleted file mode 100644 index 08dfc7a..0000000 --- a/.m2/repository/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm-tree - 9.7 - 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.7 - compile - - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/.m2/repository/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.pom.sha1 b/.m2/repository/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.pom.sha1 deleted file mode 100644 index c84241a..0000000 --- a/.m2/repository/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0a7c160e10239da3d67e35828c792392fbb101b6 \ No newline at end of file diff --git a/.m2/repository/org/ow2/asm/asm/9.7.1/_remote.repositories b/.m2/repository/org/ow2/asm/asm/9.7.1/_remote.repositories deleted file mode 100644 index 70180c8..0000000 --- a/.m2/repository/org/ow2/asm/asm/9.7.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. -#Thu Apr 02 20:38:35 UTC 2026 -asm-9.7.1.jar>central= -asm-9.7.1.pom>central= diff --git a/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar b/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar deleted file mode 100644 index fe3d001..0000000 Binary files a/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar and /dev/null differ diff --git a/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar.sha1 b/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar.sha1 deleted file mode 100644 index ba6826c..0000000 --- a/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f0ed132a49244b042cd0e15702ab9f2ce3cc8436 \ No newline at end of file diff --git a/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.pom b/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.pom deleted file mode 100644 index 103a5ce..0000000 --- a/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm - 9.7.1 - 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/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.pom.sha1 b/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.pom.sha1 deleted file mode 100644 index ee84362..0000000 --- a/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -381a4b6892969305d88ee13c53e88eabff82d382 \ No newline at end of file diff --git a/.m2/repository/org/ow2/asm/asm/9.7/_remote.repositories b/.m2/repository/org/ow2/asm/asm/9.7/_remote.repositories deleted file mode 100644 index d19d8a1..0000000 --- a/.m2/repository/org/ow2/asm/asm/9.7/_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. -#Thu Apr 02 20:38:39 UTC 2026 -asm-9.7.jar>central= -asm-9.7.pom>central= diff --git a/.m2/repository/org/ow2/asm/asm/9.7/asm-9.7.jar b/.m2/repository/org/ow2/asm/asm/9.7/asm-9.7.jar deleted file mode 100644 index fee9b02..0000000 Binary files a/.m2/repository/org/ow2/asm/asm/9.7/asm-9.7.jar and /dev/null differ diff --git a/.m2/repository/org/ow2/asm/asm/9.7/asm-9.7.jar.sha1 b/.m2/repository/org/ow2/asm/asm/9.7/asm-9.7.jar.sha1 deleted file mode 100644 index 84c9a97..0000000 --- a/.m2/repository/org/ow2/asm/asm/9.7/asm-9.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -073d7b3086e14beb604ced229c302feff6449723 \ No newline at end of file diff --git a/.m2/repository/org/ow2/asm/asm/9.7/asm-9.7.pom b/.m2/repository/org/ow2/asm/asm/9.7/asm-9.7.pom deleted file mode 100644 index 2e02d59..0000000 --- a/.m2/repository/org/ow2/asm/asm/9.7/asm-9.7.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm - 9.7 - 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/.m2/repository/org/ow2/asm/asm/9.7/asm-9.7.pom.sha1 b/.m2/repository/org/ow2/asm/asm/9.7/asm-9.7.pom.sha1 deleted file mode 100644 index 69f39bc..0000000 --- a/.m2/repository/org/ow2/asm/asm/9.7/asm-9.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e2568079bd69f0fdf35fe2d9e7cd9b16db8eff94 \ No newline at end of file diff --git a/.m2/repository/org/ow2/ow2/1.5.1/_remote.repositories b/.m2/repository/org/ow2/ow2/1.5.1/_remote.repositories deleted file mode 100644 index 5fc8433..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:40 UTC 2026 -ow2-1.5.1.pom>central= diff --git a/.m2/repository/org/ow2/ow2/1.5.1/ow2-1.5.1.pom b/.m2/repository/org/ow2/ow2/1.5.1/ow2-1.5.1.pom deleted file mode 100644 index 49837b7..0000000 --- a/.m2/repository/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/.m2/repository/org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1 b/.m2/repository/org/ow2/ow2/1.5.1/ow2-1.5.1.pom.sha1 deleted file mode 100644 index cc66a59..0000000 --- a/.m2/repository/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/.m2/repository/org/projectlombok/lombok/1.18.36/_remote.repositories b/.m2/repository/org/projectlombok/lombok/1.18.36/_remote.repositories deleted file mode 100644 index 6d95700..0000000 --- a/.m2/repository/org/projectlombok/lombok/1.18.36/_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. -#Thu Apr 02 20:38:43 UTC 2026 -lombok-1.18.36.jar>central= -lombok-1.18.36.pom>central= diff --git a/.m2/repository/org/projectlombok/lombok/1.18.36/lombok-1.18.36.jar b/.m2/repository/org/projectlombok/lombok/1.18.36/lombok-1.18.36.jar deleted file mode 100644 index 4341a40..0000000 Binary files a/.m2/repository/org/projectlombok/lombok/1.18.36/lombok-1.18.36.jar and /dev/null differ diff --git a/.m2/repository/org/projectlombok/lombok/1.18.36/lombok-1.18.36.jar.sha1 b/.m2/repository/org/projectlombok/lombok/1.18.36/lombok-1.18.36.jar.sha1 deleted file mode 100644 index 48643a9..0000000 --- a/.m2/repository/org/projectlombok/lombok/1.18.36/lombok-1.18.36.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5a30490a6e14977d97d9c73c924c1f1b5311ea95 \ No newline at end of file diff --git a/.m2/repository/org/projectlombok/lombok/1.18.36/lombok-1.18.36.pom b/.m2/repository/org/projectlombok/lombok/1.18.36/lombok-1.18.36.pom deleted file mode 100644 index a360cb6..0000000 --- a/.m2/repository/org/projectlombok/lombok/1.18.36/lombok-1.18.36.pom +++ /dev/null @@ -1,43 +0,0 @@ - - 4.0.0 - org.projectlombok - lombok - jar - 1.18.36 - 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/.m2/repository/org/projectlombok/lombok/1.18.36/lombok-1.18.36.pom.sha1 b/.m2/repository/org/projectlombok/lombok/1.18.36/lombok-1.18.36.pom.sha1 deleted file mode 100644 index a5bf6b3..0000000 --- a/.m2/repository/org/projectlombok/lombok/1.18.36/lombok-1.18.36.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9b05b5f6bc4dd3853640f34f690879a0d6f8eb0d \ No newline at end of file diff --git a/.m2/repository/org/projectlombok/lombok/1.18.38/_remote.repositories b/.m2/repository/org/projectlombok/lombok/1.18.38/_remote.repositories deleted file mode 100644 index 35d1141..0000000 --- a/.m2/repository/org/projectlombok/lombok/1.18.38/_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. -#Thu Apr 02 20:38:35 UTC 2026 -lombok-1.18.38.jar>central= -lombok-1.18.38.pom>central= diff --git a/.m2/repository/org/projectlombok/lombok/1.18.38/lombok-1.18.38.jar b/.m2/repository/org/projectlombok/lombok/1.18.38/lombok-1.18.38.jar deleted file mode 100644 index 977dadc..0000000 Binary files a/.m2/repository/org/projectlombok/lombok/1.18.38/lombok-1.18.38.jar and /dev/null differ diff --git a/.m2/repository/org/projectlombok/lombok/1.18.38/lombok-1.18.38.jar.sha1 b/.m2/repository/org/projectlombok/lombok/1.18.38/lombok-1.18.38.jar.sha1 deleted file mode 100644 index 01d05f5..0000000 --- a/.m2/repository/org/projectlombok/lombok/1.18.38/lombok-1.18.38.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -57f8f5e02e92a30fd21b80cbd426a4172b5f8e29 \ No newline at end of file diff --git a/.m2/repository/org/projectlombok/lombok/1.18.38/lombok-1.18.38.pom b/.m2/repository/org/projectlombok/lombok/1.18.38/lombok-1.18.38.pom deleted file mode 100644 index d916ccb..0000000 --- a/.m2/repository/org/projectlombok/lombok/1.18.38/lombok-1.18.38.pom +++ /dev/null @@ -1,43 +0,0 @@ - - 4.0.0 - org.projectlombok - lombok - jar - 1.18.38 - 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/.m2/repository/org/projectlombok/lombok/1.18.38/lombok-1.18.38.pom.sha1 b/.m2/repository/org/projectlombok/lombok/1.18.38/lombok-1.18.38.pom.sha1 deleted file mode 100644 index c4fd25c..0000000 --- a/.m2/repository/org/projectlombok/lombok/1.18.38/lombok-1.18.38.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dd0a51ff5751ae2e5c56fc049682a52a684d3ebc \ No newline at end of file diff --git a/.m2/repository/org/reactivestreams/reactive-streams/1.0.4/_remote.repositories b/.m2/repository/org/reactivestreams/reactive-streams/1.0.4/_remote.repositories deleted file mode 100644 index 0d5e2ec..0000000 --- a/.m2/repository/org/reactivestreams/reactive-streams/1.0.4/_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. -#Thu Apr 02 20:38:35 UTC 2026 -reactive-streams-1.0.4.jar>central= -reactive-streams-1.0.4.pom>central= diff --git a/.m2/repository/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar b/.m2/repository/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar deleted file mode 100644 index e58c483..0000000 Binary files a/.m2/repository/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar and /dev/null differ diff --git a/.m2/repository/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar.sha1 b/.m2/repository/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar.sha1 deleted file mode 100644 index 45a80e3..0000000 --- a/.m2/repository/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3864a1320d97d7b045f729a326e1e077661f31b7 \ No newline at end of file diff --git a/.m2/repository/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom b/.m2/repository/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom deleted file mode 100644 index c5c0246..0000000 --- a/.m2/repository/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/.m2/repository/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom.sha1 b/.m2/repository/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom.sha1 deleted file mode 100644 index 991887e..0000000 --- a/.m2/repository/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/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.14.1/_remote.repositories b/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.14.1/_remote.repositories deleted file mode 100644 index 75d1323..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:13 UTC 2026 -selenium-bom-4.14.1.pom>central= diff --git a/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom b/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom deleted file mode 100644 index ce20f8d..0000000 --- a/.m2/repository/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/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.sha1 b/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.14.1/selenium-bom-4.14.1.pom.sha1 deleted file mode 100644 index 8e25d09..0000000 --- a/.m2/repository/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/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.31.0/_remote.repositories b/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.31.0/_remote.repositories deleted file mode 100644 index b693c9f..0000000 --- a/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.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. -#Thu Apr 02 20:37:38 UTC 2026 -selenium-bom-4.31.0.pom>central= diff --git a/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.31.0/selenium-bom-4.31.0.pom b/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.31.0/selenium-bom-4.31.0.pom deleted file mode 100644 index 663ce6f..0000000 --- a/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.31.0/selenium-bom-4.31.0.pom +++ /dev/null @@ -1,174 +0,0 @@ - - - - 4.0.0 - - org.seleniumhq.selenium - selenium-bom - 4.31.0 - 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.31.0 - - - org.seleniumhq.selenium - selenium-chrome-driver - 4.31.0 - - - org.seleniumhq.selenium - selenium-chromium-driver - 4.31.0 - - - org.seleniumhq.selenium - selenium-devtools-v133 - 4.31.0 - - - org.seleniumhq.selenium - selenium-devtools-v134 - 4.31.0 - - - org.seleniumhq.selenium - selenium-devtools-v135 - 4.31.0 - - - org.seleniumhq.selenium - selenium-edge-driver - 4.31.0 - - - org.seleniumhq.selenium - selenium-firefox-driver - 4.31.0 - - - org.seleniumhq.selenium - selenium-grid - 4.31.0 - - - org.seleniumhq.selenium - selenium-http - 4.31.0 - - - org.seleniumhq.selenium - selenium-ie-driver - 4.31.0 - - - org.seleniumhq.selenium - selenium-java - 4.31.0 - - - org.seleniumhq.selenium - selenium-json - 4.31.0 - - - org.seleniumhq.selenium - selenium-manager - 4.31.0 - - - org.seleniumhq.selenium - selenium-remote-driver - 4.31.0 - - - org.seleniumhq.selenium - selenium-safari-driver - 4.31.0 - - - org.seleniumhq.selenium - selenium-session-map-jdbc - 4.31.0 - - - org.seleniumhq.selenium - selenium-session-map-redis - 4.31.0 - - - org.seleniumhq.selenium - selenium-support - 4.31.0 - - - - diff --git a/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.31.0/selenium-bom-4.31.0.pom.sha1 b/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.31.0/selenium-bom-4.31.0.pom.sha1 deleted file mode 100644 index a908bca..0000000 --- a/.m2/repository/org/seleniumhq/selenium/selenium-bom/4.31.0/selenium-bom-4.31.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b876c0e4cca0a0d421db60cb74348c11e293ba28 \ No newline at end of file diff --git a/.m2/repository/org/skyscreamer/jsonassert/1.5.3/_remote.repositories b/.m2/repository/org/skyscreamer/jsonassert/1.5.3/_remote.repositories deleted file mode 100644 index 7e0dc99..0000000 --- a/.m2/repository/org/skyscreamer/jsonassert/1.5.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -jsonassert-1.5.3.jar>central= -jsonassert-1.5.3.pom>central= diff --git a/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.jar b/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.jar deleted file mode 100644 index e30349c..0000000 Binary files a/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.jar and /dev/null differ diff --git a/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.jar.sha1 b/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.jar.sha1 deleted file mode 100644 index 4f67236..0000000 --- a/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -aaa43e0823d2a0e106e8754d6a9c4ab24e05e9bc \ No newline at end of file diff --git a/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.pom b/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.pom deleted file mode 100644 index 25c7f7f..0000000 --- a/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.pom +++ /dev/null @@ -1,182 +0,0 @@ - - - 4.0.0 - - org.skyscreamer - jsonassert - 1.5.3 - jar - - JSONassert - Write JSON unit tests in less code. Great for testing REST interfaces. - https://github.com/skyscreamer/JSONassert - - - 8 - - - - - 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 - - - hertzsprung - James Shaw - - - cepage - Corby Page - corby@skyscreamer.org - - - - - - - com.vaadin.external.google - android-json - 0.0.20131108.vaadin1 - - - junit - junit - 4.13.2 - test - - - org.hamcrest - hamcrest - 2.2 - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.11.0 - - - org.apache.maven.plugins - maven-site-plugin - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.7 - true - - ossrh - https://oss.sonatype.org/ - false - - - - com.thoughtworks.xstream - xstream - 1.4.15 - - - - - - - org.apache.maven.scm - maven-scm-provider-gitexe - 1.12.2 - - - org.apache.maven.scm - maven-scm-manager-plexus - 1.12.2 - - - org.kathrynhuxtable.maven.wagon - wagon-gitsite - 0.3.1 - - - - - - - github-project-site - gitsite:git@github.com/skyscreamer/JSONassert.git - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - - - deploy - - - - 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 - - - - - ${java.home}/bin/javadoc - ${maven.compiler.release} - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.pom.sha1 b/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.pom.sha1 deleted file mode 100644 index 4a016b3..0000000 --- a/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3a70866a77f30edb22785baf9a21be61051f5e38 \ No newline at end of file diff --git a/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/_remote.repositories b/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/_remote.repositories deleted file mode 100644 index fa94626..0000000 --- a/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -jul-to-slf4j-2.0.17.jar>central= -jul-to-slf4j-2.0.17.pom>central= diff --git a/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.jar b/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.jar deleted file mode 100644 index 66c0a7b..0000000 Binary files a/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.jar and /dev/null differ diff --git a/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.jar.sha1 b/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.jar.sha1 deleted file mode 100644 index 548ad84..0000000 --- a/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -524cb6ccc2b68a57604750e1ab8b13b5a786a6aa \ No newline at end of file diff --git a/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.pom b/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.pom deleted file mode 100644 index 1bc40af..0000000 --- a/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - - 4.0.0 - - - org.slf4j - slf4j-parent - 2.0.17 - ../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/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.pom.sha1 b/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.pom.sha1 deleted file mode 100644 index 0e182e5..0000000 --- a/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ad7bb01822de6d6944e06310526b400fcb929a8c \ No newline at end of file diff --git a/.m2/repository/org/slf4j/slf4j-api/1.7.36/_remote.repositories b/.m2/repository/org/slf4j/slf4j-api/1.7.36/_remote.repositories deleted file mode 100644 index 84797fb..0000000 --- a/.m2/repository/org/slf4j/slf4j-api/1.7.36/_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. -#Thu Apr 02 20:38:39 UTC 2026 -slf4j-api-1.7.36.jar>central= -slf4j-api-1.7.36.pom>central= diff --git a/.m2/repository/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar b/.m2/repository/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar deleted file mode 100644 index 7d3ce68..0000000 Binary files a/.m2/repository/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar and /dev/null differ diff --git a/.m2/repository/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar.sha1 b/.m2/repository/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar.sha1 deleted file mode 100644 index 77b9917..0000000 --- a/.m2/repository/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -6c62681a2f655b49963a5983b8b0950a6120ae14 \ No newline at end of file diff --git a/.m2/repository/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom b/.m2/repository/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom deleted file mode 100644 index a3fb97c..0000000 --- a/.m2/repository/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom +++ /dev/null @@ -1,85 +0,0 @@ - - - - 4.0.0 - - - org.slf4j - slf4j-parent - 1.7.36 - - - slf4j-api - - jar - SLF4J API Module - The slf4j API - - http://www.slf4j.org - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - - org.slf4j.impl.StaticMDCBinder - org.slf4j.impl.StaticLoggerBinder - org.slf4j.impl.StaticMarkerBinder - - - - - org.apache.maven.plugins - maven-surefire-plugin - - once - plain - false - - **/AllTest.java - **/PackageTest.java - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - bundle-test-jar - package - - test-jar - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - process-classes - - run - - - - - - Removing slf4j-api's dummy StaticLoggerBinder and StaticMarkerBinder - - - - - - - - diff --git a/.m2/repository/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom.sha1 b/.m2/repository/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom.sha1 deleted file mode 100644 index 245010b..0000000 --- a/.m2/repository/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -749f6995b1d6591a417ca4fd19cdbddabae16fd1 \ No newline at end of file diff --git a/.m2/repository/org/slf4j/slf4j-api/2.0.17/_remote.repositories b/.m2/repository/org/slf4j/slf4j-api/2.0.17/_remote.repositories deleted file mode 100644 index 15f149e..0000000 --- a/.m2/repository/org/slf4j/slf4j-api/2.0.17/_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. -#Thu Apr 02 20:38:35 UTC 2026 -slf4j-api-2.0.17.jar>central= -slf4j-api-2.0.17.pom>central= diff --git a/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar b/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar deleted file mode 100644 index 26b1545..0000000 Binary files a/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar and /dev/null differ diff --git a/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar.sha1 b/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar.sha1 deleted file mode 100644 index 435f6c1..0000000 --- a/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d9e58ac9c7779ba3bf8142aff6c830617a7fe60f \ No newline at end of file diff --git a/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.pom b/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.pom deleted file mode 100644 index 81b540c..0000000 --- a/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - 4.0.0 - - - org.slf4j - slf4j-parent - 2.0.17 - ../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/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.pom.sha1 b/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.pom.sha1 deleted file mode 100644 index 165fcb7..0000000 --- a/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0570964f8e6716b09c354c6e334ba1a092464d85 \ No newline at end of file diff --git a/.m2/repository/org/slf4j/slf4j-bom/2.0.17/_remote.repositories b/.m2/repository/org/slf4j/slf4j-bom/2.0.17/_remote.repositories deleted file mode 100644 index 636f8b5..0000000 --- a/.m2/repository/org/slf4j/slf4j-bom/2.0.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. -#Thu Apr 02 20:37:43 UTC 2026 -slf4j-bom-2.0.17.pom>central= diff --git a/.m2/repository/org/slf4j/slf4j-bom/2.0.17/slf4j-bom-2.0.17.pom b/.m2/repository/org/slf4j/slf4j-bom/2.0.17/slf4j-bom-2.0.17.pom deleted file mode 100644 index f2702eb..0000000 --- a/.m2/repository/org/slf4j/slf4j-bom/2.0.17/slf4j-bom-2.0.17.pom +++ /dev/null @@ -1,249 +0,0 @@ - - - - 4.0.0 - - org.slf4j - slf4j-bom - 2.0.17 - pom - - http://www.slf4j.org - - SLF4J BOM - SLF4J project BOM - - - - MIT - https://opensource.org/license/mit - 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/.m2/repository/org/slf4j/slf4j-bom/2.0.17/slf4j-bom-2.0.17.pom.sha1 b/.m2/repository/org/slf4j/slf4j-bom/2.0.17/slf4j-bom-2.0.17.pom.sha1 deleted file mode 100644 index 111c548..0000000 --- a/.m2/repository/org/slf4j/slf4j-bom/2.0.17/slf4j-bom-2.0.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -abbc25a81a3bc8ccacdbd9150224250e4a66542a \ No newline at end of file diff --git a/.m2/repository/org/slf4j/slf4j-parent/1.7.36/_remote.repositories b/.m2/repository/org/slf4j/slf4j-parent/1.7.36/_remote.repositories deleted file mode 100644 index e38398e..0000000 --- a/.m2/repository/org/slf4j/slf4j-parent/1.7.36/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 02 20:38:36 UTC 2026 -slf4j-parent-1.7.36.pom>central= diff --git a/.m2/repository/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom b/.m2/repository/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom deleted file mode 100644 index 3291d6b..0000000 --- a/.m2/repository/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom +++ /dev/null @@ -1,436 +0,0 @@ - - - - 4.0.0 - - org.slf4j - slf4j-parent - 1.7.36 - - pom - SLF4J - Top SLF4J project pom.xml file - http://www.slf4j.org - - - QOS.ch - http://www.qos.ch - - 2005 - - - - MIT License - http://www.opensource.org/licenses/mit-license.php - repo - - - - - https://github.com/qos-ch/slf4j - git@github.com:qos-ch/slf4j.git - - - - - 2022-02-08T13:31:00Z - - 1.5 - ${required.jdk.version} - ${required.jdk.version} - UTF-8 - UTF-8 - UTF-8 - - 1.6.0 - 0.8.1 - 1.2.19 - 1.2.10 - 4.13 - 3.3 - 3.2.0 - 3.2.0 - 3.1.0 - none - - - - - ceki - Ceki Gulcu - ceki@qos.ch - - - - - slf4j-api - slf4j-simple - slf4j-nop - slf4j-jdk14 - slf4j-log4j12 - slf4j-reload4j - slf4j-jcl - slf4j-android - slf4j-ext - jcl-over-slf4j - log4j-over-slf4j - jul-to-slf4j - osgi-over-slf4j - integration - slf4j-site - slf4j-migrator - - - - - junit - junit - ${junit.version} - test - - - - - - - - org.slf4j - slf4j-api - ${project.version} - - - - org.slf4j - slf4j-jdk14 - ${project.version} - - - - ch.qos.reload4j - reload4j - ${reload4j.version} - - - - ch.qos.cal10n - cal10n-api - ${cal10n.version} - - - - - - - - - org.apache.maven.wagon - wagon-ssh - 2.0 - - - - - - ${project.basedir}/src/main/resources - true - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.14 - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.3 - - ${required.jdk.version} - ${required.jdk.version} - - - - - org.apache.maven.plugins - maven-jar-plugin - ${maven-jar-plugin.version} - - - - ${parsedVersion.osgiVersion} - ${project.description} - ${maven.compiler.source} - ${maven.compiler.target} - ${project.version} - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - true - - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - package - - jar - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.19.1 - - 2C - true - plain - false - - **/AllTest.java - **/PackageTest.java - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2 - - - src/main/assembly/source.xml - - slf4j-${project.version} - false - target/site/dist/ - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.7 - - - parse-version - - parse-version - - - - - - - - org.apache.maven.plugins - maven-site-plugin - ${maven-site-plugin.version} - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.3 - - true - target/site/apidocs/ - true - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${javadoc.plugin.version} - - true - none - - - org.slf4j.migrator:org.slf4j.migrator.* - - - http://java.sun.com/j2se/1.5.0/docs/api - - - - - SLF4J packages - org.slf4j:org.slf4j.* - - - - 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 - - - - Apache log4j - org.apache.log4j:org.apache.log4j.* - - - - - - - - - - - - - - - skipTests - - true - - - - - javadocjar - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${javadoc.plugin.version} - - none - - - - attach-javadocs - - jar - - - - - - - - - - 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 - -
-
-
-
- - - - mc-release - Local Maven repository of releases - http://mc-repo.googlecode.com/svn/maven2/releases - - false - - - true - - - -
- - - sign-artifacts - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - - -
- - - - - - - qos_ch - scp://te.qos.ch/var/www/www.slf4j.org/htdocs/ - - - - - - sonatype-nexus-staging - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - -
diff --git a/.m2/repository/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom.sha1 b/.m2/repository/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom.sha1 deleted file mode 100644 index 0eb880b..0000000 --- a/.m2/repository/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5ee2b2ff107aa21d6e6c8b1d38ab28d02b5bf62e \ No newline at end of file diff --git a/.m2/repository/org/slf4j/slf4j-parent/2.0.17/_remote.repositories b/.m2/repository/org/slf4j/slf4j-parent/2.0.17/_remote.repositories deleted file mode 100644 index 9efa72f..0000000 --- a/.m2/repository/org/slf4j/slf4j-parent/2.0.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. -#Thu Apr 02 20:37:43 UTC 2026 -slf4j-parent-2.0.17.pom>central= diff --git a/.m2/repository/org/slf4j/slf4j-parent/2.0.17/slf4j-parent-2.0.17.pom b/.m2/repository/org/slf4j/slf4j-parent/2.0.17/slf4j-parent-2.0.17.pom deleted file mode 100644 index 1e0092f..0000000 --- a/.m2/repository/org/slf4j/slf4j-parent/2.0.17/slf4j-parent-2.0.17.pom +++ /dev/null @@ -1,397 +0,0 @@ - - - - 4.0.0 - - - org.slf4j - slf4j-bom - 2.0.17 - ../pom.xml - - - slf4j-parent - pom - SLF4J Parent POM - SLF4J project parent pom.xml file - - - - QOS.ch - http://www.qos.ch - - 2005 - - - - - 2025-02-25T16:36: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/.m2/repository/org/slf4j/slf4j-parent/2.0.17/slf4j-parent-2.0.17.pom.sha1 b/.m2/repository/org/slf4j/slf4j-parent/2.0.17/slf4j-parent-2.0.17.pom.sha1 deleted file mode 100644 index 6b9cca4..0000000 --- a/.m2/repository/org/slf4j/slf4j-parent/2.0.17/slf4j-parent-2.0.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -641edf481a624909e4da7d07343055d46aba0b77 \ No newline at end of file diff --git a/.m2/repository/org/sonatype/forge/forge-parent/10/_remote.repositories b/.m2/repository/org/sonatype/forge/forge-parent/10/_remote.repositories deleted file mode 100644 index 2e9d982..0000000 --- a/.m2/repository/org/sonatype/forge/forge-parent/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. -#Thu Apr 02 20:38:36 UTC 2026 -forge-parent-10.pom>central= diff --git a/.m2/repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom b/.m2/repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom deleted file mode 100644 index 853fb2a..0000000 --- a/.m2/repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom +++ /dev/null @@ -1,317 +0,0 @@ - - - - 4.0.0 - - org.sonatype.forge - forge-parent - pom - 10 - Sonatype Forge Parent Pom - - 2008 - http://forge.sonatype.com/ - - - Sonatype, Inc. - http://www.sonatype.com/ - - - - scm:svn:http://svn.sonatype.org/forge/tags/forge-parent-10 - http://svn.sonatype.org/forge/tags/forge-parent-10 - scm:svn:https://svn.sonatype.org/forge/tags/forge-parent-10 - - - - forge-releases - https://repository.sonatype.org/service/local/staging/deploy/maven2 - forge-snapshots - https://repository.sonatype.org/content/repositories/snapshots - UTF-8 - UTF-8 - - - - - ${forgeReleaseId} - ${forgeReleaseUrl} - - - ${forgeSnapshotId} - ${forgeSnapshotUrl} - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-clean-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.2 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.5 - - - org.apache.maven.plugins - maven-eclipse-plugin - 2.8 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.2 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - - forked-path - false - deploy - -Prelease - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.2 - - - org.apache.maven.plugins - maven-resources-plugin - 2.5 - - - 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.8 - - true - - - - org.sonatype.plugins - sisu-maven-plugin - 1.0 - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.6 - - - com.mycila.maven-license-plugin - maven-license-plugin - 1.9.0 - - - org.codehaus.modello - modello-maven-plugin - 1.4.1 - - true - - - - org.apache.felix - maven-bundle-plugin - 2.3.4 - - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.4 - - - org.codehaus.mojo - findbugs-maven-plugin - 2.3.1 - - UnreadFields - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.2 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-pmd-plugin - 2.5 - - 1.5 - - - - - - - - release - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - ${gpg.passphrase} - - true - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - ${deploy.altRepository} - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${project.build.sourceEncoding} - - - - attach-javadocs - - jar - - - - - - - - - - - \ No newline at end of file diff --git a/.m2/repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1 b/.m2/repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1 deleted file mode 100644 index b4b62fc..0000000 --- a/.m2/repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c24dc843444f348100c19ebd51157e7a5f61bfe7 \ No newline at end of file diff --git a/.m2/repository/org/sonatype/forge/forge-parent/5/_remote.repositories b/.m2/repository/org/sonatype/forge/forge-parent/5/_remote.repositories deleted file mode 100644 index ce44422..0000000 --- a/.m2/repository/org/sonatype/forge/forge-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. -#Thu Apr 02 20:38:40 UTC 2026 -forge-parent-5.pom>central= diff --git a/.m2/repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom b/.m2/repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom deleted file mode 100644 index 8281361..0000000 --- a/.m2/repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom +++ /dev/null @@ -1,225 +0,0 @@ - - 4.0.0 - org.sonatype.forge - forge-parent - pom - 5 - Sonatype Forge Parent Pom - 2008 - http://forge.sonatype.com/ - - scm:svn:http://svn.sonatype.org/forge/tags/forge-parent-5 - http://svn.sonatype.org/forge/tags/forge-parent-5 - scm:svn:https://svn.sonatype.org/forge/tags/forge-parent-5 - - - - - forge-releases - http://repository.sonatype.org:8081/service/local/staging/deploy/maven2 - forge-snapshots - http://repository.sonatype.org/content/repositories/snapshots - - - - ${forgeReleaseId} - ${forgeReleaseUrl} - - - ${forgeSnapshotId} - ${forgeSnapshotUrl} - - - - - - - - - - - maven-enforcer-plugin - 1.0-beta-1 - - - maven-eclipse-plugin - 2.4 - - - maven-surefire-plugin - 2.4.3 - - - maven-clean-plugin - 2.2 - - - maven-deploy-plugin - 2.4 - - - maven-dependency-plugin - 2.0 - - - maven-site-plugin - 2.0-beta-7 - - - maven-jar-plugin - 2.2 - - - maven-resources-plugin - 2.3 - - - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-2 - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-8 - - false - deploy - -Prelease - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.0 - - - org.codehaus.mojo - findbugs-maven-plugin - 1.1.1 - - UnreadFields - - - - maven-jxr-plugin - 2.1 - - - maven-project-info-reports-plugin - 2.1.1 - - - maven-pmd-plugin - 2.4 - - 1.5 - - - - - - - - - - release - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - ${gpg.passphrase} - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - ${deploy.altRepository} - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${project.build.sourceEncoding} - - - - attach-javadocs - - jar - - - - - - - - - - - \ No newline at end of file diff --git a/.m2/repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 b/.m2/repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 deleted file mode 100644 index 0173cc7..0000000 --- a/.m2/repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a557514263bbd4a6daef8f125ab80e78413292d3 \ No newline at end of file diff --git a/.m2/repository/org/sonatype/oss/oss-parent/7/_remote.repositories b/.m2/repository/org/sonatype/oss/oss-parent/7/_remote.repositories deleted file mode 100644 index b5e3d88..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:37 UTC 2026 -oss-parent-7.pom>central= diff --git a/.m2/repository/org/sonatype/oss/oss-parent/7/oss-parent-7.pom b/.m2/repository/org/sonatype/oss/oss-parent/7/oss-parent-7.pom deleted file mode 100644 index 3963952..0000000 --- a/.m2/repository/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/.m2/repository/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 b/.m2/repository/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 deleted file mode 100644 index 800e284..0000000 --- a/.m2/repository/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/.m2/repository/org/sonatype/oss/oss-parent/9/_remote.repositories b/.m2/repository/org/sonatype/oss/oss-parent/9/_remote.repositories deleted file mode 100644 index fadea2c..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:37:50 UTC 2026 -oss-parent-9.pom>central= diff --git a/.m2/repository/org/sonatype/oss/oss-parent/9/oss-parent-9.pom b/.m2/repository/org/sonatype/oss/oss-parent/9/oss-parent-9.pom deleted file mode 100644 index cc10b98..0000000 --- a/.m2/repository/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/.m2/repository/org/sonatype/oss/oss-parent/9/oss-parent-9.pom.sha1 b/.m2/repository/org/sonatype/oss/oss-parent/9/oss-parent-9.pom.sha1 deleted file mode 100644 index 7e0d2b6..0000000 --- a/.m2/repository/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/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/_remote.repositories b/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/_remote.repositories deleted file mode 100644 index c711819..0000000 --- a/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/_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. -#Thu Apr 02 20:38:40 UTC 2026 -plexus-build-api-0.0.7.jar>central= -plexus-build-api-0.0.7.pom>central= diff --git a/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar b/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar deleted file mode 100644 index 3a01264..0000000 Binary files a/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar and /dev/null differ diff --git a/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar.sha1 b/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar.sha1 deleted file mode 100644 index daed1ea..0000000 --- a/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e6ba5cd4bfd8de00235af936e7f63eb24ed436e6 \ No newline at end of file diff --git a/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom b/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom deleted file mode 100644 index e8546b8..0000000 --- a/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom +++ /dev/null @@ -1,94 +0,0 @@ - - - - 4.0.0 - - org.sonatype.spice - spice-parent - 15 - - org.sonatype.plexus - plexus-build-api - 0.0.7 - - - - org.codehaus.plexus - plexus-utils - 1.5.8 - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9 - provided - - - - - - - src/main/resources - true - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.4 - - - - descriptor - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.4 - 1.4 - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.2 - - true - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - scm:svn:http://svn.sonatype.org/spice/tags/plexus-build-api-0.0.7 - scm:svn:https://svn.sonatype.org/spice/tags/plexus-build-api-0.0.7 - http://svn.sonatype.org/spice/tags/plexus-build-api-0.0.7 - - diff --git a/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom.sha1 b/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom.sha1 deleted file mode 100644 index 333559f..0000000 --- a/.m2/repository/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1e4a1b9e61ff446213473bbd1f3d970c0d1c4d62 \ No newline at end of file diff --git a/.m2/repository/org/sonatype/spice/spice-parent/15/_remote.repositories b/.m2/repository/org/sonatype/spice/spice-parent/15/_remote.repositories deleted file mode 100644 index 9727ec4..0000000 --- a/.m2/repository/org/sonatype/spice/spice-parent/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. -#Thu Apr 02 20:38:40 UTC 2026 -spice-parent-15.pom>central= diff --git a/.m2/repository/org/sonatype/spice/spice-parent/15/spice-parent-15.pom b/.m2/repository/org/sonatype/spice/spice-parent/15/spice-parent-15.pom deleted file mode 100644 index 3582bc0..0000000 --- a/.m2/repository/org/sonatype/spice/spice-parent/15/spice-parent-15.pom +++ /dev/null @@ -1,260 +0,0 @@ - - 4.0.0 - - org.sonatype.forge - forge-parent - 5 - - org.sonatype.spice - spice-parent - 15 - pom - Sonatype Spice Components - - - scm:svn:http://svn.sonatype.org/spice/tags/spice-parent-15 - http://svn.sonatype.org/spice/tags/spice-parent-15 - scm:svn:https://svn.sonatype.org/spice/tags/spice-parent-15 - - - - - Apache Public License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - repo - - - - - Hudson - https://grid.sonatype.org/ci/view/Spice/ - - - - JIRA - https://issues.sonatype.org/browse/SPICE - - - - - 6.1.12 - 1.0-beta-3.0.5 - - - - - - org.codehaus.plexus - plexus-container-default - ${plexus.version} - - - commons-logging - commons-logging - - - commons-logging - commons-logging-api - - - log4j - log4j - - - - - org.codehaus.plexus - plexus-component-annotations - ${plexus.version} - - - org.codehaus.plexus - plexus-utils - 1.5.5 - - - org.mortbay.jetty - jetty - ${jetty.version} - - - org.mortbay.jetty - jetty-client - ${jetty.version} - - - org.mortbay.jetty - jetty-util - ${jetty.version} - - - junit - junit - 4.5 - test - - - - - - - m2e - - - m2e.version - - - - - - org.maven.ide.eclipse - lifecycle-mapping - 0.9.9-SNAPSHOT - - customizable - - - - - - - org.apache.maven.plugins:maven-resources-plugin:: - - - - - - - - - - - - - org.codehaus.plexus - plexus-component-metadata - ${plexus.version} - - - process-classes - - generate-metadata - - - - process-test-classes - - generate-test-metadata - - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - - descriptor - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.2 - - - org.codehaus.modello - modello-maven-plugin - 1.0.2 - - true - - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.1 - - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.3 - - - org.codehaus.mojo - findbugs-maven-plugin - 1.2 - - UnreadFields - - - - maven-jxr-plugin - 2.1 - - - maven-pmd-plugin - 2.4 - - 1.5 - - - - org.apache.maven.plugins - maven-plugin-plugin - 2.5 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - 2.5 - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.1 - - - - - dependencies - project-team - mailing-list - cim - issue-tracking - license - scm - - - - - - - \ No newline at end of file diff --git a/.m2/repository/org/sonatype/spice/spice-parent/15/spice-parent-15.pom.sha1 b/.m2/repository/org/sonatype/spice/spice-parent/15/spice-parent-15.pom.sha1 deleted file mode 100644 index 4a2c5c8..0000000 --- a/.m2/repository/org/sonatype/spice/spice-parent/15/spice-parent-15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3cfa1d1f3113a8137fdc7b7a67f310abbed4a22d \ No newline at end of file diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/_remote.repositories b/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/_remote.repositories deleted file mode 100644 index 9fe1937..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -springdoc-openapi-starter-common-2.5.0.jar>central= -springdoc-openapi-starter-common-2.5.0.pom>central= diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/springdoc-openapi-starter-common-2.5.0.jar b/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/springdoc-openapi-starter-common-2.5.0.jar deleted file mode 100644 index c158800..0000000 Binary files a/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/springdoc-openapi-starter-common-2.5.0.jar and /dev/null differ diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/springdoc-openapi-starter-common-2.5.0.jar.sha1 b/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/springdoc-openapi-starter-common-2.5.0.jar.sha1 deleted file mode 100644 index 6e81f48..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/springdoc-openapi-starter-common-2.5.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d83078092cc4e61ef502018c7560d466210cc14e \ No newline at end of file diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/springdoc-openapi-starter-common-2.5.0.pom b/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/springdoc-openapi-starter-common-2.5.0.pom deleted file mode 100644 index 958f251..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/springdoc-openapi-starter-common-2.5.0.pom +++ /dev/null @@ -1,148 +0,0 @@ - - 4.0.0 - - org.springdoc - springdoc-openapi - 2.5.0 - - springdoc-openapi-starter-common - - - org.springframework.boot - spring-boot-autoconfigure - - - org.springframework.boot - spring-boot-configuration-processor - true - - - io.swagger.core.v3 - swagger-core-jakarta - - - - org.springframework.boot - spring-boot-starter-actuator - true - - - - org.springframework.cloud - spring-cloud-function-web - true - - - - org.apache.groovy - groovy - true - - - - com.github.therapi - therapi-runtime-javadoc - ${therapi-runtime-javadoc.version} - true - - - - org.springframework.security - spring-security-oauth2-authorization-server - true - - - - com.fasterxml.jackson.module - jackson-module-kotlin - true - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - provided - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactor - provided - - - - org.springframework.boot - spring-boot-starter-data-rest - true - - - com.querydsl - querydsl-core - true - - - - - - src/main/resources - true - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - org.springdoc.openapi.common - - - - - - - kotlin-maven-plugin - org.jetbrains.kotlin - - - compile - process-sources - - compile - - - - ${project.basedir}/src/main/java - ${project.basedir}/src/main/kotlin - - - - - test-compile - - test-compile - - - - ${project.basedir}/src/test/kotlin - ${project.basedir}/src/test/java - - - - - - - spring - - - - - org.jetbrains.kotlin - kotlin-maven-allopen - ${kotlin.version} - - - - - - - \ No newline at end of file diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/springdoc-openapi-starter-common-2.5.0.pom.sha1 b/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/springdoc-openapi-starter-common-2.5.0.pom.sha1 deleted file mode 100644 index afc45e6..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi-starter-common/2.5.0/springdoc-openapi-starter-common-2.5.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3a89df9b7f38a83d2f56cecb4c3b858269351f37 \ No newline at end of file diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/_remote.repositories b/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/_remote.repositories deleted file mode 100644 index 3676a29..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -springdoc-openapi-starter-webmvc-api-2.5.0.jar>central= -springdoc-openapi-starter-webmvc-api-2.5.0.pom>central= diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/springdoc-openapi-starter-webmvc-api-2.5.0.jar b/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/springdoc-openapi-starter-webmvc-api-2.5.0.jar deleted file mode 100644 index 8021c97..0000000 Binary files a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/springdoc-openapi-starter-webmvc-api-2.5.0.jar and /dev/null differ diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/springdoc-openapi-starter-webmvc-api-2.5.0.jar.sha1 b/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/springdoc-openapi-starter-webmvc-api-2.5.0.jar.sha1 deleted file mode 100644 index db1d2fb..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/springdoc-openapi-starter-webmvc-api-2.5.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a450d666f17b10adff53703b16bc77954a045fd2 \ No newline at end of file diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/springdoc-openapi-starter-webmvc-api-2.5.0.pom b/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/springdoc-openapi-starter-webmvc-api-2.5.0.pom deleted file mode 100644 index 9b8ac4d..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/springdoc-openapi-starter-webmvc-api-2.5.0.pom +++ /dev/null @@ -1,58 +0,0 @@ - - 4.0.0 - - org.springdoc - springdoc-openapi - 2.5.0 - - springdoc-openapi-starter-webmvc-api - - - - org.springdoc - springdoc-openapi-starter-common - ${project.version} - - - org.springframework - spring-webmvc - - - - org.springframework.boot - spring-boot-starter-actuator - true - - - jakarta.servlet - jakarta.servlet-api - provided - - - javax.money - money-api - test - - - org.hibernate.validator - hibernate-validator - test - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - org.springdoc.openapi.webmvc.core - - - - - - - - \ No newline at end of file diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/springdoc-openapi-starter-webmvc-api-2.5.0.pom.sha1 b/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/springdoc-openapi-starter-webmvc-api-2.5.0.pom.sha1 deleted file mode 100644 index ece14b8..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-api/2.5.0/springdoc-openapi-starter-webmvc-api-2.5.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8e584c2be370f1a8b9d8bd81074398fa0990bf98 \ No newline at end of file diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/_remote.repositories b/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/_remote.repositories deleted file mode 100644 index dc689a9..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -springdoc-openapi-starter-webmvc-ui-2.5.0.jar>central= -springdoc-openapi-starter-webmvc-ui-2.5.0.pom>central= diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/springdoc-openapi-starter-webmvc-ui-2.5.0.jar b/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/springdoc-openapi-starter-webmvc-ui-2.5.0.jar deleted file mode 100644 index f68d68d..0000000 Binary files a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/springdoc-openapi-starter-webmvc-ui-2.5.0.jar and /dev/null differ diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/springdoc-openapi-starter-webmvc-ui-2.5.0.jar.sha1 b/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/springdoc-openapi-starter-webmvc-ui-2.5.0.jar.sha1 deleted file mode 100644 index fe1ce77..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/springdoc-openapi-starter-webmvc-ui-2.5.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e81e60e9be9fd65503071337e634b6056127a2fb \ No newline at end of file diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/springdoc-openapi-starter-webmvc-ui-2.5.0.pom b/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/springdoc-openapi-starter-webmvc-ui-2.5.0.pom deleted file mode 100644 index d987eb1..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/springdoc-openapi-starter-webmvc-ui-2.5.0.pom +++ /dev/null @@ -1,59 +0,0 @@ - - 4.0.0 - - org.springdoc - springdoc-openapi - 2.5.0 - - springdoc-openapi-starter-webmvc-ui - - - - org.springdoc - springdoc-openapi-starter-webmvc-api - ${project.version} - - - jakarta.servlet - jakarta.servlet-api - provided - - - - org.webjars - swagger-ui - - - org.springframework.boot - spring-boot-starter-security - test - - - - org.springframework.boot - spring-boot-starter-actuator - true - - - org.apache.tomcat.embed - tomcat-embed-core - test - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - org.springdoc.openapi.ui - - - - - - - - \ No newline at end of file diff --git a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/springdoc-openapi-starter-webmvc-ui-2.5.0.pom.sha1 b/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/springdoc-openapi-starter-webmvc-ui-2.5.0.pom.sha1 deleted file mode 100644 index f9f87bf..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0/springdoc-openapi-starter-webmvc-ui-2.5.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -63c831bbbb73c61ce8d8d1de061334a752f111e9 \ No newline at end of file diff --git a/.m2/repository/org/springdoc/springdoc-openapi/2.5.0/_remote.repositories b/.m2/repository/org/springdoc/springdoc-openapi/2.5.0/_remote.repositories deleted file mode 100644 index 1de2b58..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi/2.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. -#Thu Apr 02 20:38:08 UTC 2026 -springdoc-openapi-2.5.0.pom>central= diff --git a/.m2/repository/org/springdoc/springdoc-openapi/2.5.0/springdoc-openapi-2.5.0.pom b/.m2/repository/org/springdoc/springdoc-openapi/2.5.0/springdoc-openapi-2.5.0.pom deleted file mode 100644 index a5c49cd..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi/2.5.0/springdoc-openapi-2.5.0.pom +++ /dev/null @@ -1,335 +0,0 @@ - - 4.0.0 - org.springdoc - springdoc-openapi - 2.5.0 - pom - Spring openapi documentation - Spring openapi documentation - https://springdoc.org/ - - - org.springframework.boot - spring-boot-starter-parent - 3.2.4 - - - - - The Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - Badr NASS LAHSEN - support@springdoc.org - springdoc - https://springdoc.org/ - - - - - git@github.com:springdoc/springdoc-openapi.git - scm:git:git@github.com:springdoc/springdoc-openapi.git - scm:git:git@github.com:springdoc/springdoc-openapi.git - - v2.5.0 - - - - ossrh - https://s01.oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - springdoc-openapi-starter-common - springdoc-openapi-starter-webmvc-api - springdoc-openapi-starter-webflux-api - springdoc-openapi-starter-webmvc-ui - springdoc-openapi-starter-webflux-ui - - - - 1.6 - 2.5.3 - 1.6.8 - 2.2.21 - 5.13.0 - 1.13.1 - 2.1 - 1.1 - 0.9.1 - 0.15.0 - 4.0.0 - 1.0.1 - - - - - - - io.swagger.core.v3 - swagger-core-jakarta - ${swagger-api.version} - - - - org.webjars - swagger-ui - ${swagger-ui.version} - - - javax.xml - jaxb-impl - ${jaxb-impl.version} - - - javax.jws - javax.jws-api - ${javax.jws-api.version} - test - - - io.jsonwebtoken - jjwt - ${jjwt.version} - test - - - - org.springframework.cloud - spring-cloud-function-web - ${spring-cloud-function.version} - - - org.springframework.cloud - spring-cloud-starter-function-web - ${spring-cloud-function.version} - - - org.springframework.cloud - spring-cloud-starter-function-webflux - ${spring-cloud-function.version} - - - org.springframework.security - spring-security-oauth2-authorization-server - ${spring-security-oauth2-authorization-server.version} - - - - org.springdoc - springdoc-openapi-starter-common - ${project.version} - - - org.springdoc - springdoc-openapi-starter-webmvc-api - ${project.version} - - - org.springdoc - springdoc-openapi-starter-webflux-api - ${project.version} - - - org.springdoc - springdoc-openapi-starter-webmvc-ui - ${project.version} - - - org.springdoc - springdoc-openapi-starter-webflux-ui - ${project.version} - - - - - - org.springframework.boot - spring-boot-starter-test - test - - - org.junit.vintage - junit-vintage-engine - - - - - - - - - org.codehaus.gmavenplus - gmavenplus-plugin - ${gmavenplus-plugin.version} - - - - - - org.apache.maven.plugins - maven-resources-plugin - - - copy-resources - validate - - copy-resources - - - ${basedir}/target/classes/META-INF - - - ${basedir}/.. - - LICENSE - COPYRIGHT - - - - - - - - - - - - - ci - - true - - - springdoc-openapi-starter-common - springdoc-openapi-starter-webmvc-api - springdoc-openapi-starter-webflux-api - springdoc-openapi-starter-webmvc-ui - springdoc-openapi-starter-webflux-ui - springdoc-openapi-tests - - - - gpg - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - src/main/java - 17 - - - - org.apache.maven.plugins - maven-gpg-plugin - ${maven-gpg-plugin.version} - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - ${nexus-staging-maven-plugin} - true - - ossrh - https://s01.oss.sonatype.org/ - true - - - - com.thoughtworks.xstream - xstream - 1.4.15 - - - - - maven-release-plugin - ${maven-release-plugin.version} - - v@{project.version} - true - false - gpg - deploy - - - - - - - - - central - https://repo.maven.apache.org/maven2 - - false - - - - spring-release - Spring release - https://repo.spring.io/release - - false - - - - spring-snapshot - Spring Snapshots - https://repo.spring.io/snapshot - - true - - - - - - spring-releases - Spring Releases - https://repo.spring.io/release - - false - - - - diff --git a/.m2/repository/org/springdoc/springdoc-openapi/2.5.0/springdoc-openapi-2.5.0.pom.sha1 b/.m2/repository/org/springdoc/springdoc-openapi/2.5.0/springdoc-openapi-2.5.0.pom.sha1 deleted file mode 100644 index fd2d6f6..0000000 --- a/.m2/repository/org/springdoc/springdoc-openapi/2.5.0/springdoc-openapi-2.5.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -73b1eb184bbe9b32d4847dfb46eec930cb2c934c \ No newline at end of file diff --git a/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.1.3/_remote.repositories b/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.1.3/_remote.repositories deleted file mode 100644 index 3f2ec06..0000000 --- a/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.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. -#Thu Apr 02 20:38:13 UTC 2026 -spring-amqp-bom-3.1.3.pom>central= diff --git a/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.1.3/spring-amqp-bom-3.1.3.pom b/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.1.3/spring-amqp-bom-3.1.3.pom deleted file mode 100644 index f4b6899..0000000 --- a/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.1.3/spring-amqp-bom-3.1.3.pom +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.amqp - spring-amqp-bom - 3.1.3 - 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.3 - - - org.springframework.amqp - spring-rabbit - 3.1.3 - - - org.springframework.amqp - spring-rabbit-junit - 3.1.3 - - - org.springframework.amqp - spring-rabbit-stream - 3.1.3 - - - org.springframework.amqp - spring-rabbit-test - 3.1.3 - - - - diff --git a/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.1.3/spring-amqp-bom-3.1.3.pom.sha1 b/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.1.3/spring-amqp-bom-3.1.3.pom.sha1 deleted file mode 100644 index 2118730..0000000 --- a/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.1.3/spring-amqp-bom-3.1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f591b14e603ee966ae2e768d2a91cf1a8c1be542 \ No newline at end of file diff --git a/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.2.6/_remote.repositories b/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.2.6/_remote.repositories deleted file mode 100644 index 7e2209c..0000000 --- a/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.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. -#Thu Apr 02 20:37:38 UTC 2026 -spring-amqp-bom-3.2.6.pom>central= diff --git a/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.2.6/spring-amqp-bom-3.2.6.pom b/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.2.6/spring-amqp-bom-3.2.6.pom deleted file mode 100644 index 01f6ac5..0000000 --- a/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.2.6/spring-amqp-bom-3.2.6.pom +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.amqp - spring-amqp-bom - 3.2.6 - 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.2.6 - - - org.springframework.amqp - spring-rabbit - 3.2.6 - - - org.springframework.amqp - spring-rabbit-junit - 3.2.6 - - - org.springframework.amqp - spring-rabbit-stream - 3.2.6 - - - org.springframework.amqp - spring-rabbit-test - 3.2.6 - - - - diff --git a/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.2.6/spring-amqp-bom-3.2.6.pom.sha1 b/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.2.6/spring-amqp-bom-3.2.6.pom.sha1 deleted file mode 100644 index 0a00180..0000000 --- a/.m2/repository/org/springframework/amqp/spring-amqp-bom/3.2.6/spring-amqp-bom-3.2.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9a2bc405e0ad8b5927e13abf724892b71478316e \ No newline at end of file diff --git a/.m2/repository/org/springframework/batch/spring-batch-bom/5.1.1/_remote.repositories b/.m2/repository/org/springframework/batch/spring-batch-bom/5.1.1/_remote.repositories deleted file mode 100644 index adad91d..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:13 UTC 2026 -spring-batch-bom-5.1.1.pom>central= diff --git a/.m2/repository/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom b/.m2/repository/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom deleted file mode 100644 index 1a5802e..0000000 --- a/.m2/repository/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/.m2/repository/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.sha1 b/.m2/repository/org/springframework/batch/spring-batch-bom/5.1.1/spring-batch-bom-5.1.1.pom.sha1 deleted file mode 100644 index 69ec67b..0000000 --- a/.m2/repository/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/.m2/repository/org/springframework/batch/spring-batch-bom/5.2.2/_remote.repositories b/.m2/repository/org/springframework/batch/spring-batch-bom/5.2.2/_remote.repositories deleted file mode 100644 index 95a66e6..0000000 --- a/.m2/repository/org/springframework/batch/spring-batch-bom/5.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. -#Thu Apr 02 20:37:38 UTC 2026 -spring-batch-bom-5.2.2.pom>central= diff --git a/.m2/repository/org/springframework/batch/spring-batch-bom/5.2.2/spring-batch-bom-5.2.2.pom b/.m2/repository/org/springframework/batch/spring-batch-bom/5.2.2/spring-batch-bom-5.2.2.pom deleted file mode 100644 index 678ea10..0000000 --- a/.m2/repository/org/springframework/batch/spring-batch-bom/5.2.2/spring-batch-bom-5.2.2.pom +++ /dev/null @@ -1,104 +0,0 @@ - - - 4.0.0 - org.springframework.batch - spring-batch-bom - 5.2.2 - 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.2.2 - - - org.springframework.batch - spring-batch-infrastructure - 5.2.2 - - - org.springframework.batch - spring-batch-integration - 5.2.2 - - - org.springframework.batch - spring-batch-test - 5.2.2 - - - - diff --git a/.m2/repository/org/springframework/batch/spring-batch-bom/5.2.2/spring-batch-bom-5.2.2.pom.sha1 b/.m2/repository/org/springframework/batch/spring-batch-bom/5.2.2/spring-batch-bom-5.2.2.pom.sha1 deleted file mode 100644 index c936fdb..0000000 --- a/.m2/repository/org/springframework/batch/spring-batch-bom/5.2.2/spring-batch-bom-5.2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0eede4ddb8b42e3f2d53fc06678eb41cb3ab4b51 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/_remote.repositories deleted file mode 100644 index 263913b..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-actuator-autoconfigure-3.5.5.jar>central= -spring-boot-actuator-autoconfigure-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/spring-boot-actuator-autoconfigure-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/spring-boot-actuator-autoconfigure-3.5.5.jar deleted file mode 100644 index 7000634..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/spring-boot-actuator-autoconfigure-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/spring-boot-actuator-autoconfigure-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/spring-boot-actuator-autoconfigure-3.5.5.jar.sha1 deleted file mode 100644 index e156672..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/spring-boot-actuator-autoconfigure-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0eba0490f64dd1f2bb96b6c484d34df03b388676 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/spring-boot-actuator-autoconfigure-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/spring-boot-actuator-autoconfigure-3.5.5.pom deleted file mode 100644 index a0163fb..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/spring-boot-actuator-autoconfigure-3.5.5.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-actuator-autoconfigure - 3.5.5 - spring-boot-actuator-autoconfigure - Spring Boot Actuator 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.5.5 - compile - - - org.springframework.boot - spring-boot-actuator - 3.5.5 - compile - - - org.springframework.boot - spring-boot-autoconfigure - 3.5.5 - compile - - - com.fasterxml.jackson.core - jackson-databind - 2.19.2 - runtime - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - 2.19.2 - runtime - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/spring-boot-actuator-autoconfigure-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/spring-boot-actuator-autoconfigure-3.5.5.pom.sha1 deleted file mode 100644 index 8a9e14a..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.5.5/spring-boot-actuator-autoconfigure-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fa1ffb6f517d292cd38ceb1a32c220b4d1b41b8c \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/_remote.repositories deleted file mode 100644 index 42b37fc..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-actuator-3.5.5.jar>central= -spring-boot-actuator-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/spring-boot-actuator-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/spring-boot-actuator-3.5.5.jar deleted file mode 100644 index 4bca1ef..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/spring-boot-actuator-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/spring-boot-actuator-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/spring-boot-actuator-3.5.5.jar.sha1 deleted file mode 100644 index 1f3cad0..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/spring-boot-actuator-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -11a70af846b9527a4f26c66368543719bf4d0419 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/spring-boot-actuator-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/spring-boot-actuator-3.5.5.pom deleted file mode 100644 index 951bc68..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/spring-boot-actuator-3.5.5.pom +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-actuator - 3.5.5 - spring-boot-actuator - Spring Boot Actuator - 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.5.5 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/spring-boot-actuator-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/spring-boot-actuator-3.5.5.pom.sha1 deleted file mode 100644 index ee8a05e..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-actuator/3.5.5/spring-boot-actuator-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -87d8ae3b8bacb8c5e6ff2f32c212c1a3882e9e9a \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/_remote.repositories deleted file mode 100644 index 2d637df..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-autoconfigure-3.5.5.jar>central= -spring-boot-autoconfigure-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/spring-boot-autoconfigure-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/spring-boot-autoconfigure-3.5.5.jar deleted file mode 100644 index 0506eda..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/spring-boot-autoconfigure-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/spring-boot-autoconfigure-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/spring-boot-autoconfigure-3.5.5.jar.sha1 deleted file mode 100644 index 92cd6b3..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/spring-boot-autoconfigure-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -348f4fb99d61a1ea039a44ec667b61657adb54b2 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/spring-boot-autoconfigure-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/spring-boot-autoconfigure-3.5.5.pom deleted file mode 100644 index 5b80d49..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/spring-boot-autoconfigure-3.5.5.pom +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-autoconfigure - 3.5.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.5.5 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/spring-boot-autoconfigure-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/spring-boot-autoconfigure-3.5.5.pom.sha1 deleted file mode 100644 index 9535ad1..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.5.5/spring-boot-autoconfigure-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -327f573513b759aa637c37ea603b81536f6c08c0 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/_remote.repositories deleted file mode 100644 index 0586369..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.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. -#Thu Apr 02 20:43:13 UTC 2026 -spring-boot-buildpack-platform-3.5.5.jar>central= -spring-boot-buildpack-platform-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/spring-boot-buildpack-platform-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/spring-boot-buildpack-platform-3.5.5.jar deleted file mode 100644 index 5b9b85d..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/spring-boot-buildpack-platform-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/spring-boot-buildpack-platform-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/spring-boot-buildpack-platform-3.5.5.jar.sha1 deleted file mode 100644 index d8e9025..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/spring-boot-buildpack-platform-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -11d1c0377fdbd2fbb9434e43d971afd52d14a978 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/spring-boot-buildpack-platform-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/spring-boot-buildpack-platform-3.5.5.pom deleted file mode 100644 index 90767d8..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/spring-boot-buildpack-platform-3.5.5.pom +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-buildpack-platform - 3.5.5 - spring-boot-buildpack-platform - Spring Boot Buildpack Platform - 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 - - - - com.fasterxml.jackson.core - jackson-databind - 2.19.2 - runtime - - - com.fasterxml.jackson.module - jackson-module-parameter-names - 2.19.2 - runtime - - - net.java.dev.jna - jna-platform - 5.17.0 - runtime - - - org.apache.commons - commons-compress - 1.27.1 - runtime - - - org.apache.httpcomponents.client5 - httpclient5 - 5.5 - runtime - - - org.springframework - spring-core - 6.2.10 - runtime - - - org.tomlj - tomlj - 1.0.0 - runtime - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/spring-boot-buildpack-platform-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/spring-boot-buildpack-platform-3.5.5.pom.sha1 deleted file mode 100644 index 02c86c4..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-buildpack-platform/3.5.5/spring-boot-buildpack-platform-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -99dc5040f108558c7d5d700a27681fc04ba57049 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.2.4/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.2.4/_remote.repositories deleted file mode 100644 index 2fe0de6..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.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. -#Thu Apr 02 20:38:08 UTC 2026 -spring-boot-dependencies-3.2.4.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.2.4/spring-boot-dependencies-3.2.4.pom b/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.2.4/spring-boot-dependencies-3.2.4.pom deleted file mode 100644 index 53bb225..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.2.4/spring-boot-dependencies-3.2.4.pom +++ /dev/null @@ -1,2951 +0,0 @@ - - - 4.0.0 - org.springframework.boot - spring-boot-dependencies - 3.2.4 - 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.3 - 2.0.3 - 2.31.2 - 1.9.21 - 3.24.2 - 4.2.0 - 5.16.0 - 3.4.0 - 1.14.12 - 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.20 - 2.10.1 - 2.2.224 - 2.2 - 5.3.6 - 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.0 - 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.5 - 4.0.3 - 12.0.7 - 1.15 - 3.18.13 - 2.9.0 - 2.5.0 - 1.5.1 - 1.3.1 - 4.13.2 - 5.10.2 - 3.6.1 - 1.9.23 - 1.7.3 - 1.6.3 - 6.3.2.RELEASE - 4.24.0 - 2.21.1 - 1.4.14 - 1.18.30 - 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.0 - 3.3.0 - 3.6.3 - 3.3.1 - 3.5.2 - 3.3.0 - 3.1.2 - 3.4.0 - 1.12.4 - 1.2.4 - 5.7.0 - 4.11.1 - 12.4.2.jre11 - 8.3.0 - 0.9.28 - 1.9.22 - 5.18.0 - 4.1.107.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.3 - 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.4.RELEASE - 1.1.4.RELEASE - 1.0.0.RELEASE - 5.19.0 - 0.14.0 - 1.0.4 - 2023.0.4 - 5.3.2 - 1.1.3 - 3.1.8 - 3.0.3 - 4.14.1 - 4.13.0 - 4.9.3 - 2.0.12 - 2.2 - 3.1.3 - 1.2.3 - 5.1.1 - 2023.1.4 - 6.1.5 - 1.2.5 - 2.2.1 - 6.2.3 - 3.1.3 - 3.2.2 - 1.0.4 - 3.0.1 - 2.0.5 - 6.2.3 - 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.19 - 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.4 - - - org.springframework.boot - spring-boot-test - 3.2.4 - - - org.springframework.boot - spring-boot-test-autoconfigure - 3.2.4 - - - org.springframework.boot - spring-boot-testcontainers - 3.2.4 - - - org.springframework.boot - spring-boot-actuator - 3.2.4 - - - org.springframework.boot - spring-boot-actuator-autoconfigure - 3.2.4 - - - org.springframework.boot - spring-boot-autoconfigure - 3.2.4 - - - org.springframework.boot - spring-boot-autoconfigure-processor - 3.2.4 - - - org.springframework.boot - spring-boot-buildpack-platform - 3.2.4 - - - org.springframework.boot - spring-boot-configuration-metadata - 3.2.4 - - - org.springframework.boot - spring-boot-configuration-processor - 3.2.4 - - - org.springframework.boot - spring-boot-devtools - 3.2.4 - - - org.springframework.boot - spring-boot-docker-compose - 3.2.4 - - - org.springframework.boot - spring-boot-jarmode-layertools - 3.2.4 - - - org.springframework.boot - spring-boot-loader - 3.2.4 - - - org.springframework.boot - spring-boot-loader-classic - 3.2.4 - - - org.springframework.boot - spring-boot-loader-tools - 3.2.4 - - - org.springframework.boot - spring-boot-properties-migrator - 3.2.4 - - - org.springframework.boot - spring-boot-starter - 3.2.4 - - - org.springframework.boot - spring-boot-starter-activemq - 3.2.4 - - - org.springframework.boot - spring-boot-starter-actuator - 3.2.4 - - - org.springframework.boot - spring-boot-starter-amqp - 3.2.4 - - - org.springframework.boot - spring-boot-starter-aop - 3.2.4 - - - org.springframework.boot - spring-boot-starter-artemis - 3.2.4 - - - org.springframework.boot - spring-boot-starter-batch - 3.2.4 - - - org.springframework.boot - spring-boot-starter-cache - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-cassandra - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-cassandra-reactive - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-couchbase - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-couchbase-reactive - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-elasticsearch - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-jdbc - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-jpa - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-ldap - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-mongodb - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-mongodb-reactive - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-r2dbc - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-redis - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-redis-reactive - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-neo4j - 3.2.4 - - - org.springframework.boot - spring-boot-starter-data-rest - 3.2.4 - - - org.springframework.boot - spring-boot-starter-freemarker - 3.2.4 - - - org.springframework.boot - spring-boot-starter-graphql - 3.2.4 - - - org.springframework.boot - spring-boot-starter-groovy-templates - 3.2.4 - - - org.springframework.boot - spring-boot-starter-hateoas - 3.2.4 - - - org.springframework.boot - spring-boot-starter-integration - 3.2.4 - - - org.springframework.boot - spring-boot-starter-jdbc - 3.2.4 - - - org.springframework.boot - spring-boot-starter-jersey - 3.2.4 - - - org.springframework.boot - spring-boot-starter-jetty - 3.2.4 - - - org.springframework.boot - spring-boot-starter-jooq - 3.2.4 - - - org.springframework.boot - spring-boot-starter-json - 3.2.4 - - - org.springframework.boot - spring-boot-starter-log4j2 - 3.2.4 - - - org.springframework.boot - spring-boot-starter-logging - 3.2.4 - - - org.springframework.boot - spring-boot-starter-mail - 3.2.4 - - - org.springframework.boot - spring-boot-starter-mustache - 3.2.4 - - - org.springframework.boot - spring-boot-starter-oauth2-authorization-server - 3.2.4 - - - org.springframework.boot - spring-boot-starter-oauth2-client - 3.2.4 - - - org.springframework.boot - spring-boot-starter-oauth2-resource-server - 3.2.4 - - - org.springframework.boot - spring-boot-starter-pulsar - 3.2.4 - - - org.springframework.boot - spring-boot-starter-pulsar-reactive - 3.2.4 - - - org.springframework.boot - spring-boot-starter-quartz - 3.2.4 - - - org.springframework.boot - spring-boot-starter-reactor-netty - 3.2.4 - - - org.springframework.boot - spring-boot-starter-rsocket - 3.2.4 - - - org.springframework.boot - spring-boot-starter-security - 3.2.4 - - - org.springframework.boot - spring-boot-starter-test - 3.2.4 - - - org.springframework.boot - spring-boot-starter-thymeleaf - 3.2.4 - - - org.springframework.boot - spring-boot-starter-tomcat - 3.2.4 - - - org.springframework.boot - spring-boot-starter-undertow - 3.2.4 - - - org.springframework.boot - spring-boot-starter-validation - 3.2.4 - - - org.springframework.boot - spring-boot-starter-web - 3.2.4 - - - org.springframework.boot - spring-boot-starter-webflux - 3.2.4 - - - org.springframework.boot - spring-boot-starter-websocket - 3.2.4 - - - org.springframework.boot - spring-boot-starter-web-services - 3.2.4 - - - 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.4 - - - org.codehaus.mojo - versions-maven-plugin - ${versions-maven-plugin.version} - - - org.codehaus.mojo - xml-maven-plugin - ${xml-maven-plugin.version} - - - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.2.4/spring-boot-dependencies-3.2.4.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.2.4/spring-boot-dependencies-3.2.4.pom.sha1 deleted file mode 100644 index 894b2f9..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.2.4/spring-boot-dependencies-3.2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2da09673989eca4318cd44b7107cbfccfd486138 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.5.5/_remote.repositories deleted file mode 100644 index acdc9bd..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.5.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. -#Thu Apr 02 20:37:33 UTC 2026 -spring-boot-dependencies-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.5.5/spring-boot-dependencies-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.5.5/spring-boot-dependencies-3.5.5.pom deleted file mode 100644 index 0110d0a..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.5.5/spring-boot-dependencies-3.5.5.pom +++ /dev/null @@ -1,2555 +0,0 @@ - - - 4.0.0 - org.springframework.boot - spring-boot-dependencies - 3.5.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 - - - - 6.1.7 - 2.0.4 - 2.40.0 - 1.9.24 - 3.27.4 - 4.2.2 - 3.5.1 - 6.1.0 - 3.6.1 - 1.17.7 - 2.6.1.Final - 3.2.2 - 4.19.0 - 1.7.0 - 1.18.0 - 2.13.0 - 3.17.0 - 1.6 - 2.12.1 - 3.8.3 - 1.5.0 - 2.9.1 - 12.1.2.0 - 1.1.7 - 10.16.1.1 - 3.10.8 - 8.18.5 - 11.7.2 - 2.3.34 - 9.0.2 - 4.0.5 - 3.0.1 - 24.1 - 4.0.28 - 2.13.1 - 2.3.232 - 3.0 - 5.5.0 - 6.6.26.Final - 8.0.3.Final - 6.3.2 - 2.7.3 - 4.11.1 - 4.1.5 - 5.5 - 4.4.16 - 5.3.4 - 15.2.5.Final - 2.25 - 2.19.2 - 2.1.3 - 2.1.1 - 2.0.1 - 3.1.0 - 2.1.3 - 3.0.1 - 2.1.3 - 1.1.4 - 3.1.0 - 6.0.0 - 3.0.2 - 2.0.1 - 3.0.2 - 2.1.1 - 3.1.0 - 4.0.2 - 3.0.2 - 4.0.2 - 3.1.12 - 1.1.1 - 1.1 - 2.0.0 - 6.0.2 - 3.6.1.Final - 2.0.6.1 - 6.0.0 - 3.1.11 - 4.0.11 - 12.0.25 - 1.16 - 3.19.25 - 2.9.0 - 2.5.2 - 1.5.3 - 1.3.1 - 4.13.2 - 5.12.2 - 3.9.1 - 1.9.25 - 1.8.1 - 1.6.3 - 6.6.0.RELEASE - 4.31.1 - 2.24.3 - 1.5.18 - 1.18.38 - 3.5.5 - 3.1.0 - 3.7.1 - 3.4.1 - 3.14.0 - 3.8.1 - 3.1.4 - 3.5.0 - 3.5.3 - 3.5.1 - 3.1.4 - 3.9.1 - 3.4.2 - 3.11.3 - 3.3.1 - 3.6.0 - 3.3.1 - 3.5.3 - 3.4.0 - 1.15.3 - 1.5.3 - 5.17.0 - 5.5.1 - 12.10.1.jre11 - 9.4.0 - 0.10.6 - 1.9.22 - 5.28.9 - 4.1.124.Final - 1.49.0 - 23.7.0.25.01 - 1.3.0 - 3.1.7 - 42.7.7 - 1.3.10 - 0.16.0 - 4.0.6 - 0.6.0 - 2.5.0 - 5.1.0 - 1.0.0.RELEASE - 1.3.0 - 1.0.2.RELEASE - 1.4.1 - 1.0.2.RELEASE - 1.0.7.RELEASE - 1.1.6.RELEASE - 1.0.0.RELEASE - 5.25.0 - 0.23.0 - 1.0.4 - 2024.0.9 - 5.5.6 - 1.1.5 - 3.1.11 - 3.0.4 - 4.31.0 - 4.30.0 - 4.10.3 - 2.0.17 - 2.4 - 3.2.6 - 1.5.2 - 5.2.2 - 2025.0.3 - 6.2.10 - 1.4.1 - 2.5.1 - 6.5.1 - 3.3.9 - 3.3.3 - 1.2.9 - 3.0.5 - 2.0.12 - 6.5.3 - 3.5.2 - 4.1.1 - 3.49.1.0 - 1.21.3 - 2.2.4 - 3.1.3.RELEASE - 2.0.1 - 3.1.3.RELEASE - 3.4.0 - 10.1.44 - 7.0.3 - 2.3.18.Final - 2.18.0 - 26.0 - 0.59 - 1.1.0 - 1.6.3 - 1.1.0 - 2.10.3 - 3.0.4 - - - - - org.apache.activemq - activemq-console - ${activemq.version} - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-spring - ${activemq.version} - - - commons-logging - commons-logging - - - - - 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.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} - - - org.apache.cassandra - 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-commandline - ${flyway.version} - - - org.flywaydb - flyway-core - ${flyway.version} - - - org.flywaydb - flyway-database-cassandra - ${flyway.version} - - - org.flywaydb - flyway-database-db2 - ${flyway.version} - - - org.flywaydb - flyway-database-derby - ${flyway.version} - - - org.flywaydb - flyway-database-hsqldb - ${flyway.version} - - - org.flywaydb - flyway-database-informix - ${flyway.version} - - - org.flywaydb - flyway-database-mongodb - ${flyway.version} - - - org.flywaydb - flyway-database-oracle - ${flyway.version} - - - org.flywaydb - flyway-database-postgresql - ${flyway.version} - - - org.flywaydb - flyway-database-redshift - ${flyway.version} - - - org.flywaydb - flyway-database-saphana - ${flyway.version} - - - org.flywaydb - flyway-database-snowflake - ${flyway.version} - - - org.flywaydb - flyway-database-sybasease - ${flyway.version} - - - org.flywaydb - flyway-firebird - ${flyway.version} - - - org.flywaydb - flyway-gcp-bigquery - ${flyway.version} - - - org.flywaydb - flyway-gcp-spanner - ${flyway.version} - - - org.flywaydb - flyway-mysql - ${flyway.version} - - - org.flywaydb - flyway-singlestore - ${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} - - - org.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 - 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.inject - jakarta.inject-api - ${jakarta-inject.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 - ${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-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 - - - - - 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.ha - ons - ${oracle-database.version} - - - com.oracle.database.ha - simplefan - ${oracle-database.version} - - - com.oracle.database.jdbc - ojdbc11 - ${oracle-database.version} - - - com.oracle.database.jdbc - ojdbc11-production - ${oracle-database.version} - - - com.oracle.database.jdbc - ojdbc17 - ${oracle-database.version} - - - com.oracle.database.jdbc - ojdbc17-production - ${oracle-database.version} - - - com.oracle.database.jdbc - ojdbc8 - ${oracle-database.version} - - - com.oracle.database.jdbc - ojdbc8-production - ${oracle-database.version} - - - com.oracle.database.jdbc - rsi - ${oracle-database.version} - - - com.oracle.database.jdbc - ucp - ${oracle-database.version} - - - com.oracle.database.jdbc - ucp11 - ${oracle-database.version} - - - com.oracle.database.jdbc - ucp17 - ${oracle-database.version} - - - com.oracle.database.nls - orai18n - ${oracle-database.version} - - - com.oracle.database.security - oraclepki - ${oracle-database.version} - - - com.oracle.database.xml - xdb - ${oracle-database.version} - - - com.oracle.database.xml - xmlparserv2 - ${oracle-database.version} - - - com.oracle.database.r2dbc - oracle-r2dbc - ${oracle-r2dbc.version} - - - org.messaginghub - pooled-jms - ${pooled-jms.version} - - - org.postgresql - postgresql - ${postgresql.version} - - - org.quartz-scheduler - quartz - ${quartz.version} - - - 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.5.5 - - - org.springframework.boot - spring-boot-actuator - 3.5.5 - - - org.springframework.boot - spring-boot-actuator-autoconfigure - 3.5.5 - - - org.springframework.boot - spring-boot-autoconfigure - 3.5.5 - - - org.springframework.boot - spring-boot-autoconfigure-processor - 3.5.5 - - - org.springframework.boot - spring-boot-buildpack-platform - 3.5.5 - - - org.springframework.boot - spring-boot-configuration-metadata - 3.5.5 - - - org.springframework.boot - spring-boot-configuration-processor - 3.5.5 - - - org.springframework.boot - spring-boot-devtools - 3.5.5 - - - org.springframework.boot - spring-boot-docker-compose - 3.5.5 - - - org.springframework.boot - spring-boot-jarmode-tools - 3.5.5 - - - org.springframework.boot - spring-boot-loader - 3.5.5 - - - org.springframework.boot - spring-boot-loader-classic - 3.5.5 - - - org.springframework.boot - spring-boot-loader-tools - 3.5.5 - - - org.springframework.boot - spring-boot-properties-migrator - 3.5.5 - - - org.springframework.boot - spring-boot-starter - 3.5.5 - - - org.springframework.boot - spring-boot-starter-activemq - 3.5.5 - - - org.springframework.boot - spring-boot-starter-actuator - 3.5.5 - - - org.springframework.boot - spring-boot-starter-amqp - 3.5.5 - - - org.springframework.boot - spring-boot-starter-aop - 3.5.5 - - - org.springframework.boot - spring-boot-starter-artemis - 3.5.5 - - - org.springframework.boot - spring-boot-starter-batch - 3.5.5 - - - org.springframework.boot - spring-boot-starter-cache - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-cassandra - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-cassandra-reactive - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-couchbase - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-couchbase-reactive - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-elasticsearch - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-jdbc - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-jpa - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-ldap - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-mongodb - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-mongodb-reactive - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-neo4j - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-r2dbc - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-redis - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-redis-reactive - 3.5.5 - - - org.springframework.boot - spring-boot-starter-data-rest - 3.5.5 - - - org.springframework.boot - spring-boot-starter-freemarker - 3.5.5 - - - org.springframework.boot - spring-boot-starter-graphql - 3.5.5 - - - org.springframework.boot - spring-boot-starter-groovy-templates - 3.5.5 - - - org.springframework.boot - spring-boot-starter-hateoas - 3.5.5 - - - org.springframework.boot - spring-boot-starter-integration - 3.5.5 - - - org.springframework.boot - spring-boot-starter-jdbc - 3.5.5 - - - org.springframework.boot - spring-boot-starter-jersey - 3.5.5 - - - org.springframework.boot - spring-boot-starter-jetty - 3.5.5 - - - org.springframework.boot - spring-boot-starter-jooq - 3.5.5 - - - org.springframework.boot - spring-boot-starter-json - 3.5.5 - - - org.springframework.boot - spring-boot-starter-log4j2 - 3.5.5 - - - org.springframework.boot - spring-boot-starter-logging - 3.5.5 - - - org.springframework.boot - spring-boot-starter-mail - 3.5.5 - - - org.springframework.boot - spring-boot-starter-mustache - 3.5.5 - - - org.springframework.boot - spring-boot-starter-oauth2-authorization-server - 3.5.5 - - - org.springframework.boot - spring-boot-starter-oauth2-client - 3.5.5 - - - org.springframework.boot - spring-boot-starter-oauth2-resource-server - 3.5.5 - - - org.springframework.boot - spring-boot-starter-pulsar - 3.5.5 - - - org.springframework.boot - spring-boot-starter-pulsar-reactive - 3.5.5 - - - org.springframework.boot - spring-boot-starter-quartz - 3.5.5 - - - org.springframework.boot - spring-boot-starter-reactor-netty - 3.5.5 - - - org.springframework.boot - spring-boot-starter-rsocket - 3.5.5 - - - org.springframework.boot - spring-boot-starter-security - 3.5.5 - - - org.springframework.boot - spring-boot-starter-test - 3.5.5 - - - org.springframework.boot - spring-boot-starter-thymeleaf - 3.5.5 - - - org.springframework.boot - spring-boot-starter-tomcat - 3.5.5 - - - org.springframework.boot - spring-boot-starter-undertow - 3.5.5 - - - org.springframework.boot - spring-boot-starter-validation - 3.5.5 - - - org.springframework.boot - spring-boot-starter-web - 3.5.5 - - - org.springframework.boot - spring-boot-starter-web-services - 3.5.5 - - - org.springframework.boot - spring-boot-starter-webflux - 3.5.5 - - - org.springframework.boot - spring-boot-starter-websocket - 3.5.5 - - - org.springframework.boot - spring-boot-test - 3.5.5 - - - org.springframework.boot - spring-boot-test-autoconfigure - 3.5.5 - - - org.springframework.boot - spring-boot-testcontainers - 3.5.5 - - - com.sun.xml.messaging.saaj - saaj-impl - ${saaj-impl.version} - - - org.seleniumhq.selenium - htmlunit3-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} - - - com.redis - testcontainers-redis - ${testcontainers-redis-module.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.vibur - vibur-dbcp - ${vibur.version} - - - org.vibur - vibur-object-pool - ${vibur.version} - - - org.webjars - webjars-locator-core - ${webjars-locator-core.version} - - - org.webjars - webjars-locator-lite - ${webjars-locator-lite.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.apache.activemq - activemq-bom - ${activemq.version} - pom - import - - - org.apache.activemq - artemis-bom - ${artemis.version} - pom - import - - - org.assertj - assertj-bom - ${assertj.version} - pom - import - - - io.zipkin.reporter2 - zipkin-reporter-bom - ${zipkin-reporter.version} - pom - import - - - io.zipkin.brave - brave-bom - ${brave.version} - pom - import - - - org.apache.cassandra - java-driver-bom - ${cassandra-driver.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 - - - org.mongodb - mongodb-driver-bom - ${mongodb.version} - pom - import - - - io.netty - netty-bom - ${netty.version} - pom - import - - - io.opentelemetry - opentelemetry-bom - ${opentelemetry.version} - pom - import - - - io.prometheus - prometheus-metrics-bom - ${prometheus-client.version} - pom - import - - - io.prometheus - simpleclient_bom - ${prometheus-simpleclient.version} - pom - import - - - org.apache.pulsar - pulsar-bom - ${pulsar.version} - pom - import - - - org.apache.pulsar - pulsar-client-reactive-bom - ${pulsar-reactive.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.cyclonedx - cyclonedx-maven-plugin - ${cyclonedx-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.5.5 - - - org.codehaus.mojo - versions-maven-plugin - ${versions-maven-plugin.version} - - - org.codehaus.mojo - xml-maven-plugin - ${xml-maven-plugin.version} - - - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.5.5/spring-boot-dependencies-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.5.5/spring-boot-dependencies-3.5.5.pom.sha1 deleted file mode 100644 index 5bef7ec..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-dependencies/3.5.5/spring-boot-dependencies-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2bb63f94e8d5f7863973de73cff26d27b0493d9d \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/_remote.repositories deleted file mode 100644 index 372ca4b..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.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. -#Thu Apr 02 20:43:13 UTC 2026 -spring-boot-loader-tools-3.5.5.jar>central= -spring-boot-loader-tools-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/spring-boot-loader-tools-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/spring-boot-loader-tools-3.5.5.jar deleted file mode 100644 index 9e0a3cf..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/spring-boot-loader-tools-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/spring-boot-loader-tools-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/spring-boot-loader-tools-3.5.5.jar.sha1 deleted file mode 100644 index 9a679be..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/spring-boot-loader-tools-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fe0312d08bc7f3771f80f629738cf39b04218f1a \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/spring-boot-loader-tools-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/spring-boot-loader-tools-3.5.5.pom deleted file mode 100644 index b81ccb7..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/spring-boot-loader-tools-3.5.5.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-loader-tools - 3.5.5 - spring-boot-loader-tools - Spring Boot Loader Tools - 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.commons - commons-compress - 1.27.1 - compile - - - org.springframework - spring-core - 6.2.10 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/spring-boot-loader-tools-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/spring-boot-loader-tools-3.5.5.pom.sha1 deleted file mode 100644 index 59ca4dd..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-loader-tools/3.5.5/spring-boot-loader-tools-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -62f62b9ed63e7cf8e8f594f786eb330757a23603 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/_remote.repositories deleted file mode 100644 index 7a56ff4..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.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. -#Thu Apr 02 20:37:39 UTC 2026 -spring-boot-maven-plugin-3.5.5.jar>central= -spring-boot-maven-plugin-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/spring-boot-maven-plugin-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/spring-boot-maven-plugin-3.5.5.jar deleted file mode 100644 index 040893f..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/spring-boot-maven-plugin-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/spring-boot-maven-plugin-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/spring-boot-maven-plugin-3.5.5.jar.sha1 deleted file mode 100644 index 378ed03..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/spring-boot-maven-plugin-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e0c208ee3be1c3a9409d4a1fe66fea872ee2b7e8 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/spring-boot-maven-plugin-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/spring-boot-maven-plugin-3.5.5.pom deleted file mode 100644 index 904977a..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/spring-boot-maven-plugin-3.5.5.pom +++ /dev/null @@ -1,117 +0,0 @@ - - - 4.0.0 - org.springframework.boot - spring-boot-maven-plugin - 3.5.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.5.5 - runtime - - - org.springframework.boot - spring-boot-loader-tools - 3.5.5 - runtime - - - org.apache.maven.shared - maven-common-artifact-filters - 3.4.0 - runtime - - - javax.enterprise - cdi-api - - - javax.inject - javax.inject - - - javax.annotation - javax.annotation-api - - - - - org.sonatype.plexus - plexus-build-api - 0.0.7 - runtime - - - org.codehaus.plexus - plexus-utils - - - - - org.springframework - spring-core - 6.2.10 - runtime - - - org.springframework - spring-context - 6.2.10 - runtime - - - org.apache.maven.plugins - maven-shade-plugin - 3.6.0 - compile - - - javax.enterprise - cdi-api - - - javax.inject - javax.inject - - - javax.annotation - javax.annotation-api - - - true - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/spring-boot-maven-plugin-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/spring-boot-maven-plugin-3.5.5.pom.sha1 deleted file mode 100644 index eb2279a..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-maven-plugin/3.5.5/spring-boot-maven-plugin-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8fee834f6dc7f647bc31be53d0f6bc3c45315a70 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/_remote.repositories deleted file mode 100644 index a2c34a9..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-starter-actuator-3.5.5.jar>central= -spring-boot-starter-actuator-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/spring-boot-starter-actuator-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/spring-boot-starter-actuator-3.5.5.jar deleted file mode 100644 index 504b299..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/spring-boot-starter-actuator-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/spring-boot-starter-actuator-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/spring-boot-starter-actuator-3.5.5.jar.sha1 deleted file mode 100644 index b5b29cf..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/spring-boot-starter-actuator-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2ed753e9d2a9d812dbcc565c9983c87d7b4fe387 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/spring-boot-starter-actuator-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/spring-boot-starter-actuator-3.5.5.pom deleted file mode 100644 index 0089571..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/spring-boot-starter-actuator-3.5.5.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-actuator - 3.5.5 - spring-boot-starter-actuator - Starter for using Spring Boot's Actuator which provides production ready features to help you monitor and manage your application - 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.5.5 - compile - - - org.springframework.boot - spring-boot-actuator-autoconfigure - 3.5.5 - compile - - - io.micrometer - micrometer-observation - 1.15.3 - compile - - - io.micrometer - micrometer-jakarta9 - 1.15.3 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/spring-boot-starter-actuator-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/spring-boot-starter-actuator-3.5.5.pom.sha1 deleted file mode 100644 index 222f5ce..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.5.5/spring-boot-starter-actuator-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0510654dfd22998ec8749ba6c20c6d464d4d27fa \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/_remote.repositories deleted file mode 100644 index 38669ee..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-starter-data-mongodb-3.5.5.jar>central= -spring-boot-starter-data-mongodb-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/spring-boot-starter-data-mongodb-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/spring-boot-starter-data-mongodb-3.5.5.jar deleted file mode 100644 index b6b2a78..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/spring-boot-starter-data-mongodb-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/spring-boot-starter-data-mongodb-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/spring-boot-starter-data-mongodb-3.5.5.jar.sha1 deleted file mode 100644 index 4add665..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/spring-boot-starter-data-mongodb-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5b157d8d37a247af2fe56473566c5eb9eb2a8ee7 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/spring-boot-starter-data-mongodb-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/spring-boot-starter-data-mongodb-3.5.5.pom deleted file mode 100644 index 38c36ac..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/spring-boot-starter-data-mongodb-3.5.5.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-data-mongodb - 3.5.5 - spring-boot-starter-data-mongodb - Starter for using MongoDB document-oriented database and Spring Data MongoDB - 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.5.5 - compile - - - org.mongodb - mongodb-driver-sync - 5.5.1 - compile - - - org.springframework.data - spring-data-mongodb - 4.5.3 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/spring-boot-starter-data-mongodb-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/spring-boot-starter-data-mongodb-3.5.5.pom.sha1 deleted file mode 100644 index 6d3db11..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/3.5.5/spring-boot-starter-data-mongodb-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -83e9920edc2872f1248d130d9e7a695b4a53960f \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/_remote.repositories deleted file mode 100644 index 6eb3aeb..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-starter-json-3.5.5.jar>central= -spring-boot-starter-json-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/spring-boot-starter-json-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/spring-boot-starter-json-3.5.5.jar deleted file mode 100644 index 4ec5f01..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/spring-boot-starter-json-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/spring-boot-starter-json-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/spring-boot-starter-json-3.5.5.jar.sha1 deleted file mode 100644 index a666155..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/spring-boot-starter-json-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -316736898ceac2a806e08e981ea059c78b982383 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/spring-boot-starter-json-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/spring-boot-starter-json-3.5.5.pom deleted file mode 100644 index ad010ed..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/spring-boot-starter-json-3.5.5.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-json - 3.5.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.5.5 - compile - - - org.springframework - spring-web - 6.2.10 - compile - - - com.fasterxml.jackson.core - jackson-databind - 2.19.2 - compile - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - 2.19.2 - compile - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - 2.19.2 - compile - - - com.fasterxml.jackson.module - jackson-module-parameter-names - 2.19.2 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/spring-boot-starter-json-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/spring-boot-starter-json-3.5.5.pom.sha1 deleted file mode 100644 index 8fc5c03..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.5.5/spring-boot-starter-json-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -60dfdb0f6d07e09aae451b70bb8230c57f8d06cb \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/_remote.repositories deleted file mode 100644 index 018f5bc..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-starter-logging-3.5.5.jar>central= -spring-boot-starter-logging-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/spring-boot-starter-logging-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/spring-boot-starter-logging-3.5.5.jar deleted file mode 100644 index fc38401..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/spring-boot-starter-logging-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/spring-boot-starter-logging-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/spring-boot-starter-logging-3.5.5.jar.sha1 deleted file mode 100644 index 9323a46..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/spring-boot-starter-logging-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -981750c503485e442e37b7cac1dc19c5ddfc6d58 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/spring-boot-starter-logging-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/spring-boot-starter-logging-3.5.5.pom deleted file mode 100644 index aafeb7b..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/spring-boot-starter-logging-3.5.5.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-logging - 3.5.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.5.18 - compile - - - org.apache.logging.log4j - log4j-to-slf4j - 2.24.3 - compile - - - org.slf4j - jul-to-slf4j - 2.0.17 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/spring-boot-starter-logging-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/spring-boot-starter-logging-3.5.5.pom.sha1 deleted file mode 100644 index 8bda804..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.5.5/spring-boot-starter-logging-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d2b68b7c3eae9576896429fc1bb6f9ebf50e90f9 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/_remote.repositories deleted file mode 100644 index 77df2d6..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-starter-mail-3.5.5.jar>central= -spring-boot-starter-mail-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/spring-boot-starter-mail-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/spring-boot-starter-mail-3.5.5.jar deleted file mode 100644 index 93f95bb..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/spring-boot-starter-mail-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/spring-boot-starter-mail-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/spring-boot-starter-mail-3.5.5.jar.sha1 deleted file mode 100644 index 49674d1..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/spring-boot-starter-mail-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1ad8951b8932a9016dcf01ed9230b294a85f4aa8 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/spring-boot-starter-mail-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/spring-boot-starter-mail-3.5.5.pom deleted file mode 100644 index ff18b3e..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/spring-boot-starter-mail-3.5.5.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-mail - 3.5.5 - spring-boot-starter-mail - Starter for using Java Mail and Spring Framework's email sending 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.5.5 - compile - - - org.springframework - spring-context-support - 6.2.10 - compile - - - org.eclipse.angus - jakarta.mail - 2.0.4 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/spring-boot-starter-mail-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/spring-boot-starter-mail-3.5.5.pom.sha1 deleted file mode 100644 index c3d7ebc..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-mail/3.5.5/spring-boot-starter-mail-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -136770cab50398ecb0927c2c46441a5f5729e690 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.2.4/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.2.4/_remote.repositories deleted file mode 100644 index fe4f572..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.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. -#Thu Apr 02 20:38:08 UTC 2026 -spring-boot-starter-parent-3.2.4.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.2.4/spring-boot-starter-parent-3.2.4.pom b/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.2.4/spring-boot-starter-parent-3.2.4.pom deleted file mode 100644 index 361d48e..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.2.4/spring-boot-starter-parent-3.2.4.pom +++ /dev/null @@ -1,344 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-dependencies - 3.2.4 - - spring-boot-starter-parent - pom - spring-boot-starter-parent - Parent pom providing dependency and plugin management for applications built with Maven - - 17 - @ - ${java.version} - UTF-8 - UTF-8 - - 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 - - - - - ${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 - - ${project.build.sourceEncoding} - - ${resource.delimiter} - - false - - - - org.graalvm.buildtools - native-maven-plugin - true - - - io.github.git-commit-id - git-commit-id-maven-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 - 3.2.4 - - - - - package - - shade - - - - - META-INF/spring.handlers - - - META-INF/spring.schemas - - - META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports - - - META-INF/spring/org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration.imports - - - META-INF/spring.factories - - - - ${start-class} - - - - - - - - - - - - native - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - true - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - paketobuildpacks/builder-jammy-tiny:latest - - true - - - - - - process-aot - - process-aot - - - - - - org.graalvm.buildtools - native-maven-plugin - - ${project.build.outputDirectory} - - true - - 22.3 - - - - add-reachability-metadata - - add-reachability-metadata - - - - - - - - - - nativeTest - - - org.junit.platform - junit-platform-launcher - test - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - process-test-aot - - process-test-aot - - - - - - org.graalvm.buildtools - native-maven-plugin - - ${project.build.outputDirectory} - - true - - 22.3 - - - - native-test - - test - - - - - - - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.2.4/spring-boot-starter-parent-3.2.4.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.2.4/spring-boot-starter-parent-3.2.4.pom.sha1 deleted file mode 100644 index 57ccfc2..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.2.4/spring-boot-starter-parent-3.2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0793d79290cd5b09375592dc5a8f0216b988620b \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.5.5/_remote.repositories deleted file mode 100644 index a4957bb..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.5.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. -#Thu Apr 02 20:37:33 UTC 2026 -spring-boot-starter-parent-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.5.5/spring-boot-starter-parent-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.5.5/spring-boot-starter-parent-3.5.5.pom deleted file mode 100644 index 28c0e35..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.5.5/spring-boot-starter-parent-3.5.5.pom +++ /dev/null @@ -1,354 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-dependencies - 3.5.5 - - spring-boot-starter-parent - pom - spring-boot-starter-parent - Parent pom providing dependency and plugin management for applications built with Maven - - 17 - @ - ${java.version} - UTF-8 - UTF-8 - ${start-class} - - 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 - - - - - ${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 - - ${project.build.sourceEncoding} - - ${resource.delimiter} - - false - - - - org.graalvm.buildtools - native-maven-plugin - true - - - io.github.git-commit-id - git-commit-id-maven-plugin - - - - revision - - - - - true - true - ${project.build.outputDirectory}/git.properties - - - - org.cyclonedx - cyclonedx-maven-plugin - - - generate-resources - - makeAggregateBom - - - application - ${project.build.outputDirectory}/META-INF/sbom - json - application.cdx - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - repackage - - repackage - - - - - ${spring-boot.run.main-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 - 3.5.5 - - - - - package - - shade - - - - - META-INF/spring.handlers - - - META-INF/spring.schemas - - - META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports - - - META-INF/spring/org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration.imports - - - META-INF/spring.factories - - - - ${start-class} - - true - - - - - - - - - - - - - native - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - true - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - process-aot - - process-aot - - - - - - org.graalvm.buildtools - native-maven-plugin - - ${project.build.outputDirectory} - 22.3 - - - - add-reachability-metadata - - add-reachability-metadata - - - - - - - - - - nativeTest - - - org.junit.platform - junit-platform-launcher - test - - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - process-test-aot - - process-test-aot - - - - - - org.graalvm.buildtools - native-maven-plugin - - ${project.build.outputDirectory} - 22.3 - - - - native-test - - test - - - - - - - - - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.5.5/spring-boot-starter-parent-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.5.5/spring-boot-starter-parent-3.5.5.pom.sha1 deleted file mode 100644 index a5ca4c0..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-parent/3.5.5/spring-boot-starter-parent-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -795fe2376bf534fd90117120b6478749d228d855 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/_remote.repositories deleted file mode 100644 index fc6dd35..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-starter-reactor-netty-3.5.5.jar>central= -spring-boot-starter-reactor-netty-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/spring-boot-starter-reactor-netty-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/spring-boot-starter-reactor-netty-3.5.5.jar deleted file mode 100644 index 493abcb..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/spring-boot-starter-reactor-netty-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/spring-boot-starter-reactor-netty-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/spring-boot-starter-reactor-netty-3.5.5.jar.sha1 deleted file mode 100644 index 4066d51..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/spring-boot-starter-reactor-netty-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -002c20b130048959ada50e1af0fc65779e38a720 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/spring-boot-starter-reactor-netty-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/spring-boot-starter-reactor-netty-3.5.5.pom deleted file mode 100644 index c1bd79c..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/spring-boot-starter-reactor-netty-3.5.5.pom +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-reactor-netty - 3.5.5 - spring-boot-starter-reactor-netty - Starter for using Reactor Netty as the embedded reactive HTTP server. - 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 - - - - io.projectreactor.netty - reactor-netty-http - 1.2.9 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/spring-boot-starter-reactor-netty-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/spring-boot-starter-reactor-netty-3.5.5.pom.sha1 deleted file mode 100644 index 5417ad1..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-reactor-netty/3.5.5/spring-boot-starter-reactor-netty-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d313b7a6ffe261fa95c075d6b004f13be235dd8f \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/_remote.repositories deleted file mode 100644 index f2ff8ad..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-starter-test-3.5.5.jar>central= -spring-boot-starter-test-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/spring-boot-starter-test-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/spring-boot-starter-test-3.5.5.jar deleted file mode 100644 index 7e66c58..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/spring-boot-starter-test-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/spring-boot-starter-test-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/spring-boot-starter-test-3.5.5.jar.sha1 deleted file mode 100644 index 6fde63f..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/spring-boot-starter-test-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8d87701b755f150a9283dc1f3422e96bc69fed3b \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/spring-boot-starter-test-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/spring-boot-starter-test-3.5.5.pom deleted file mode 100644 index 3114572..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/spring-boot-starter-test-3.5.5.pom +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-test - 3.5.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.5.5 - compile - - - org.springframework.boot - spring-boot-test - 3.5.5 - compile - - - org.springframework.boot - spring-boot-test-autoconfigure - 3.5.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.2 - compile - - - org.assertj - assertj-core - 3.27.4 - compile - - - org.awaitility - awaitility - 4.2.2 - compile - - - org.hamcrest - hamcrest - 3.0 - compile - - - org.junit.jupiter - junit-jupiter - 5.12.2 - compile - - - org.mockito - mockito-core - 5.17.0 - compile - - - org.mockito - mockito-junit-jupiter - 5.17.0 - compile - - - org.skyscreamer - jsonassert - 1.5.3 - compile - - - org.springframework - spring-core - 6.2.10 - compile - - - org.springframework - spring-test - 6.2.10 - compile - - - org.xmlunit - xmlunit-core - 2.10.3 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/spring-boot-starter-test-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/spring-boot-starter-test-3.5.5.pom.sha1 deleted file mode 100644 index c3bac46..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.5.5/spring-boot-starter-test-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c6155a11103873b0f0f672a9a5695ffbed949e19 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/_remote.repositories deleted file mode 100644 index 9948bdd..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-starter-tomcat-3.5.5.jar>central= -spring-boot-starter-tomcat-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/spring-boot-starter-tomcat-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/spring-boot-starter-tomcat-3.5.5.jar deleted file mode 100644 index 47630d2..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/spring-boot-starter-tomcat-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/spring-boot-starter-tomcat-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/spring-boot-starter-tomcat-3.5.5.jar.sha1 deleted file mode 100644 index 1328809..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/spring-boot-starter-tomcat-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c1342d34e6eeee72d98675d413ae2e925ea22852 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/spring-boot-starter-tomcat-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/spring-boot-starter-tomcat-3.5.5.pom deleted file mode 100644 index faa4d24..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/spring-boot-starter-tomcat-3.5.5.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-tomcat - 3.5.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.44 - compile - - - org.apache.tomcat - tomcat-annotations-api - - - - - org.apache.tomcat.embed - tomcat-embed-el - 10.1.44 - compile - - - org.apache.tomcat.embed - tomcat-embed-websocket - 10.1.44 - compile - - - org.apache.tomcat - tomcat-annotations-api - - - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/spring-boot-starter-tomcat-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/spring-boot-starter-tomcat-3.5.5.pom.sha1 deleted file mode 100644 index e401381..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.5.5/spring-boot-starter-tomcat-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f7f15c3ffa12843a74f7bae7563b071a4ce33aef \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/_remote.repositories deleted file mode 100644 index 1782039..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-starter-validation-3.5.5.jar>central= -spring-boot-starter-validation-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/spring-boot-starter-validation-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/spring-boot-starter-validation-3.5.5.jar deleted file mode 100644 index d8b20c0..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/spring-boot-starter-validation-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/spring-boot-starter-validation-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/spring-boot-starter-validation-3.5.5.jar.sha1 deleted file mode 100644 index bfa981b..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/spring-boot-starter-validation-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5510bd155652ef231976f1ff1ca1bb1d9698829c \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/spring-boot-starter-validation-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/spring-boot-starter-validation-3.5.5.pom deleted file mode 100644 index 5b1eccf..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/spring-boot-starter-validation-3.5.5.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-validation - 3.5.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.5.5 - compile - - - org.apache.tomcat.embed - tomcat-embed-el - 10.1.44 - compile - - - org.hibernate.validator - hibernate-validator - 8.0.3.Final - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/spring-boot-starter-validation-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/spring-boot-starter-validation-3.5.5.pom.sha1 deleted file mode 100644 index d95b018..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-validation/3.5.5/spring-boot-starter-validation-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -74fb1fc467dc0ed66e14387ca1b8b8785f5f861a \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/_remote.repositories deleted file mode 100644 index 3e0e3bf..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-starter-web-3.5.5.jar>central= -spring-boot-starter-web-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/spring-boot-starter-web-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/spring-boot-starter-web-3.5.5.jar deleted file mode 100644 index 5158299..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/spring-boot-starter-web-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/spring-boot-starter-web-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/spring-boot-starter-web-3.5.5.jar.sha1 deleted file mode 100644 index 5f2ebd3..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/spring-boot-starter-web-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b9039cd5aa1feda2cfbd487233e343f66627f78f \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/spring-boot-starter-web-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/spring-boot-starter-web-3.5.5.pom deleted file mode 100644 index 54e3a69..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/spring-boot-starter-web-3.5.5.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-web - 3.5.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.5.5 - compile - - - org.springframework.boot - spring-boot-starter-json - 3.5.5 - compile - - - org.springframework.boot - spring-boot-starter-tomcat - 3.5.5 - compile - - - org.springframework - spring-web - 6.2.10 - compile - - - org.springframework - spring-webmvc - 6.2.10 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/spring-boot-starter-web-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/spring-boot-starter-web-3.5.5.pom.sha1 deleted file mode 100644 index 3a5a73b..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.5.5/spring-boot-starter-web-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -53f5aaa1df12c44485df594ca8b0dca7779ba095 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/_remote.repositories deleted file mode 100644 index 9ab7873..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-starter-webflux-3.5.5.jar>central= -spring-boot-starter-webflux-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/spring-boot-starter-webflux-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/spring-boot-starter-webflux-3.5.5.jar deleted file mode 100644 index 42b4420..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/spring-boot-starter-webflux-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/spring-boot-starter-webflux-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/spring-boot-starter-webflux-3.5.5.jar.sha1 deleted file mode 100644 index b89e0df..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/spring-boot-starter-webflux-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -489afe729b86a79366895db055a4d1ff37d26f79 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/spring-boot-starter-webflux-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/spring-boot-starter-webflux-3.5.5.pom deleted file mode 100644 index 3552777..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/spring-boot-starter-webflux-3.5.5.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter-webflux - 3.5.5 - spring-boot-starter-webflux - Starter for building WebFlux applications using Spring Framework's Reactive Web 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.5.5 - compile - - - org.springframework.boot - spring-boot-starter-json - 3.5.5 - compile - - - org.springframework.boot - spring-boot-starter-reactor-netty - 3.5.5 - compile - - - org.springframework - spring-web - 6.2.10 - compile - - - org.springframework - spring-webflux - 6.2.10 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/spring-boot-starter-webflux-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/spring-boot-starter-webflux-3.5.5.pom.sha1 deleted file mode 100644 index 21993c6..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter-webflux/3.5.5/spring-boot-starter-webflux-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -75513206ee2abfabc4ec38692d118a7c475d6039 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/_remote.repositories deleted file mode 100644 index d7add9b..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-starter-3.5.5.jar>central= -spring-boot-starter-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/spring-boot-starter-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/spring-boot-starter-3.5.5.jar deleted file mode 100644 index 1695480..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/spring-boot-starter-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/spring-boot-starter-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/spring-boot-starter-3.5.5.jar.sha1 deleted file mode 100644 index 1ab443c..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/spring-boot-starter-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f0e27ab73519ebebfc72c9b16ccde342cc9f599d \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/spring-boot-starter-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/spring-boot-starter-3.5.5.pom deleted file mode 100644 index c0c3266..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/spring-boot-starter-3.5.5.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-starter - 3.5.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.5.5 - compile - - - org.springframework.boot - spring-boot-autoconfigure - 3.5.5 - compile - - - org.springframework.boot - spring-boot-starter-logging - 3.5.5 - compile - - - jakarta.annotation - jakarta.annotation-api - 2.1.1 - compile - - - org.springframework - spring-core - 6.2.10 - compile - - - org.yaml - snakeyaml - 2.4 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/spring-boot-starter-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/spring-boot-starter-3.5.5.pom.sha1 deleted file mode 100644 index f4d2d75..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-starter/3.5.5/spring-boot-starter-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c6cba71300439ae18ef869e425f9ebcfeee6b354 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/_remote.repositories deleted file mode 100644 index 693b773..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-test-autoconfigure-3.5.5.jar>central= -spring-boot-test-autoconfigure-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/spring-boot-test-autoconfigure-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/spring-boot-test-autoconfigure-3.5.5.jar deleted file mode 100644 index ea680b5..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/spring-boot-test-autoconfigure-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/spring-boot-test-autoconfigure-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/spring-boot-test-autoconfigure-3.5.5.jar.sha1 deleted file mode 100644 index 3c237fd..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/spring-boot-test-autoconfigure-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f68808c0dbd4660c2f901f7991ffb94601217257 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/spring-boot-test-autoconfigure-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/spring-boot-test-autoconfigure-3.5.5.pom deleted file mode 100644 index 2ecf014..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/spring-boot-test-autoconfigure-3.5.5.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-test-autoconfigure - 3.5.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.5.5 - compile - - - org.springframework.boot - spring-boot-test - 3.5.5 - compile - - - org.springframework.boot - spring-boot-autoconfigure - 3.5.5 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/spring-boot-test-autoconfigure-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/spring-boot-test-autoconfigure-3.5.5.pom.sha1 deleted file mode 100644 index 0940f42..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.5.5/spring-boot-test-autoconfigure-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c9d6877f01cd544510a2165fd38afd8b07059faa \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/_remote.repositories deleted file mode 100644 index 3e1cd12..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-test/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-test-3.5.5.jar>central= -spring-boot-test-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/spring-boot-test-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/spring-boot-test-3.5.5.jar deleted file mode 100644 index b525fba..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/spring-boot-test-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/spring-boot-test-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/spring-boot-test-3.5.5.jar.sha1 deleted file mode 100644 index c4fbfaf..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/spring-boot-test-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8ea9fc3febf3d6f4e8c179c9ec08a94aa93201ab \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/spring-boot-test-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/spring-boot-test-3.5.5.pom deleted file mode 100644 index 1fa7e6a..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/spring-boot-test-3.5.5.pom +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot-test - 3.5.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.5.5 - compile - - - org.springframework - spring-test - 6.2.10 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/spring-boot-test-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/spring-boot-test-3.5.5.pom.sha1 deleted file mode 100644 index f632c71..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot-test/3.5.5/spring-boot-test-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4fce42ad00e946e093db47a3d42b931fac9842e5 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot/3.5.5/_remote.repositories b/.m2/repository/org/springframework/boot/spring-boot/3.5.5/_remote.repositories deleted file mode 100644 index 290f0d5..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot/3.5.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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-boot-3.5.5.jar>central= -spring-boot-3.5.5.pom>central= diff --git a/.m2/repository/org/springframework/boot/spring-boot/3.5.5/spring-boot-3.5.5.jar b/.m2/repository/org/springframework/boot/spring-boot/3.5.5/spring-boot-3.5.5.jar deleted file mode 100644 index 86397ba..0000000 Binary files a/.m2/repository/org/springframework/boot/spring-boot/3.5.5/spring-boot-3.5.5.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/boot/spring-boot/3.5.5/spring-boot-3.5.5.jar.sha1 b/.m2/repository/org/springframework/boot/spring-boot/3.5.5/spring-boot-3.5.5.jar.sha1 deleted file mode 100644 index 26df33b..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot/3.5.5/spring-boot-3.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -07d50b76ea4905d6c61fea5cb6556bc735c55da1 \ No newline at end of file diff --git a/.m2/repository/org/springframework/boot/spring-boot/3.5.5/spring-boot-3.5.5.pom b/.m2/repository/org/springframework/boot/spring-boot/3.5.5/spring-boot-3.5.5.pom deleted file mode 100644 index 732659a..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot/3.5.5/spring-boot-3.5.5.pom +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.boot - spring-boot - 3.5.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.2.10 - compile - - - org.springframework - spring-context - 6.2.10 - compile - - - diff --git a/.m2/repository/org/springframework/boot/spring-boot/3.5.5/spring-boot-3.5.5.pom.sha1 b/.m2/repository/org/springframework/boot/spring-boot/3.5.5/spring-boot-3.5.5.pom.sha1 deleted file mode 100644 index 9df4c79..0000000 --- a/.m2/repository/org/springframework/boot/spring-boot/3.5.5/spring-boot-3.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2d73759eeb94af84af19c0d810cfdf2aa81a3963 \ No newline at end of file diff --git a/.m2/repository/org/springframework/data/spring-data-bom/2023.1.4/_remote.repositories b/.m2/repository/org/springframework/data/spring-data-bom/2023.1.4/_remote.repositories deleted file mode 100644 index 3a7cdb1..0000000 --- a/.m2/repository/org/springframework/data/spring-data-bom/2023.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. -#Thu Apr 02 20:38:13 UTC 2026 -spring-data-bom-2023.1.4.pom>central= diff --git a/.m2/repository/org/springframework/data/spring-data-bom/2023.1.4/spring-data-bom-2023.1.4.pom b/.m2/repository/org/springframework/data/spring-data-bom/2023.1.4/spring-data-bom-2023.1.4.pom deleted file mode 100644 index d924013..0000000 --- a/.m2/repository/org/springframework/data/spring-data-bom/2023.1.4/spring-data-bom-2023.1.4.pom +++ /dev/null @@ -1,148 +0,0 @@ - - - 4.0.0 - org.springframework.data - spring-data-bom - 2023.1.4 - 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.4 - - - org.springframework.data - spring-data-commons - 3.2.4 - - - org.springframework.data - spring-data-couchbase - 5.2.4 - - - org.springframework.data - spring-data-elasticsearch - 5.2.4 - - - org.springframework.data - spring-data-jdbc - 3.2.4 - - - org.springframework.data - spring-data-r2dbc - 3.2.4 - - - org.springframework.data - spring-data-relational - 3.2.4 - - - org.springframework.data - spring-data-jpa - 3.2.4 - - - org.springframework.data - spring-data-envers - 3.2.4 - - - org.springframework.data - spring-data-mongodb - 4.2.4 - - - org.springframework.data - spring-data-neo4j - 7.2.4 - - - org.springframework.data - spring-data-redis - 3.2.4 - - - org.springframework.data - spring-data-rest-webmvc - 4.2.4 - - - org.springframework.data - spring-data-rest-core - 4.2.4 - - - org.springframework.data - spring-data-rest-hal-explorer - 4.2.4 - - - org.springframework.data - spring-data-keyvalue - 3.2.4 - - - org.springframework.data - spring-data-ldap - 3.2.4 - - - - diff --git a/.m2/repository/org/springframework/data/spring-data-bom/2023.1.4/spring-data-bom-2023.1.4.pom.sha1 b/.m2/repository/org/springframework/data/spring-data-bom/2023.1.4/spring-data-bom-2023.1.4.pom.sha1 deleted file mode 100644 index 3f3ae2b..0000000 --- a/.m2/repository/org/springframework/data/spring-data-bom/2023.1.4/spring-data-bom-2023.1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -00415b48262f56cb106d7aeff0adb4c9eb1fb12e \ No newline at end of file diff --git a/.m2/repository/org/springframework/data/spring-data-bom/2025.0.3/_remote.repositories b/.m2/repository/org/springframework/data/spring-data-bom/2025.0.3/_remote.repositories deleted file mode 100644 index e1d9ff6..0000000 --- a/.m2/repository/org/springframework/data/spring-data-bom/2025.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. -#Thu Apr 02 20:37:38 UTC 2026 -spring-data-bom-2025.0.3.pom>central= diff --git a/.m2/repository/org/springframework/data/spring-data-bom/2025.0.3/spring-data-bom-2025.0.3.pom b/.m2/repository/org/springframework/data/spring-data-bom/2025.0.3/spring-data-bom-2025.0.3.pom deleted file mode 100644 index 96ae6a2..0000000 --- a/.m2/repository/org/springframework/data/spring-data-bom/2025.0.3/spring-data-bom-2025.0.3.pom +++ /dev/null @@ -1,148 +0,0 @@ - - - 4.0.0 - org.springframework.data - spring-data-bom - 2025.0.3 - 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.5.3 - - - org.springframework.data - spring-data-commons - 3.5.3 - - - org.springframework.data - spring-data-couchbase - 5.5.3 - - - org.springframework.data - spring-data-elasticsearch - 5.5.3 - - - org.springframework.data - spring-data-jdbc - 3.5.3 - - - org.springframework.data - spring-data-r2dbc - 3.5.3 - - - org.springframework.data - spring-data-relational - 3.5.3 - - - org.springframework.data - spring-data-jpa - 3.5.3 - - - org.springframework.data - spring-data-envers - 3.5.3 - - - org.springframework.data - spring-data-mongodb - 4.5.3 - - - org.springframework.data - spring-data-neo4j - 7.5.3 - - - org.springframework.data - spring-data-redis - 3.5.3 - - - org.springframework.data - spring-data-rest-webmvc - 4.5.3 - - - org.springframework.data - spring-data-rest-core - 4.5.3 - - - org.springframework.data - spring-data-rest-hal-explorer - 4.5.3 - - - org.springframework.data - spring-data-keyvalue - 3.5.3 - - - org.springframework.data - spring-data-ldap - 3.5.3 - - - - diff --git a/.m2/repository/org/springframework/data/spring-data-bom/2025.0.3/spring-data-bom-2025.0.3.pom.sha1 b/.m2/repository/org/springframework/data/spring-data-bom/2025.0.3/spring-data-bom-2025.0.3.pom.sha1 deleted file mode 100644 index 9a3aedd..0000000 --- a/.m2/repository/org/springframework/data/spring-data-bom/2025.0.3/spring-data-bom-2025.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -07fa7f2b61e954d087e19d89f9aee6933b03f8e6 \ No newline at end of file diff --git a/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/_remote.repositories b/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/_remote.repositories deleted file mode 100644 index 87ff1d8..0000000 --- a/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-data-commons-3.5.3.jar>central= -spring-data-commons-3.5.3.pom>central= diff --git a/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/spring-data-commons-3.5.3.jar b/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/spring-data-commons-3.5.3.jar deleted file mode 100644 index 4b0ed40..0000000 Binary files a/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/spring-data-commons-3.5.3.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/spring-data-commons-3.5.3.jar.sha1 b/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/spring-data-commons-3.5.3.jar.sha1 deleted file mode 100644 index 2dedcc7..0000000 --- a/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/spring-data-commons-3.5.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -886e56cfc383f757f057901dc7c448d8dcc73fed \ No newline at end of file diff --git a/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/spring-data-commons-3.5.3.pom b/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/spring-data-commons-3.5.3.pom deleted file mode 100644 index 3b5016f..0000000 --- a/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/spring-data-commons-3.5.3.pom +++ /dev/null @@ -1,387 +0,0 @@ - - - - 4.0.0 - - org.springframework.data - spring-data-commons - 3.5.3 - - 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.5.3 - - - - - 2.11.7 - 1.4.26 - 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.21 - 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 - - - org.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/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/spring-data-commons-3.5.3.pom.sha1 b/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/spring-data-commons-3.5.3.pom.sha1 deleted file mode 100644 index 4d8676c..0000000 --- a/.m2/repository/org/springframework/data/spring-data-commons/3.5.3/spring-data-commons-3.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4ccb49e384c9fee6b842db4f8db8b726fe967145 \ No newline at end of file diff --git a/.m2/repository/org/springframework/data/spring-data-mongodb-parent/4.5.3/_remote.repositories b/.m2/repository/org/springframework/data/spring-data-mongodb-parent/4.5.3/_remote.repositories deleted file mode 100644 index c452e91..0000000 --- a/.m2/repository/org/springframework/data/spring-data-mongodb-parent/4.5.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. -#Thu Apr 02 20:37:53 UTC 2026 -spring-data-mongodb-parent-4.5.3.pom>central= diff --git a/.m2/repository/org/springframework/data/spring-data-mongodb-parent/4.5.3/spring-data-mongodb-parent-4.5.3.pom b/.m2/repository/org/springframework/data/spring-data-mongodb-parent/4.5.3/spring-data-mongodb-parent-4.5.3.pom deleted file mode 100644 index 9886f87..0000000 --- a/.m2/repository/org/springframework/data/spring-data-mongodb-parent/4.5.3/spring-data-mongodb-parent-4.5.3.pom +++ /dev/null @@ -1,164 +0,0 @@ - - - - 4.0.0 - - org.springframework.data - spring-data-mongodb-parent - 4.5.3 - pom - - Spring Data MongoDB - MongoDB support for Spring Data - https://spring.io/projects/spring-data-mongodb - - - org.springframework.data.build - spring-data-parent - 3.5.3 - - - - spring-data-mongodb - spring-data-mongodb-distribution - - - - multi - spring-data-mongodb - 3.5.3 - 5.5.1 - 1.19 - - - - - ogierke - Oliver Gierke - ogierke at gopivotal.com - Pivotal - https://pivotal.io - - Project Lead - - +1 - - - trisberg - Thomas Risberg - trisberg at vmware.com - Pivotal - https://pivotal.io - - Developer - - -5 - - - mpollack - Mark Pollack - mpollack at gopivotal.com - Pivotal - https://pivotal.io - - Developer - - -5 - - - jbrisbin - Jon Brisbin - jbrisbin at gopivotal.com - Pivotal - https://pivotal.io - - Developer - - -6 - - - tdarimont - Thomas Darimont - tdarimont at gopivotal.com - Pivotal - https://pivotal.io - - Developer - - +1 - - - cstrobl - Christoph Strobl - cstrobl at gopivotal.com - Pivotal - https://pivotal.io - - Developer - - +1 - - - mpaluch - Mark Paluch - mpaluch at pivotal.io - Pivotal - https://www.pivotal.io - - Developer - - +1 - - - - - scm:git:https://github.com/spring-projects/spring-data-mongodb.git - scm:git:git@github.com:spring-projects/spring-data-mongodb.git - https://github.com/spring-projects/spring-data-mongodb - - - - GitHub - https://github.com/spring-projects/spring-data-mongodb/issues - - - - - jmh - - - jitpack.io - https://jitpack.io - - - - - mongo-4.x - - 4.11.1 - 1.8.0 - - - - - - - - - - org.mongodb - mongodb-driver-bom - ${mongo} - pom - import - - - - - - - - - - - diff --git a/.m2/repository/org/springframework/data/spring-data-mongodb-parent/4.5.3/spring-data-mongodb-parent-4.5.3.pom.sha1 b/.m2/repository/org/springframework/data/spring-data-mongodb-parent/4.5.3/spring-data-mongodb-parent-4.5.3.pom.sha1 deleted file mode 100644 index 69e62d3..0000000 --- a/.m2/repository/org/springframework/data/spring-data-mongodb-parent/4.5.3/spring-data-mongodb-parent-4.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cc3c4c80d4c5c98439e5bdcf3739cb81700d248c \ No newline at end of file diff --git a/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/_remote.repositories b/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/_remote.repositories deleted file mode 100644 index d085f41..0000000 --- a/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-data-mongodb-4.5.3.jar>central= -spring-data-mongodb-4.5.3.pom>central= diff --git a/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/spring-data-mongodb-4.5.3.jar b/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/spring-data-mongodb-4.5.3.jar deleted file mode 100644 index a1c0a1c..0000000 Binary files a/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/spring-data-mongodb-4.5.3.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/spring-data-mongodb-4.5.3.jar.sha1 b/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/spring-data-mongodb-4.5.3.jar.sha1 deleted file mode 100644 index 9586978..0000000 --- a/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/spring-data-mongodb-4.5.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a5b994775dab43a47dc428848cad293d44b8f992 \ No newline at end of file diff --git a/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/spring-data-mongodb-4.5.3.pom b/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/spring-data-mongodb-4.5.3.pom deleted file mode 100644 index 7029a25..0000000 --- a/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/spring-data-mongodb-4.5.3.pom +++ /dev/null @@ -1,435 +0,0 @@ - - - - 4.0.0 - - spring-data-mongodb - - Spring Data MongoDB - Core - MongoDB support for Spring Data - - - org.springframework.data - spring-data-mongodb-parent - 4.5.3 - ../pom.xml - - - - 1.3 - 1.7.8 - spring.data.mongodb - ${basedir}/.. - 1.01 - - - - - - - org.mongodb - mongodb-driver-core - - - - org.mongodb - mongodb-driver-sync - true - - - - org.mongodb - mongodb-driver-reactivestreams - true - - - - org.mongodb - mongodb-crypt - true - - - - - org.springframework - spring-tx - - - org.springframework - spring-context - - - org.springframework - spring-beans - - - org.springframework - spring-core - - - commons-logging - commons-logging - - - - - org.springframework - spring-expression - - - - - ${project.groupId} - spring-data-commons - ${springdata.commons} - - - - com.querydsl - querydsl-mongodb - ${querydsl} - true - - - org.mongodb - mongo-java-driver - - - - - - com.querydsl - querydsl-apt - ${querydsl} - provided - - - - javax.annotation - jsr250-api - 1.0 - true - - - - com.google.code.findbugs - jsr305 - 3.0.2 - true - - - - io.projectreactor - reactor-core - true - - - - io.projectreactor - reactor-test - true - - - - org.awaitility - awaitility - ${awaitility} - test - - - - io.reactivex.rxjava3 - rxjava - ${rxjava3} - true - - - - - - javax.interceptor - javax.interceptor-api - 1.2.1 - test - - - - jakarta.enterprise - jakarta.enterprise.cdi-api - ${cdi} - provided - true - - - - jakarta.annotation - jakarta.annotation-api - ${jakarta-annotation-api} - test - - - - org.apache.openwebbeans - openwebbeans-se - ${webbeans} - test - - - - - jakarta.validation - jakarta.validation-api - ${validation} - true - - - - org.objenesis - objenesis - ${objenesis} - true - - - - io.micrometer - micrometer-observation - true - - - - io.micrometer - micrometer-tracing - true - - - - org.hibernate.validator - hibernate-validator - 7.0.1.Final - test - - - - jakarta.el - jakarta.el-api - 4.0.0 - provided - true - - - - org.glassfish - jakarta.el - 4.0.2 - provided - true - - - - com.fasterxml.jackson.core - jackson-databind - true - - - - nl.jqno.equalsverifier - equalsverifier - ${equalsverifier} - test - - - - org.springframework - spring-webmvc - test - - - - de.schauderhaft.degraph - degraph-check - 0.1.4 - test - - - - edu.umd.cs.mtc - multithreadedtc - ${multithreadedtc} - test - - - - org.junit-pioneer - junit-pioneer - 0.5.3 - test - - - - org.junit.platform - junit-platform-launcher - test - - - - org.testcontainers - junit-jupiter - ${testcontainers} - test - - - - org.testcontainers - mongodb - ${testcontainers} - test - - - - jakarta.transaction - jakarta.transaction-api - 2.0.0 - 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-reactor - true - - - - io.mockk - mockk-jvm - ${mockk} - test - - - - io.micrometer - micrometer-test - test - - - com.github.tomakehurst - wiremock-jre8-standalone - - - - - io.micrometer - micrometer-tracing-test - test - - - - io.micrometer - micrometer-tracing-integration-test - test - - - - - org.jmolecules - jmolecules-ddd - ${jmolecules} - test - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - org.openjdk.jmh - jmh-generator-annprocess - ${jmh} - - - - - - - com.mysema.maven - apt-maven-plugin - ${apt} - - - com.querydsl - querydsl-apt - ${querydsl} - - - - - generate-test-sources - - test-process - - - target/generated-test-sources - - - org.springframework.data.mongodb.repository.support.MongoAnnotationProcessor - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - false - false - - **/*Tests.java - - - **/PerformanceTests.java - **/ReactivePerformanceTests.java - - - ${mongo} - ${env.MONGO_VERSION} - - src/test/resources/logging.properties - - true - - - - - - - - diff --git a/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/spring-data-mongodb-4.5.3.pom.sha1 b/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/spring-data-mongodb-4.5.3.pom.sha1 deleted file mode 100644 index 6078066..0000000 --- a/.m2/repository/org/springframework/data/spring-data-mongodb/4.5.3/spring-data-mongodb-4.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2bbf213d1412ae9f5f9b9187859be029a651f640 \ No newline at end of file diff --git a/.m2/repository/org/springframework/integration/spring-integration-bom/6.2.3/_remote.repositories b/.m2/repository/org/springframework/integration/spring-integration-bom/6.2.3/_remote.repositories deleted file mode 100644 index d093308..0000000 --- a/.m2/repository/org/springframework/integration/spring-integration-bom/6.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. -#Thu Apr 02 20:38:13 UTC 2026 -spring-integration-bom-6.2.3.pom>central= diff --git a/.m2/repository/org/springframework/integration/spring-integration-bom/6.2.3/spring-integration-bom-6.2.3.pom b/.m2/repository/org/springframework/integration/spring-integration-bom/6.2.3/spring-integration-bom-6.2.3.pom deleted file mode 100644 index 427dc55..0000000 --- a/.m2/repository/org/springframework/integration/spring-integration-bom/6.2.3/spring-integration-bom-6.2.3.pom +++ /dev/null @@ -1,276 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.integration - spring-integration-bom - 6.2.3 - 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.3 - - - org.springframework.integration - spring-integration-camel - 6.2.3 - - - org.springframework.integration - spring-integration-cassandra - 6.2.3 - - - org.springframework.integration - spring-integration-core - 6.2.3 - - - org.springframework.integration - spring-integration-debezium - 6.2.3 - - - org.springframework.integration - spring-integration-event - 6.2.3 - - - org.springframework.integration - spring-integration-feed - 6.2.3 - - - org.springframework.integration - spring-integration-file - 6.2.3 - - - org.springframework.integration - spring-integration-ftp - 6.2.3 - - - org.springframework.integration - spring-integration-graphql - 6.2.3 - - - org.springframework.integration - spring-integration-groovy - 6.2.3 - - - org.springframework.integration - spring-integration-hazelcast - 6.2.3 - - - org.springframework.integration - spring-integration-http - 6.2.3 - - - org.springframework.integration - spring-integration-ip - 6.2.3 - - - org.springframework.integration - spring-integration-jdbc - 6.2.3 - - - org.springframework.integration - spring-integration-jms - 6.2.3 - - - org.springframework.integration - spring-integration-jmx - 6.2.3 - - - org.springframework.integration - spring-integration-jpa - 6.2.3 - - - org.springframework.integration - spring-integration-kafka - 6.2.3 - - - org.springframework.integration - spring-integration-mail - 6.2.3 - - - org.springframework.integration - spring-integration-mongodb - 6.2.3 - - - org.springframework.integration - spring-integration-mqtt - 6.2.3 - - - org.springframework.integration - spring-integration-r2dbc - 6.2.3 - - - org.springframework.integration - spring-integration-redis - 6.2.3 - - - org.springframework.integration - spring-integration-rsocket - 6.2.3 - - - org.springframework.integration - spring-integration-scripting - 6.2.3 - - - org.springframework.integration - spring-integration-security - 6.2.3 - - - org.springframework.integration - spring-integration-sftp - 6.2.3 - - - org.springframework.integration - spring-integration-smb - 6.2.3 - - - org.springframework.integration - spring-integration-stomp - 6.2.3 - - - org.springframework.integration - spring-integration-stream - 6.2.3 - - - org.springframework.integration - spring-integration-syslog - 6.2.3 - - - org.springframework.integration - spring-integration-test - 6.2.3 - - - org.springframework.integration - spring-integration-test-support - 6.2.3 - - - org.springframework.integration - spring-integration-webflux - 6.2.3 - - - org.springframework.integration - spring-integration-websocket - 6.2.3 - - - org.springframework.integration - spring-integration-ws - 6.2.3 - - - org.springframework.integration - spring-integration-xml - 6.2.3 - - - org.springframework.integration - spring-integration-xmpp - 6.2.3 - - - org.springframework.integration - spring-integration-zeromq - 6.2.3 - - - org.springframework.integration - spring-integration-zip - 6.2.3 - - - org.springframework.integration - spring-integration-zookeeper - 6.2.3 - - - - diff --git a/.m2/repository/org/springframework/integration/spring-integration-bom/6.2.3/spring-integration-bom-6.2.3.pom.sha1 b/.m2/repository/org/springframework/integration/spring-integration-bom/6.2.3/spring-integration-bom-6.2.3.pom.sha1 deleted file mode 100644 index 5dd311c..0000000 --- a/.m2/repository/org/springframework/integration/spring-integration-bom/6.2.3/spring-integration-bom-6.2.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8d9662a9b2ef9bdbe3ea6a3853c413439e092cb3 \ No newline at end of file diff --git a/.m2/repository/org/springframework/integration/spring-integration-bom/6.5.1/_remote.repositories b/.m2/repository/org/springframework/integration/spring-integration-bom/6.5.1/_remote.repositories deleted file mode 100644 index 7400863..0000000 --- a/.m2/repository/org/springframework/integration/spring-integration-bom/6.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. -#Thu Apr 02 20:37:38 UTC 2026 -spring-integration-bom-6.5.1.pom>central= diff --git a/.m2/repository/org/springframework/integration/spring-integration-bom/6.5.1/spring-integration-bom-6.5.1.pom b/.m2/repository/org/springframework/integration/spring-integration-bom/6.5.1/spring-integration-bom-6.5.1.pom deleted file mode 100644 index d48eee0..0000000 --- a/.m2/repository/org/springframework/integration/spring-integration-bom/6.5.1/spring-integration-bom-6.5.1.pom +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.integration - spring-integration-bom - 6.5.1 - 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.ryan.fisher@gmail.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.5.1 - - - org.springframework.integration - spring-integration-camel - 6.5.1 - - - org.springframework.integration - spring-integration-cassandra - 6.5.1 - - - org.springframework.integration - spring-integration-core - 6.5.1 - - - org.springframework.integration - spring-integration-debezium - 6.5.1 - - - org.springframework.integration - spring-integration-event - 6.5.1 - - - org.springframework.integration - spring-integration-feed - 6.5.1 - - - org.springframework.integration - spring-integration-file - 6.5.1 - - - org.springframework.integration - spring-integration-ftp - 6.5.1 - - - org.springframework.integration - spring-integration-graphql - 6.5.1 - - - org.springframework.integration - spring-integration-groovy - 6.5.1 - - - org.springframework.integration - spring-integration-hazelcast - 6.5.1 - - - org.springframework.integration - spring-integration-http - 6.5.1 - - - org.springframework.integration - spring-integration-ip - 6.5.1 - - - org.springframework.integration - spring-integration-jdbc - 6.5.1 - - - org.springframework.integration - spring-integration-jms - 6.5.1 - - - org.springframework.integration - spring-integration-jmx - 6.5.1 - - - org.springframework.integration - spring-integration-jpa - 6.5.1 - - - org.springframework.integration - spring-integration-kafka - 6.5.1 - - - org.springframework.integration - spring-integration-mail - 6.5.1 - - - org.springframework.integration - spring-integration-mongodb - 6.5.1 - - - org.springframework.integration - spring-integration-mqtt - 6.5.1 - - - org.springframework.integration - spring-integration-r2dbc - 6.5.1 - - - org.springframework.integration - spring-integration-redis - 6.5.1 - - - org.springframework.integration - spring-integration-rsocket - 6.5.1 - - - org.springframework.integration - spring-integration-scripting - 6.5.1 - - - org.springframework.integration - spring-integration-sftp - 6.5.1 - - - org.springframework.integration - spring-integration-smb - 6.5.1 - - - org.springframework.integration - spring-integration-stomp - 6.5.1 - - - org.springframework.integration - spring-integration-stream - 6.5.1 - - - org.springframework.integration - spring-integration-syslog - 6.5.1 - - - org.springframework.integration - spring-integration-test - 6.5.1 - - - org.springframework.integration - spring-integration-test-support - 6.5.1 - - - org.springframework.integration - spring-integration-webflux - 6.5.1 - - - org.springframework.integration - spring-integration-websocket - 6.5.1 - - - org.springframework.integration - spring-integration-ws - 6.5.1 - - - org.springframework.integration - spring-integration-xml - 6.5.1 - - - org.springframework.integration - spring-integration-xmpp - 6.5.1 - - - org.springframework.integration - spring-integration-zeromq - 6.5.1 - - - org.springframework.integration - spring-integration-zip - 6.5.1 - - - org.springframework.integration - spring-integration-zookeeper - 6.5.1 - - - - diff --git a/.m2/repository/org/springframework/integration/spring-integration-bom/6.5.1/spring-integration-bom-6.5.1.pom.sha1 b/.m2/repository/org/springframework/integration/spring-integration-bom/6.5.1/spring-integration-bom-6.5.1.pom.sha1 deleted file mode 100644 index eeeedc7..0000000 --- a/.m2/repository/org/springframework/integration/spring-integration-bom/6.5.1/spring-integration-bom-6.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d2c813092b29616074602c2e30c0aa1f69770974 \ No newline at end of file diff --git a/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.0.4/_remote.repositories b/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.0.4/_remote.repositories deleted file mode 100644 index d0c09f8..0000000 --- a/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/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. -#Thu Apr 02 20:38:13 UTC 2026 -spring-pulsar-bom-1.0.4.pom>central= diff --git a/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.0.4/spring-pulsar-bom-1.0.4.pom b/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.0.4/spring-pulsar-bom-1.0.4.pom deleted file mode 100644 index 96820bb..0000000 --- a/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.0.4/spring-pulsar-bom-1.0.4.pom +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.pulsar - spring-pulsar-bom - 1.0.4 - 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.4 - - - org.springframework.pulsar - spring-pulsar-cache-provider - 1.0.4 - - - org.springframework.pulsar - spring-pulsar-cache-provider-caffeine - 1.0.4 - - - org.springframework.pulsar - spring-pulsar-reactive - 1.0.4 - - - - diff --git a/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.0.4/spring-pulsar-bom-1.0.4.pom.sha1 b/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.0.4/spring-pulsar-bom-1.0.4.pom.sha1 deleted file mode 100644 index cbd45b0..0000000 --- a/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.0.4/spring-pulsar-bom-1.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -83c01a1e6c74b4c7dbb4334041e3546d2c8713cc \ No newline at end of file diff --git a/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.2.9/_remote.repositories b/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.2.9/_remote.repositories deleted file mode 100644 index e7de919..0000000 --- a/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.2.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. -#Thu Apr 02 20:37:39 UTC 2026 -spring-pulsar-bom-1.2.9.pom>central= diff --git a/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.2.9/spring-pulsar-bom-1.2.9.pom b/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.2.9/spring-pulsar-bom-1.2.9.pom deleted file mode 100644 index 35439a4..0000000 --- a/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.2.9/spring-pulsar-bom-1.2.9.pom +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.pulsar - spring-pulsar-bom - 1.2.9 - 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.2.9 - - - org.springframework.pulsar - spring-pulsar-cache-provider - 1.2.9 - - - org.springframework.pulsar - spring-pulsar-cache-provider-caffeine - 1.2.9 - - - org.springframework.pulsar - spring-pulsar-reactive - 1.2.9 - - - org.springframework.pulsar - spring-pulsar-test - 1.2.9 - - - - diff --git a/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.2.9/spring-pulsar-bom-1.2.9.pom.sha1 b/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.2.9/spring-pulsar-bom-1.2.9.pom.sha1 deleted file mode 100644 index 651272c..0000000 --- a/.m2/repository/org/springframework/pulsar/spring-pulsar-bom/1.2.9/spring-pulsar-bom-1.2.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -52d33bf198dd0eb7b500463c238f4482e7fcc004 \ No newline at end of file diff --git a/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.1/_remote.repositories b/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.1/_remote.repositories deleted file mode 100644 index ef7c237..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:13 UTC 2026 -spring-restdocs-bom-3.0.1.pom>central= diff --git a/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom b/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom deleted file mode 100644 index a606d42..0000000 --- a/.m2/repository/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/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.sha1 b/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.1/spring-restdocs-bom-3.0.1.pom.sha1 deleted file mode 100644 index 088d917..0000000 --- a/.m2/repository/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/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.5/_remote.repositories b/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.5/_remote.repositories deleted file mode 100644 index 6d50443..0000000 --- a/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.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. -#Thu Apr 02 20:37:39 UTC 2026 -spring-restdocs-bom-3.0.5.pom>central= diff --git a/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.5/spring-restdocs-bom-3.0.5.pom b/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.5/spring-restdocs-bom-3.0.5.pom deleted file mode 100644 index 04b2acd..0000000 --- a/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.5/spring-restdocs-bom-3.0.5.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - 4.0.0 - org.springframework.restdocs - spring-restdocs-bom - 3.0.5 - 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.5 - - - org.springframework.restdocs - spring-restdocs-core - 3.0.5 - - - org.springframework.restdocs - spring-restdocs-mockmvc - 3.0.5 - - - org.springframework.restdocs - spring-restdocs-restassured - 3.0.5 - - - org.springframework.restdocs - spring-restdocs-webtestclient - 3.0.5 - - - - diff --git a/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.5/spring-restdocs-bom-3.0.5.pom.sha1 b/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.5/spring-restdocs-bom-3.0.5.pom.sha1 deleted file mode 100644 index a4ac92f..0000000 --- a/.m2/repository/org/springframework/restdocs/spring-restdocs-bom/3.0.5/spring-restdocs-bom-3.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e807205167fbf9b5c29ad0a92d98dd4f5994f2fd \ No newline at end of file diff --git a/.m2/repository/org/springframework/security/spring-security-bom/6.2.3/_remote.repositories b/.m2/repository/org/springframework/security/spring-security-bom/6.2.3/_remote.repositories deleted file mode 100644 index c247e54..0000000 --- a/.m2/repository/org/springframework/security/spring-security-bom/6.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. -#Thu Apr 02 20:38:13 UTC 2026 -spring-security-bom-6.2.3.pom>central= diff --git a/.m2/repository/org/springframework/security/spring-security-bom/6.2.3/spring-security-bom-6.2.3.pom b/.m2/repository/org/springframework/security/spring-security-bom/6.2.3/spring-security-bom-6.2.3.pom deleted file mode 100644 index 5ce3cc1..0000000 --- a/.m2/repository/org/springframework/security/spring-security-bom/6.2.3/spring-security-bom-6.2.3.pom +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.security - spring-security-bom - 6.2.3 - 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.3 - - - org.springframework.security - spring-security-aspects - 6.2.3 - - - org.springframework.security - spring-security-cas - 6.2.3 - - - org.springframework.security - spring-security-config - 6.2.3 - - - org.springframework.security - spring-security-core - 6.2.3 - - - org.springframework.security - spring-security-crypto - 6.2.3 - - - org.springframework.security - spring-security-data - 6.2.3 - - - org.springframework.security - spring-security-ldap - 6.2.3 - - - org.springframework.security - spring-security-messaging - 6.2.3 - - - org.springframework.security - spring-security-oauth2-client - 6.2.3 - - - org.springframework.security - spring-security-oauth2-core - 6.2.3 - - - org.springframework.security - spring-security-oauth2-jose - 6.2.3 - - - org.springframework.security - spring-security-oauth2-resource-server - 6.2.3 - - - org.springframework.security - spring-security-rsocket - 6.2.3 - - - org.springframework.security - spring-security-saml2-service-provider - 6.2.3 - - - org.springframework.security - spring-security-taglibs - 6.2.3 - - - org.springframework.security - spring-security-test - 6.2.3 - - - org.springframework.security - spring-security-web - 6.2.3 - - - - diff --git a/.m2/repository/org/springframework/security/spring-security-bom/6.2.3/spring-security-bom-6.2.3.pom.sha1 b/.m2/repository/org/springframework/security/spring-security-bom/6.2.3/spring-security-bom-6.2.3.pom.sha1 deleted file mode 100644 index 8131937..0000000 --- a/.m2/repository/org/springframework/security/spring-security-bom/6.2.3/spring-security-bom-6.2.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4d280ae485b9ec06282922ca605ef696745d2ae7 \ No newline at end of file diff --git a/.m2/repository/org/springframework/security/spring-security-bom/6.5.3/_remote.repositories b/.m2/repository/org/springframework/security/spring-security-bom/6.5.3/_remote.repositories deleted file mode 100644 index 71a865f..0000000 --- a/.m2/repository/org/springframework/security/spring-security-bom/6.5.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. -#Thu Apr 02 20:37:39 UTC 2026 -spring-security-bom-6.5.3.pom>central= diff --git a/.m2/repository/org/springframework/security/spring-security-bom/6.5.3/spring-security-bom-6.5.3.pom b/.m2/repository/org/springframework/security/spring-security-bom/6.5.3/spring-security-bom-6.5.3.pom deleted file mode 100644 index 287b41a..0000000 --- a/.m2/repository/org/springframework/security/spring-security-bom/6.5.3/spring-security-bom-6.5.3.pom +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.security - spring-security-bom - 6.5.3 - 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.5.3 - - - org.springframework.security - spring-security-aspects - 6.5.3 - - - org.springframework.security - spring-security-cas - 6.5.3 - - - org.springframework.security - spring-security-config - 6.5.3 - - - org.springframework.security - spring-security-core - 6.5.3 - - - org.springframework.security - spring-security-crypto - 6.5.3 - - - org.springframework.security - spring-security-data - 6.5.3 - - - org.springframework.security - spring-security-ldap - 6.5.3 - - - org.springframework.security - spring-security-messaging - 6.5.3 - - - org.springframework.security - spring-security-oauth2-client - 6.5.3 - - - org.springframework.security - spring-security-oauth2-core - 6.5.3 - - - org.springframework.security - spring-security-oauth2-jose - 6.5.3 - - - org.springframework.security - spring-security-oauth2-resource-server - 6.5.3 - - - org.springframework.security - spring-security-rsocket - 6.5.3 - - - org.springframework.security - spring-security-saml2-service-provider - 6.5.3 - - - org.springframework.security - spring-security-taglibs - 6.5.3 - - - org.springframework.security - spring-security-test - 6.5.3 - - - org.springframework.security - spring-security-web - 6.5.3 - - - - diff --git a/.m2/repository/org/springframework/security/spring-security-bom/6.5.3/spring-security-bom-6.5.3.pom.sha1 b/.m2/repository/org/springframework/security/spring-security-bom/6.5.3/spring-security-bom-6.5.3.pom.sha1 deleted file mode 100644 index 07c2d00..0000000 --- a/.m2/repository/org/springframework/security/spring-security-bom/6.5.3/spring-security-bom-6.5.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a64069498130b803323f64c4d29b9f4a17cea6f9 \ No newline at end of file diff --git a/.m2/repository/org/springframework/session/spring-session-bom/3.2.2/_remote.repositories b/.m2/repository/org/springframework/session/spring-session-bom/3.2.2/_remote.repositories deleted file mode 100644 index 03a7925..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:13 UTC 2026 -spring-session-bom-3.2.2.pom>central= diff --git a/.m2/repository/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom b/.m2/repository/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom deleted file mode 100644 index 9213be4..0000000 --- a/.m2/repository/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/.m2/repository/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.sha1 b/.m2/repository/org/springframework/session/spring-session-bom/3.2.2/spring-session-bom-3.2.2.pom.sha1 deleted file mode 100644 index 0ebafca..0000000 --- a/.m2/repository/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/.m2/repository/org/springframework/session/spring-session-bom/3.5.2/_remote.repositories b/.m2/repository/org/springframework/session/spring-session-bom/3.5.2/_remote.repositories deleted file mode 100644 index 7d7f9f9..0000000 --- a/.m2/repository/org/springframework/session/spring-session-bom/3.5.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. -#Thu Apr 02 20:37:39 UTC 2026 -spring-session-bom-3.5.2.pom>central= diff --git a/.m2/repository/org/springframework/session/spring-session-bom/3.5.2/spring-session-bom-3.5.2.pom b/.m2/repository/org/springframework/session/spring-session-bom/3.5.2/spring-session-bom-3.5.2.pom deleted file mode 100644 index dd595bb..0000000 --- a/.m2/repository/org/springframework/session/spring-session-bom/3.5.2/spring-session-bom-3.5.2.pom +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework.session - spring-session-bom - 3.5.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.5.2 - - - org.springframework.session - spring-session-data-mongodb - 3.5.2 - - - org.springframework.session - spring-session-data-redis - 3.5.2 - - - org.springframework.session - spring-session-hazelcast - 3.5.2 - - - org.springframework.session - spring-session-jdbc - 3.5.2 - - - - diff --git a/.m2/repository/org/springframework/session/spring-session-bom/3.5.2/spring-session-bom-3.5.2.pom.sha1 b/.m2/repository/org/springframework/session/spring-session-bom/3.5.2/spring-session-bom-3.5.2.pom.sha1 deleted file mode 100644 index bf55c17..0000000 --- a/.m2/repository/org/springframework/session/spring-session-bom/3.5.2/spring-session-bom-3.5.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -50eb199d7cbe67c4956d4edf1922ea6a8e532879 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-aop/6.2.10/_remote.repositories b/.m2/repository/org/springframework/spring-aop/6.2.10/_remote.repositories deleted file mode 100644 index a7114c8..0000000 --- a/.m2/repository/org/springframework/spring-aop/6.2.10/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-aop-6.2.10.jar>central= -spring-aop-6.2.10.pom>central= diff --git a/.m2/repository/org/springframework/spring-aop/6.2.10/spring-aop-6.2.10.jar b/.m2/repository/org/springframework/spring-aop/6.2.10/spring-aop-6.2.10.jar deleted file mode 100644 index 23989dc..0000000 Binary files a/.m2/repository/org/springframework/spring-aop/6.2.10/spring-aop-6.2.10.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/spring-aop/6.2.10/spring-aop-6.2.10.jar.sha1 b/.m2/repository/org/springframework/spring-aop/6.2.10/spring-aop-6.2.10.jar.sha1 deleted file mode 100644 index 6757821..0000000 --- a/.m2/repository/org/springframework/spring-aop/6.2.10/spring-aop-6.2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2b194c29deaadb71a8a8e5b8b41d9521c29a0d66 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-aop/6.2.10/spring-aop-6.2.10.pom b/.m2/repository/org/springframework/spring-aop/6.2.10/spring-aop-6.2.10.pom deleted file mode 100644 index e067651..0000000 --- a/.m2/repository/org/springframework/spring-aop/6.2.10/spring-aop-6.2.10.pom +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-aop - 6.2.10 - 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 - juergen.hoeller@broadcom.com - - - - 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.2.10 - compile - - - org.springframework - spring-core - 6.2.10 - compile - - - diff --git a/.m2/repository/org/springframework/spring-aop/6.2.10/spring-aop-6.2.10.pom.sha1 b/.m2/repository/org/springframework/spring-aop/6.2.10/spring-aop-6.2.10.pom.sha1 deleted file mode 100644 index ff22bed..0000000 --- a/.m2/repository/org/springframework/spring-aop/6.2.10/spring-aop-6.2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -46fe34eb92b34a3528e2f2d63e2f764f9bd29e9c \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-beans/6.2.10/_remote.repositories b/.m2/repository/org/springframework/spring-beans/6.2.10/_remote.repositories deleted file mode 100644 index 2c77f8b..0000000 --- a/.m2/repository/org/springframework/spring-beans/6.2.10/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-beans-6.2.10.jar>central= -spring-beans-6.2.10.pom>central= diff --git a/.m2/repository/org/springframework/spring-beans/6.2.10/spring-beans-6.2.10.jar b/.m2/repository/org/springframework/spring-beans/6.2.10/spring-beans-6.2.10.jar deleted file mode 100644 index 7709dc1..0000000 Binary files a/.m2/repository/org/springframework/spring-beans/6.2.10/spring-beans-6.2.10.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/spring-beans/6.2.10/spring-beans-6.2.10.jar.sha1 b/.m2/repository/org/springframework/spring-beans/6.2.10/spring-beans-6.2.10.jar.sha1 deleted file mode 100644 index 9e7df1f..0000000 --- a/.m2/repository/org/springframework/spring-beans/6.2.10/spring-beans-6.2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -88ffda89593a74bb356a96ea2ed235ec6e083cfa \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-beans/6.2.10/spring-beans-6.2.10.pom b/.m2/repository/org/springframework/spring-beans/6.2.10/spring-beans-6.2.10.pom deleted file mode 100644 index dfcdb5f..0000000 --- a/.m2/repository/org/springframework/spring-beans/6.2.10/spring-beans-6.2.10.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-beans - 6.2.10 - 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 - juergen.hoeller@broadcom.com - - - - 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.2.10 - compile - - - diff --git a/.m2/repository/org/springframework/spring-beans/6.2.10/spring-beans-6.2.10.pom.sha1 b/.m2/repository/org/springframework/spring-beans/6.2.10/spring-beans-6.2.10.pom.sha1 deleted file mode 100644 index e1f7cfb..0000000 --- a/.m2/repository/org/springframework/spring-beans/6.2.10/spring-beans-6.2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9a5129f10740fe9d24cebd3dbe5b4762d4c45fe1 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-context-support/6.2.10/_remote.repositories b/.m2/repository/org/springframework/spring-context-support/6.2.10/_remote.repositories deleted file mode 100644 index 6617238..0000000 --- a/.m2/repository/org/springframework/spring-context-support/6.2.10/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-context-support-6.2.10.jar>central= -spring-context-support-6.2.10.pom>central= diff --git a/.m2/repository/org/springframework/spring-context-support/6.2.10/spring-context-support-6.2.10.jar b/.m2/repository/org/springframework/spring-context-support/6.2.10/spring-context-support-6.2.10.jar deleted file mode 100644 index 8d2a093..0000000 Binary files a/.m2/repository/org/springframework/spring-context-support/6.2.10/spring-context-support-6.2.10.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/spring-context-support/6.2.10/spring-context-support-6.2.10.jar.sha1 b/.m2/repository/org/springframework/spring-context-support/6.2.10/spring-context-support-6.2.10.jar.sha1 deleted file mode 100644 index 7813299..0000000 --- a/.m2/repository/org/springframework/spring-context-support/6.2.10/spring-context-support-6.2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a7e8c2e3113342f564f88c323a23310855cbe427 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-context-support/6.2.10/spring-context-support-6.2.10.pom b/.m2/repository/org/springframework/spring-context-support/6.2.10/spring-context-support-6.2.10.pom deleted file mode 100644 index 12cb034..0000000 --- a/.m2/repository/org/springframework/spring-context-support/6.2.10/spring-context-support-6.2.10.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-context-support - 6.2.10 - 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 - juergen.hoeller@broadcom.com - - - - 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.2.10 - compile - - - org.springframework - spring-context - 6.2.10 - compile - - - org.springframework - spring-core - 6.2.10 - compile - - - diff --git a/.m2/repository/org/springframework/spring-context-support/6.2.10/spring-context-support-6.2.10.pom.sha1 b/.m2/repository/org/springframework/spring-context-support/6.2.10/spring-context-support-6.2.10.pom.sha1 deleted file mode 100644 index 4dd5ccd..0000000 --- a/.m2/repository/org/springframework/spring-context-support/6.2.10/spring-context-support-6.2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d660722b3ba5bc46add6503e2aa2961589ac34ac \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-context/6.2.10/_remote.repositories b/.m2/repository/org/springframework/spring-context/6.2.10/_remote.repositories deleted file mode 100644 index 449f88b..0000000 --- a/.m2/repository/org/springframework/spring-context/6.2.10/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-context-6.2.10.jar>central= -spring-context-6.2.10.pom>central= diff --git a/.m2/repository/org/springframework/spring-context/6.2.10/spring-context-6.2.10.jar b/.m2/repository/org/springframework/spring-context/6.2.10/spring-context-6.2.10.jar deleted file mode 100644 index 793f54b..0000000 Binary files a/.m2/repository/org/springframework/spring-context/6.2.10/spring-context-6.2.10.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/spring-context/6.2.10/spring-context-6.2.10.jar.sha1 b/.m2/repository/org/springframework/spring-context/6.2.10/spring-context-6.2.10.jar.sha1 deleted file mode 100644 index 58dda70..0000000 --- a/.m2/repository/org/springframework/spring-context/6.2.10/spring-context-6.2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -080464a79539a19a00e32eccb041670f34857fe7 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-context/6.2.10/spring-context-6.2.10.pom b/.m2/repository/org/springframework/spring-context/6.2.10/spring-context-6.2.10.pom deleted file mode 100644 index 97be1f8..0000000 --- a/.m2/repository/org/springframework/spring-context/6.2.10/spring-context-6.2.10.pom +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-context - 6.2.10 - 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 - juergen.hoeller@broadcom.com - - - - 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.2.10 - compile - - - org.springframework - spring-beans - 6.2.10 - compile - - - org.springframework - spring-core - 6.2.10 - compile - - - org.springframework - spring-expression - 6.2.10 - compile - - - io.micrometer - micrometer-observation - 1.14.10 - compile - - - diff --git a/.m2/repository/org/springframework/spring-context/6.2.10/spring-context-6.2.10.pom.sha1 b/.m2/repository/org/springframework/spring-context/6.2.10/spring-context-6.2.10.pom.sha1 deleted file mode 100644 index 2e8b4fb..0000000 --- a/.m2/repository/org/springframework/spring-context/6.2.10/spring-context-6.2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7b8cb1d615b49b09f07292775e9e3f916c22a3be \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-core/6.2.10/_remote.repositories b/.m2/repository/org/springframework/spring-core/6.2.10/_remote.repositories deleted file mode 100644 index 05dc5b2..0000000 --- a/.m2/repository/org/springframework/spring-core/6.2.10/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-core-6.2.10.jar>central= -spring-core-6.2.10.pom>central= diff --git a/.m2/repository/org/springframework/spring-core/6.2.10/spring-core-6.2.10.jar b/.m2/repository/org/springframework/spring-core/6.2.10/spring-core-6.2.10.jar deleted file mode 100644 index ee76def..0000000 Binary files a/.m2/repository/org/springframework/spring-core/6.2.10/spring-core-6.2.10.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/spring-core/6.2.10/spring-core-6.2.10.jar.sha1 b/.m2/repository/org/springframework/spring-core/6.2.10/spring-core-6.2.10.jar.sha1 deleted file mode 100644 index 4ea800c..0000000 --- a/.m2/repository/org/springframework/spring-core/6.2.10/spring-core-6.2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -82d9c797f9147b643ac0aab8a1a40e96f8d8a737 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-core/6.2.10/spring-core-6.2.10.pom b/.m2/repository/org/springframework/spring-core/6.2.10/spring-core-6.2.10.pom deleted file mode 100644 index 60a7d1d..0000000 --- a/.m2/repository/org/springframework/spring-core/6.2.10/spring-core-6.2.10.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-core - 6.2.10 - 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 - juergen.hoeller@broadcom.com - - - - 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.2.10 - compile - - - diff --git a/.m2/repository/org/springframework/spring-core/6.2.10/spring-core-6.2.10.pom.sha1 b/.m2/repository/org/springframework/spring-core/6.2.10/spring-core-6.2.10.pom.sha1 deleted file mode 100644 index bf85b74..0000000 --- a/.m2/repository/org/springframework/spring-core/6.2.10/spring-core-6.2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -389ae89d84b7209b259a19dd385302f1980283d7 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-expression/6.2.10/_remote.repositories b/.m2/repository/org/springframework/spring-expression/6.2.10/_remote.repositories deleted file mode 100644 index f3afedb..0000000 --- a/.m2/repository/org/springframework/spring-expression/6.2.10/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-expression-6.2.10.jar>central= -spring-expression-6.2.10.pom>central= diff --git a/.m2/repository/org/springframework/spring-expression/6.2.10/spring-expression-6.2.10.jar b/.m2/repository/org/springframework/spring-expression/6.2.10/spring-expression-6.2.10.jar deleted file mode 100644 index 2da3efb..0000000 Binary files a/.m2/repository/org/springframework/spring-expression/6.2.10/spring-expression-6.2.10.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/spring-expression/6.2.10/spring-expression-6.2.10.jar.sha1 b/.m2/repository/org/springframework/spring-expression/6.2.10/spring-expression-6.2.10.jar.sha1 deleted file mode 100644 index 4c811c8..0000000 --- a/.m2/repository/org/springframework/spring-expression/6.2.10/spring-expression-6.2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -16bdfead8a73673e395441c14b1868a128fc87c2 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-expression/6.2.10/spring-expression-6.2.10.pom b/.m2/repository/org/springframework/spring-expression/6.2.10/spring-expression-6.2.10.pom deleted file mode 100644 index 4da1f52..0000000 --- a/.m2/repository/org/springframework/spring-expression/6.2.10/spring-expression-6.2.10.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-expression - 6.2.10 - 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 - juergen.hoeller@broadcom.com - - - - 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.2.10 - compile - - - diff --git a/.m2/repository/org/springframework/spring-expression/6.2.10/spring-expression-6.2.10.pom.sha1 b/.m2/repository/org/springframework/spring-expression/6.2.10/spring-expression-6.2.10.pom.sha1 deleted file mode 100644 index 94b4a7b..0000000 --- a/.m2/repository/org/springframework/spring-expression/6.2.10/spring-expression-6.2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6b828b5601b08145bd708a820da63a58c67bdf01 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-framework-bom/5.3.39/_remote.repositories b/.m2/repository/org/springframework/spring-framework-bom/5.3.39/_remote.repositories deleted file mode 100644 index c2623a9..0000000 --- a/.m2/repository/org/springframework/spring-framework-bom/5.3.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. -#Thu Apr 02 20:37:44 UTC 2026 -spring-framework-bom-5.3.39.pom>central= diff --git a/.m2/repository/org/springframework/spring-framework-bom/5.3.39/spring-framework-bom-5.3.39.pom b/.m2/repository/org/springframework/spring-framework-bom/5.3.39/spring-framework-bom-5.3.39.pom deleted file mode 100644 index 31b965a..0000000 --- a/.m2/repository/org/springframework/spring-framework-bom/5.3.39/spring-framework-bom-5.3.39.pom +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-framework-bom - 5.3.39 - 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.39 - - - org.springframework - spring-aspects - 5.3.39 - - - org.springframework - spring-beans - 5.3.39 - - - org.springframework - spring-context - 5.3.39 - - - org.springframework - spring-context-indexer - 5.3.39 - - - org.springframework - spring-context-support - 5.3.39 - - - org.springframework - spring-core - 5.3.39 - - - org.springframework - spring-expression - 5.3.39 - - - org.springframework - spring-instrument - 5.3.39 - - - org.springframework - spring-jcl - 5.3.39 - - - org.springframework - spring-jdbc - 5.3.39 - - - org.springframework - spring-jms - 5.3.39 - - - org.springframework - spring-messaging - 5.3.39 - - - org.springframework - spring-orm - 5.3.39 - - - org.springframework - spring-oxm - 5.3.39 - - - org.springframework - spring-r2dbc - 5.3.39 - - - org.springframework - spring-test - 5.3.39 - - - org.springframework - spring-tx - 5.3.39 - - - org.springframework - spring-web - 5.3.39 - - - org.springframework - spring-webflux - 5.3.39 - - - org.springframework - spring-webmvc - 5.3.39 - - - org.springframework - spring-websocket - 5.3.39 - - - - diff --git a/.m2/repository/org/springframework/spring-framework-bom/5.3.39/spring-framework-bom-5.3.39.pom.sha1 b/.m2/repository/org/springframework/spring-framework-bom/5.3.39/spring-framework-bom-5.3.39.pom.sha1 deleted file mode 100644 index bee8df0..0000000 --- a/.m2/repository/org/springframework/spring-framework-bom/5.3.39/spring-framework-bom-5.3.39.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -51d5e26004c5cd98c1d0bd562e0579f18e6552e8 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-framework-bom/6.1.5/_remote.repositories b/.m2/repository/org/springframework/spring-framework-bom/6.1.5/_remote.repositories deleted file mode 100644 index 614e76e..0000000 --- a/.m2/repository/org/springframework/spring-framework-bom/6.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. -#Thu Apr 02 20:38:13 UTC 2026 -spring-framework-bom-6.1.5.pom>central= diff --git a/.m2/repository/org/springframework/spring-framework-bom/6.1.5/spring-framework-bom-6.1.5.pom b/.m2/repository/org/springframework/spring-framework-bom/6.1.5/spring-framework-bom-6.1.5.pom deleted file mode 100644 index 74e3e68..0000000 --- a/.m2/repository/org/springframework/spring-framework-bom/6.1.5/spring-framework-bom-6.1.5.pom +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-framework-bom - 6.1.5 - 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.5 - - - org.springframework - spring-aspects - 6.1.5 - - - org.springframework - spring-beans - 6.1.5 - - - org.springframework - spring-context - 6.1.5 - - - org.springframework - spring-context-indexer - 6.1.5 - - - org.springframework - spring-context-support - 6.1.5 - - - org.springframework - spring-core - 6.1.5 - - - org.springframework - spring-core-test - 6.1.5 - - - org.springframework - spring-expression - 6.1.5 - - - org.springframework - spring-instrument - 6.1.5 - - - org.springframework - spring-jcl - 6.1.5 - - - org.springframework - spring-jdbc - 6.1.5 - - - org.springframework - spring-jms - 6.1.5 - - - org.springframework - spring-messaging - 6.1.5 - - - org.springframework - spring-orm - 6.1.5 - - - org.springframework - spring-oxm - 6.1.5 - - - org.springframework - spring-r2dbc - 6.1.5 - - - org.springframework - spring-test - 6.1.5 - - - org.springframework - spring-tx - 6.1.5 - - - org.springframework - spring-web - 6.1.5 - - - org.springframework - spring-webflux - 6.1.5 - - - org.springframework - spring-webmvc - 6.1.5 - - - org.springframework - spring-websocket - 6.1.5 - - - - diff --git a/.m2/repository/org/springframework/spring-framework-bom/6.1.5/spring-framework-bom-6.1.5.pom.sha1 b/.m2/repository/org/springframework/spring-framework-bom/6.1.5/spring-framework-bom-6.1.5.pom.sha1 deleted file mode 100644 index 2857307..0000000 --- a/.m2/repository/org/springframework/spring-framework-bom/6.1.5/spring-framework-bom-6.1.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f477a5a9ab4425fa37a013522d08483ec2fb7fab \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-framework-bom/6.2.10/_remote.repositories b/.m2/repository/org/springframework/spring-framework-bom/6.2.10/_remote.repositories deleted file mode 100644 index 8f3bd67..0000000 --- a/.m2/repository/org/springframework/spring-framework-bom/6.2.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. -#Thu Apr 02 20:37:38 UTC 2026 -spring-framework-bom-6.2.10.pom>central= diff --git a/.m2/repository/org/springframework/spring-framework-bom/6.2.10/spring-framework-bom-6.2.10.pom b/.m2/repository/org/springframework/spring-framework-bom/6.2.10/spring-framework-bom-6.2.10.pom deleted file mode 100644 index e1f877f..0000000 --- a/.m2/repository/org/springframework/spring-framework-bom/6.2.10/spring-framework-bom-6.2.10.pom +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-framework-bom - 6.2.10 - 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 - juergen.hoeller@broadcom.com - - - - 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.2.10 - - - org.springframework - spring-aspects - 6.2.10 - - - org.springframework - spring-beans - 6.2.10 - - - org.springframework - spring-context - 6.2.10 - - - org.springframework - spring-context-indexer - 6.2.10 - - - org.springframework - spring-context-support - 6.2.10 - - - org.springframework - spring-core - 6.2.10 - - - org.springframework - spring-core-test - 6.2.10 - - - org.springframework - spring-expression - 6.2.10 - - - org.springframework - spring-instrument - 6.2.10 - - - org.springframework - spring-jcl - 6.2.10 - - - org.springframework - spring-jdbc - 6.2.10 - - - org.springframework - spring-jms - 6.2.10 - - - org.springframework - spring-messaging - 6.2.10 - - - org.springframework - spring-orm - 6.2.10 - - - org.springframework - spring-oxm - 6.2.10 - - - org.springframework - spring-r2dbc - 6.2.10 - - - org.springframework - spring-test - 6.2.10 - - - org.springframework - spring-tx - 6.2.10 - - - org.springframework - spring-web - 6.2.10 - - - org.springframework - spring-webflux - 6.2.10 - - - org.springframework - spring-webmvc - 6.2.10 - - - org.springframework - spring-websocket - 6.2.10 - - - - diff --git a/.m2/repository/org/springframework/spring-framework-bom/6.2.10/spring-framework-bom-6.2.10.pom.sha1 b/.m2/repository/org/springframework/spring-framework-bom/6.2.10/spring-framework-bom-6.2.10.pom.sha1 deleted file mode 100644 index 2efc89e..0000000 --- a/.m2/repository/org/springframework/spring-framework-bom/6.2.10/spring-framework-bom-6.2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0e60096dbad2857ac094548ad763251a54851bbc \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-jcl/6.2.10/_remote.repositories b/.m2/repository/org/springframework/spring-jcl/6.2.10/_remote.repositories deleted file mode 100644 index 50fb3fa..0000000 --- a/.m2/repository/org/springframework/spring-jcl/6.2.10/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-jcl-6.2.10.jar>central= -spring-jcl-6.2.10.pom>central= diff --git a/.m2/repository/org/springframework/spring-jcl/6.2.10/spring-jcl-6.2.10.jar b/.m2/repository/org/springframework/spring-jcl/6.2.10/spring-jcl-6.2.10.jar deleted file mode 100644 index b232016..0000000 Binary files a/.m2/repository/org/springframework/spring-jcl/6.2.10/spring-jcl-6.2.10.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/spring-jcl/6.2.10/spring-jcl-6.2.10.jar.sha1 b/.m2/repository/org/springframework/spring-jcl/6.2.10/spring-jcl-6.2.10.jar.sha1 deleted file mode 100644 index 6682a63..0000000 --- a/.m2/repository/org/springframework/spring-jcl/6.2.10/spring-jcl-6.2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -9ff7e998fe11d991f6b7fd000a0c6583c9e6ffee \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-jcl/6.2.10/spring-jcl-6.2.10.pom b/.m2/repository/org/springframework/spring-jcl/6.2.10/spring-jcl-6.2.10.pom deleted file mode 100644 index 2340c21..0000000 --- a/.m2/repository/org/springframework/spring-jcl/6.2.10/spring-jcl-6.2.10.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-jcl - 6.2.10 - 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 - juergen.hoeller@broadcom.com - - - - 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/.m2/repository/org/springframework/spring-jcl/6.2.10/spring-jcl-6.2.10.pom.sha1 b/.m2/repository/org/springframework/spring-jcl/6.2.10/spring-jcl-6.2.10.pom.sha1 deleted file mode 100644 index a9f8159..0000000 --- a/.m2/repository/org/springframework/spring-jcl/6.2.10/spring-jcl-6.2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -96b20b42a4c10b2cb40bc9b1bd2871712cf5beda \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-test/6.2.10/_remote.repositories b/.m2/repository/org/springframework/spring-test/6.2.10/_remote.repositories deleted file mode 100644 index 61291ff..0000000 --- a/.m2/repository/org/springframework/spring-test/6.2.10/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-test-6.2.10.jar>central= -spring-test-6.2.10.pom>central= diff --git a/.m2/repository/org/springframework/spring-test/6.2.10/spring-test-6.2.10.jar b/.m2/repository/org/springframework/spring-test/6.2.10/spring-test-6.2.10.jar deleted file mode 100644 index a4a64f1..0000000 Binary files a/.m2/repository/org/springframework/spring-test/6.2.10/spring-test-6.2.10.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/spring-test/6.2.10/spring-test-6.2.10.jar.sha1 b/.m2/repository/org/springframework/spring-test/6.2.10/spring-test-6.2.10.jar.sha1 deleted file mode 100644 index 3aa99a2..0000000 --- a/.m2/repository/org/springframework/spring-test/6.2.10/spring-test-6.2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7d5ff84114e0ab4cac29cccee4647ce440368046 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-test/6.2.10/spring-test-6.2.10.pom b/.m2/repository/org/springframework/spring-test/6.2.10/spring-test-6.2.10.pom deleted file mode 100644 index ac88cc4..0000000 --- a/.m2/repository/org/springframework/spring-test/6.2.10/spring-test-6.2.10.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-test - 6.2.10 - 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 - juergen.hoeller@broadcom.com - - - - 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.2.10 - compile - - - diff --git a/.m2/repository/org/springframework/spring-test/6.2.10/spring-test-6.2.10.pom.sha1 b/.m2/repository/org/springframework/spring-test/6.2.10/spring-test-6.2.10.pom.sha1 deleted file mode 100644 index 528a606..0000000 --- a/.m2/repository/org/springframework/spring-test/6.2.10/spring-test-6.2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -055592bc4ed3e1a709cdc28bd53f61059d511ae8 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-tx/6.2.10/_remote.repositories b/.m2/repository/org/springframework/spring-tx/6.2.10/_remote.repositories deleted file mode 100644 index 14ace2f..0000000 --- a/.m2/repository/org/springframework/spring-tx/6.2.10/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-tx-6.2.10.jar>central= -spring-tx-6.2.10.pom>central= diff --git a/.m2/repository/org/springframework/spring-tx/6.2.10/spring-tx-6.2.10.jar b/.m2/repository/org/springframework/spring-tx/6.2.10/spring-tx-6.2.10.jar deleted file mode 100644 index 9965c2b..0000000 Binary files a/.m2/repository/org/springframework/spring-tx/6.2.10/spring-tx-6.2.10.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/spring-tx/6.2.10/spring-tx-6.2.10.jar.sha1 b/.m2/repository/org/springframework/spring-tx/6.2.10/spring-tx-6.2.10.jar.sha1 deleted file mode 100644 index 368224b..0000000 --- a/.m2/repository/org/springframework/spring-tx/6.2.10/spring-tx-6.2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -bd4915d9862f127b45bae75195622d84f36a5373 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-tx/6.2.10/spring-tx-6.2.10.pom b/.m2/repository/org/springframework/spring-tx/6.2.10/spring-tx-6.2.10.pom deleted file mode 100644 index 9a09a91..0000000 --- a/.m2/repository/org/springframework/spring-tx/6.2.10/spring-tx-6.2.10.pom +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-tx - 6.2.10 - 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 - juergen.hoeller@broadcom.com - - - - 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.2.10 - compile - - - org.springframework - spring-core - 6.2.10 - compile - - - diff --git a/.m2/repository/org/springframework/spring-tx/6.2.10/spring-tx-6.2.10.pom.sha1 b/.m2/repository/org/springframework/spring-tx/6.2.10/spring-tx-6.2.10.pom.sha1 deleted file mode 100644 index 97a8943..0000000 --- a/.m2/repository/org/springframework/spring-tx/6.2.10/spring-tx-6.2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5e9244c0fec5ca6c3a9636a577c0b72f1807877f \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-web/6.2.10/_remote.repositories b/.m2/repository/org/springframework/spring-web/6.2.10/_remote.repositories deleted file mode 100644 index 575e523..0000000 --- a/.m2/repository/org/springframework/spring-web/6.2.10/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-web-6.2.10.jar>central= -spring-web-6.2.10.pom>central= diff --git a/.m2/repository/org/springframework/spring-web/6.2.10/spring-web-6.2.10.jar b/.m2/repository/org/springframework/spring-web/6.2.10/spring-web-6.2.10.jar deleted file mode 100644 index fd42429..0000000 Binary files a/.m2/repository/org/springframework/spring-web/6.2.10/spring-web-6.2.10.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/spring-web/6.2.10/spring-web-6.2.10.jar.sha1 b/.m2/repository/org/springframework/spring-web/6.2.10/spring-web-6.2.10.jar.sha1 deleted file mode 100644 index fae9c41..0000000 --- a/.m2/repository/org/springframework/spring-web/6.2.10/spring-web-6.2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -38c2f6633a44b385b6263294c38e5a4f217c005c \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-web/6.2.10/spring-web-6.2.10.pom b/.m2/repository/org/springframework/spring-web/6.2.10/spring-web-6.2.10.pom deleted file mode 100644 index a6d8985..0000000 --- a/.m2/repository/org/springframework/spring-web/6.2.10/spring-web-6.2.10.pom +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-web - 6.2.10 - 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 - juergen.hoeller@broadcom.com - - - - 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.2.10 - compile - - - org.springframework - spring-core - 6.2.10 - compile - - - io.micrometer - micrometer-observation - 1.14.10 - compile - - - diff --git a/.m2/repository/org/springframework/spring-web/6.2.10/spring-web-6.2.10.pom.sha1 b/.m2/repository/org/springframework/spring-web/6.2.10/spring-web-6.2.10.pom.sha1 deleted file mode 100644 index 5b63cf7..0000000 --- a/.m2/repository/org/springframework/spring-web/6.2.10/spring-web-6.2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3febc05e07536fff35f1164f649a4d65bef47a84 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-webflux/6.2.10/_remote.repositories b/.m2/repository/org/springframework/spring-webflux/6.2.10/_remote.repositories deleted file mode 100644 index 33aae5a..0000000 --- a/.m2/repository/org/springframework/spring-webflux/6.2.10/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-webflux-6.2.10.jar>central= -spring-webflux-6.2.10.pom>central= diff --git a/.m2/repository/org/springframework/spring-webflux/6.2.10/spring-webflux-6.2.10.jar b/.m2/repository/org/springframework/spring-webflux/6.2.10/spring-webflux-6.2.10.jar deleted file mode 100644 index ac4e200..0000000 Binary files a/.m2/repository/org/springframework/spring-webflux/6.2.10/spring-webflux-6.2.10.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/spring-webflux/6.2.10/spring-webflux-6.2.10.jar.sha1 b/.m2/repository/org/springframework/spring-webflux/6.2.10/spring-webflux-6.2.10.jar.sha1 deleted file mode 100644 index 93868f7..0000000 --- a/.m2/repository/org/springframework/spring-webflux/6.2.10/spring-webflux-6.2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1f6ab87fd341ae76cf5cc1d4ca4fb53bf4a9557e \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-webflux/6.2.10/spring-webflux-6.2.10.pom b/.m2/repository/org/springframework/spring-webflux/6.2.10/spring-webflux-6.2.10.pom deleted file mode 100644 index cc9dd4f..0000000 --- a/.m2/repository/org/springframework/spring-webflux/6.2.10/spring-webflux-6.2.10.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-webflux - 6.2.10 - Spring WebFlux - Spring WebFlux - 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 - juergen.hoeller@broadcom.com - - - - 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.2.10 - compile - - - org.springframework - spring-core - 6.2.10 - compile - - - org.springframework - spring-web - 6.2.10 - compile - - - io.projectreactor - reactor-core - 3.7.9 - compile - - - diff --git a/.m2/repository/org/springframework/spring-webflux/6.2.10/spring-webflux-6.2.10.pom.sha1 b/.m2/repository/org/springframework/spring-webflux/6.2.10/spring-webflux-6.2.10.pom.sha1 deleted file mode 100644 index 0383bce..0000000 --- a/.m2/repository/org/springframework/spring-webflux/6.2.10/spring-webflux-6.2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dc5c997da98e38cf1da4f9abb5fb59e7fe043ab1 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-webmvc/6.2.10/_remote.repositories b/.m2/repository/org/springframework/spring-webmvc/6.2.10/_remote.repositories deleted file mode 100644 index e7eef68..0000000 --- a/.m2/repository/org/springframework/spring-webmvc/6.2.10/_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. -#Thu Apr 02 20:38:35 UTC 2026 -spring-webmvc-6.2.10.jar>central= -spring-webmvc-6.2.10.pom>central= diff --git a/.m2/repository/org/springframework/spring-webmvc/6.2.10/spring-webmvc-6.2.10.jar b/.m2/repository/org/springframework/spring-webmvc/6.2.10/spring-webmvc-6.2.10.jar deleted file mode 100644 index 7943286..0000000 Binary files a/.m2/repository/org/springframework/spring-webmvc/6.2.10/spring-webmvc-6.2.10.jar and /dev/null differ diff --git a/.m2/repository/org/springframework/spring-webmvc/6.2.10/spring-webmvc-6.2.10.jar.sha1 b/.m2/repository/org/springframework/spring-webmvc/6.2.10/spring-webmvc-6.2.10.jar.sha1 deleted file mode 100644 index 31d9136..0000000 --- a/.m2/repository/org/springframework/spring-webmvc/6.2.10/spring-webmvc-6.2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d3491aedc2636378cd273f6266d49f43a8b3e241 \ No newline at end of file diff --git a/.m2/repository/org/springframework/spring-webmvc/6.2.10/spring-webmvc-6.2.10.pom b/.m2/repository/org/springframework/spring-webmvc/6.2.10/spring-webmvc-6.2.10.pom deleted file mode 100644 index 5c08ab2..0000000 --- a/.m2/repository/org/springframework/spring-webmvc/6.2.10/spring-webmvc-6.2.10.pom +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - 4.0.0 - org.springframework - spring-webmvc - 6.2.10 - 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 - juergen.hoeller@broadcom.com - - - - 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.2.10 - compile - - - org.springframework - spring-beans - 6.2.10 - compile - - - org.springframework - spring-context - 6.2.10 - compile - - - org.springframework - spring-core - 6.2.10 - compile - - - org.springframework - spring-expression - 6.2.10 - compile - - - org.springframework - spring-web - 6.2.10 - compile - - - diff --git a/.m2/repository/org/springframework/spring-webmvc/6.2.10/spring-webmvc-6.2.10.pom.sha1 b/.m2/repository/org/springframework/spring-webmvc/6.2.10/spring-webmvc-6.2.10.pom.sha1 deleted file mode 100644 index 412e5b3..0000000 --- a/.m2/repository/org/springframework/spring-webmvc/6.2.10/spring-webmvc-6.2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7afeb4f213f9bbb8a0f4aa0a6b86b96b9626d3ff \ No newline at end of file diff --git a/.m2/repository/org/springframework/ws/spring-ws-bom/4.0.10/_remote.repositories b/.m2/repository/org/springframework/ws/spring-ws-bom/4.0.10/_remote.repositories deleted file mode 100644 index c3fb4f4..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:14 UTC 2026 -spring-ws-bom-4.0.10.pom>central= diff --git a/.m2/repository/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom b/.m2/repository/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom deleted file mode 100644 index 187bcd0..0000000 --- a/.m2/repository/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/.m2/repository/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.sha1 b/.m2/repository/org/springframework/ws/spring-ws-bom/4.0.10/spring-ws-bom-4.0.10.pom.sha1 deleted file mode 100644 index 7b4ca20..0000000 --- a/.m2/repository/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/.m2/repository/org/springframework/ws/spring-ws-bom/4.1.1/_remote.repositories b/.m2/repository/org/springframework/ws/spring-ws-bom/4.1.1/_remote.repositories deleted file mode 100644 index 652e922..0000000 --- a/.m2/repository/org/springframework/ws/spring-ws-bom/4.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. -#Thu Apr 02 20:37:39 UTC 2026 -spring-ws-bom-4.1.1.pom>central= diff --git a/.m2/repository/org/springframework/ws/spring-ws-bom/4.1.1/spring-ws-bom-4.1.1.pom b/.m2/repository/org/springframework/ws/spring-ws-bom/4.1.1/spring-ws-bom-4.1.1.pom deleted file mode 100644 index bfc02ce..0000000 --- a/.m2/repository/org/springframework/ws/spring-ws-bom/4.1.1/spring-ws-bom-4.1.1.pom +++ /dev/null @@ -1,64 +0,0 @@ - - - 4.0.0 - org.springframework.ws - spring-ws-bom - 4.1.1 - pom - spring-ws-bom - Spring WS – Bill of Materials (BOM) - https://spring.io/projects/spring-ws - - Broadcom Inc. - https://www.spring.io - - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Spring - ask@spring.io - Broadcom Inc. - https://www.spring.io - - - - 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 - - - - - org.springframework.ws - spring-ws-core - 4.1.1 - - - org.springframework.ws - spring-ws-security - 4.1.1 - - - org.springframework.ws - spring-ws-support - 4.1.1 - - - org.springframework.ws - spring-ws-test - 4.1.1 - - - org.springframework.ws - spring-xml - 4.1.1 - - - - diff --git a/.m2/repository/org/springframework/ws/spring-ws-bom/4.1.1/spring-ws-bom-4.1.1.pom.sha1 b/.m2/repository/org/springframework/ws/spring-ws-bom/4.1.1/spring-ws-bom-4.1.1.pom.sha1 deleted file mode 100644 index 7358daa..0000000 --- a/.m2/repository/org/springframework/ws/spring-ws-bom/4.1.1/spring-ws-bom-4.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9cf7ab2b86163c1b95b0bc67624f11b535828d52 \ No newline at end of file diff --git a/.m2/repository/org/testcontainers/testcontainers-bom/1.19.7/_remote.repositories b/.m2/repository/org/testcontainers/testcontainers-bom/1.19.7/_remote.repositories deleted file mode 100644 index 50beaf1..0000000 --- a/.m2/repository/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. -#Thu Apr 02 20:38:14 UTC 2026 -testcontainers-bom-1.19.7.pom>central= diff --git a/.m2/repository/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom b/.m2/repository/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom deleted file mode 100644 index 4dba74e..0000000 --- a/.m2/repository/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/.m2/repository/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.sha1 b/.m2/repository/org/testcontainers/testcontainers-bom/1.19.7/testcontainers-bom-1.19.7.pom.sha1 deleted file mode 100644 index 590ea71..0000000 --- a/.m2/repository/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/.m2/repository/org/testcontainers/testcontainers-bom/1.21.3/_remote.repositories b/.m2/repository/org/testcontainers/testcontainers-bom/1.21.3/_remote.repositories deleted file mode 100644 index b8ff52a..0000000 --- a/.m2/repository/org/testcontainers/testcontainers-bom/1.21.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. -#Thu Apr 02 20:37:39 UTC 2026 -testcontainers-bom-1.21.3.pom>central= diff --git a/.m2/repository/org/testcontainers/testcontainers-bom/1.21.3/testcontainers-bom-1.21.3.pom b/.m2/repository/org/testcontainers/testcontainers-bom/1.21.3/testcontainers-bom-1.21.3.pom deleted file mode 100644 index 967a6ae..0000000 --- a/.m2/repository/org/testcontainers/testcontainers-bom/1.21.3/testcontainers-bom-1.21.3.pom +++ /dev/null @@ -1,353 +0,0 @@ - - - 4.0.0 - org.testcontainers - testcontainers-bom - 1.21.3 - 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.21.3 - - - org.testcontainers - azure - 1.21.3 - - - org.testcontainers - cassandra - 1.21.3 - - - org.testcontainers - chromadb - 1.21.3 - - - org.testcontainers - clickhouse - 1.21.3 - - - org.testcontainers - cockroachdb - 1.21.3 - - - org.testcontainers - consul - 1.21.3 - - - org.testcontainers - couchbase - 1.21.3 - - - org.testcontainers - cratedb - 1.21.3 - - - org.testcontainers - database-commons - 1.21.3 - - - org.testcontainers - databend - 1.21.3 - - - org.testcontainers - db2 - 1.21.3 - - - org.testcontainers - dynalite - 1.21.3 - - - org.testcontainers - elasticsearch - 1.21.3 - - - org.testcontainers - gcloud - 1.21.3 - - - org.testcontainers - grafana - 1.21.3 - - - org.testcontainers - hivemq - 1.21.3 - - - org.testcontainers - influxdb - 1.21.3 - - - org.testcontainers - jdbc - 1.21.3 - - - org.testcontainers - junit-jupiter - 1.21.3 - - - org.testcontainers - k3s - 1.21.3 - - - org.testcontainers - k6 - 1.21.3 - - - org.testcontainers - kafka - 1.21.3 - - - org.testcontainers - ldap - 1.21.3 - - - org.testcontainers - localstack - 1.21.3 - - - org.testcontainers - mariadb - 1.21.3 - - - org.testcontainers - milvus - 1.21.3 - - - org.testcontainers - minio - 1.21.3 - - - org.testcontainers - mockserver - 1.21.3 - - - org.testcontainers - mongodb - 1.21.3 - - - org.testcontainers - mssqlserver - 1.21.3 - - - org.testcontainers - mysql - 1.21.3 - - - org.testcontainers - neo4j - 1.21.3 - - - org.testcontainers - nginx - 1.21.3 - - - org.testcontainers - oceanbase - 1.21.3 - - - org.testcontainers - ollama - 1.21.3 - - - org.testcontainers - openfga - 1.21.3 - - - org.testcontainers - oracle-free - 1.21.3 - - - org.testcontainers - oracle-xe - 1.21.3 - - - org.testcontainers - orientdb - 1.21.3 - - - org.testcontainers - pinecone - 1.21.3 - - - org.testcontainers - postgresql - 1.21.3 - - - org.testcontainers - presto - 1.21.3 - - - org.testcontainers - pulsar - 1.21.3 - - - org.testcontainers - qdrant - 1.21.3 - - - org.testcontainers - questdb - 1.21.3 - - - org.testcontainers - r2dbc - 1.21.3 - - - org.testcontainers - rabbitmq - 1.21.3 - - - org.testcontainers - redpanda - 1.21.3 - - - org.testcontainers - scylladb - 1.21.3 - - - org.testcontainers - selenium - 1.21.3 - - - org.testcontainers - solace - 1.21.3 - - - org.testcontainers - solr - 1.21.3 - - - org.testcontainers - spock - 1.21.3 - - - org.testcontainers - testcontainers - 1.21.3 - - - org.testcontainers - tidb - 1.21.3 - - - org.testcontainers - timeplus - 1.21.3 - - - org.testcontainers - toxiproxy - 1.21.3 - - - org.testcontainers - trino - 1.21.3 - - - org.testcontainers - typesense - 1.21.3 - - - org.testcontainers - vault - 1.21.3 - - - org.testcontainers - weaviate - 1.21.3 - - - org.testcontainers - yugabytedb - 1.21.3 - - - - diff --git a/.m2/repository/org/testcontainers/testcontainers-bom/1.21.3/testcontainers-bom-1.21.3.pom.sha1 b/.m2/repository/org/testcontainers/testcontainers-bom/1.21.3/testcontainers-bom-1.21.3.pom.sha1 deleted file mode 100644 index 3705c65..0000000 --- a/.m2/repository/org/testcontainers/testcontainers-bom/1.21.3/testcontainers-bom-1.21.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -78f880c396ef699fef5b6b9c0d17ddf5a119ff04 \ No newline at end of file diff --git a/.m2/repository/org/tomlj/tomlj/1.0.0/_remote.repositories b/.m2/repository/org/tomlj/tomlj/1.0.0/_remote.repositories deleted file mode 100644 index 42720d5..0000000 --- a/.m2/repository/org/tomlj/tomlj/1.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. -#Thu Apr 02 20:43:13 UTC 2026 -tomlj-1.0.0.jar>central= -tomlj-1.0.0.pom>central= diff --git a/.m2/repository/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.jar b/.m2/repository/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.jar deleted file mode 100644 index 56322a7..0000000 Binary files a/.m2/repository/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.jar and /dev/null differ diff --git a/.m2/repository/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.jar.sha1 b/.m2/repository/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.jar.sha1 deleted file mode 100644 index 11c346a..0000000 --- a/.m2/repository/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d1922fb5e672e04d8e8d8dac0b058b1897e6e940 \ No newline at end of file diff --git a/.m2/repository/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.pom b/.m2/repository/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.pom deleted file mode 100644 index 4fed108..0000000 --- a/.m2/repository/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.pom +++ /dev/null @@ -1,84 +0,0 @@ - - - 4.0.0 - org.tomlj - tomlj - 1.0.0 - pom - tomlj - A parser for Tom's Obvious, Minimal Language (TOML). - https://github.com/tomlj/tomlj - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Chris Leishman - chris@leishman.org - - - - scm:https://github.com/tomlj/tomlj.git - scm:git@github.com:tomlj/tomlj.git - https://github.com/tomlj/tomlj - - - - org.antlr - antlr4-runtime - compile - - - com.google.code.findbugs - jsr305 - compile - - - - - - org.junit.jupiter - junit-jupiter-engine - 5.4.2 - - - org.junit.jupiter - junit-jupiter-api - 5.4.2 - - - org.junit.jupiter - junit-jupiter-params - 5.4.2 - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - com.google.errorprone - javac - 9+181-r4173-1 - - - org.antlr - antlr4 - 4.7.2 - - - com.google.errorprone - error_prone_core - 2.3.3 - - - org.antlr - antlr4-runtime - 4.7.2 - - - - diff --git a/.m2/repository/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.pom.sha1 b/.m2/repository/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.pom.sha1 deleted file mode 100644 index 07a5d81..0000000 --- a/.m2/repository/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1533091fd2a96078a725f16a42679013791fde5b \ No newline at end of file diff --git a/.m2/repository/org/tukaani/xz/1.9/_remote.repositories b/.m2/repository/org/tukaani/xz/1.9/_remote.repositories deleted file mode 100644 index fac7bd3..0000000 --- a/.m2/repository/org/tukaani/xz/1.9/_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. -#Thu Apr 02 20:43:08 UTC 2026 -xz-1.9.jar>central= -xz-1.9.pom>central= diff --git a/.m2/repository/org/tukaani/xz/1.9/xz-1.9.jar b/.m2/repository/org/tukaani/xz/1.9/xz-1.9.jar deleted file mode 100644 index 61ad52a..0000000 Binary files a/.m2/repository/org/tukaani/xz/1.9/xz-1.9.jar and /dev/null differ diff --git a/.m2/repository/org/tukaani/xz/1.9/xz-1.9.jar.sha1 b/.m2/repository/org/tukaani/xz/1.9/xz-1.9.jar.sha1 deleted file mode 100644 index c3e22d1..0000000 --- a/.m2/repository/org/tukaani/xz/1.9/xz-1.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1ea4bec1a921180164852c65006d928617bd2caf \ No newline at end of file diff --git a/.m2/repository/org/tukaani/xz/1.9/xz-1.9.pom b/.m2/repository/org/tukaani/xz/1.9/xz-1.9.pom deleted file mode 100644 index 292819e..0000000 --- a/.m2/repository/org/tukaani/xz/1.9/xz-1.9.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - 4.0.0 - - org.tukaani - xz - 1.9 - jar - - XZ for Java - XZ data compression - https://tukaani.org/xz/java.html - - - - Public Domain - You can do whatever you want with this package. - repo - - - - - https://git.tukaani.org/?p=xz-java.git - scm:git:https://git.tukaani.org/xz-java.git - - - - - Lasse Collin - lasse.collin@tukaani.org - - - - - - - Igor Pavlov - http://7-zip.org/ - - - - Brett Okken - brett.okken.os@gmail.com - - - - diff --git a/.m2/repository/org/tukaani/xz/1.9/xz-1.9.pom.sha1 b/.m2/repository/org/tukaani/xz/1.9/xz-1.9.pom.sha1 deleted file mode 100644 index e8a0879..0000000 --- a/.m2/repository/org/tukaani/xz/1.9/xz-1.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -67a95cd14d42aa16c6cc1e7a40fba28e3ddb7521 \ No newline at end of file diff --git a/.m2/repository/org/vafer/jdependency/2.10/_remote.repositories b/.m2/repository/org/vafer/jdependency/2.10/_remote.repositories deleted file mode 100644 index f4b65a6..0000000 --- a/.m2/repository/org/vafer/jdependency/2.10/_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. -#Thu Apr 02 20:43:13 UTC 2026 -jdependency-2.10.jar>central= -jdependency-2.10.pom>central= diff --git a/.m2/repository/org/vafer/jdependency/2.10/jdependency-2.10.jar b/.m2/repository/org/vafer/jdependency/2.10/jdependency-2.10.jar deleted file mode 100644 index 430389a..0000000 Binary files a/.m2/repository/org/vafer/jdependency/2.10/jdependency-2.10.jar and /dev/null differ diff --git a/.m2/repository/org/vafer/jdependency/2.10/jdependency-2.10.jar.sha1 b/.m2/repository/org/vafer/jdependency/2.10/jdependency-2.10.jar.sha1 deleted file mode 100644 index 08e5d23..0000000 --- a/.m2/repository/org/vafer/jdependency/2.10/jdependency-2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8d839bf4684d216f38db7c54c13e24520dc18d4a \ No newline at end of file diff --git a/.m2/repository/org/vafer/jdependency/2.10/jdependency-2.10.pom b/.m2/repository/org/vafer/jdependency/2.10/jdependency-2.10.pom deleted file mode 100644 index e31656f..0000000 --- a/.m2/repository/org/vafer/jdependency/2.10/jdependency-2.10.pom +++ /dev/null @@ -1,429 +0,0 @@ - - - 4.0.0 - org.vafer - jdependency - jdependency - 2.10 - This project provides an API to analyse class dependencies - http://github.com/tcurdt/jdependency - - - tcurdt - Torsten Curdt - tcurdt@apache.org - - Lead Developer - - +1 - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - - - - Niels Basjes - nielsbasjes@apache.org - - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:git:git@github.com:tcurdt/jdependency.git - scm:git:git@github.com:tcurdt/jdependency.git - http://github.com/tcurdt/jdependency - - - - - - maven-enforcer-plugin - 3.4.1 - - - maven-clean-plugin - 3.3.2 - - - maven-resources-plugin - 3.3.1 - - - maven-jar-plugin - 3.3.0 - - - maven-install-plugin - 3.1.1 - - - maven-deploy-plugin - 3.1.1 - - - maven-compiler-plugin - 3.12.1 - - - maven-release-plugin - 3.0.1 - - - maven-antrun-plugin - 3.1.0 - - - maven-surefire-plugin - 3.2.5 - - - org.jacoco - jacoco-maven-plugin - 0.8.11 - - - maven-shade-plugin - 3.5.1 - - - maven-site-plugin - 3.12.1 - - - maven-javadoc-plugin - 3.6.3 - - ${maven.compiler.source} - none - true - - - - maven-project-info-reports-plugin - 3.5.0 - - - maven-surefire-report-plugin - 3.2.5 - - - maven-pmd-plugin - 3.21.2 - - - maven-jxr-plugin - 3.3.2 - - - org.codehaus.mojo - taglist-maven-plugin - 3.0.0 - - - maven-gpg-plugin - 3.1.0 - - - - - - maven-compiler-plugin - - ${maven.compiler.source} - ${maven.compiler.target} - ${project.build.sourceEncoding} - - - - maven-release-plugin - - - maven-shade-plugin - - - package - - shade - - - true - - - *:* - - META-INF/*.SF - META-INF/*.DSA - META-INF/*.RSA - - - - - - commons-io:commons-io - org.ow2.asm:asm - org.ow2.asm:asm-analysis - org.ow2.asm:asm-commons - org.ow2.asm:asm-util - org.ow2.asm:asm-tree - - - - - org.apache.commons - org.vafer.jdeb.shaded.commons - - - org.ow2.asm - org.vafer.jdeb.shaded.ow2.asm - - - org.objectweb.asm - org.vafer.jdeb.shaded.objectweb.asm - - - - - - - - maven-surefire-plugin - - - **/*TestCase.java - - - **/Abstract* - - false - ${test.workingDirectory} - - - - org.jacoco - jacoco-maven-plugin - - - agent - - prepare-agent - - - - report - - report - - - - - - maven-enforcer-plugin - - - enforce-maven - - enforce - - - - - ${mavenVersion} - - - - - - - - maven-antrun-plugin - - - prepare-fs-test-input - process-test-resources - - run - - - - - - - - - - - - - - - - - - - - - - release - - - - maven-source-plugin - 3.3.0 - - - attach-sources - - jar-no-fork - - - - - - maven-javadoc-plugin - 3.6.3 - - - attach-javadocs - - jar - - - 8 - none - true - - - - - 8 - none - true - - - - maven-gpg-plugin - 3.1.0 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - --pinentry-mode - loopback - - - - - - - - - - junit - junit - 4.13.2 - test - - - hamcrest-core - org.hamcrest - - - - - - true - ${project.build.directory}/site - - - maven-site-plugin - - - maven-javadoc-plugin - - - maven-project-info-reports-plugin - - - - team - dependencies - licenses - scm - - - - - - maven-surefire-report-plugin - - - maven-pmd-plugin - - - maven-jxr-plugin - - - org.codehaus.mojo - taglist-maven-plugin - - - FIXME - TODO - @todo - @deprecated - - true - - - - org.jacoco - jacoco-maven-plugin - - - - report - - - - - - - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2 - - - - 8 - UTF-8 - 8 - ${project.build.directory}/test-working-directory - 9.6 - UTF-8 - -Xdoclint:none - 3.6.3 - 3.6.3 - - diff --git a/.m2/repository/org/vafer/jdependency/2.10/jdependency-2.10.pom.sha1 b/.m2/repository/org/vafer/jdependency/2.10/jdependency-2.10.pom.sha1 deleted file mode 100644 index e79325d..0000000 --- a/.m2/repository/org/vafer/jdependency/2.10/jdependency-2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1e42d310b995abe596fd1342899cbacd2068ad3b \ No newline at end of file diff --git a/.m2/repository/org/webjars/swagger-ui/5.13.0/_remote.repositories b/.m2/repository/org/webjars/swagger-ui/5.13.0/_remote.repositories deleted file mode 100644 index 19107cf..0000000 --- a/.m2/repository/org/webjars/swagger-ui/5.13.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. -#Thu Apr 02 20:38:35 UTC 2026 -swagger-ui-5.13.0.jar>central= -swagger-ui-5.13.0.pom>central= diff --git a/.m2/repository/org/webjars/swagger-ui/5.13.0/swagger-ui-5.13.0.jar b/.m2/repository/org/webjars/swagger-ui/5.13.0/swagger-ui-5.13.0.jar deleted file mode 100644 index ef4e2d5..0000000 Binary files a/.m2/repository/org/webjars/swagger-ui/5.13.0/swagger-ui-5.13.0.jar and /dev/null differ diff --git a/.m2/repository/org/webjars/swagger-ui/5.13.0/swagger-ui-5.13.0.jar.sha1 b/.m2/repository/org/webjars/swagger-ui/5.13.0/swagger-ui-5.13.0.jar.sha1 deleted file mode 100644 index d24f1c2..0000000 --- a/.m2/repository/org/webjars/swagger-ui/5.13.0/swagger-ui-5.13.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0262a148333ae8c7fd0e23606855ec516e473efd \ No newline at end of file diff --git a/.m2/repository/org/webjars/swagger-ui/5.13.0/swagger-ui-5.13.0.pom b/.m2/repository/org/webjars/swagger-ui/5.13.0/swagger-ui-5.13.0.pom deleted file mode 100644 index 57492f5..0000000 --- a/.m2/repository/org/webjars/swagger-ui/5.13.0/swagger-ui-5.13.0.pom +++ /dev/null @@ -1,154 +0,0 @@ - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 9 - - - jar - org.webjars - swagger-ui - 5.13.0 - Swagger UI - WebJar for Swagger UI - http://webjars.org - - - UTF-8 - 1711731242 - https://github.com/swagger-api/swagger-ui/archive/v${version.unsnapshot}.zip - ${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${project.version} - - { - "paths": { "swagger-ui": "swagger-ui" } - } - - - - - - jamesward - James Ward - james@jamesward.com - - - - - - Apache 2.0 - https://github.com/swagger-api/swagger-ui - repo - - - - - http://github.com/webjars/swagger-ui - scm:git:https://github.com/webjars/swagger-ui.git - scm:git:https://github.com/webjars/swagger-ui.git - swagger-ui-5.13.0 - - - - - - com.jamesward - unsnapshot-maven-plugin - 0.2 - - - initialize - - unsnapshot - - - - - - - maven-jar-plugin - 3.2.2 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - org.apache.felix - maven-bundle-plugin - 5.1.4 - true - - - bundle-manifest - process-classes - - manifest - - - - - - - maven-antrun-plugin - 1.8 - - - process-resources - run - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 3.0.0-M7 - - - com.googlecode.todomap - maven-jettygzip-plugin - 0.0.4 - - target/classes - target/classes - - - - prepare-package - - process - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - sonatype-nexus-staging - https://oss.sonatype.org/ - true - - - - - - diff --git a/.m2/repository/org/webjars/swagger-ui/5.13.0/swagger-ui-5.13.0.pom.sha1 b/.m2/repository/org/webjars/swagger-ui/5.13.0/swagger-ui-5.13.0.pom.sha1 deleted file mode 100644 index daa948e..0000000 --- a/.m2/repository/org/webjars/swagger-ui/5.13.0/swagger-ui-5.13.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c17785f469757006e83719c6de66fdce2c05aabf \ No newline at end of file diff --git a/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/_remote.repositories b/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/_remote.repositories deleted file mode 100644 index 94ef63b..0000000 --- a/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.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. -#Thu Apr 02 20:38:35 UTC 2026 -snappy-java-1.1.10.5.jar>central= -snappy-java-1.1.10.5.pom>central= diff --git a/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/snappy-java-1.1.10.5.jar b/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/snappy-java-1.1.10.5.jar deleted file mode 100644 index 7707e58..0000000 Binary files a/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/snappy-java-1.1.10.5.jar and /dev/null differ diff --git a/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/snappy-java-1.1.10.5.jar.sha1 b/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/snappy-java-1.1.10.5.jar.sha1 deleted file mode 100644 index 57961af..0000000 --- a/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/snappy-java-1.1.10.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ac605269f3598506196e469f1fb0d7ed5c55059e \ No newline at end of file diff --git a/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/snappy-java-1.1.10.5.pom b/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/snappy-java-1.1.10.5.pom deleted file mode 100644 index 824588c..0000000 --- a/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/snappy-java-1.1.10.5.pom +++ /dev/null @@ -1,84 +0,0 @@ - - - 4.0.0 - org.xerial.snappy - snappy-java - bundle - snappy-java: A fast compression/decompression library - https://github.com/xerial/snappy-java - 1.1.10.5 - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.html - repo - - - snappy-java - - xerial.org - https://github.com/xerial/snappy-java - - - https://github.com/xerial/snappy-java - scm:git@github.com:xerial/snappy-java.git - - - - leo - Taro L. Saito - http://xerial.org/leo - leo@xerial.org - - - - - junit - junit - 4.13.2 - test - - - org.codehaus.plexus - plexus-classworlds - 2.7.0 - test - - - org.xerial.java - xerial-core - 2.1 - test - - - org.wvlet.airframe - airframe-log_2.12 - 23.9.2 - test - - - org.osgi - org.osgi.core - 6.0.0 - provided - - - com.github.sbt - junit-interface - 0.13.3 - test - - - org.apache.hadoop - hadoop-common - 2.10.2 - test - - - org.xerial.snappy - snappy-java - - - - - \ No newline at end of file diff --git a/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/snappy-java-1.1.10.5.pom.sha1 b/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/snappy-java-1.1.10.5.pom.sha1 deleted file mode 100644 index def0b00..0000000 --- a/.m2/repository/org/xerial/snappy/snappy-java/1.1.10.5/snappy-java-1.1.10.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d45bb156e34555f118db0a6bdcc10dbfcf5ade97 \ No newline at end of file diff --git a/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/_remote.repositories b/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/_remote.repositories deleted file mode 100644 index f2caff0..0000000 --- a/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/_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. -#Thu Apr 02 20:38:35 UTC 2026 -xmlunit-core-2.10.3.jar>central= -xmlunit-core-2.10.3.pom>central= diff --git a/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/xmlunit-core-2.10.3.jar b/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/xmlunit-core-2.10.3.jar deleted file mode 100644 index dc43187..0000000 Binary files a/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/xmlunit-core-2.10.3.jar and /dev/null differ diff --git a/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/xmlunit-core-2.10.3.jar.sha1 b/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/xmlunit-core-2.10.3.jar.sha1 deleted file mode 100644 index d4fd965..0000000 --- a/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/xmlunit-core-2.10.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -cb07af25c710796e67fb13c439fd717a8f427088 \ No newline at end of file diff --git a/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/xmlunit-core-2.10.3.pom b/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/xmlunit-core-2.10.3.pom deleted file mode 100644 index e26c9c0..0000000 --- a/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/xmlunit-core-2.10.3.pom +++ /dev/null @@ -1,92 +0,0 @@ - - - - 4.0.0 - - - org.xmlunit - xmlunit-parent - 2.10.3 - - - 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 - - - - - - - org.apache.felix - maven-bundle-plugin - - - javax.xml.bind.*;resolution:=optional,* - - - - - - - - - java9+ - - [9,) - - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.glassfish.jaxb - jaxb-runtime - runtime - true - - - - - diff --git a/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/xmlunit-core-2.10.3.pom.sha1 b/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/xmlunit-core-2.10.3.pom.sha1 deleted file mode 100644 index da2619f..0000000 --- a/.m2/repository/org/xmlunit/xmlunit-core/2.10.3/xmlunit-core-2.10.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2295a32d3ec647c1de76c28c1e585c1a697b6182 \ No newline at end of file diff --git a/.m2/repository/org/xmlunit/xmlunit-parent/2.10.3/_remote.repositories b/.m2/repository/org/xmlunit/xmlunit-parent/2.10.3/_remote.repositories deleted file mode 100644 index 000ef80..0000000 --- a/.m2/repository/org/xmlunit/xmlunit-parent/2.10.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. -#Thu Apr 02 20:38:00 UTC 2026 -xmlunit-parent-2.10.3.pom>central= diff --git a/.m2/repository/org/xmlunit/xmlunit-parent/2.10.3/xmlunit-parent-2.10.3.pom b/.m2/repository/org/xmlunit/xmlunit-parent/2.10.3/xmlunit-parent-2.10.3.pom deleted file mode 100644 index 41deffd..0000000 --- a/.m2/repository/org/xmlunit/xmlunit-parent/2.10.3/xmlunit-parent-2.10.3.pom +++ /dev/null @@ -1,628 +0,0 @@ - - - - 4.0.0 - - org.xmlunit - xmlunit-parent - pom - 2.10.3 - 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 - - - 3.7.1 - 3.2.1 - 3.2.0 - 3.14.0 - 4.7.0 - 2.9.1 - 3.5.0 - 3.2.7 - 0.8.13 - 3.4.1 - 3.11.2 - 3.6.0 - 3.3.1 - 2.22.2 - 0.7.0 - - - 1.3 - 4.13.1 - 2.1.0 - 2.9.0 - 1.12.23 - - - 2.3.3 - - - 3.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-bom - 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 - ${junit.version} - - - org.hamcrest - hamcrest-library - ${hamcrest.version} - - - org.hamcrest - hamcrest-core - ${hamcrest.version} - - - 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 - ${mockito.version} - test - - - - org.assertj - assertj-core - ${assertj.version} - - - net.bytebuddy - byte-buddy - ${byte-buddy.version} - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven.compiler.plugin.version} - - ${maven.compile.source} - ${maven.compile.target} - ${project.build.sourceEncoding} - - - **/package-info.java - - - - - org.codehaus.mojo - buildnumber-maven-plugin - ${maven.buildnumber.plugin.version} - - true - yyyy-MM-dd'T'HH:mm:ss.SSSXXX - - - - validate - - create - - - - - - org.apache.maven.plugins - maven-jar-plugin - ${maven.jar.plugin.version} - - - ${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 - ${maven.shade.plugin.version} - - - org.apache.felix - maven-bundle-plugin - ${maven.bundle.plugin.version} - true - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven.javadoc.plugin.version} - - 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 - ${maven.jacoco.plugin.version} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${maven.enforcer.plugin.version} - - - org.cyclonedx - cyclonedx-maven-plugin - ${maven.cyclonedx.plugin.version} - - - - - - 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 - ${maven.assembly.plugin.version} - false - - - project - - false - xmlunit-${project.version}-src - posix - false - - - - make-assembly - package - - single - - - - - - - - - jacoco - - - - org.jacoco - jacoco-maven-plugin - - - prepare-agent - - prepare-agent - - - - - - com.github.hazendaz.maven - coveralls-maven-plugin - ${maven.coveralls.plugin.version} - - true - ${maven.build.timestamp} - - - - - - - sonatype-central-release - - - - org.apache.maven.plugins - maven-source-plugin - ${maven.source.plugin.version} - - - 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 - ${maven.gpg.plugin.version} - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.central - central-publishing-maven-plugin - ${maven.central.publishing.plugin} - true - - sonatype-central - - - - - - - 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 - false - - - - - - - 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 - ${jdk14Plus.mockito.version} - test - - - - - - java21+ - - false - [21,) - - - 8 - 8 - - - - diff --git a/.m2/repository/org/xmlunit/xmlunit-parent/2.10.3/xmlunit-parent-2.10.3.pom.sha1 b/.m2/repository/org/xmlunit/xmlunit-parent/2.10.3/xmlunit-parent-2.10.3.pom.sha1 deleted file mode 100644 index 55fd00b..0000000 --- a/.m2/repository/org/xmlunit/xmlunit-parent/2.10.3/xmlunit-parent-2.10.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e64d075917ea2952c8113c0a26edb2c84331ccd6 \ No newline at end of file diff --git a/.m2/repository/org/yaml/snakeyaml/2.4/_remote.repositories b/.m2/repository/org/yaml/snakeyaml/2.4/_remote.repositories deleted file mode 100644 index 316b3ca..0000000 --- a/.m2/repository/org/yaml/snakeyaml/2.4/_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. -#Thu Apr 02 20:38:35 UTC 2026 -snakeyaml-2.4.jar>central= -snakeyaml-2.4.pom>central= diff --git a/.m2/repository/org/yaml/snakeyaml/2.4/snakeyaml-2.4.jar b/.m2/repository/org/yaml/snakeyaml/2.4/snakeyaml-2.4.jar deleted file mode 100644 index 697acde..0000000 Binary files a/.m2/repository/org/yaml/snakeyaml/2.4/snakeyaml-2.4.jar and /dev/null differ diff --git a/.m2/repository/org/yaml/snakeyaml/2.4/snakeyaml-2.4.jar.sha1 b/.m2/repository/org/yaml/snakeyaml/2.4/snakeyaml-2.4.jar.sha1 deleted file mode 100644 index 59ba4f6..0000000 --- a/.m2/repository/org/yaml/snakeyaml/2.4/snakeyaml-2.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e0666b825b796f85521f02360e77f4c92c5a7a07 \ No newline at end of file diff --git a/.m2/repository/org/yaml/snakeyaml/2.4/snakeyaml-2.4.pom b/.m2/repository/org/yaml/snakeyaml/2.4/snakeyaml-2.4.pom deleted file mode 100644 index da393c9..0000000 --- a/.m2/repository/org/yaml/snakeyaml/2.4/snakeyaml-2.4.pom +++ /dev/null @@ -1,517 +0,0 @@ - - - 4.0.0 - org.yaml - snakeyaml - 2.4 - bundle - - UTF-8 - bitbucket - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - https://oss.sonatype.org/content/repositories/snapshots/ - 8 - 8 - 8 - false - 5.1.8 - 3.1.0 - 3.12.1 - 3.0.0-M7 - deny - 1.36 - - 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.4 - - - - 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.30 - test - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - 2.18.1 - - - org.yaml - snakeyaml - - - test - - - org.openjdk.jmh - jmh-core - ${jmh.version} - test - - - org.openjdk.jmh - jmh-generator-annprocess - ${jmh.version} - 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 - - - - - - pw.krejci - jmh-maven-plugin - 0.2.2 - - json - ${project.build.directory}/jmh-result.json - - - - 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/.m2/repository/org/yaml/snakeyaml/2.4/snakeyaml-2.4.pom.sha1 b/.m2/repository/org/yaml/snakeyaml/2.4/snakeyaml-2.4.pom.sha1 deleted file mode 100644 index 1dbd6c1..0000000 --- a/.m2/repository/org/yaml/snakeyaml/2.4/snakeyaml-2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e6484ae6e9ec28020772eb823676a72517019542 \ No newline at end of file diff --git a/.m2/repository/xml-apis/xml-apis-ext/1.3.04/_remote.repositories b/.m2/repository/xml-apis/xml-apis-ext/1.3.04/_remote.repositories deleted file mode 100644 index 6acb8b9..0000000 --- a/.m2/repository/xml-apis/xml-apis-ext/1.3.04/_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. -#Thu Apr 02 20:38:35 UTC 2026 -xml-apis-ext-1.3.04.jar>central= -xml-apis-ext-1.3.04.pom>central= diff --git a/.m2/repository/xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04.jar b/.m2/repository/xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04.jar deleted file mode 100644 index a7869d6..0000000 Binary files a/.m2/repository/xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04.jar and /dev/null differ diff --git a/.m2/repository/xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04.jar.sha1 b/.m2/repository/xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04.jar.sha1 deleted file mode 100644 index 14c67a8..0000000 --- a/.m2/repository/xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -41a8b86b358e87f3f13cf46069721719105aff66 \ No newline at end of file diff --git a/.m2/repository/xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04.pom b/.m2/repository/xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04.pom deleted file mode 100644 index 4b260e4..0000000 --- a/.m2/repository/xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04.pom +++ /dev/null @@ -1,41 +0,0 @@ - - - apache - org.apache - 3 - - 4.0.0 - xml-apis - xml-apis-ext - XML Commons External Components XML APIs Extensions - 1.3.04 - xml-commons provides an Apache-hosted set of DOM, SAX, and - JAXP interfaces for use in other xml-based projects. Our hope is that we - can standardize on both a common version and packaging scheme for these - critical XML standards interfaces to make the lives of both our developers - and users easier. The External Components portion of xml-commons contains - interfaces that are defined by external standards organizations. For DOM, - that's the W3C; for SAX it's David Megginson and sax.sourceforge.net; for - JAXP it's Sun. - http://xml.apache.org/commons/components/external/ - - bugzilla - http://issues.apache.org/bugzilla/ - - - - XML Commons Developer's List - commons-dev-subscribe@xml.apache.org - commons-dev-unsubscribe@xml.apache.org - commons-dev@xml.apache.org - http://mail-archives.apache.org/mod_mbox/xml-commons-dev/ - - - - scm:svn:http://svn.apache.org/repos/asf/xml/commons/tags/xml-commons-external-1_3_04/ - http://svn.apache.org/viewvc/xml/commons/tags/xml-commons-external-1_3_04/ - - - deployed - - \ No newline at end of file diff --git a/.m2/repository/xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04.pom.sha1 b/.m2/repository/xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04.pom.sha1 deleted file mode 100644 index ded9959..0000000 --- a/.m2/repository/xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -69b6d2ff0fb53b388289f967705f873bf779a463 \ No newline at end of file diff --git a/.m2/repository/xml-apis/xml-apis/1.4.01/_remote.repositories b/.m2/repository/xml-apis/xml-apis/1.4.01/_remote.repositories deleted file mode 100644 index 3421d2e..0000000 --- a/.m2/repository/xml-apis/xml-apis/1.4.01/_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. -#Thu Apr 02 20:38:35 UTC 2026 -xml-apis-1.4.01.jar>central= -xml-apis-1.4.01.pom>central= diff --git a/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar b/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar deleted file mode 100644 index 4673346..0000000 Binary files a/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar and /dev/null differ diff --git a/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar.sha1 b/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar.sha1 deleted file mode 100644 index e4bedef..0000000 --- a/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3789d9fada2d3d458c4ba2de349d48780f381ee3 \ No newline at end of file diff --git a/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.pom b/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.pom deleted file mode 100644 index 6e2fbf4..0000000 --- a/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.pom +++ /dev/null @@ -1,60 +0,0 @@ - - 4.0.0 - xml-apis - xml-apis - XML Commons External Components XML APIs - 1.4.01 - xml-commons provides an Apache-hosted set of DOM, SAX, and - JAXP interfaces for use in other xml-based projects. Our hope is that we - can standardize on both a common version and packaging scheme for these - critical XML standards interfaces to make the lives of both our developers - and users easier. The External Components portion of xml-commons contains - interfaces that are defined by external standards organizations. For DOM, - that's the W3C; for SAX it's David Megginson and sax.sourceforge.net; for - JAXP it's Sun. - http://xml.apache.org/commons/components/external/ - - bugzilla - http://issues.apache.org/bugzilla/ - - - - XML Commons Developer's List - commons-dev-subscribe@xml.apache.org - commons-dev-unsubscribe@xml.apache.org - commons-dev@xml.apache.org - http://mail-archives.apache.org/mod_mbox/xml-commons-dev/ - - - - scm:svn:http://svn.apache.org/repos/asf/xml/commons/tags/xml-commons-external-1_4_01/ - https://svn.apache.org/viewvc/xml/commons/tags/xml-commons-external-1_4_01/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - The SAX License - http://www.saxproject.org/copying.html - repo - - - The W3C License - http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/java-binding.zip - repo - - - - - xml-apis - Apache Software Foundation - commons-dev@xml.apache.org - http://xml.apache.org/commons/ - Apache Software Foundation - http://www.apache.org - - - \ No newline at end of file diff --git a/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.pom.sha1 b/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.pom.sha1 deleted file mode 100644 index e7457a1..0000000 --- a/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1c657bc14f11cbfcebb2ebf63eebd5cd85b08872 \ No newline at end of file diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/LICENSE b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/LICENSE deleted file mode 100644 index 0dc9a9f..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/LICENSE +++ /dev/null @@ -1,616 +0,0 @@ - - -Apache Maven includes a number of components and libraries with separate -copyright notices and license terms. Your use of those components are -subject to the terms and conditions of the following licenses: - - - - - - - - - - - -- lib/aopalliance-1.0.jar: aopalliance:aopalliance:jar:1.0 - Project: AOP alliance -Project URL: http://aopalliance.sourceforge.net - License: Public Domain (unrecognized) - - License URL: $license.url (lib/aopalliance.license) - - - - - - - - - - - - - - -- lib/gson-2.13.1.jar: com.google.code.gson:gson:jar:2.13.1 - Project: Gson -Project URL: https://github.com/google/gson - License: Apache-2.0 (Apache-2.0) - - License URL: https://www.apache.org/licenses/LICENSE-2.0.txt (lib/gson.license) - - - - - - - - - - - - - - -- lib/error_prone_annotations-2.38.0.jar: com.google.errorprone:error_prone_annotations:jar:2.38.0 - Project: error-prone annotations -Project URL: https://errorprone.info/error_prone_annotations - License: Apache 2.0 (Apache-2.0) - - License URL: http://www.apache.org/licenses/LICENSE-2.0.txt (lib/error_prone_annotations.license) - - - - - - - - - - - - - - - -- lib/failureaccess-1.0.3.jar: com.google.guava:failureaccess:jar:1.0.3 - Project: Guava InternalFutureFailureAccess and InternalFutures -Project URL: https://github.com/google/guava/ - License: Apache License, Version 2.0 (Apache-2.0) - - License URL: http://www.apache.org/licenses/LICENSE-2.0.txt (lib/failureaccess.license) - - - - - - - - - - - - - - -- lib/guava-33.4.8-jre.jar: com.google.guava:guava:bundle:33.4.8-jre - Project: Guava: Google Core Libraries for Java -Project URL: https://github.com/google/guava - License: Apache License, Version 2.0 (Apache-2.0) - - License URL: http://www.apache.org/licenses/LICENSE-2.0.txt (lib/guava.license) - - - - - - - - - - - - - - - -- lib/guice-5.1.0.jar: com.google.inject:guice:jar:5.1.0 - Project: Google Guice - Core Library -Project URL: https://github.com/google/guice/ - License: The Apache Software License, Version 2.0 (Apache-2.0) - - License URL: http://www.apache.org/licenses/LICENSE-2.0.txt (lib/guice.license) - - - - - - - - - - - - - - -- lib/commons-cli-1.9.0.jar: commons-cli:commons-cli:jar:1.9.0 - Project: Apache Commons CLI -Project URL: https://commons.apache.org/proper/commons-cli/ - License: Apache-2.0 (Apache-2.0) - - License URL: https://www.apache.org/licenses/LICENSE-2.0.txt (lib/commons-cli.license) - - - - - - - - - - - - - - -- lib/commons-codec-1.18.0.jar: commons-codec:commons-codec:jar:1.18.0 - Project: Apache Commons Codec -Project URL: https://commons.apache.org/proper/commons-codec/ - License: Apache-2.0 (Apache-2.0) - - License URL: https://www.apache.org/licenses/LICENSE-2.0.txt (lib/commons-codec.license) - - - - - - - - - - - - - - -- lib/javax.annotation-api-1.3.2.jar: javax.annotation:javax.annotation-api:jar:1.3.2 - Project: javax.annotation API -Project URL: http://jcp.org/en/jsr/detail?id=250 - License: CDDL + GPLv2 with classpath exception (unrecognized) - - License URL: https://github.com/javaee/javax.annotation/blob/master/LICENSE (lib/javax.annotation-api.license) - - - - - - - - - - - - - - -- lib/javax.inject-1.jar: javax.inject:javax.inject:jar:1 - Project: javax.inject -Project URL: http://code.google.com/p/atinject/ - License: The Apache Software License, Version 2.0 (Apache-2.0) - - License URL: http://www.apache.org/licenses/LICENSE-2.0.txt (lib/javax.inject.license) - - - - - - - - - - - - - - -- lib/httpclient-4.5.14.jar: org.apache.httpcomponents:httpclient:jar:4.5.14 - Project: Apache HttpClient -Project URL: http://hc.apache.org/httpcomponents-client-ga - License: Apache License, Version 2.0 (Apache-2.0) - - License URL: http://www.apache.org/licenses/LICENSE-2.0.txt (lib/httpclient.license) - - - - - - - - - - - - - - -- lib/httpcore-4.4.16.jar: org.apache.httpcomponents:httpcore:jar:4.4.16 - Project: Apache HttpCore -Project URL: http://hc.apache.org/httpcomponents-core-ga - License: Apache License, Version 2.0 (Apache-2.0) - - License URL: http://www.apache.org/licenses/LICENSE-2.0.txt (lib/httpcore.license) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- lib/plexus-cipher-2.0.jar: org.codehaus.plexus:plexus-cipher:jar:2.0 - Project: Plexus Cipher: encryption/decryption Component -Project URL: https://codehaus-plexus.github.io/plexus-cipher/ - License: Apache License, Version 2.0 (Apache-2.0) - - License URL: http://www.apache.org/licenses/LICENSE-2.0.txt (lib/plexus-cipher.license) - - - - - - - - - - - - - - - -- boot/plexus-classworlds-2.9.0.jar: org.codehaus.plexus:plexus-classworlds:bundle:2.9.0 - Project: Plexus Classworlds -Project URL: https://codehaus-plexus.github.io/plexus-classworlds/ - License: Apache-2.0 (Apache-2.0) - - License URL: https://www.apache.org/licenses/LICENSE-2.0.txt (boot/plexus-classworlds.license) - - - - - - - - - - - - - - -- lib/plexus-component-annotations-2.2.0.jar: org.codehaus.plexus:plexus-component-annotations:jar:2.2.0 - Project: Plexus :: Component Annotations (deprecated) -Project URL: https://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/ - License: Apache License, Version 2.0 (Apache-2.0) - - License URL: https://www.apache.org/licenses/LICENSE-2.0.txt (lib/plexus-component-annotations.license) - - - - - - - - - - - - - - -- lib/plexus-interpolation-1.28.jar: org.codehaus.plexus:plexus-interpolation:bundle:1.28 - Project: Plexus Interpolation API -Project URL: https://codehaus-plexus.github.io/plexus-pom/plexus-interpolation/ - License: Apache-2.0 (Apache-2.0) - - License URL: https://www.apache.org/licenses/LICENSE-2.0.txt (lib/plexus-interpolation.license) - - - - - - - - - - - - - - -- lib/plexus-sec-dispatcher-2.0.jar: org.codehaus.plexus:plexus-sec-dispatcher:jar:2.0 - Project: Plexus Security Dispatcher Component -Project URL: https://codehaus-plexus.github.io/plexus-sec-dispatcher/ - License: Apache License, Version 2.0 (Apache-2.0) - - License URL: http://www.apache.org/licenses/LICENSE-2.0.txt (lib/plexus-sec-dispatcher.license) - - - - - - - - - - - - - - -- lib/plexus-utils-3.6.0.jar: org.codehaus.plexus:plexus-utils:jar:3.6.0 - Project: Plexus Common Utilities -Project URL: https://codehaus-plexus.github.io/plexus-utils/ - License: Apache License, Version 2.0 (Apache-2.0) - - License URL: https://www.apache.org/licenses/LICENSE-2.0.txt (lib/plexus-utils.license) - - - - - - - - - - - - - - -- lib/org.eclipse.sisu.inject-0.9.0.M4.jar: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.9.0.M4 - Project: org.eclipse.sisu:org.eclipse.sisu.inject -Project URL: https://eclipse.dev/sisu/org.eclipse.sisu.inject/ - License: Eclipse Public License, Version 2.0 (EPL-2.0) - - License URL: https://www.eclipse.org/legal/epl-v20.html (lib/org.eclipse.sisu.inject.license) - - - - - - - - - - - - - - -- lib/org.eclipse.sisu.plexus-0.9.0.M4.jar: org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.9.0.M4 - Project: org.eclipse.sisu:org.eclipse.sisu.plexus -Project URL: https://eclipse.dev/sisu/org.eclipse.sisu.plexus/ - License: Eclipse Public License, Version 2.0 (EPL-2.0) - - License URL: https://www.eclipse.org/legal/epl-v20.html (lib/org.eclipse.sisu.plexus.license) - - - - - - - - - - - - - - -- lib/jansi-2.4.2.jar: org.fusesource.jansi:jansi:jar:2.4.2 - Project: Jansi -Project URL: http://fusesource.github.io/jansi - License: Apache License, Version 2.0 (Apache-2.0) - - License URL: http://www.apache.org/licenses/LICENSE-2.0.txt (lib/jansi.license) - - - - - - - - - - - - - - -- lib/jspecify-1.0.0.jar: org.jspecify:jspecify:jar:1.0.0 - Project: JSpecify annotations -Project URL: http://jspecify.org/ - License: The Apache License, Version 2.0 (Apache-2.0) - - License URL: http://www.apache.org/licenses/LICENSE-2.0.txt (lib/jspecify.license) - - - - - - - - - - - - - - -- lib/asm-9.8.jar: org.ow2.asm:asm:jar:9.8 - Project: asm -Project URL: http://asm.ow2.io/ - License: BSD-3-Clause (unrecognized) - - License URL: https://asm.ow2.io/license.html (lib/asm.license) - - - - - - - - - - - - - - -- lib/jcl-over-slf4j-1.7.36.jar: org.slf4j:jcl-over-slf4j:jar:1.7.36 - Project: JCL 1.2 implemented over SLF4J -Project URL: http://www.slf4j.org - License: Apache License, Version 2.0 (Apache-2.0) - - License URL: https://www.apache.org/licenses/LICENSE-2.0.txt (lib/jcl-over-slf4j.license) - - - - - - - - - - - - - - -- lib/slf4j-api-1.7.36.jar: org.slf4j:slf4j-api:jar:1.7.36 - Project: SLF4J API Module -Project URL: http://www.slf4j.org - License: MIT License (MIT) - - License URL: http://www.opensource.org/licenses/mit-license.php (lib/slf4j-api.license) - - - diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/NOTICE b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/NOTICE deleted file mode 100644 index c058817..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/NOTICE +++ /dev/null @@ -1,98 +0,0 @@ -This software bundles the following NOTICE files from third party library providers: - -META-INF/NOTICE in archive lib/guice-5.1.0.jar -Google Guice - Core Library -Copyright 2006-2022 Google, Inc. -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - -META-INF/NOTICE in archive lib/plexus-utils-3.2.1.jar -This product includes software developed by the Indiana University - Extreme! Lab (http://www.extreme.indiana.edu/). -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). -This product includes software developed by -ThoughtWorks (http://www.thoughtworks.com). -This product includes software developed by -javolution (http://javolution.org/). -This product includes software developed by -Rome (https://rome.dev.java.net/). - -about.html in archive lib/org.eclipse.sisu.inject-0.3.5.jar - - - - - -About org.eclipse.sisu.inject - - -

About org.eclipse.sisu.inject

- -

November 5, 2013

-

License

- -

The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise -indicated below, the Content is provided to you under the terms and conditions of the -Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available -at http://www.eclipse.org/legal/epl-v10.html. -For purposes of the EPL, "Program" will mean the Content.

- -

If you did not receive this Content directly from the Eclipse Foundation, the Content is -being redistributed by another party ("Redistributor") and different terms and conditions may -apply to your use of any object code in the Content. Check the Redistributor's license that was -provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise -indicated below, the terms and conditions of the EPL still apply to any source code in the Content -and such source code may be obtained at http://www.eclipse.org.

- -

Third Party Content

-

The Content includes items that have been sourced from third parties as set -out below. If you did not receive this Content directly from the Eclipse Foundation, -the following is provided for informational purposes only, and you should look -to the Redistributor's license for terms and conditions of use.

- -

ASM 4.1

-

The plug-in includes software developed by the ObjectWeb consortium as part -of the ASM project at http://asm.ow2.org/.

- -

A subset of ASM is re-packaged within the source and binary of the plug-in (org.eclipse.sisu.space.asm.*) -to avoid version collisions with other usage and is also available from the plug-in's github repository.

- -

Your use of the ASM code is subject to the terms and conditions of the ASM License -below which is also available at http://asm.ow2.org/license.html.

- -
-Copyright (c) 2000-2011 INRIA, France Telecom
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-
-1. Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-
-3. Neither the name of the copyright holders nor the names of its
-   contributors may be used to endorse or promote products derived from
-   this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-THE POSSIBILITY OF SUCH DAMAGE.
-
- - - diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/README.txt b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/README.txt deleted file mode 100644 index 6d959bb..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/README.txt +++ /dev/null @@ -1,41 +0,0 @@ - - Apache Maven - - What is it? - ----------- - - 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. - - Documentation - ------------- - - The most up-to-date documentation can be found at https://maven.apache.org/. - - Release Notes - ------------- - - The full list of changes, system requirements and related can be found at https://maven.apache.org/docs/history.html. - - Installing Maven - ---------------- - - For complete documentation see https://maven.apache.org/download.html#Installation - - Licensing - --------- - - Please see the file called LICENSE. - - Maven URLS - ---------- - - Home Page: https://maven.apache.org/ - Downloads: https://maven.apache.org/download.html - Release Notes: https://maven.apache.org/docs/history.html - Mailing Lists: https://maven.apache.org/mailing-lists.html - Source Code: https://gitbox.apache.org/repos/asf/maven.git - Issue Tracking: https://issues.apache.org/jira/browse/MNG - Wiki: https://cwiki.apache.org/confluence/display/MAVEN/ - Available Plugins: https://maven.apache.org/plugins/ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/m2.conf b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/m2.conf deleted file mode 100644 index 2817833..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/m2.conf +++ /dev/null @@ -1,10 +0,0 @@ -main is org.apache.maven.cli.MavenCli from plexus.core - -set maven.conf default ${maven.home}/conf - -[plexus.core] -load ${maven.conf}/logging -optionally ${maven.home}/lib/ext/redisson/*.jar -optionally ${maven.home}/lib/ext/hazelcast/*.jar -optionally ${maven.home}/lib/ext/*.jar -load ${maven.home}/lib/*.jar diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvn b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvn deleted file mode 100755 index 47dc7d7..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvn +++ /dev/null @@ -1,216 +0,0 @@ -#!/bin/sh - -# 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. - -# ----------------------------------------------------------------------------- -# Apache Maven Startup Script -# -# Environment Variable Prerequisites -# -# JAVA_HOME Must point at your Java Development Kit installation. -# MAVEN_ARGS (Optional) Arguments passed to Maven before CLI arguments. -# MAVEN_OPTS (Optional) Java runtime options used when Maven is executed. -# MAVEN_SKIP_RC (Optional) Flag to disable loading of mavenrc files. -# ----------------------------------------------------------------------------- - -if [ -z "$MAVEN_SKIP_RC" ] ; then - - if [ -f /usr/local/etc/mavenrc ] ; then - . /usr/local/etc/mavenrc - fi - - if [ -f /etc/mavenrc ] ; then - . /etc/mavenrc - fi - - if [ -f "$HOME/.mavenrc" ] ; then - . "$HOME/.mavenrc" - fi - -fi - -# OS specific support. $var _must_ be set to either true or false. -cygwin=false; -mingw=false; -case "`uname`" in - CYGWIN*) cygwin=true;; - MINGW*) mingw=true;; -esac - -## resolve links - $0 may be a link to Maven's home -PRG="$0" - -# need this for relative symlinks -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG="`dirname "$PRG"`/$link" - fi -done - -saveddir=`pwd` - -MAVEN_HOME=`dirname "$PRG"`/.. - -# make it fully qualified -MAVEN_HOME=`cd "$MAVEN_HOME" && pwd` - -cd "$saveddir" - -# For Cygwin, ensure paths are in Unix format before anything is touched -if $cygwin ; then - [ -n "$MAVEN_HOME" ] && - MAVEN_HOME=`cygpath --unix "$MAVEN_HOME"` - [ -n "$JAVA_HOME" ] && - JAVA_HOME=`cygpath --unix "$JAVA_HOME"` - [ -n "$CLASSPATH" ] && - CLASSPATH=`cygpath --path --unix "$CLASSPATH"` -fi - -# For MinGW, ensure paths are in Unix format before anything is touched -if $mingw ; then - [ -n "$MAVEN_HOME" ] && - MAVEN_HOME=`(cd "$MAVEN_HOME"; pwd)` - [ -n "$JAVA_HOME" ] && - JAVA_HOME=`(cd "$JAVA_HOME"; pwd)` - # TODO classpath? -fi - -if [ -z "$JAVA_HOME" ] ; then - JAVACMD="`\\unset -f command; \\command -v java`" -else - JAVACMD="$JAVA_HOME/bin/java" -fi - -if [ ! -x "$JAVACMD" ] ; then - echo "The JAVA_HOME environment variable is not defined correctly," >&2 - echo "this environment variable is needed to run this program." >&2 - exit 1 -fi - -CLASSWORLDS_JAR=`echo "${MAVEN_HOME}"/boot/plexus-classworlds-*.jar` -CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher - -# For Cygwin, switch paths to Windows format before running java -if $cygwin ; then - [ -n "$MAVEN_HOME" ] && - MAVEN_HOME=`cygpath --path --windows "$MAVEN_HOME"` - [ -n "$JAVA_HOME" ] && - JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` - [ -n "$CLASSPATH" ] && - CLASSPATH=`cygpath --path --windows "$CLASSPATH"` - [ -n "$CLASSWORLDS_JAR" ] && - CLASSWORLDS_JAR=`cygpath --path --windows "$CLASSWORLDS_JAR"` -fi - -# traverses directory structure from process work directory to filesystem root -# first directory with .mvn subdirectory is considered project base directory -find_maven_basedir() { -( - basedir=`find_file_argument_basedir "$@"` - wdir="${basedir}" - while : - do - if [ -d "$wdir"/.mvn ] ; then - basedir=$wdir - break - fi - if [ "$wdir" = '/' ] ; then - break - fi - wdir=`cd "$wdir/.."; pwd` - done - echo "${basedir}" -) -} - -find_file_argument_basedir() { -( - basedir=`pwd` - - found_file_switch=0 - for arg in "$@"; do - if [ ${found_file_switch} -eq 1 ]; then - if [ -d "${arg}" ]; then - basedir=`cd "${arg}" && pwd -P` - elif [ -f "${arg}" ]; then - basedir=`dirname "${arg}"` - basedir=`cd "${basedir}" && pwd -P` - if [ ! -d "${basedir}" ]; then - echo "Directory ${basedir} extracted from the -f/--file command-line argument ${arg} does not exist" >&2 - exit 1 - fi - else - echo "POM file ${arg} specified with the -f/--file command line argument does not exist" >&2 - exit 1 - fi - break - fi - if [ "$arg" = "-f" -o "$arg" = "--file" ]; then - found_file_switch=1 - fi - done - echo "${basedir}" -) -} - -# concatenates all lines of a file -concat_lines() { - if [ -f "$1" ]; then - echo "`tr -s '\r\n' ' ' < "$1"`" - fi -} - -MAVEN_PROJECTBASEDIR="${MAVEN_BASEDIR:-`find_maven_basedir "$@"`}" -MAVEN_OPTS="`concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config"` $MAVEN_OPTS" - -# For Cygwin, switch project base directory path to Windows format before -# executing Maven otherwise this will cause Maven not to consider it. -if $cygwin ; then - [ -n "$MAVEN_PROJECTBASEDIR" ] && - MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` -fi - -export MAVEN_PROJECTBASEDIR - -# Provide a "standardized" way to retrieve the CLI args that will -# work with both Windows and non-Windows executions. -MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" -export MAVEN_CMD_LINE_ARGS - -# MNG-8248 -if "$JAVACMD" --enable-native-access=ALL-UNNAMED -version >/dev/null 2>&1; then - MAVEN_OPTS="--enable-native-access=ALL-UNNAMED $MAVEN_OPTS" - # MNG-8169 - if $mingw ; then - MAVEN_OPTS="--add-opens java.base/java.lang=ALL-UNNAMED $MAVEN_OPTS" - fi -fi - -exec "$JAVACMD" \ - $MAVEN_OPTS \ - $MAVEN_DEBUG_OPTS \ - -classpath "${CLASSWORLDS_JAR}" \ - "-Dclassworlds.conf=${MAVEN_HOME}/bin/m2.conf" \ - "-Dmaven.home=${MAVEN_HOME}" \ - "-Dlibrary.jansi.path=${MAVEN_HOME}/lib/jansi-native" \ - "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ - ${CLASSWORLDS_LAUNCHER} ${MAVEN_ARGS} "$@" diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvn.cmd b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvn.cmd deleted file mode 100644 index 972c39e..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvn.cmd +++ /dev/null @@ -1,211 +0,0 @@ -@REM Licensed to the Apache Software Foundation (ASF) under one -@REM or more contributor license agreements. See the NOTICE file -@REM distributed with this work for additional information -@REM regarding copyright ownership. The ASF licenses this file -@REM to you under the Apache License, Version 2.0 (the -@REM "License"); you may not use this file except in compliance -@REM with the License. You may obtain a copy of the License at -@REM -@REM http://www.apache.org/licenses/LICENSE-2.0 -@REM -@REM Unless required by applicable law or agreed to in writing, -@REM software distributed under the License is distributed on an -@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -@REM KIND, either express or implied. See the License for the -@REM specific language governing permissions and limitations -@REM under the License. - -@REM ----------------------------------------------------------------------------- -@REM Apache Maven Startup Script -@REM -@REM Environment Variable Prerequisites -@REM -@REM JAVA_HOME Must point at your Java Development Kit installation. -@REM MAVEN_ARGS (Optional) Arguments passed to Maven before CLI arguments. -@REM MAVEN_BATCH_ECHO (Optional) Set to 'on' to enable the echoing of the batch commands. -@REM MAVEN_BATCH_PAUSE (Optional) set to 'on' to wait for a key stroke before ending. -@REM MAVEN_OPTS (Optional) Java runtime options used when Maven is executed. -@REM MAVEN_SKIP_RC (Optional) Flag to disable loading of mavenrc files. -@REM ----------------------------------------------------------------------------- - -@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' -@echo off -@REM enable echoing my setting MAVEN_BATCH_ECHO to 'on' -@if "%MAVEN_BATCH_ECHO%"=="on" echo %MAVEN_BATCH_ECHO% - -@REM Execute a user defined script before this one -if not "%MAVEN_SKIP_RC%"=="" goto skipRcPre -@REM check for pre script, once with legacy .bat ending and once with .cmd ending -if exist "%USERPROFILE%\mavenrc_pre.bat" call "%USERPROFILE%\mavenrc_pre.bat" %* -if exist "%USERPROFILE%\mavenrc_pre.cmd" call "%USERPROFILE%\mavenrc_pre.cmd" %* -:skipRcPre - -@setlocal - -set ERROR_CODE=0 - -@REM ==== START VALIDATION ==== -if not "%JAVA_HOME%"=="" goto OkJHome -for %%i in (java.exe) do set "JAVACMD=%%~$PATH:i" -goto checkJCmd - -:OkJHome -set "JAVACMD=%JAVA_HOME%\bin\java.exe" - -:checkJCmd -if exist "%JAVACMD%" goto chkMHome - -echo The JAVA_HOME environment variable is not defined correctly, >&2 -echo this environment variable is needed to run this program. >&2 -goto error - -:chkMHome -set "MAVEN_HOME=%~dp0" -set "MAVEN_HOME=%MAVEN_HOME:~0,-5%" -if not "%MAVEN_HOME%"=="" goto checkMCmd -goto error - -:checkMCmd -if exist "%MAVEN_HOME%\bin\mvn.cmd" goto init -goto error -@REM ==== END VALIDATION ==== - -:init - -set MAVEN_CMD_LINE_ARGS=%* - -@REM Find the project basedir, i.e., the directory that contains the directory ".mvn". -@REM Fallback to current working directory if not found. - -set "MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%" -if not "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir - -set "EXEC_DIR=%CD%" -set "WDIR=%EXEC_DIR%" - -@REM Look for the --file switch and start the search for the .mvn directory from the specified -@REM POM location, if supplied. - -set FILE_ARG= -:arg_loop -if "%~1" == "-f" ( - set "FILE_ARG=%~2" - shift - goto process_file_arg -) -if "%~1" == "--file" ( - set "FILE_ARG=%~2" - shift - goto process_file_arg -) -@REM If none of the above, skip the argument -shift -if not "%~1" == "" ( - goto arg_loop -) else ( - goto findBaseDir -) - -:process_file_arg -if "%FILE_ARG%" == "" ( - goto findBaseDir -) -if not exist "%FILE_ARG%" ( - echo POM file "%FILE_ARG%" specified the -f/--file command-line argument does not exist >&2 - goto error -) -if exist "%FILE_ARG%\*" ( - set "POM_DIR=%FILE_ARG%" -) else ( - call :get_directory_from_file "%FILE_ARG%" -) -if not exist "%POM_DIR%" ( - echo Directory "%POM_DIR%" extracted from the -f/--file command-line argument "%FILE_ARG%" does not exist >&2 - goto error -) -set "WDIR=%POM_DIR%" -goto findBaseDir - -:get_directory_from_file -set "POM_DIR=%~dp1" -:stripPomDir -if not "_%POM_DIR:~-1%"=="_\" goto pomDirStripped -set "POM_DIR=%POM_DIR:~0,-1%" -goto stripPomDir -:pomDirStripped -exit /b - -:findBaseDir -cd /d "%WDIR%" -set "WDIR=%CD%" -:findBaseDirLoop -if exist ".mvn" goto baseDirFound -cd .. -IF "%WDIR%"=="%CD%" goto baseDirNotFound -set "WDIR=%CD%" -goto findBaseDirLoop - -:baseDirFound -set "MAVEN_PROJECTBASEDIR=%WDIR%" -cd /d "%EXEC_DIR%" -goto endDetectBaseDir - -:baseDirNotFound -if "_%EXEC_DIR:~-1%"=="_\" set "EXEC_DIR=%EXEC_DIR:~0,-1%" -set "MAVEN_PROJECTBASEDIR=%EXEC_DIR%" -cd /d "%EXEC_DIR%" - -:endDetectBaseDir - -set "jvmConfig=\.mvn\jvm.config" -if not exist "%MAVEN_PROJECTBASEDIR%%jvmConfig%" goto endReadAdditionalConfig - -@setlocal EnableExtensions EnableDelayedExpansion -for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a -@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% - -:endReadAdditionalConfig - -@REM do not let MAVEN_PROJECTBASEDIR end with a single backslash which would escape the double quote. This happens when .mvn at drive root. -if "_%MAVEN_PROJECTBASEDIR:~-1%"=="_\" set "MAVEN_PROJECTBASEDIR=%MAVEN_PROJECTBASEDIR%\" - -for %%i in ("%MAVEN_HOME%"\boot\plexus-classworlds-*) do set CLASSWORLDS_JAR="%%i" -set CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher - -@REM MNG-8248 -"%JAVACMD%" --enable-native-access=ALL-UNNAMED -version >nul 2>&1 -if ERRORLEVEL 1 goto skipEnableNativeAccess -set "MAVEN_OPTS=--enable-native-access=ALL-UNNAMED %MAVEN_OPTS%" -:skipEnableNativeAccess - -"%JAVACMD%" ^ - %JVM_CONFIG_MAVEN_PROPS% ^ - %MAVEN_OPTS% ^ - %MAVEN_DEBUG_OPTS% ^ - -classpath %CLASSWORLDS_JAR% ^ - "-Dclassworlds.conf=%MAVEN_HOME%\bin\m2.conf" ^ - "-Dmaven.home=%MAVEN_HOME%" ^ - "-Dlibrary.jansi.path=%MAVEN_HOME%\lib\jansi-native" ^ - "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" ^ - %CLASSWORLDS_LAUNCHER% %MAVEN_ARGS% %MAVEN_CMD_LINE_ARGS% -if ERRORLEVEL 1 goto error -goto end - -:error -set ERROR_CODE=1 - -:end -@endlocal & set ERROR_CODE=%ERROR_CODE% - -if not "%MAVEN_SKIP_RC%"=="" goto skipRcPost -@REM check for post script, once with legacy .bat ending and once with .cmd ending -if exist "%USERPROFILE%\mavenrc_post.bat" call "%USERPROFILE%\mavenrc_post.bat" -if exist "%USERPROFILE%\mavenrc_post.cmd" call "%USERPROFILE%\mavenrc_post.cmd" -:skipRcPost - -@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' -if "%MAVEN_BATCH_PAUSE%"=="on" pause - -if "%MAVEN_TERMINATE_CMD%"=="on" exit %ERROR_CODE% - -exit /b %ERROR_CODE% diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvnDebug b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvnDebug deleted file mode 100755 index 2d7cafe..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvnDebug +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# 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. - -# ----------------------------------------------------------------------------- -# Apache Maven Debug Script -# -# Environment Variable Prerequisites -# -# JAVA_HOME Must point at your Java Development Kit installation. -# MAVEN_ARGS (Optional) Arguments passed to Maven before CLI arguments. -# MAVEN_OPTS (Optional) Java runtime options used when Maven is executed. -# MAVEN_SKIP_RC (Optional) Flag to disable loading of mavenrc files. -# MAVEN_DEBUG_ADDRESS (Optional) Set the debug address. Default value is 8000 -# ----------------------------------------------------------------------------- - -MAVEN_DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=${MAVEN_DEBUG_ADDRESS:-8000}" - -echo Preparing to execute Maven in debug mode - -env MAVEN_OPTS="$MAVEN_OPTS" MAVEN_DEBUG_OPTS="$MAVEN_DEBUG_OPTS" "`dirname "$0"`/mvn" "$@" diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvnDebug.cmd b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvnDebug.cmd deleted file mode 100644 index 9777cf9..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvnDebug.cmd +++ /dev/null @@ -1,45 +0,0 @@ -@REM Licensed to the Apache Software Foundation (ASF) under one -@REM or more contributor license agreements. See the NOTICE file -@REM distributed with this work for additional information -@REM regarding copyright ownership. The ASF licenses this file -@REM to you under the Apache License, Version 2.0 (the -@REM "License"); you may not use this file except in compliance -@REM with the License. You may obtain a copy of the License at -@REM -@REM http://www.apache.org/licenses/LICENSE-2.0 -@REM -@REM Unless required by applicable law or agreed to in writing, -@REM software distributed under the License is distributed on an -@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -@REM KIND, either express or implied. See the License for the -@REM specific language governing permissions and limitations -@REM under the License. - -@REM ----------------------------------------------------------------------------- -@REM Apache Maven Debug Script -@REM -@REM Environment Variable Prerequisites -@REM -@REM JAVA_HOME Must point at your Java Development Kit installation. -@REM MAVEN_ARGS (Optional) Arguments passed to Maven before CLI arguments. -@REM MAVEN_BATCH_ECHO (Optional) Set to 'on' to enable the echoing of the batch commands. -@REM MAVEN_BATCH_PAUSE (Optional) set to 'on' to wait for a key stroke before ending. -@REM MAVEN_OPTS (Optional) Java runtime options used when Maven is executed. -@REM MAVEN_SKIP_RC (Optional) Flag to disable loading of mavenrc files. -@REM MAVEN_DEBUG_ADDRESS (Optional) Set the debug address. Default value is 8000 -@REM ----------------------------------------------------------------------------- - -@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' -@echo off -@REM set title of command window -title %0 -@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' -@if "%MAVEN_BATCH_ECHO%"=="on" echo %MAVEN_BATCH_ECHO% - -@setlocal - -IF "%MAVEN_DEBUG_ADDRESS%"=="" @set MAVEN_DEBUG_ADDRESS=8000 - -@set MAVEN_DEBUG_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=%MAVEN_DEBUG_ADDRESS% - -@call "%~dp0"mvn.cmd %* diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvnyjp b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvnyjp deleted file mode 100755 index 6e21a0e..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/bin/mvnyjp +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# 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. - -# ----------------------------------------------------------------------------- -# Apache Maven YourKit Profiler Startup Script -# -# Environment Variable Prerequisites -# -# JAVA_HOME Must point at your Java Development Kit installation. -# MAVEN_ARGS (Optional) Arguments passed to Maven before CLI arguments. -# MAVEN_OPTS (Optional) Java runtime options used when Maven is executed. -# MAVEN_SKIP_RC (Optional) Flag to disable loading of mavenrc files. -# ----------------------------------------------------------------------------- - -if [ ! -f "$YJPLIB" ]; then - echo "Error: Unable to autodetect the YJP library location. Please set YJPLIB variable" >&2 - exit 1 -fi - -env MAVEN_OPTS="-agentpath:$YJPLIB=onexit=snapshot,onexit=memory,tracing,onlylocal $MAVEN_OPTS" "`dirname "$0"`/mvn" "$@" diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/boot/plexus-classworlds-2.9.0.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/boot/plexus-classworlds-2.9.0.jar deleted file mode 100644 index 83dfdf5..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/boot/plexus-classworlds-2.9.0.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/boot/plexus-classworlds.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/boot/plexus-classworlds.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/boot/plexus-classworlds.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/conf/logging/simplelogger.properties b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/conf/logging/simplelogger.properties deleted file mode 100644 index 8c4a5d1..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/conf/logging/simplelogger.properties +++ /dev/null @@ -1,30 +0,0 @@ -# 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. - -org.slf4j.simpleLogger.defaultLogLevel=info -org.slf4j.simpleLogger.showDateTime=false -org.slf4j.simpleLogger.showThreadName=false -org.slf4j.simpleLogger.showLogName=false -org.slf4j.simpleLogger.logFile=System.out -org.slf4j.simpleLogger.cacheOutputStream=true -org.slf4j.simpleLogger.levelInBrackets=true -org.slf4j.simpleLogger.log.Sisu=info -org.slf4j.simpleLogger.warnLevelString=WARNING - -# MNG-6181: mvn -X also prints all debug logging from HttpClient -org.slf4j.simpleLogger.log.org.apache.http=off -org.slf4j.simpleLogger.log.org.apache.http.wire=off diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/conf/settings.xml b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/conf/settings.xml deleted file mode 100644 index 0d64976..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/conf/settings.xml +++ /dev/null @@ -1,265 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - maven-default-http-blocker - external:http:* - Pseudo repository to mirror external repositories initially using HTTP. - http://0.0.0.0/ - true - - - - - - - - - - - - diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/conf/toolchains.xml b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/conf/toolchains.xml deleted file mode 100644 index b263072..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/conf/toolchains.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/aopalliance-1.0.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/aopalliance-1.0.jar deleted file mode 100644 index 578b1a0..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/aopalliance-1.0.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/aopalliance.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/aopalliance.license deleted file mode 100644 index a7a158b..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/aopalliance.license +++ /dev/null @@ -1 +0,0 @@ -Public Domain \ No newline at end of file diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/asm-9.8.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/asm-9.8.jar deleted file mode 100644 index 4f0c86e..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/asm-9.8.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/asm.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/asm.license deleted file mode 100644 index 55761ed..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/asm.license +++ /dev/null @@ -1,29 +0,0 @@ -ASM is released under the following 3-Clause BSD License: - -ASM: a very small and fast Java bytecode manipulation framework -Copyright (c) 2000-2011 INRIA, France Telecom -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. Neither the name of the copyright holders nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/commons-cli-1.9.0.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/commons-cli-1.9.0.jar deleted file mode 100644 index 53949ea..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/commons-cli-1.9.0.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/commons-cli.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/commons-cli.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/commons-cli.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/commons-codec-1.18.0.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/commons-codec-1.18.0.jar deleted file mode 100644 index 9cb5851..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/commons-codec-1.18.0.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/commons-codec.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/commons-codec.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/commons-codec.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/error_prone_annotations-2.38.0.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/error_prone_annotations-2.38.0.jar deleted file mode 100644 index b21cbdd..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/error_prone_annotations-2.38.0.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/error_prone_annotations.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/error_prone_annotations.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/error_prone_annotations.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/ext/README.txt b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/ext/README.txt deleted file mode 100644 index ab7f12a..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/ext/README.txt +++ /dev/null @@ -1,2 +0,0 @@ -Use this directory to add third party extensions to Maven Core. These extensions can either extend or override -Maven's default implementation. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/ext/hazelcast/README.txt b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/ext/hazelcast/README.txt deleted file mode 100644 index 77d19b1..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/ext/hazelcast/README.txt +++ /dev/null @@ -1,6 +0,0 @@ -This directory is intended to contain Hazelcast [1] JARs for Maven Resolver Named Locks using Hazelcast. - -See here [2] on how to add necessary JARs. - -[1] https://github.com/hazelcast/hazelcast -[2] https://maven.apache.org/resolver/maven-resolver-named-locks-hazelcast/index.html#installation-testing diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/ext/redisson/README.txt b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/ext/redisson/README.txt deleted file mode 100644 index 58342b1..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/ext/redisson/README.txt +++ /dev/null @@ -1,6 +0,0 @@ -This directory is intended to contain Redisson [1] JARs for Maven Resolver Named Locks using Redisson. - -See here [2] on how to add necessary JARs. - -[1] https://github.com/redisson/redisson -[2] https://maven.apache.org/resolver/maven-resolver-named-locks-redisson/index.html#installation-testing diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/failureaccess-1.0.3.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/failureaccess-1.0.3.jar deleted file mode 100644 index 2834ba1..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/failureaccess-1.0.3.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/failureaccess.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/failureaccess.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/failureaccess.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/gson-2.13.1.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/gson-2.13.1.jar deleted file mode 100644 index 159b930..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/gson-2.13.1.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/gson.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/gson.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/gson.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/guava-33.4.8-jre.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/guava-33.4.8-jre.jar deleted file mode 100644 index 1c2e215..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/guava-33.4.8-jre.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/guava.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/guava.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/guava.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/guice-5.1.0-classes.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/guice-5.1.0-classes.jar deleted file mode 100644 index b44b167..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/guice-5.1.0-classes.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/guice.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/guice.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/guice.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/httpclient-4.5.14.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/httpclient-4.5.14.jar deleted file mode 100644 index 2bb7c07..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/httpclient-4.5.14.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/httpclient.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/httpclient.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/httpclient.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/httpcore-4.4.16.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/httpcore-4.4.16.jar deleted file mode 100644 index f0bdebe..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/httpcore-4.4.16.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/httpcore.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/httpcore.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/httpcore.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-2.4.2.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-2.4.2.jar deleted file mode 100644 index fe88dec..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-2.4.2.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-native/README.txt b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-native/README.txt deleted file mode 100644 index 26a957e..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-native/README.txt +++ /dev/null @@ -1,8 +0,0 @@ -This directory contains Jansi native libraries extracted from Jansi JAR. - -You can add your own build for platforms not natively supported by Jansi. -See here [1] on how to compile for your platform and and here [2] how libraries -follow Jansi's directory and filename conventions. - -[1] https://github.com/fusesource/jansi/tree/master/src/main/native -[2] https://github.com/fusesource/jansi/blob/321a8ff71c731e10f4ea05c607860180276b2215/src/main/java/org/fusesource/jansi/internal/OSInfo.java diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-native/Windows/arm64/jansi.dll b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-native/Windows/arm64/jansi.dll deleted file mode 100644 index 7f4e35b..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-native/Windows/arm64/jansi.dll and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-native/Windows/x86/jansi.dll b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-native/Windows/x86/jansi.dll deleted file mode 100644 index 8843d02..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-native/Windows/x86/jansi.dll and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-native/Windows/x86_64/jansi.dll b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-native/Windows/x86_64/jansi.dll deleted file mode 100644 index aeec4e3..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi-native/Windows/x86_64/jansi.dll and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jansi.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/javax.annotation-api-1.3.2.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/javax.annotation-api-1.3.2.jar deleted file mode 100644 index a8a470a..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/javax.annotation-api-1.3.2.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/javax.annotation-api.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/javax.annotation-api.license deleted file mode 100644 index b1c74f9..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/javax.annotation-api.license +++ /dev/null @@ -1,759 +0,0 @@ -COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 - -1. Definitions. - - 1.1. "Contributor" means each individual or entity that creates or - contributes to the creation of Modifications. - - 1.2. "Contributor Version" means the combination of the Original - Software, prior Modifications used by a Contributor (if any), and - the Modifications made by that particular Contributor. - - 1.3. "Covered Software" means (a) the Original Software, or (b) - Modifications, or (c) the combination of files containing Original - Software with files containing Modifications, in each case including - portions thereof. - - 1.4. "Executable" means the Covered Software in any form other than - Source Code. - - 1.5. "Initial Developer" means the individual or entity that first - makes Original Software available under this License. - - 1.6. "Larger Work" means a work which combines Covered Software or - portions thereof with code not governed by the terms of this License. - - 1.7. "License" means this document. - - 1.8. "Licensable" means having the right to grant, to the maximum - extent possible, whether at the time of the initial grant or - subsequently acquired, any and all of the rights conveyed herein. - - 1.9. "Modifications" means the Source Code and Executable form of - any of the following: - - A. Any file that results from an addition to, deletion from or - modification of the contents of a file containing Original Software - or previous Modifications; - - B. Any new file that contains any part of the Original Software or - previous Modification; or - - C. Any new file that is contributed or otherwise made available - under the terms of this License. - - 1.10. "Original Software" means the Source Code and Executable form - of computer software code that is originally released under this - License. - - 1.11. "Patent Claims" means any patent claim(s), now owned or - hereafter acquired, including without limitation, method, process, - and apparatus claims, in any patent Licensable by grantor. - - 1.12. "Source Code" means (a) the common form of computer software - code in which modifications are made and (b) associated - documentation included in or with such code. - - 1.13. "You" (or "Your") means an individual or a legal entity - exercising rights under, and complying with all of the terms of, - this License. For legal entities, "You" includes any entity which - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants. - - 2.1. The Initial Developer Grant. - - Conditioned upon Your compliance with Section 3.1 below and subject - to third party intellectual property claims, the Initial Developer - hereby grants You a world-wide, royalty-free, non-exclusive license: - - (a) under intellectual property rights (other than patent or - trademark) Licensable by Initial Developer, to use, reproduce, - modify, display, perform, sublicense and distribute the Original - Software (or portions thereof), with or without Modifications, - and/or as part of a Larger Work; and - - (b) under Patent Claims infringed by the making, using or selling of - Original Software, to make, have made, use, practice, sell, and - offer for sale, and/or otherwise dispose of the Original Software - (or portions thereof). - - (c) The licenses granted in Sections 2.1(a) and (b) are effective on - the date Initial Developer first distributes or otherwise makes the - Original Software available to a third party under the terms of this - License. - - (d) Notwithstanding Section 2.1(b) above, no patent license is - granted: (1) for code that You delete from the Original Software, or - (2) for infringements caused by: (i) the modification of the - Original Software, or (ii) the combination of the Original Software - with other software or devices. - - 2.2. Contributor Grant. - - Conditioned upon Your compliance with Section 3.1 below and subject - to third party intellectual property claims, each Contributor hereby - grants You a world-wide, royalty-free, non-exclusive license: - - (a) under intellectual property rights (other than patent or - trademark) Licensable by Contributor to use, reproduce, modify, - display, perform, sublicense and distribute the Modifications - created by such Contributor (or portions thereof), either on an - unmodified basis, with other Modifications, as Covered Software - and/or as part of a Larger Work; and - - (b) under Patent Claims infringed by the making, using, or selling - of Modifications made by that Contributor either alone and/or in - combination with its Contributor Version (or portions of such - combination), to make, use, sell, offer for sale, have made, and/or - otherwise dispose of: (1) Modifications made by that Contributor (or - portions thereof); and (2) the combination of Modifications made by - that Contributor with its Contributor Version (or portions of such - combination). - - (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective - on the date Contributor first distributes or otherwise makes the - Modifications available to a third party. - - (d) Notwithstanding Section 2.2(b) above, no patent license is - granted: (1) for any code that Contributor has deleted from the - Contributor Version; (2) for infringements caused by: (i) third - party modifications of Contributor Version, or (ii) the combination - of Modifications made by that Contributor with other software - (except as part of the Contributor Version) or other devices; or (3) - under Patent Claims infringed by Covered Software in the absence of - Modifications made by that Contributor. - -3. Distribution Obligations. - - 3.1. Availability of Source Code. - - Any Covered Software that You distribute or otherwise make available - in Executable form must also be made available in Source Code form - and that Source Code form must be distributed only under the terms - of this License. You must include a copy of this License with every - copy of the Source Code form of the Covered Software You distribute - or otherwise make available. You must inform recipients of any such - Covered Software in Executable form as to how they can obtain such - Covered Software in Source Code form in a reasonable manner on or - through a medium customarily used for software exchange. - - 3.2. Modifications. - - The Modifications that You create or to which You contribute are - governed by the terms of this License. You represent that You - believe Your Modifications are Your original creation(s) and/or You - have sufficient rights to grant the rights conveyed by this License. - - 3.3. Required Notices. - - You must include a notice in each of Your Modifications that - identifies You as the Contributor of the Modification. You may not - remove or alter any copyright, patent or trademark notices contained - within the Covered Software, or any notices of licensing or any - descriptive text giving attribution to any Contributor or the - Initial Developer. - - 3.4. Application of Additional Terms. - - You may not offer or impose any terms on any Covered Software in - Source Code form that alters or restricts the applicable version of - this License or the recipients' rights hereunder. You may choose to - offer, and to charge a fee for, warranty, support, indemnity or - liability obligations to one or more recipients of Covered Software. - However, you may do so only on Your own behalf, and not on behalf of - the Initial Developer or any Contributor. You must make it - absolutely clear that any such warranty, support, indemnity or - liability obligation is offered by You alone, and You hereby agree - to indemnify the Initial Developer and every Contributor for any - liability incurred by the Initial Developer or such Contributor as a - result of warranty, support, indemnity or liability terms You offer. - - 3.5. Distribution of Executable Versions. - - You may distribute the Executable form of the Covered Software under - the terms of this License or under the terms of a license of Your - choice, which may contain terms different from this License, - provided that You are in compliance with the terms of this License - and that the license for the Executable form does not attempt to - limit or alter the recipient's rights in the Source Code form from - the rights set forth in this License. If You distribute the Covered - Software in Executable form under a different license, You must make - it absolutely clear that any terms which differ from this License - are offered by You alone, not by the Initial Developer or - Contributor. You hereby agree to indemnify the Initial Developer and - every Contributor for any liability incurred by the Initial - Developer or such Contributor as a result of any such terms You offer. - - 3.6. Larger Works. - - You may create a Larger Work by combining Covered Software with - other code not governed by the terms of this License and distribute - the Larger Work as a single product. In such a case, You must make - sure the requirements of this License are fulfilled for the Covered - Software. - -4. Versions of the License. - - 4.1. New Versions. - - Oracle is the initial license steward and may publish revised and/or - new versions of this License from time to time. Each version will be - given a distinguishing version number. Except as provided in Section - 4.3, no one other than the license steward has the right to modify - this License. - - 4.2. Effect of New Versions. - - You may always continue to use, distribute or otherwise make the - Covered Software available under the terms of the version of the - License under which You originally received the Covered Software. If - the Initial Developer includes a notice in the Original Software - prohibiting it from being distributed or otherwise made available - under any subsequent version of the License, You must distribute and - make the Covered Software available under the terms of the version - of the License under which You originally received the Covered - Software. Otherwise, You may also choose to use, distribute or - otherwise make the Covered Software available under the terms of any - subsequent version of the License published by the license steward. - - 4.3. Modified Versions. - - When You are an Initial Developer and You want to create a new - license for Your Original Software, You may create and use a - modified version of this License if You: (a) rename the license and - remove any references to the name of the license steward (except to - note that the license differs from this License); and (b) otherwise - make it clear that the license contains terms which differ from this - License. - -5. DISCLAIMER OF WARRANTY. - - COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, - WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, - INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE - IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR - NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF - THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE - DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY - OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, - REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN - ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS - AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -6. TERMINATION. - - 6.1. This License and the rights granted hereunder will terminate - automatically if You fail to comply with terms herein and fail to - cure such breach within 30 days of becoming aware of the breach. - Provisions which, by their nature, must remain in effect beyond the - termination of this License shall survive. - - 6.2. If You assert a patent infringement claim (excluding - declaratory judgment actions) against Initial Developer or a - Contributor (the Initial Developer or Contributor against whom You - assert such claim is referred to as "Participant") alleging that the - Participant Software (meaning the Contributor Version where the - Participant is a Contributor or the Original Software where the - Participant is the Initial Developer) directly or indirectly - infringes any patent, then any and all rights granted directly or - indirectly to You by such Participant, the Initial Developer (if the - Initial Developer is not the Participant) and all Contributors under - Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice - from Participant terminate prospectively and automatically at the - expiration of such 60 day notice period, unless if within such 60 - day period You withdraw Your claim with respect to the Participant - Software against such Participant either unilaterally or pursuant to - a written agreement with Participant. - - 6.3. If You assert a patent infringement claim against Participant - alleging that the Participant Software directly or indirectly - infringes any patent where such claim is resolved (such as by - license or settlement) prior to the initiation of patent - infringement litigation, then the reasonable value of the licenses - granted by such Participant under Sections 2.1 or 2.2 shall be taken - into account in determining the amount or value of any payment or - license. - - 6.4. In the event of termination under Sections 6.1 or 6.2 above, - all end user licenses that have been validly granted by You or any - distributor hereunder prior to termination (excluding licenses - granted to You by any distributor) shall survive termination. - -7. LIMITATION OF LIABILITY. - - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT - (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE - INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF - COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE - TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT - LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER - FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR - LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE - POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT - APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH - PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH - LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR - LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION - AND LIMITATION MAY NOT APPLY TO YOU. - -8. U.S. GOVERNMENT END USERS. - - The Covered Software is a "commercial item," as that term is defined - in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer - software" (as that term is defined at 48 C.F.R. § - 252.227-7014(a)(1)) and "commercial computer software documentation" - as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent - with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 - (June 1995), all U.S. Government End Users acquire Covered Software - with only those rights set forth herein. This U.S. Government Rights - clause is in lieu of, and supersedes, any other FAR, DFAR, or other - clause or provision that addresses Government rights in computer - software under this License. - -9. MISCELLANEOUS. - - This License represents the complete agreement concerning subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. This License shall be governed by - the law of the jurisdiction specified in a notice contained within - the Original Software (except to the extent applicable law, if any, - provides otherwise), excluding such jurisdiction's conflict-of-law - provisions. Any litigation relating to this License shall be subject - to the jurisdiction of the courts located in the jurisdiction and - venue specified in a notice contained within the Original Software, - with the losing party responsible for costs, including, without - limitation, court costs and reasonable attorneys' fees and expenses. - The application of the United Nations Convention on Contracts for - the International Sale of Goods is expressly excluded. Any law or - regulation which provides that the language of a contract shall be - construed against the drafter shall not apply to this License. You - agree that You alone are responsible for compliance with the United - States export administration regulations (and the export control - laws and regulation of any other countries) when You use, distribute - or otherwise make available any Covered Software. - -10. RESPONSIBILITY FOR CLAIMS. - - As between Initial Developer and the Contributors, each party is - responsible for claims and damages arising, directly or indirectly, - out of its utilization of rights under this License and You agree to - work with Initial Developer and Contributors to distribute such - responsibility on an equitable basis. Nothing herein is intended or - shall be deemed to constitute any admission of liability. - ------------------------------------------------------------------------- - -NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION -LICENSE (CDDL) - -The code released under the CDDL shall be governed by the laws of the -State of California (excluding conflict-of-law provisions). Any -litigation relating to this License shall be subject to the jurisdiction -of the Federal Courts of the Northern District of California and the -state courts of the State of California, with venue lying in Santa Clara -County, California. - - - - The GNU General Public License (GPL) Version 2, June 1991 - -Copyright (C) 1989, 1991 Free Software Foundation, Inc. -51 Franklin Street, Fifth Floor -Boston, MA 02110-1335 -USA - -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - -Preamble - -The licenses for most software are designed to take away your freedom to -share and change it. By contrast, the GNU General Public License is -intended to guarantee your freedom to share and change free software--to -make sure the software is free for all its users. This General Public -License applies to most of the Free Software Foundation's software and -to any other program whose authors commit to using it. (Some other Free -Software Foundation software is covered by the GNU Library General -Public License instead.) You can apply it to your programs, too. - -When we speak of free software, we are referring to freedom, not price. -Our General Public Licenses are designed to make sure that you have the -freedom to distribute copies of free software (and charge for this -service if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs; and that you know you can do these things. - -To protect your rights, we need to make restrictions that forbid anyone -to deny you these rights or to ask you to surrender the rights. These -restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - -For example, if you distribute copies of such a program, whether gratis -or for a fee, you must give the recipients all the rights that you have. -You must make sure that they, too, receive or can get the source code. -And you must show them these terms so they know their rights. - -We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - -Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - -Finally, any free program is threatened constantly by software patents. -We wish to avoid the danger that redistributors of a free program will -individually obtain patent licenses, in effect making the program -proprietary. To prevent this, we have made it clear that any patent must -be licensed for everyone's free use or not licensed at all. - -The precise terms and conditions for copying, distribution and -modification follow. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License applies to any program or other work which contains a -notice placed by the copyright holder saying it may be distributed under -the terms of this General Public License. The "Program", below, refers -to any such program or work, and a "work based on the Program" means -either the Program or any derivative work under copyright law: that is -to say, a work containing the Program or a portion of it, either -verbatim or with modifications and/or translated into another language. -(Hereinafter, translation is included without limitation in the term -"modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of running -the Program is not restricted, and the output from the Program is -covered only if its contents constitute a work based on the Program -(independent of having been made by running the Program). Whether that -is true depends on what the Program does. - -1. You may copy and distribute verbatim copies of the Program's source -code as you receive it, in any medium, provided that you conspicuously -and appropriately publish on each copy an appropriate copyright notice -and disclaimer of warranty; keep intact all the notices that refer to -this License and to the absence of any warranty; and give any other -recipients of the Program a copy of this License along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Program or any portion of -it, thus forming a work based on the Program, and copy and distribute -such modifications or work under the terms of Section 1 above, provided -that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any part - thereof, to be licensed as a whole at no charge to all third parties - under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a notice - that there is no warranty (or else, saying that you provide a - warranty) and that users may redistribute the program under these - conditions, and telling the user how to view a copy of this License. - (Exception: if the Program itself is interactive but does not - normally print such an announcement, your work based on the Program - is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, and -can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based on -the Program, the distribution of the whole must be on the terms of this -License, whose permissions for other licensees extend to the entire -whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of a -storage or distribution medium does not bring the other work under the -scope of this License. - -3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections 1 - and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your cost - of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer to - distribute corresponding source code. (This alternative is allowed - only for noncommercial distribution and only if you received the - program in object code or executable form with such an offer, in - accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source code -means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to control -compilation and installation of the executable. However, as a special -exception, the source code distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies the -executable. - -If distribution of executable or object code is made by offering access -to copy from a designated place, then offering equivalent access to copy -the source code from the same place counts as distribution of the source -code, even though third parties are not compelled to copy the source -along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt otherwise -to copy, modify, sublicense or distribute the Program is void, and will -automatically terminate your rights under this License. However, parties -who have received copies, or rights, from you under this License will -not have their licenses terminated so long as such parties remain in -full compliance. - -5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and all -its terms and conditions for copying, distributing or modifying the -Program or works based on it. - -6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further restrictions -on the recipients' exercise of the rights granted herein. You are not -responsible for enforcing compliance by third parties to this License. - -7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot distribute -so as to satisfy simultaneously your obligations under this License and -any other pertinent obligations, then as a consequence you may not -distribute the Program at all. For example, if a patent license would -not permit royalty-free redistribution of the Program by all those who -receive copies directly or indirectly through you, then the only way you -could satisfy both it and this License would be to refrain entirely from -distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is implemented -by public license practices. Many people have made generous -contributions to the wide range of software distributed through that -system in reliance on consistent application of that system; it is up to -the author/donor to decide if he or she is willing to distribute -software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be -a consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License may -add an explicit geographical distribution limitation excluding those -countries, so that distribution is permitted only in or among countries -not thus excluded. In such case, this License incorporates the -limitation as if written in the body of this License. - -9. The Free Software Foundation may publish revised and/or new -versions of the General Public License from time to time. Such new -versions will be similar in spirit to the present version, but may -differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Program does not specify a version -number of this License, you may choose any version ever published by the -Free Software Foundation. - -10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the -author to ask for permission. For software which is copyrighted by the -Free Software Foundation, write to the Free Software Foundation; we -sometimes make exceptions for this. Our decision will be guided by the -two goals of preserving the free status of all derivatives of our free -software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, -EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE -ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH -YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL -NECESSARY SERVICING, REPAIR OR CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR -DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL -DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM -(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED -INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF -THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR -OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - -To do so, attach the following notices to the program. It is safest to -attach them to the start of each source file to most effectively convey -the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - One line to give the program's name and a brief idea of what it does. - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type - `show w'. This is free software, and you are welcome to redistribute - it under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the -appropriate parts of the General Public License. Of course, the commands -you use may be called something other than `show w' and `show c'; they -could even be mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - program `Gnomovision' (which makes passes at compilers) written by - James Hacker. - - signature of Ty Coon, 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications -with the library. If this is what you want to do, use the GNU Library -General Public License instead of this License. - -# - -Certain source files distributed by Oracle America, Inc. and/or its -affiliates are subject to the following clarification and special -exception to the GPLv2, based on the GNU Project exception for its -Classpath libraries, known as the GNU Classpath Exception, but only -where Oracle has expressly included in the particular source file's -header the words "Oracle designates this particular file as subject to -the "Classpath" exception as provided by Oracle in the LICENSE file -that accompanied this code." - -You should also note that Oracle includes multiple, independent -programs in this software package. Some of those programs are provided -under licenses deemed incompatible with the GPLv2 by the Free Software -Foundation and others. For example, the package includes programs -licensed under the Apache License, Version 2.0. Such programs are -licensed to you under their original licenses. - -Oracle facilitates your further distribution of this package by adding -the Classpath Exception to the necessary parts of its GPLv2 code, which -permits you to use that code in combination with other independent -modules not licensed under the GPLv2. However, note that this would -not permit you to commingle code under an incompatible license with -Oracle's GPLv2 licensed code by, for example, cutting and pasting such -code into a file also containing Oracle's GPLv2 licensed code and then -distributing the result. Additionally, if you were to remove the -Classpath Exception from any of the files to which it applies and -distribute the result, you would likely be required to license some or -all of the other code in that distribution under the GPLv2 as well, and -since the GPLv2 is incompatible with the license terms of some items -included in the distribution by Oracle, removing the Classpath -Exception could therefore effectively compromise your ability to -further distribute the package. - -Proceed with caution and we recommend that you obtain the advice of a -lawyer skilled in open source matters before removing the Classpath -Exception or making modifications to this package which may -subsequently be redistributed and/or involve the use of third party -software. - -CLASSPATH EXCEPTION -Linking this library statically or dynamically with other modules is -making a combined work based on this library. Thus, the terms and -conditions of the GNU General Public License version 2 cover the whole -combination. - -As a special exception, the copyright holders of this library give you -permission to link this library with independent modules to produce an -executable, regardless of the license terms of these independent -modules, and to copy and distribute the resulting executable under -terms of your choice, provided that you also meet, for each linked -independent module, the terms and conditions of the license of that -module. An independent module is a module which is not derived from or -based on this library. If you modify this library, you may extend this -exception to your version of the library, but you are not obligated to -do so. If you do not wish to do so, delete this exception statement -from your version. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/javax.inject-1.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/javax.inject-1.jar deleted file mode 100644 index b2a9d0b..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/javax.inject-1.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/javax.inject.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/javax.inject.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/javax.inject.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jcl-over-slf4j-1.7.36.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jcl-over-slf4j-1.7.36.jar deleted file mode 100644 index 3ecd7d5..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jcl-over-slf4j-1.7.36.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jcl-over-slf4j.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jcl-over-slf4j.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jcl-over-slf4j.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jspecify-1.0.0.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jspecify-1.0.0.jar deleted file mode 100644 index 466b875..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jspecify-1.0.0.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jspecify.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jspecify.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/jspecify.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-artifact-3.9.11.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-artifact-3.9.11.jar deleted file mode 100644 index c67c656..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-artifact-3.9.11.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-builder-support-3.9.11.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-builder-support-3.9.11.jar deleted file mode 100644 index 5063c05..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-builder-support-3.9.11.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-compat-3.9.11.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-compat-3.9.11.jar deleted file mode 100644 index 2b2eb65..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-compat-3.9.11.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-core-3.9.11.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-core-3.9.11.jar deleted file mode 100644 index 778144d..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-core-3.9.11.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-embedder-3.9.11.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-embedder-3.9.11.jar deleted file mode 100644 index 6077d73..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-embedder-3.9.11.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-model-3.9.11.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-model-3.9.11.jar deleted file mode 100644 index 0562d37..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-model-3.9.11.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-model-builder-3.9.11.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-model-builder-3.9.11.jar deleted file mode 100644 index 63ebd03..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-model-builder-3.9.11.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-plugin-api-3.9.11.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-plugin-api-3.9.11.jar deleted file mode 100644 index e8d7435..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-plugin-api-3.9.11.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-repository-metadata-3.9.11.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-repository-metadata-3.9.11.jar deleted file mode 100644 index 4eec4c6..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-repository-metadata-3.9.11.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-api-1.9.24.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-api-1.9.24.jar deleted file mode 100644 index 89e7df0..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-api-1.9.24.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-connector-basic-1.9.24.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-connector-basic-1.9.24.jar deleted file mode 100644 index ac4396c..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-connector-basic-1.9.24.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-impl-1.9.24.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-impl-1.9.24.jar deleted file mode 100644 index 7945e84..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-impl-1.9.24.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-named-locks-1.9.24.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-named-locks-1.9.24.jar deleted file mode 100644 index f92bbeb..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-named-locks-1.9.24.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-provider-3.9.11.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-provider-3.9.11.jar deleted file mode 100644 index 532b2c9..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-provider-3.9.11.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-spi-1.9.24.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-spi-1.9.24.jar deleted file mode 100644 index 5272a45..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-spi-1.9.24.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-transport-file-1.9.24.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-transport-file-1.9.24.jar deleted file mode 100644 index 0b6ece2..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-transport-file-1.9.24.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-transport-http-1.9.24.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-transport-http-1.9.24.jar deleted file mode 100644 index a1c1b4d..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-transport-http-1.9.24.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-transport-wagon-1.9.24.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-transport-wagon-1.9.24.jar deleted file mode 100644 index f9f3e98..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-transport-wagon-1.9.24.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-util-1.9.24.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-util-1.9.24.jar deleted file mode 100644 index cc06177..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-resolver-util-1.9.24.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-settings-3.9.11.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-settings-3.9.11.jar deleted file mode 100644 index f68c780..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-settings-3.9.11.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-settings-builder-3.9.11.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-settings-builder-3.9.11.jar deleted file mode 100644 index 6e71fe2..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-settings-builder-3.9.11.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-shared-utils-3.4.2.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-shared-utils-3.4.2.jar deleted file mode 100644 index a72853d..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-shared-utils-3.4.2.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-slf4j-provider-3.9.11.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-slf4j-provider-3.9.11.jar deleted file mode 100644 index 49584e7..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/maven-slf4j-provider-3.9.11.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/org.eclipse.sisu.inject-0.9.0.M4.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/org.eclipse.sisu.inject-0.9.0.M4.jar deleted file mode 100644 index bf9be0b..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/org.eclipse.sisu.inject-0.9.0.M4.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/org.eclipse.sisu.inject.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/org.eclipse.sisu.inject.license deleted file mode 100644 index e55f344..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/org.eclipse.sisu.inject.license +++ /dev/null @@ -1,277 +0,0 @@ -Eclipse Public License - v 2.0 - - THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE - PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION - OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. - -1. DEFINITIONS - -"Contribution" means: - - a) in the case of the initial Contributor, the initial content - Distributed under this Agreement, and - - b) in the case of each subsequent Contributor: - i) changes to the Program, and - ii) additions to the Program; - where such changes and/or additions to the Program originate from - and are Distributed by that particular Contributor. A Contribution - "originates" from a Contributor if it was added to the Program by - such Contributor itself or anyone acting on such Contributor's behalf. - Contributions do not include changes or additions to the Program that - are not Modified Works. - -"Contributor" means any person or entity that Distributes the Program. - -"Licensed Patents" mean patent claims licensable by a Contributor which -are necessarily infringed by the use or sale of its Contribution alone -or when combined with the Program. - -"Program" means the Contributions Distributed in accordance with this -Agreement. - -"Recipient" means anyone who receives the Program under this Agreement -or any Secondary License (as applicable), including Contributors. - -"Derivative Works" shall mean any work, whether in Source Code or other -form, that is based on (or derived from) the Program and for which the -editorial revisions, annotations, elaborations, or other modifications -represent, as a whole, an original work of authorship. - -"Modified Works" shall mean any work in Source Code or other form that -results from an addition to, deletion from, or modification of the -contents of the Program, including, for purposes of clarity any new file -in Source Code form that contains any contents of the Program. Modified -Works shall not include works that contain only declarations, -interfaces, types, classes, structures, or files of the Program solely -in each case in order to link to, bind by name, or subclass the Program -or Modified Works thereof. - -"Distribute" means the acts of a) distributing or b) making available -in any manner that enables the transfer of a copy. - -"Source Code" means the form of a Program preferred for making -modifications, including but not limited to software source code, -documentation source, and configuration files. - -"Secondary License" means either the GNU General Public License, -Version 2.0, or any later versions of that license, including any -exceptions or additional permissions as identified by the initial -Contributor. - -2. GRANT OF RIGHTS - - a) Subject to the terms of this Agreement, each Contributor hereby - grants Recipient a non-exclusive, worldwide, royalty-free copyright - license to reproduce, prepare Derivative Works of, publicly display, - publicly perform, Distribute and sublicense the Contribution of such - Contributor, if any, and such Derivative Works. - - b) Subject to the terms of this Agreement, each Contributor hereby - grants Recipient a non-exclusive, worldwide, royalty-free patent - license under Licensed Patents to make, use, sell, offer to sell, - import and otherwise transfer the Contribution of such Contributor, - if any, in Source Code or other form. This patent license shall - apply to the combination of the Contribution and the Program if, at - the time the Contribution is added by the Contributor, such addition - of the Contribution causes such combination to be covered by the - Licensed Patents. The patent license shall not apply to any other - combinations which include the Contribution. No hardware per se is - licensed hereunder. - - c) Recipient understands that although each Contributor grants the - licenses to its Contributions set forth herein, no assurances are - provided by any Contributor that the Program does not infringe the - patent or other intellectual property rights of any other entity. - Each Contributor disclaims any liability to Recipient for claims - brought by any other entity based on infringement of intellectual - property rights or otherwise. As a condition to exercising the - rights and licenses granted hereunder, each Recipient hereby - assumes sole responsibility to secure any other intellectual - property rights needed, if any. For example, if a third party - patent license is required to allow Recipient to Distribute the - Program, it is Recipient's responsibility to acquire that license - before distributing the Program. - - d) Each Contributor represents that to its knowledge it has - sufficient copyright rights in its Contribution, if any, to grant - the copyright license set forth in this Agreement. - - e) Notwithstanding the terms of any Secondary License, no - Contributor makes additional grants to any Recipient (other than - those set forth in this Agreement) as a result of such Recipient's - receipt of the Program under the terms of a Secondary License - (if permitted under the terms of Section 3). - -3. REQUIREMENTS - -3.1 If a Contributor Distributes the Program in any form, then: - - a) the Program must also be made available as Source Code, in - accordance with section 3.2, and the Contributor must accompany - the Program with a statement that the Source Code for the Program - is available under this Agreement, and informs Recipients how to - obtain it in a reasonable manner on or through a medium customarily - used for software exchange; and - - b) the Contributor may Distribute the Program under a license - different than this Agreement, provided that such license: - i) effectively disclaims on behalf of all other Contributors all - warranties and conditions, express and implied, including - warranties or conditions of title and non-infringement, and - implied warranties or conditions of merchantability and fitness - for a particular purpose; - - ii) effectively excludes on behalf of all other Contributors all - liability for damages, including direct, indirect, special, - incidental and consequential damages, such as lost profits; - - iii) does not attempt to limit or alter the recipients' rights - in the Source Code under section 3.2; and - - iv) requires any subsequent distribution of the Program by any - party to be under a license that satisfies the requirements - of this section 3. - -3.2 When the Program is Distributed as Source Code: - - a) it must be made available under this Agreement, or if the - Program (i) is combined with other material in a separate file or - files made available under a Secondary License, and (ii) the initial - Contributor attached to the Source Code the notice described in - Exhibit A of this Agreement, then the Program may be made available - under the terms of such Secondary Licenses, and - - b) a copy of this Agreement must be included with each copy of - the Program. - -3.3 Contributors may not remove or alter any copyright, patent, -trademark, attribution notices, disclaimers of warranty, or limitations -of liability ("notices") contained within the Program from any copy of -the Program which they Distribute, provided that Contributors may add -their own appropriate notices. - -4. COMMERCIAL DISTRIBUTION - -Commercial distributors of software may accept certain responsibilities -with respect to end users, business partners and the like. While this -license is intended to facilitate the commercial use of the Program, -the Contributor who includes the Program in a commercial product -offering should do so in a manner which does not create potential -liability for other Contributors. Therefore, if a Contributor includes -the Program in a commercial product offering, such Contributor -("Commercial Contributor") hereby agrees to defend and indemnify every -other Contributor ("Indemnified Contributor") against any losses, -damages and costs (collectively "Losses") arising from claims, lawsuits -and other legal actions brought by a third party against the Indemnified -Contributor to the extent caused by the acts or omissions of such -Commercial Contributor in connection with its distribution of the Program -in a commercial product offering. The obligations in this section do not -apply to any claims or Losses relating to any actual or alleged -intellectual property infringement. In order to qualify, an Indemnified -Contributor must: a) promptly notify the Commercial Contributor in -writing of such claim, and b) allow the Commercial Contributor to control, -and cooperate with the Commercial Contributor in, the defense and any -related settlement negotiations. The Indemnified Contributor may -participate in any such claim at its own expense. - -For example, a Contributor might include the Program in a commercial -product offering, Product X. That Contributor is then a Commercial -Contributor. If that Commercial Contributor then makes performance -claims, or offers warranties related to Product X, those performance -claims and warranties are such Commercial Contributor's responsibility -alone. Under this section, the Commercial Contributor would have to -defend claims against the other Contributors related to those performance -claims and warranties, and if a court requires any other Contributor to -pay any damages as a result, the Commercial Contributor must pay -those damages. - -5. NO WARRANTY - -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT -PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN "AS IS" -BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR -IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF -TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR -PURPOSE. Each Recipient is solely responsible for determining the -appropriateness of using and distributing the Program and assumes all -risks associated with its exercise of rights under this Agreement, -including but not limited to the risks and costs of program errors, -compliance with applicable laws, damage to or loss of data, programs -or equipment, and unavailability or interruption of operations. - -6. DISCLAIMER OF LIABILITY - -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT -PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS -SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST -PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE -EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - -7. GENERAL - -If any provision of this Agreement is invalid or unenforceable under -applicable law, it shall not affect the validity or enforceability of -the remainder of the terms of this Agreement, and without further -action by the parties hereto, such provision shall be reformed to the -minimum extent necessary to make such provision valid and enforceable. - -If Recipient institutes patent litigation against any entity -(including a cross-claim or counterclaim in a lawsuit) alleging that the -Program itself (excluding combinations of the Program with other software -or hardware) infringes such Recipient's patent(s), then such Recipient's -rights granted under Section 2(b) shall terminate as of the date such -litigation is filed. - -All Recipient's rights under this Agreement shall terminate if it -fails to comply with any of the material terms or conditions of this -Agreement and does not cure such failure in a reasonable period of -time after becoming aware of such noncompliance. If all Recipient's -rights under this Agreement terminate, Recipient agrees to cease use -and distribution of the Program as soon as reasonably practicable. -However, Recipient's obligations under this Agreement and any licenses -granted by Recipient relating to the Program shall continue and survive. - -Everyone is permitted to copy and distribute copies of this Agreement, -but in order to avoid inconsistency the Agreement is copyrighted and -may only be modified in the following manner. The Agreement Steward -reserves the right to publish new versions (including revisions) of -this Agreement from time to time. No one other than the Agreement -Steward has the right to modify this Agreement. The Eclipse Foundation -is the initial Agreement Steward. The Eclipse Foundation may assign the -responsibility to serve as the Agreement Steward to a suitable separate -entity. Each new version of the Agreement will be given a distinguishing -version number. The Program (including Contributions) may always be -Distributed subject to the version of the Agreement under which it was -received. In addition, after a new version of the Agreement is published, -Contributor may elect to Distribute the Program (including its -Contributions) under the new version. - -Except as expressly stated in Sections 2(a) and 2(b) above, Recipient -receives no rights or licenses to the intellectual property of any -Contributor under this Agreement, whether expressly, by implication, -estoppel or otherwise. All rights in the Program not expressly granted -under this Agreement are reserved. Nothing in this Agreement is intended -to be enforceable by any entity that is not a Contributor or Recipient. -No third-party beneficiary rights are created under this Agreement. - -Exhibit A - Form of Secondary Licenses Notice - -"This Source Code may also be made available under the following -Secondary Licenses when the conditions for such availability set forth -in the Eclipse Public License, v. 2.0 are satisfied: {name license(s), -version(s), and exceptions or additional permissions here}." - - Simply including a copy of this Agreement, including this Exhibit A - is not sufficient to license the Source Code under Secondary Licenses. - - If it is not possible or desirable to put the notice in a particular - file, then You may include the notice in a location (such as a LICENSE - file in a relevant directory) where a recipient would be likely to - look for such a notice. - - You may add additional accurate notices of copyright ownership. \ No newline at end of file diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/org.eclipse.sisu.plexus-0.9.0.M4.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/org.eclipse.sisu.plexus-0.9.0.M4.jar deleted file mode 100644 index c266f3f..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/org.eclipse.sisu.plexus-0.9.0.M4.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/org.eclipse.sisu.plexus.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/org.eclipse.sisu.plexus.license deleted file mode 100644 index e55f344..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/org.eclipse.sisu.plexus.license +++ /dev/null @@ -1,277 +0,0 @@ -Eclipse Public License - v 2.0 - - THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE - PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION - OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. - -1. DEFINITIONS - -"Contribution" means: - - a) in the case of the initial Contributor, the initial content - Distributed under this Agreement, and - - b) in the case of each subsequent Contributor: - i) changes to the Program, and - ii) additions to the Program; - where such changes and/or additions to the Program originate from - and are Distributed by that particular Contributor. A Contribution - "originates" from a Contributor if it was added to the Program by - such Contributor itself or anyone acting on such Contributor's behalf. - Contributions do not include changes or additions to the Program that - are not Modified Works. - -"Contributor" means any person or entity that Distributes the Program. - -"Licensed Patents" mean patent claims licensable by a Contributor which -are necessarily infringed by the use or sale of its Contribution alone -or when combined with the Program. - -"Program" means the Contributions Distributed in accordance with this -Agreement. - -"Recipient" means anyone who receives the Program under this Agreement -or any Secondary License (as applicable), including Contributors. - -"Derivative Works" shall mean any work, whether in Source Code or other -form, that is based on (or derived from) the Program and for which the -editorial revisions, annotations, elaborations, or other modifications -represent, as a whole, an original work of authorship. - -"Modified Works" shall mean any work in Source Code or other form that -results from an addition to, deletion from, or modification of the -contents of the Program, including, for purposes of clarity any new file -in Source Code form that contains any contents of the Program. Modified -Works shall not include works that contain only declarations, -interfaces, types, classes, structures, or files of the Program solely -in each case in order to link to, bind by name, or subclass the Program -or Modified Works thereof. - -"Distribute" means the acts of a) distributing or b) making available -in any manner that enables the transfer of a copy. - -"Source Code" means the form of a Program preferred for making -modifications, including but not limited to software source code, -documentation source, and configuration files. - -"Secondary License" means either the GNU General Public License, -Version 2.0, or any later versions of that license, including any -exceptions or additional permissions as identified by the initial -Contributor. - -2. GRANT OF RIGHTS - - a) Subject to the terms of this Agreement, each Contributor hereby - grants Recipient a non-exclusive, worldwide, royalty-free copyright - license to reproduce, prepare Derivative Works of, publicly display, - publicly perform, Distribute and sublicense the Contribution of such - Contributor, if any, and such Derivative Works. - - b) Subject to the terms of this Agreement, each Contributor hereby - grants Recipient a non-exclusive, worldwide, royalty-free patent - license under Licensed Patents to make, use, sell, offer to sell, - import and otherwise transfer the Contribution of such Contributor, - if any, in Source Code or other form. This patent license shall - apply to the combination of the Contribution and the Program if, at - the time the Contribution is added by the Contributor, such addition - of the Contribution causes such combination to be covered by the - Licensed Patents. The patent license shall not apply to any other - combinations which include the Contribution. No hardware per se is - licensed hereunder. - - c) Recipient understands that although each Contributor grants the - licenses to its Contributions set forth herein, no assurances are - provided by any Contributor that the Program does not infringe the - patent or other intellectual property rights of any other entity. - Each Contributor disclaims any liability to Recipient for claims - brought by any other entity based on infringement of intellectual - property rights or otherwise. As a condition to exercising the - rights and licenses granted hereunder, each Recipient hereby - assumes sole responsibility to secure any other intellectual - property rights needed, if any. For example, if a third party - patent license is required to allow Recipient to Distribute the - Program, it is Recipient's responsibility to acquire that license - before distributing the Program. - - d) Each Contributor represents that to its knowledge it has - sufficient copyright rights in its Contribution, if any, to grant - the copyright license set forth in this Agreement. - - e) Notwithstanding the terms of any Secondary License, no - Contributor makes additional grants to any Recipient (other than - those set forth in this Agreement) as a result of such Recipient's - receipt of the Program under the terms of a Secondary License - (if permitted under the terms of Section 3). - -3. REQUIREMENTS - -3.1 If a Contributor Distributes the Program in any form, then: - - a) the Program must also be made available as Source Code, in - accordance with section 3.2, and the Contributor must accompany - the Program with a statement that the Source Code for the Program - is available under this Agreement, and informs Recipients how to - obtain it in a reasonable manner on or through a medium customarily - used for software exchange; and - - b) the Contributor may Distribute the Program under a license - different than this Agreement, provided that such license: - i) effectively disclaims on behalf of all other Contributors all - warranties and conditions, express and implied, including - warranties or conditions of title and non-infringement, and - implied warranties or conditions of merchantability and fitness - for a particular purpose; - - ii) effectively excludes on behalf of all other Contributors all - liability for damages, including direct, indirect, special, - incidental and consequential damages, such as lost profits; - - iii) does not attempt to limit or alter the recipients' rights - in the Source Code under section 3.2; and - - iv) requires any subsequent distribution of the Program by any - party to be under a license that satisfies the requirements - of this section 3. - -3.2 When the Program is Distributed as Source Code: - - a) it must be made available under this Agreement, or if the - Program (i) is combined with other material in a separate file or - files made available under a Secondary License, and (ii) the initial - Contributor attached to the Source Code the notice described in - Exhibit A of this Agreement, then the Program may be made available - under the terms of such Secondary Licenses, and - - b) a copy of this Agreement must be included with each copy of - the Program. - -3.3 Contributors may not remove or alter any copyright, patent, -trademark, attribution notices, disclaimers of warranty, or limitations -of liability ("notices") contained within the Program from any copy of -the Program which they Distribute, provided that Contributors may add -their own appropriate notices. - -4. COMMERCIAL DISTRIBUTION - -Commercial distributors of software may accept certain responsibilities -with respect to end users, business partners and the like. While this -license is intended to facilitate the commercial use of the Program, -the Contributor who includes the Program in a commercial product -offering should do so in a manner which does not create potential -liability for other Contributors. Therefore, if a Contributor includes -the Program in a commercial product offering, such Contributor -("Commercial Contributor") hereby agrees to defend and indemnify every -other Contributor ("Indemnified Contributor") against any losses, -damages and costs (collectively "Losses") arising from claims, lawsuits -and other legal actions brought by a third party against the Indemnified -Contributor to the extent caused by the acts or omissions of such -Commercial Contributor in connection with its distribution of the Program -in a commercial product offering. The obligations in this section do not -apply to any claims or Losses relating to any actual or alleged -intellectual property infringement. In order to qualify, an Indemnified -Contributor must: a) promptly notify the Commercial Contributor in -writing of such claim, and b) allow the Commercial Contributor to control, -and cooperate with the Commercial Contributor in, the defense and any -related settlement negotiations. The Indemnified Contributor may -participate in any such claim at its own expense. - -For example, a Contributor might include the Program in a commercial -product offering, Product X. That Contributor is then a Commercial -Contributor. If that Commercial Contributor then makes performance -claims, or offers warranties related to Product X, those performance -claims and warranties are such Commercial Contributor's responsibility -alone. Under this section, the Commercial Contributor would have to -defend claims against the other Contributors related to those performance -claims and warranties, and if a court requires any other Contributor to -pay any damages as a result, the Commercial Contributor must pay -those damages. - -5. NO WARRANTY - -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT -PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN "AS IS" -BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR -IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF -TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR -PURPOSE. Each Recipient is solely responsible for determining the -appropriateness of using and distributing the Program and assumes all -risks associated with its exercise of rights under this Agreement, -including but not limited to the risks and costs of program errors, -compliance with applicable laws, damage to or loss of data, programs -or equipment, and unavailability or interruption of operations. - -6. DISCLAIMER OF LIABILITY - -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT -PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS -SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST -PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE -EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - -7. GENERAL - -If any provision of this Agreement is invalid or unenforceable under -applicable law, it shall not affect the validity or enforceability of -the remainder of the terms of this Agreement, and without further -action by the parties hereto, such provision shall be reformed to the -minimum extent necessary to make such provision valid and enforceable. - -If Recipient institutes patent litigation against any entity -(including a cross-claim or counterclaim in a lawsuit) alleging that the -Program itself (excluding combinations of the Program with other software -or hardware) infringes such Recipient's patent(s), then such Recipient's -rights granted under Section 2(b) shall terminate as of the date such -litigation is filed. - -All Recipient's rights under this Agreement shall terminate if it -fails to comply with any of the material terms or conditions of this -Agreement and does not cure such failure in a reasonable period of -time after becoming aware of such noncompliance. If all Recipient's -rights under this Agreement terminate, Recipient agrees to cease use -and distribution of the Program as soon as reasonably practicable. -However, Recipient's obligations under this Agreement and any licenses -granted by Recipient relating to the Program shall continue and survive. - -Everyone is permitted to copy and distribute copies of this Agreement, -but in order to avoid inconsistency the Agreement is copyrighted and -may only be modified in the following manner. The Agreement Steward -reserves the right to publish new versions (including revisions) of -this Agreement from time to time. No one other than the Agreement -Steward has the right to modify this Agreement. The Eclipse Foundation -is the initial Agreement Steward. The Eclipse Foundation may assign the -responsibility to serve as the Agreement Steward to a suitable separate -entity. Each new version of the Agreement will be given a distinguishing -version number. The Program (including Contributions) may always be -Distributed subject to the version of the Agreement under which it was -received. In addition, after a new version of the Agreement is published, -Contributor may elect to Distribute the Program (including its -Contributions) under the new version. - -Except as expressly stated in Sections 2(a) and 2(b) above, Recipient -receives no rights or licenses to the intellectual property of any -Contributor under this Agreement, whether expressly, by implication, -estoppel or otherwise. All rights in the Program not expressly granted -under this Agreement are reserved. Nothing in this Agreement is intended -to be enforceable by any entity that is not a Contributor or Recipient. -No third-party beneficiary rights are created under this Agreement. - -Exhibit A - Form of Secondary Licenses Notice - -"This Source Code may also be made available under the following -Secondary Licenses when the conditions for such availability set forth -in the Eclipse Public License, v. 2.0 are satisfied: {name license(s), -version(s), and exceptions or additional permissions here}." - - Simply including a copy of this Agreement, including this Exhibit A - is not sufficient to license the Source Code under Secondary Licenses. - - If it is not possible or desirable to put the notice in a particular - file, then You may include the notice in a location (such as a LICENSE - file in a relevant directory) where a recipient would be likely to - look for such a notice. - - You may add additional accurate notices of copyright ownership. \ No newline at end of file diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-cipher-2.0.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-cipher-2.0.jar deleted file mode 100644 index e73475d..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-cipher-2.0.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-cipher.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-cipher.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-cipher.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-component-annotations-2.2.0.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-component-annotations-2.2.0.jar deleted file mode 100644 index 49113da..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-component-annotations-2.2.0.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-component-annotations.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-component-annotations.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-component-annotations.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-interpolation-1.28.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-interpolation-1.28.jar deleted file mode 100644 index 37c7954..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-interpolation-1.28.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-interpolation.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-interpolation.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-interpolation.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-sec-dispatcher-2.0.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-sec-dispatcher-2.0.jar deleted file mode 100644 index 623cc21..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-sec-dispatcher-2.0.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-sec-dispatcher.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-sec-dispatcher.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-sec-dispatcher.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-utils-3.6.0.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-utils-3.6.0.jar deleted file mode 100644 index 5119711..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-utils-3.6.0.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-utils.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-utils.license deleted file mode 100644 index d645695..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/plexus-utils.license +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/slf4j-api-1.7.36.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/slf4j-api-1.7.36.jar deleted file mode 100644 index 7d3ce68..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/slf4j-api-1.7.36.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/slf4j-api.license b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/slf4j-api.license deleted file mode 100644 index 1a3d053..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/slf4j-api.license +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2004-2022 QOS.ch Sarl (Switzerland) -All rights reserved. - -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 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. - - - diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/wagon-file-3.5.3.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/wagon-file-3.5.3.jar deleted file mode 100644 index 97222d4..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/wagon-file-3.5.3.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/wagon-http-3.5.3.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/wagon-http-3.5.3.jar deleted file mode 100644 index fd1f4a0..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/wagon-http-3.5.3.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/wagon-http-shared-3.5.3.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/wagon-http-shared-3.5.3.jar deleted file mode 100644 index d6f2d75..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/wagon-http-shared-3.5.3.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/wagon-provider-api-3.5.3.jar b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/wagon-provider-api-3.5.3.jar deleted file mode 100644 index ae6f033..0000000 Binary files a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/lib/wagon-provider-api-3.5.3.jar and /dev/null differ diff --git a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/mvnw.url b/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/mvnw.url deleted file mode 100644 index d451104..0000000 --- a/.m2/wrapper/dists/apache-maven-3.9.11/a2d47e15/mvnw.url +++ /dev/null @@ -1 +0,0 @@ -https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11/apache-maven-3.9.11-bin.tar.gz diff --git a/.qwen/settings.json b/.qwen/settings.json deleted file mode 100644 index 4850326..0000000 --- a/.qwen/settings.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "permissions": { - "allow": [ - "Bash(select-object *)", - "Bash(mvnw.cmd *)", - "Read(c:\\Users\\777\\IdeaProjects/**)", - "Read(c:\\Users\\777\\IdeaProjects\\api-gateway-konturAi/**)", - "Read(c:\\Users\\777\\IdeaProjects\\konturai-front/**)", - "Read(c:\\Users\\777\\IdeaProjects\\api-gateway-konturAi\\src\\main\\java\\konturai\\kz\\api_gateway\\configuration/**)", - "Read(c:\\Users\\777\\IdeaProjects\\marketing/**)", - "Read(c:\\Users\\777\\IdeaProjects\\marketing\\src/**)", - "Read(c:\\Users\\777\\IdeaProjects\\marketing\\src\\service/**)", - "Read(c:\\Users\\777\\IdeaProjects\\marketing\\src\\config/**)", - "Bash(findstr *)" - ] - }, - "$version": 3 -} \ No newline at end of file diff --git a/.qwen/settings.json.orig b/.qwen/settings.json.orig deleted file mode 100644 index b5f6c36..0000000 --- a/.qwen/settings.json.orig +++ /dev/null @@ -1,7 +0,0 @@ -{ - "permissions": { - "allow": [ - "Bash(select-object *)" - ] - } -} \ No newline at end of file diff --git a/README.md b/README.md index 57cab6b..d38b11f 100644 --- a/README.md +++ b/README.md @@ -1,93 +1,95 @@ -# marketing-parser +# Marketing Parser +Spring Boot service behind the KonturAI marketing platform. It ingests business news +from RSS sources, runs AI-driven marketing analysis and strategy generation over that +corpus, renders the results as PDF/DOCX/Markdown reports, and publishes campaign +content to social networks. +- **Java 21** · **Spring Boot 3.5.5** · **MongoDB** · **MinIO** +- AI providers: **OpenAI**, **Ollama** (self-hosted), **Google Vertex AI** (Imagen/Veo) +- Deployed via **Gitea Actions** to a self-hosted Docker runner -## Getting started +--- -To make it easy for you to get started with GitLab, here's a list of recommended next steps. +## Quick start -Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! +```bash +# 1. Provide configuration (see docs/configuration.md) +cp .env.example .env +$EDITOR .env # fill in every REQUIRED value -## Add your files +# 2. Supply the Google service-account key (only for image/video generation) +cp /secure/path/google-key.json src/main/resources/keys/google-key.json -- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files -- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command: - -``` -cd existing_repo -git remote add origin https://gitlab.konturai.kz/services/marketing-parser.git -git branch -M main -git push -uf origin main +# 3. Run +set -a && source .env && set +a +./mvnw spring-boot:run ``` -## Integrate with your tools +The service listens on `http://localhost:8080`. Interactive API docs are at +`http://localhost:8080/swagger-ui.html`, health at `/api/parser/health`. -- [ ] [Set up project integrations](https://gitlab.konturai.kz/services/marketing-parser/-/settings/integrations) +> The application **fails fast at startup** if a required secret is missing. That is +> deliberate — see [docs/configuration.md](docs/configuration.md). -## Collaborate with your team +## Build and test -- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/) -- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) -- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically) -- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/) -- [ ] [Set auto-merge](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html) +```bash +./mvnw clean verify # unit tests + JaCoCo coverage gate +./mvnw clean package # build the jar +``` -## Test and Deploy +Integration tests boot the full Spring context and need real MongoDB plus the +environment variables above. They are opt-in: -Use the built-in continuous integration in GitLab. +```bash +RUN_INTEGRATION_TESTS=true ./mvnw verify +``` -- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html) -- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/ee/user/application_security/sast/) -- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html) -- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/) -- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html) +`verify` enforces 80% line coverage on `PostingTaskService`, `JwtService` and +`SocialMediaCredentialsService` (see the JaCoCo rule in `pom.xml`). -*** +## Documentation -# Editing this README +| Guide | What it covers | +| --- | --- | +| [Architecture](docs/architecture.md) | Modules, request flow, data model, external dependencies | +| [Configuration](docs/configuration.md) | Every environment variable, secret handling, local setup | +| [Deployment](docs/deployment.md) | Gitea Actions pipeline, Docker image, server layout | +| [Development](docs/development.md) | Conventions, testing, adding a parser or endpoint | +| [Troubleshooting](docs/troubleshooting.md) | MongoDB, 401s, common startup failures | +| [API reference](docs/api/README.md) | Per-domain endpoint documentation | +| [RSS parsers](docs/rss-parsers.md) | Sources, scheduling, deduplication | +| [Email reports](docs/email-reports.md) | Sending generated reports by email | +| [Facebook setup](docs/facebook-setup.md) | App, page tokens and lead collection | -When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template. +Historical specs, superseded API revisions and design notes live in +[docs/archive/](docs/archive/README.md). -## Suggestions for a good README +## Repository layout -Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information. +``` +src/main/java/kz/konturai/parser/ +├── controller/ REST endpoints (15) + GlobalExceptionHandler +├── service/ Business logic (52) — parsers, AI, reports, posting, targeting +├── model/ MongoDB documents (21) +├── dto/ Request/response payloads (68) +├── repository/ Spring Data Mongo repositories (11) +├── config/ Beans, CORS, Swagger, async executors, typed properties +├── validator/ Request validation +├── enums/ Shared enumerations +├── exception/ Domain exceptions +└── util/ Helpers -## Name -Choose a self-explaining name for your project. +deployment/ docker-compose for the production host +docs/ Documentation (see table above) +scripts/ Run helper and smoke-test scripts +.gitea/workflows/ CI/CD pipeline +``` -## Description -Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors. +## Security -## Badges -On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge. - -## Visuals -Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method. - -## Installation -Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. - -## Usage -Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. - -## Support -Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc. - -## Roadmap -If you have ideas for releases in the future, it is a good idea to list them in the README. - -## Contributing -State if you are open to contributions and what your requirements are for accepting them. - -For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. - -You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. - -## Authors and acknowledgment -Show your appreciation to those who have contributed to the project. - -## License -For open source projects, say how it is licensed. - -## Project status -If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers. +Never commit credentials. All secrets are supplied through environment variables and +`src/main/resources/keys/google-key.json` is deliberately untracked. See +[docs/configuration.md](docs/configuration.md#secret-handling) before adding any new +configuration value. diff --git a/[internal] b/[internal] deleted file mode 100644 index e69de29..0000000 diff --git a/docs/api/README.md b/docs/api/README.md new file mode 100644 index 0000000..6a50d22 --- /dev/null +++ b/docs/api/README.md @@ -0,0 +1,67 @@ +# API reference + +The **authoritative, always-current** reference is the generated OpenAPI spec: + +- Swagger UI — `http://localhost:8080/swagger-ui.html` +- Raw spec — `http://localhost:8080/v3/api-docs` + +The documents here add what a generated spec cannot: payload semantics, field meanings, +worked examples and frontend integration notes. Where a document and the running +service disagree, **the service is correct** — please fix the document. + +## Authentication + +Every endpoint except health and public assets expects a JWT issued by the KonturAI +auth service: + +``` +Authorization: Bearer +``` + +This service validates the signature and reads the user id, email and roles from the +claims; it does not issue tokens. See [authentication.md](authentication.md). + +## Documents + +| Document | Endpoints | Covers | +| --- | --- | --- | +| [authentication.md](authentication.md) | — | Extracting user identity from the JWT | +| [marketing-analysis.md](marketing-analysis.md) | `/api/marketing/analysis`, `/api/marketing/v3` | Analysis generation and the full field reference | +| [marketing-strategy.md](marketing-strategy.md) | `/api/marketing/analysis` | Promotion strategy generation | +| [strategy-execution.md](strategy-execution.md) | `/api/marketing/analysis` | Launching and tracking a strategy | +| [posting-tasks.md](posting-tasks.md) | `/api/marketing/analysis` | Scheduling and managing social posts | +| [social-media-credentials.md](social-media-credentials.md) | `/api/social-media/credentials` | Storing per-user network credentials | +| [image-generation.md](image-generation.md) | `/api/marketing` | Generating post imagery | +| [research-reports.md](research-reports.md) | `/api/parser/report` | Research report generation and history | +| [chart-rendering.md](chart-rendering.md) | — | Rendering chart JSON embedded in reports | + +## Endpoints without a dedicated document + +Use Swagger UI for these: + +| Base path | Controller | Purpose | +| --- | --- | --- | +| `/api/parser/health` | `HealthCheckController` | Liveness | +| `/api/parser/items` | `MarketItemController` | Ingested news corpus | +| `/api/parser/admin/parsers` | `ParserAdminController` | Trigger/inspect RSS parsers | +| `/api/targeting` | `AiTargetingSystemController` | AI targeting recommendations | +| `/api/marketing/targeting` | `TargetingCampaignController` | Campaign targeting | +| `/api/facebook/config` | `FacebookConfigController` | Facebook app/page config | +| `/api/facebook/leads` | `FacebookLeadsController` | Collected hot leads | +| `/api/facebook/webhook` | `FacebookWebhookController` | Facebook webhook receiver | +| `/api/openai` | `OpenAITestController` | OpenAI connectivity diagnostics | + +## Versioning + +Marketing analysis exists in three generations — v1/v2 under `/api/marketing/analysis` +and v3 under `/api/marketing/v3` — kept side by side so older frontend builds keep +working. **v3 is the current path for new integrations.** + +Superseded revisions of these documents are preserved in +[../archive/api-history/](../archive/api-history/). + +## Errors + +All errors are rendered by `GlobalExceptionHandler`, so the payload shape is consistent +across endpoints. Validation failures return `400` with per-field detail; a missing or +invalid token returns `401`. diff --git a/a.md b/docs/api/authentication.md similarity index 100% rename from a.md rename to docs/api/authentication.md diff --git a/frontend-chart-rendering.md b/docs/api/chart-rendering.md similarity index 100% rename from frontend-chart-rendering.md rename to docs/api/chart-rendering.md diff --git a/IMAGE_GENERATION_FRONTEND.md b/docs/api/image-generation.md similarity index 100% rename from IMAGE_GENERATION_FRONTEND.md rename to docs/api/image-generation.md diff --git a/marketing-analysis-api-updated-fields.md b/docs/api/marketing-analysis.md similarity index 100% rename from marketing-analysis-api-updated-fields.md rename to docs/api/marketing-analysis.md diff --git a/marketing-strategy-api-frontend.md b/docs/api/marketing-strategy.md similarity index 100% rename from marketing-strategy-api-frontend.md rename to docs/api/marketing-strategy.md diff --git a/POSTING_TASKS_API_FRONTEND.md b/docs/api/posting-tasks.md similarity index 100% rename from POSTING_TASKS_API_FRONTEND.md rename to docs/api/posting-tasks.md diff --git a/RESEARCH_API_GUIDE.md b/docs/api/research-reports.md similarity index 100% rename from RESEARCH_API_GUIDE.md rename to docs/api/research-reports.md diff --git a/SOCIAL_MEDIA_CREDENTIALS_API_FRONTEND.md b/docs/api/social-media-credentials.md similarity index 100% rename from SOCIAL_MEDIA_CREDENTIALS_API_FRONTEND.md rename to docs/api/social-media-credentials.md diff --git a/STRATEGY_EXECUTION_API.md b/docs/api/strategy-execution.md similarity index 99% rename from STRATEGY_EXECUTION_API.md rename to docs/api/strategy-execution.md index 06caa63..a2e9a7c 100644 --- a/STRATEGY_EXECUTION_API.md +++ b/docs/api/strategy-execution.md @@ -588,7 +588,7 @@ try { **Для запуска рекламных кампаний в Facebook требуется дополнительная настройка:** -📖 **Подробная инструкция:** См. [FACEBOOK_ADS_CREDENTIALS.md](./FACEBOOK_ADS_CREDENTIALS.md) +📖 **Подробная инструкция:** См. [facebook-setup.md](../facebook-setup.md) Для рекламы нужны: diff --git a/docs/architecture.md b/docs/architecture.md new file mode 100644 index 0000000..0de52e1 --- /dev/null +++ b/docs/architecture.md @@ -0,0 +1,158 @@ +# Architecture + +Marketing Parser is a single Spring Boot 3.5.5 service on Java 21, backed by MongoDB +for persistence and MinIO for generated artefacts. It exposes a REST API consumed by +the KonturAI frontend and runs a set of scheduled background jobs. + +## Functional areas + +The service covers five loosely coupled concerns that share a database and a set of +AI clients: + +1. **RSS ingestion** — collects business news into a `MarketItem` corpus. +2. **Marketing analysis** — turns that corpus plus user input into structured analysis. +3. **Report rendering** — renders analysis as PDF, DOCX and Markdown with charts. +4. **Campaign execution** — generates creatives and publishes them to social networks. +5. **Targeting and leads** — ad targeting recommendations and Facebook lead capture. + +## Request flow + +``` +Frontend + │ Bearer JWT + ▼ +Controller ──validator──► DTO + │ │ + │ ▼ + │ Service layer + │ ╱ │ ╲ + │ AI clients Repository MinIO + │ (OpenAI/Ollama/ │ (artefacts) + │ Vertex/Serper) ▼ + │ MongoDB + ▼ +GlobalExceptionHandler ──► consistent error payload +``` + +Authentication is **JWT bearer tokens issued by a separate auth service**. This +service does not log users in; `JwtService` validates the signature against +`security.jwt.secret-base64` and extracts the user id, email and roles from claims. +Controllers pull the caller identity via `extractUserIdFromHeader(authHeader)`. See +[api/authentication.md](api/authentication.md). + +## Layers + +| Package | Responsibility | +| --- | --- | +| `controller` | HTTP endpoints, 15 controllers plus `GlobalExceptionHandler` | +| `validator` | Request-level validation beyond Bean Validation annotations | +| `dto` | Request/response payloads, including `dto/targeting` | +| `service` | All business logic — 52 classes | +| `repository` | Spring Data MongoDB interfaces | +| `model` | MongoDB documents | +| `config` | Beans, typed `@ConfigurationProperties`, async executors, CORS, Swagger | +| `exception` | Domain exceptions surfaced by `GlobalExceptionHandler` | + +## Endpoints + +| Base path | Controller | Purpose | +| --- | --- | --- | +| `/api/parser/health` | `HealthCheckController` | Liveness | +| `/api/parser/items` | `MarketItemController` | Access the ingested news corpus | +| `/api/parser/admin/parsers` | `ParserAdminController` | Trigger and inspect parsers | +| `/api/parser/report` | `ReportController` | Research report generation and history | +| `/api/marketing/analysis` | `MarketingController` | Marketing analysis (v1/v2) | +| `/api/marketing/v3` | `MarketingAnalysisV3Controller` | Marketing analysis v3 | +| `/api/marketing/targeting` | `TargetingCampaignController` | Campaign targeting | +| `/api/marketing` | `PublicAssetController` | Public access to generated assets | +| `/api/targeting` | `AiTargetingSystemController` | AI targeting recommendations | +| `/api/social-media/credentials` | `SocialMediaCredentialsController` | Per-user network credentials | +| `/api/facebook/config` | `FacebookConfigController` | Facebook app/page configuration | +| `/api/facebook/leads` | `FacebookLeadsController` | Collected hot leads | +| `/api/facebook/webhook` | `FacebookWebhookController` | Facebook webhook receiver | +| `/api/openai` | `OpenAITestController` | Connectivity diagnostics | + +Full request/response detail: [api/README.md](api/README.md), or the live OpenAPI UI +at `/swagger-ui.html`. + +## RSS ingestion + +`ParserService` is a small interface — `getSourceName()` and `parseAndSaveRssFeed()`. +Each source implements it, and `ParserManagerService` acts as a facade: Spring injects +every `ParserService` bean and the manager indexes them by source name, so adding a +source requires no changes to the manager or the controller. + +Five sources are implemented: Kursiv, Kapital, LSM, RBC and Vedomosti. Details and +scheduling in [rss-parsers.md](rss-parsers.md). + +## Scheduled jobs + +`parser.scheduler.enabled` is **`false` by default** — RSS polling does not run unless +explicitly enabled. `posting.scheduler.enabled` defaults to `true`. + +| Job | Cron | Owner | +| --- | --- | --- | +| Kursiv / Kapital ingest | every 5 min | `KursivParserService`, `KapitalParserService` | +| LSM / RBC / Vedomosti ingest | every 30 min | respective parser services | +| Scheduled post publishing | every minute | `PostingSchedulerService` | +| Facebook lead collection | every 15 min (configurable) | `FacebookLeadCollectorService` | +| Targeting campaign sync | every 6 hours | `TargetingCampaignService` | +| Campaign prediction refresh | daily 06:00 | `CampaignPredictionService` | + +## AI provider strategy + +The service deliberately mixes providers by cost and capability: + +- **OpenAI** (`gpt-4o`, `gpt-4o-mini`) — structured JSON analysis and chart data, where + reliable schema adherence matters. Wrapped in retry with exponential backoff and a + concurrency cap of 3. +- **Ollama** (self-hosted) — long-form narrative text, avoiding per-token cost on the + largest outputs. Timeouts are correspondingly long (up to 5 hours). +- **Google Vertex AI** — Imagen 3 for images, Veo 3 for video, authenticated with a + service-account key. See [configuration.md](configuration.md#the-google-service-account-key). +- **Serper** — Google search results feeding research reports. + +`ClaudeApiService` and `DeepResearchService` cover additional generation paths. + +## Persistence + +MongoDB documents, one repository each: + +| Document | Holds | +| --- | --- | +| `MarketItem` | Ingested news articles (the corpus) | +| `MarketingAnalysis`, `MarketingAnalysisV2Document`, `MarketingAnalysisV3Document` | Three analysis generations, kept side by side | +| `MarketingStrategy` | Generated promotion strategies | +| `TargetingCampaign`, `TargetingAudienceProfile`, `TargetingAdSet`, `TargetingAd`, `TargetingInsight` | Ad targeting model | +| `PostingTask` | Queued and published social posts | +| `SocialMediaCredentials` | Per-user network credentials, encrypted at rest | +| `FacebookLead` | Leads harvested from page comments | +| `ReportHistory` | Generated report metadata | +| `CampaignPrediction`, `ABTestConfig`, `BudgetConfig`, `PerformanceMetrics` | Campaign optimisation | + +The three analysis document versions coexist because the API kept older revisions +working for the frontend; `MarketingAnalysisV3Service` is the current path. + +## External dependencies + +| Dependency | Used for | Failure behaviour | +| --- | --- | --- | +| MongoDB | All persistence | Fatal — service cannot operate | +| MinIO | Reports and generated images | Feature-level failure | +| OpenAI | Analysis, strategy, chart data | Retried, then surfaced as an error | +| Ollama | Long-form report text | Retried, then surfaced as an error | +| Vertex AI | Image/video generation | Logs error, returns `null`; rest of the service unaffected | +| Serper | Research search | Retried | +| Facebook Graph API | Posting and lead collection | Logged, retried on next schedule | +| SMTP | Emailing reports | Health indicator disabled; failures logged | + +## Cross-cutting configuration + +- **CORS** — `CorsProperties` binds `cors.*`, applied by `WebCorsConfig`. Origins + default to the production frontend domains. +- **Async** — `AsyncConfig` and `TargetingAsyncConfig` provide executors; long AI calls + run off the request thread and parsers return `CompletableFuture`. +- **Error handling** — `GlobalExceptionHandler` maps domain exceptions to consistent + payloads. +- **API docs** — `SwaggerConfig` declares the `bearerAuth` scheme so the Swagger UI can + authorise with a JWT. diff --git a/docs/archive/README.md b/docs/archive/README.md new file mode 100644 index 0000000..32d14dd --- /dev/null +++ b/docs/archive/README.md @@ -0,0 +1,58 @@ +# Archive + +Historical documents kept for context. **Nothing here is maintained, and none of it +should be treated as current.** For how the system works today, start at +[../../README.md](../../README.md). + +These files were previously scattered across the repository root. They are preserved +rather than deleted because they record *why* parts of the system look the way they do — +but they describe past states, and several contradict the current implementation. + +## `specs/` — technical assignments (ТЗ) + +The original Russian-language specifications the service was built from, plus scope +notes. Useful for understanding intent behind a feature; unreliable as a description of +current behaviour. + +Includes `ОТЛИЧИЯ_ТЗ_ОТ_РЕАЛИЗАЦИИ.md`, which itself catalogues where the +implementation diverged from the spec — worth reading before trusting any other file in +this folder. + +Also contains the original `ТЗ. Модуль - маркетинг..docx`. + +## `api-history/` — superseded API documentation + +Earlier revisions of the frontend API docs, kept because the analysis API went through +three generations that still coexist at runtime. + +| File | Superseded by | +| --- | --- | +| `marketing-analysis-api.md` | [`../api/marketing-analysis.md`](../api/marketing-analysis.md) | +| `marketing-analysis-api-frontend.md` | ditto | +| `marketing-api-with-jwt-frontend.md` | ditto + [`../api/authentication.md`](../api/authentication.md) | +| `FRONTEND_API_GUIDE.md` | [`../api/README.md`](../api/README.md) | +| `FRONTEND_API_CHANGES.md` | ditto | +| `FRONTEND_API_CHANGES_V2.md` | ditto | +| `FRONTEND_API_CHANGES_MARKETING_ANALYSIS.md` | ditto | + +## `changelogs/` — completed change notes + +One-off write-ups of finished refactors and bug fixes: the marketing strategy refactor, +chart improvements, a PDF-agent implementation summary, and a `NullPointerException` +fix in `ReportGenerationService`. + +## `setup-notes/` — superseded setup guides + +Earlier OpenAI setup, startup, MongoDB troubleshooting and GitLab-era deployment +instructions. Replaced by [configuration.md](../configuration.md), +[development.md](../development.md), [deployment.md](../deployment.md) and +[troubleshooting.md](../troubleshooting.md). + +`DEPLOYMENT.md` describes the GitLab CI pipeline that was retired in the August 2026 +migration to Gitea Actions. + +## `prompts/` — AI prompt drafts and working notes + +Iterations of the marketing-analysis prompts and scratch notes written while designing +report generation. Previously the root-level files `g.md`, `l.md` and `fix.md`. +Historical drafts — the prompts actually in use live in the service classes. diff --git a/FRONTEND_API_CHANGES.md b/docs/archive/api-history/FRONTEND_API_CHANGES.md similarity index 100% rename from FRONTEND_API_CHANGES.md rename to docs/archive/api-history/FRONTEND_API_CHANGES.md diff --git a/FRONTEND_API_CHANGES_MARKETING_ANALYSIS.md b/docs/archive/api-history/FRONTEND_API_CHANGES_MARKETING_ANALYSIS.md similarity index 100% rename from FRONTEND_API_CHANGES_MARKETING_ANALYSIS.md rename to docs/archive/api-history/FRONTEND_API_CHANGES_MARKETING_ANALYSIS.md diff --git a/FRONTEND_API_CHANGES_V2.md b/docs/archive/api-history/FRONTEND_API_CHANGES_V2.md similarity index 100% rename from FRONTEND_API_CHANGES_V2.md rename to docs/archive/api-history/FRONTEND_API_CHANGES_V2.md diff --git a/FRONTEND_API_GUIDE.md b/docs/archive/api-history/FRONTEND_API_GUIDE.md similarity index 100% rename from FRONTEND_API_GUIDE.md rename to docs/archive/api-history/FRONTEND_API_GUIDE.md diff --git a/marketing-analysis-api-frontend.md b/docs/archive/api-history/marketing-analysis-api-frontend.md similarity index 100% rename from marketing-analysis-api-frontend.md rename to docs/archive/api-history/marketing-analysis-api-frontend.md diff --git a/marketing-analysis-api.md b/docs/archive/api-history/marketing-analysis-api.md similarity index 100% rename from marketing-analysis-api.md rename to docs/archive/api-history/marketing-analysis-api.md diff --git a/marketing-api-with-jwt-frontend.md b/docs/archive/api-history/marketing-api-with-jwt-frontend.md similarity index 100% rename from marketing-api-with-jwt-frontend.md rename to docs/archive/api-history/marketing-api-with-jwt-frontend.md diff --git a/CHART_IMPROVEMENTS.md b/docs/archive/changelogs/CHART_IMPROVEMENTS.md similarity index 100% rename from CHART_IMPROVEMENTS.md rename to docs/archive/changelogs/CHART_IMPROVEMENTS.md diff --git a/IMPLEMENTATION_SUMMARY.md b/docs/archive/changelogs/IMPLEMENTATION_SUMMARY.md similarity index 100% rename from IMPLEMENTATION_SUMMARY.md rename to docs/archive/changelogs/IMPLEMENTATION_SUMMARY.md diff --git a/MARKETING_STRATEGY_REFACTORING.md b/docs/archive/changelogs/MARKETING_STRATEGY_REFACTORING.md similarity index 100% rename from MARKETING_STRATEGY_REFACTORING.md rename to docs/archive/changelogs/MARKETING_STRATEGY_REFACTORING.md diff --git a/NULL_POINTER_FIX.md b/docs/archive/changelogs/NULL_POINTER_FIX.md similarity index 100% rename from NULL_POINTER_FIX.md rename to docs/archive/changelogs/NULL_POINTER_FIX.md diff --git a/fix.md b/docs/archive/prompts/fix.md similarity index 100% rename from fix.md rename to docs/archive/prompts/fix.md diff --git a/g.md b/docs/archive/prompts/g.md similarity index 100% rename from g.md rename to docs/archive/prompts/g.md diff --git a/l.md b/docs/archive/prompts/l.md similarity index 100% rename from l.md rename to docs/archive/prompts/l.md diff --git a/ФИНАЛЬНЫЙ ПРОМТ ДЛЯ ГЕНЕРАЦИИ МАРКЕТИНГОВОГО АНАЛИЗА С ГРАФИКАМИ И ЧИСЛОВЫМИ ПОКАЗАТЕЛЯМИ.md b/docs/archive/prompts/ФИНАЛЬНЫЙ ПРОМТ ДЛЯ ГЕНЕРАЦИИ МАРКЕТИНГОВОГО АНАЛИЗА С ГРАФИКАМИ И ЧИСЛОВЫМИ ПОКАЗАТЕЛЯМИ.md similarity index 100% rename from ФИНАЛЬНЫЙ ПРОМТ ДЛЯ ГЕНЕРАЦИИ МАРКЕТИНГОВОГО АНАЛИЗА С ГРАФИКАМИ И ЧИСЛОВЫМИ ПОКАЗАТЕЛЯМИ.md rename to docs/archive/prompts/ФИНАЛЬНЫЙ ПРОМТ ДЛЯ ГЕНЕРАЦИИ МАРКЕТИНГОВОГО АНАЛИЗА С ГРАФИКАМИ И ЧИСЛОВЫМИ ПОКАЗАТЕЛЯМИ.md diff --git a/DEPLOYMENT.md b/docs/archive/setup-notes/DEPLOYMENT.md similarity index 100% rename from DEPLOYMENT.md rename to docs/archive/setup-notes/DEPLOYMENT.md diff --git a/MONGODB_TROUBLESHOOTING.md b/docs/archive/setup-notes/MONGODB_TROUBLESHOOTING.md similarity index 100% rename from MONGODB_TROUBLESHOOTING.md rename to docs/archive/setup-notes/MONGODB_TROUBLESHOOTING.md diff --git a/OPENAI_INTEGRATION.md b/docs/archive/setup-notes/OPENAI_INTEGRATION.md similarity index 96% rename from OPENAI_INTEGRATION.md rename to docs/archive/setup-notes/OPENAI_INTEGRATION.md index 1c1269f..22bbf7a 100644 --- a/OPENAI_INTEGRATION.md +++ b/docs/archive/setup-notes/OPENAI_INTEGRATION.md @@ -34,7 +34,7 @@ ```properties # OpenAI Configuration -openai.api.key=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 +openai.api.key=${OPENAI_API_KEY} openai.api.url=https://api.openai.com/v1/chat/completions openai.model.name=gpt-4o-mini openai.timeoutMs=90000 diff --git a/OPENAI_SETUP.md b/docs/archive/setup-notes/OPENAI_SETUP.md similarity index 100% rename from OPENAI_SETUP.md rename to docs/archive/setup-notes/OPENAI_SETUP.md diff --git a/QUICK_FIX_401.md b/docs/archive/setup-notes/QUICK_FIX_401.md similarity index 100% rename from QUICK_FIX_401.md rename to docs/archive/setup-notes/QUICK_FIX_401.md diff --git a/STARTUP_GUIDE.md b/docs/archive/setup-notes/STARTUP_GUIDE.md similarity index 100% rename from STARTUP_GUIDE.md rename to docs/archive/setup-notes/STARTUP_GUIDE.md diff --git a/TASK.md b/docs/archive/specs/TASK.md similarity index 100% rename from TASK.md rename to docs/archive/specs/TASK.md diff --git a/TT for improvement.md b/docs/archive/specs/TT for improvement.md similarity index 100% rename from TT for improvement.md rename to docs/archive/specs/TT for improvement.md diff --git a/kapital.md b/docs/archive/specs/kapital.md similarity index 100% rename from kapital.md rename to docs/archive/specs/kapital.md diff --git a/ДОП_ТЗ.md b/docs/archive/specs/ДОП_ТЗ.md similarity index 100% rename from ДОП_ТЗ.md rename to docs/archive/specs/ДОП_ТЗ.md diff --git a/Модуль м.md b/docs/archive/specs/Модуль м.md similarity index 100% rename from Модуль м.md rename to docs/archive/specs/Модуль м.md diff --git a/ОТЛИЧИЯ_ТЗ_ОТ_РЕАЛИЗАЦИИ.md b/docs/archive/specs/ОТЛИЧИЯ_ТЗ_ОТ_РЕАЛИЗАЦИИ.md similarity index 100% rename from ОТЛИЧИЯ_ТЗ_ОТ_РЕАЛИЗАЦИИ.md rename to docs/archive/specs/ОТЛИЧИЯ_ТЗ_ОТ_РЕАЛИЗАЦИИ.md diff --git a/Расширить систему сбора данных, добавив парсеры для трёх новых RSS-источников.md b/docs/archive/specs/Расширить систему сбора данных, добавив парсеры для трёх новых RSS-источников.md similarity index 100% rename from Расширить систему сбора данных, добавив парсеры для трёх новых RSS-источников.md rename to docs/archive/specs/Расширить систему сбора данных, добавив парсеры для трёх новых RSS-источников.md diff --git a/Рефакторинг ParserController для поддержки фронтенда.md b/docs/archive/specs/Рефакторинг ParserController для поддержки фронтенда.md similarity index 100% rename from Рефакторинг ParserController для поддержки фронтенда.md rename to docs/archive/specs/Рефакторинг ParserController для поддержки фронтенда.md diff --git a/ТЗ. Модуль - маркетинг..docx b/docs/archive/specs/ТЗ. Модуль - маркетинг..docx similarity index 100% rename from ТЗ. Модуль - маркетинг..docx rename to docs/archive/specs/ТЗ. Модуль - маркетинг..docx diff --git a/Техническое Задание Внедрение гибридной AI-модели OpenAI для диаграмм Ollama для текста.md b/docs/archive/specs/Техническое Задание Внедрение гибридной AI-модели OpenAI для диаграмм Ollama для текста.md similarity index 100% rename from Техническое Задание Внедрение гибридной AI-модели OpenAI для диаграмм Ollama для текста.md rename to docs/archive/specs/Техническое Задание Внедрение гибридной AI-модели OpenAI для диаграмм Ollama для текста.md diff --git a/Техническое Задание Опциональное добавление диаграмм в PDF-отчёты.md b/docs/archive/specs/Техническое Задание Опциональное добавление диаграмм в PDF-отчёты.md similarity index 100% rename from Техническое Задание Опциональное добавление диаграмм в PDF-отчёты.md rename to docs/archive/specs/Техническое Задание Опциональное добавление диаграмм в PDF-отчёты.md diff --git a/Техническое Задание на доработку AI-агента для генерации отчётов в формате Markdown.md b/docs/archive/specs/Техническое Задание на доработку AI-агента для генерации отчётов в формате Markdown.md similarity index 100% rename from Техническое Задание на доработку AI-агента для генерации отчётов в формате Markdown.md rename to docs/archive/specs/Техническое Задание на доработку AI-агента для генерации отчётов в формате Markdown.md diff --git a/Техническое Задание на реализацию AI-агента для синтеза отчётов с использованием Ollama.md b/docs/archive/specs/Техническое Задание на реализацию AI-агента для синтеза отчётов с использованием Ollama.md similarity index 100% rename from Техническое Задание на реализацию AI-агента для синтеза отчётов с использованием Ollama.md rename to docs/archive/specs/Техническое Задание на реализацию AI-агента для синтеза отчётов с использованием Ollama.md diff --git a/Техническое задание (Версия 4.0) Интеграция генерации отчётов в parser-service.md b/docs/archive/specs/Техническое задание (Версия 4.0) Интеграция генерации отчётов в parser-service.md similarity index 100% rename from Техническое задание (Версия 4.0) Интеграция генерации отчётов в parser-service.md rename to docs/archive/specs/Техническое задание (Версия 4.0) Интеграция генерации отчётов в parser-service.md diff --git a/Техническое задание Интеграция AI-аналитики с помощью Ollama.md b/docs/archive/specs/Техническое задание Интеграция AI-аналитики с помощью Ollama.md similarity index 100% rename from Техническое задание Интеграция AI-аналитики с помощью Ollama.md rename to docs/archive/specs/Техническое задание Интеграция AI-аналитики с помощью Ollama.md diff --git a/Техническое задание Реализация истории и загрузки отчётов.md b/docs/archive/specs/Техническое задание Реализация истории и загрузки отчётов.md similarity index 100% rename from Техническое задание Реализация истории и загрузки отчётов.md rename to docs/archive/specs/Техническое задание Реализация истории и загрузки отчётов.md diff --git a/Техническое задание для AI-агента Рефакторинг ParserController.md b/docs/archive/specs/Техническое задание для AI-агента Рефакторинг ParserController.md similarity index 100% rename from Техническое задание для AI-агента Рефакторинг ParserController.md rename to docs/archive/specs/Техническое задание для AI-агента Рефакторинг ParserController.md diff --git a/Техническое задание на доработку AI-агента для генерации PDF-отчётов.md b/docs/archive/specs/Техническое задание на доработку AI-агента для генерации PDF-отчётов.md similarity index 100% rename from Техническое задание на доработку AI-агента для генерации PDF-отчётов.md rename to docs/archive/specs/Техническое задание на доработку AI-агента для генерации PDF-отчётов.md diff --git a/docs/configuration.md b/docs/configuration.md new file mode 100644 index 0000000..77aeb31 --- /dev/null +++ b/docs/configuration.md @@ -0,0 +1,107 @@ +# Configuration + +All configuration lives in `src/main/resources/application.properties`. Values fall +into two groups: + +- **Non-secret defaults** — model names, timeouts, retry policy, RSS URLs, log levels. + These are literal values in the properties file and are safe to read in a review. +- **Secrets and environment-specific endpoints** — resolved from environment variables + via `${VAR}` placeholders. + +[`.env.example`](../.env.example) is the authoritative list of every variable, marked +`REQUIRED` or `OPTIONAL`. + +## Secret handling + +**No credential is ever committed.** Required secrets are declared *without* a +fallback: + +```properties +openai.api.key=${OPENAI_API_KEY} +``` + +If the variable is absent, Spring throws +`IllegalArgumentException: Could not resolve placeholder 'OPENAI_API_KEY'` and the +application refuses to start. + +This is intentional. The alternative — an empty default — produces a service that +boots happily and then fails every downstream call with an opaque `401`, usually in +production, usually at 3am. A startup failure names the missing variable immediately. + +Optional values keep a default after the colon: + +```properties +minio.bucket-name=${MINIO_BUCKET_NAME:konturai} +``` + +### Adding a new configuration value + +1. If it is a credential, endpoint, or anything that differs per environment, use a + `${VAR}` placeholder — no default for required secrets. +2. Add it to `.env.example` with a `REQUIRED`/`OPTIONAL` marker and a one-line comment. +3. Add it to `.env.production` on the server before merging. + +Never write a real value into `application.properties`, a test's +`@TestPropertySource`, a shell script, or documentation. + +## The Google service-account key + +`NanoBananaImageGenerationService` and `GeminiVideoGenerationService` authenticate to +Vertex AI by loading `keys/google-key.json` from the classpath: + +```java +ClassPathResource resource = new ClassPathResource("keys/google-key.json"); +``` + +The file must exist at `src/main/resources/keys/google-key.json` at **build** time, so +it is baked into the jar. It is gitignored and must be supplied out of band: + +```bash +cp /secure/path/google-key.json src/main/resources/keys/google-key.json +``` + +On the deployment host the file must be present in the checkout before the Docker +image is built, since the `Dockerfile` uses `COPY . .`. + +If the file is missing the application still starts — image and video generation log +an error and return `null`, while every other feature keeps working. + +## Local development + +```bash +cp .env.example .env +$EDITOR .env +set -a && source .env && set +a +./mvnw spring-boot:run +``` + +For a fully local setup you need MongoDB on `localhost:27017`. Point `MINIO_ENDPOINT` +at a local MinIO container, or leave the storage-backed endpoints unused. + +An alternative to `.env` is `src/main/resources/application-local.properties` (also +gitignored), activated with `--spring.profiles.active=local`. + +## Configuration reference by area + +| Area | Prefix | Notes | +| --- | --- | --- | +| MongoDB | `spring.data.mongodb.*` | 30s connect/socket/server-selection timeouts | +| Object storage | `minio.*` | Stores generated reports and images | +| Security | `security.jwt.*`, `encryption.*` | JWT secret must match the issuing auth service | +| OpenAI | `openai.*` | `gpt-4o` for text, `gpt-4o-mini` for cheaper calls; retry with exponential backoff, max 3 concurrent requests | +| Ollama | `ollama.*` | Self-hosted; very long timeouts (5h) for large generations | +| Vertex AI | `google.*` | Imagen 3 for images, Veo 3 for video; 20s rate-limit spacing | +| Serper | `serper.*` | Google search results for research reports | +| Facebook | `facebook.*` | Posting, plus the hot-leads collector and call-centre sync | +| RSS | `rss.*` | Five sources — see [rss-parsers.md](rss-parsers.md) | +| Schedulers | `parser.scheduler.enabled`, `posting.scheduler.enabled` | Parser scheduler is **off** by default | +| CORS | `cors.*` | Bound by `CorsProperties`, applied in `WebCorsConfig` | + +## Rotating a credential + +1. Issue the new credential with the provider. +2. Update `.env.production` on the deployment host. +3. Restart the container (`docker compose up -d` — see [deployment.md](deployment.md)). +4. Revoke the old credential. + +Because secrets are never baked into the image, rotation requires no rebuild. diff --git a/docs/deployment.md b/docs/deployment.md new file mode 100644 index 0000000..0a1549b --- /dev/null +++ b/docs/deployment.md @@ -0,0 +1,99 @@ +# Deployment + +Production runs as a Docker container named `konturai-parser-app`, deployed from +`main` by **Gitea Actions** on a self-hosted runner. + +> The project was migrated from GitLab CI to Gitea in August 2026. The GitLab pipeline +> and its runner scripts have been removed; the historical description is preserved in +> [archive/setup-notes/DEPLOYMENT.md](archive/setup-notes/DEPLOYMENT.md). + +## Pipeline + +[`.gitea/workflows/deploy.yml`](../.gitea/workflows/deploy.yml) triggers on every push +to `main` and delegates to a host script: + +```yaml +on: + push: + branches: [main] +jobs: + deploy: + runs-on: self-hosted + steps: + - name: Deploy + run: /usr/local/bin/konturai-deploy.sh marketing-parser +``` + +`konturai-deploy.sh` lives on the deployment host, not in this repository. It is +shared across KonturAI services and is responsible for syncing the checkout, building +the image and recreating the container. + +Note that this workflow does **not** run the test suite — it deploys directly. Run +`./mvnw clean verify` locally before pushing to `main`. + +## Container + +[`Dockerfile`](../Dockerfile) is a two-stage build: + +1. `maven:3.9.9-eclipse-temurin-21` resolves dependencies and runs + `mvn clean install -DskipTests`. +2. `eclipse-temurin:21-jre-jammy` receives the jar and runs it as the non-root + `appuser`, with `-XX:+HeapDumpOnOutOfMemoryError` writing to `/dumps`. + +Because stage 1 does `COPY . .`, anything required at build time must be present in +the checkout on the host — including +`src/main/resources/keys/google-key.json`, which is not in version control. See +[configuration.md](configuration.md#the-google-service-account-key). + +## Compose + +[`deployment/docker-compose.server.yml`](../deployment/docker-compose.server.yml) +defines the production service: + +- Reads all configuration from `../.env.production` (**not** in version control). +- Joins the pre-existing external Docker network `common_network` under the alias + `parser-service`, so sibling KonturAI services can reach it by name. +- `restart: unless-stopped`. +- Maps `host.docker.internal` to the host gateway. + +No ports are published to the host — traffic arrives through the shared network. + +## Server-side environment + +`.env.production` sits next to the checkout on the deployment host and supplies every +variable listed in [`.env.example`](../.env.example). **The application will not start +if a required variable is missing** — this is intentional, see +[configuration.md](configuration.md#secret-handling). + +Manual operations on the host: + +```bash +cd /deployment + +docker compose ps # status +docker compose logs -f parser-service # follow logs +docker compose up -d --build # rebuild and recreate +docker compose restart parser-service # pick up .env.production changes +``` + +## Verifying a deploy + +```bash +docker compose ps # container is Up +docker compose logs --tail=100 parser-service # no placeholder-resolution errors +curl -fsS http://parser-service:8080/api/parser/health # from inside common_network +``` + +A failure to resolve a `${VAR}` placeholder appears immediately in the logs and names +the missing variable. + +## Rollback + +The deploy script builds from the synced checkout, so rolling back means checking out +the previous commit on the host and rebuilding: + +```bash +cd +git checkout +cd deployment && docker compose up -d --build +``` diff --git a/docs/development.md b/docs/development.md new file mode 100644 index 0000000..99558e7 --- /dev/null +++ b/docs/development.md @@ -0,0 +1,133 @@ +# Development + +## Prerequisites + +- **JDK 21** (Temurin recommended) +- **MongoDB** reachable at `MONGODB_HOST:MONGODB_PORT` +- Maven is not required — use the bundled wrapper (`./mvnw`) + +## Setup + +```bash +cp .env.example .env +$EDITOR .env # fill in REQUIRED values +set -a && source .env && set +a +./mvnw spring-boot:run +``` + +`http://localhost:8080/swagger-ui.html` gives you an interactive client; use the +**Authorize** button to supply a JWT. + +## Common commands + +```bash +./mvnw clean verify # unit tests + coverage gate — run before pushing +./mvnw test # unit tests only +./mvnw clean package # build the jar +./mvnw spring-boot:run # run locally +./mvnw test -Dtest=JwtServiceTest # a single test class +``` + +Helper scripts in [`scripts/`](../scripts): + +| Script | Purpose | +| --- | --- | +| `run-parser.sh` | Preflight checks then start the application | +| `smoke-mongodb.sh` | Verify MongoDB reachability and print a connection string | +| `smoke-openai-api.sh` | Verify `OPENAI_API_KEY` works against the OpenAI API | +| `smoke-research-api.sh` | Exercise the report endpoints against a running instance | + +## Testing + +Two tiers, separated by an environment variable: + +**Unit tests** run by default. They mock collaborators and never touch the network. +This is what CI and `./mvnw verify` execute. + +**Integration tests** boot the full Spring context and need real MongoDB plus valid +credentials. They are annotated: + +```java +@SpringBootTest +@EnabledIfEnvironmentVariable(named = "RUN_INTEGRATION_TESTS", matches = "true") +``` + +so they are skipped unless you opt in: + +```bash +RUN_INTEGRATION_TESTS=true ./mvnw verify +``` + +Surefire additionally excludes the `integration` JUnit tag (see `pom.xml`). + +### Coverage gate + +`verify` fails if line coverage drops below **80%** on any of: + +- `PostingTaskService` +- `JwtService` +- `SocialMediaCredentialsService` + +Report: `target/site/jacoco/index.html`. To extend the gate to another class, add it to +the JaCoCo `qg01-coverage-check` rule in `pom.xml`. + +### Test credentials + +Tests must never contain real credentials. Use placeholders that resolve from the +environment: + +```java +@TestPropertySource(properties = { + "spring.data.mongodb.host=${MONGODB_HOST:localhost}", + "spring.data.mongodb.username=${MONGODB_USERNAME:}" +}) +``` + +## Conventions + +- **Java 21**, Lombok for boilerplate (excluded from the packaged jar). +- Constructor injection, not field injection — see `ParserManagerService`. +- Controllers stay thin: validate, delegate to a service, return a DTO. No business + logic and no repository access from a controller. +- Never return a `model` document directly from a controller — map it to a `dto`. +- Throw domain exceptions from `exception/` and let `GlobalExceptionHandler` render + them; do not build error responses by hand. +- Long-running AI calls belong on an async executor (`AsyncConfig`), not the request + thread. +- Existing code mixes Russian and English comments. New comments should be in English. + +## Adding an RSS source + +`ParserManagerService` discovers parsers through Spring, so no registry needs editing: + +1. Add `rss..url` to `application.properties`. +2. Implement `ParserService` — return a unique `getSourceName()` and implement + `parseAndSaveRssFeed()`. Model it on `KursivParserService`. +3. Annotate the scheduled entry point with `@Scheduled`, matching the cadence of + comparable sources (5 min for high-volume, 30 min otherwise). +4. Add a unit test alongside `KursivParserServiceTest`. +5. Add a log level line in `application.properties`. +6. Document the source in [rss-parsers.md](rss-parsers.md). + +## Adding an endpoint + +1. Define request/response DTOs in `dto/` with Bean Validation annotations. +2. Add the handler to the relevant controller; extract the caller with + `jwtService.extractUserIdFromHeader(authHeader)`. +3. Put the logic in a service; add a repository method if persistence is needed. +4. Add unit tests for the service. +5. Document it under [`docs/api/`](api/README.md) and update that index. + +## Adding configuration + +See [configuration.md](configuration.md#adding-a-new-configuration-value). In short: +environment placeholder, no default for secrets, and update `.env.example`. + +## Before you push + +```bash +./mvnw clean verify +git status # nothing unexpected staged +``` + +Pushing to `main` deploys to production — [deployment.md](deployment.md). diff --git a/EMAIL_INTEGRATION_GUIDE.md b/docs/email-reports.md similarity index 100% rename from EMAIL_INTEGRATION_GUIDE.md rename to docs/email-reports.md diff --git a/FACEBOOK_ADS_CREDENTIALS.md b/docs/facebook-setup.md similarity index 100% rename from FACEBOOK_ADS_CREDENTIALS.md rename to docs/facebook-setup.md diff --git a/PARSER_README.md b/docs/rss-parsers.md similarity index 100% rename from PARSER_README.md rename to docs/rss-parsers.md diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md new file mode 100644 index 0000000..fa72eae --- /dev/null +++ b/docs/troubleshooting.md @@ -0,0 +1,130 @@ +# Troubleshooting + +## Application will not start + +### `Could not resolve placeholder 'X'` + +``` +java.lang.IllegalArgumentException: Could not resolve placeholder 'OPENAI_API_KEY' in value "${OPENAI_API_KEY}" +``` + +A required environment variable is missing. This is the intended behaviour — the +service refuses to start rather than run with an unusable credential. + +**Fix:** set the named variable. Locally that means `.env`; in production, +`.env.production` on the deployment host followed by +`docker compose restart parser-service`. [`.env.example`](../.env.example) lists every +variable and marks which are required. + +Check what the container actually received: + +```bash +docker compose exec parser-service env | grep -E 'MONGODB|OPENAI|MINIO|JWT' +``` + +### MongoDB connection refused / timeout + +The service cannot operate without MongoDB, so this is fatal at startup. + +```bash +./scripts/smoke-mongodb.sh # reachability + configured connection string +``` + +Work through, in order: + +1. **Reachability** — `nc -z $MONGODB_HOST $MONGODB_PORT`. If this fails the problem is + network or firewall, not credentials. +2. **Credentials** — `MONGODB_USERNAME` / `MONGODB_PASSWORD` are set and exported. +3. **Auth database** — `MONGODB_AUTH_DATABASE` must match how the user was created, + normally `admin`. A user created against `admin` but authenticated against + `parser_db` fails with an authentication error, not a connection error. +4. **Grants** — the user needs read/write on `MONGODB_DATABASE`. + +Timeouts are 30s for connect, socket and server selection. A slow first request after +an idle period is usually server selection re-establishing the topology. + +Historical detail: [archive/setup-notes/MONGODB_TROUBLESHOOTING.md](archive/setup-notes/MONGODB_TROUBLESHOOTING.md). + +## Runtime failures + +### `401 Unauthorized` from OpenAI + +``` +OpenAI request failed: 401 Unauthorized from POST https://api.openai.com/v1/chat/completions +``` + +The key in `OPENAI_API_KEY` is invalid, revoked, or belongs to an organisation without +access to the configured model. + +```bash +./scripts/smoke-openai-api.sh # validates the key directly against the API +``` + +Then check the service's own view: `GET /api/openai/test`. + +If the key is fine but calls still fail, confirm `openai.model.name` (`gpt-4o-mini`) and +`openai.model.name.text` (`gpt-4o`) are both available to your account. + +### `401` from this service's own endpoints + +That is JWT validation, not OpenAI. `security.jwt.secret-base64` must be **byte-identical +to the secret used by the auth service that issued the token**. A mismatch produces a +signature failure on every request. Also confirm the header is `Authorization: Bearer ` +and the token has not expired. + +### Rate limiting / slow AI responses + +OpenAI calls retry with exponential backoff — up to 3 attempts normally, and up to 10 +with a 5s–300s backoff specifically for rate-limit responses. Concurrency is capped at +3 requests. Sustained `429`s mean the cap is not low enough for your quota; lower +`openai.rateLimit.maxConcurrentRequests`. + +Ollama timeouts are deliberately long (up to 5 hours) because it generates long-form +report text on self-hosted hardware. A request that appears hung may simply be +generating. + +### Image or video generation returns null + +``` +[Imagen3] Credentials file not found: keys/google-key.json +``` + +The Google service-account key is missing from the build. It must exist at +`src/main/resources/keys/google-key.json` **when the jar is built**, because it is +loaded from the classpath. See +[configuration.md](configuration.md#the-google-service-account-key). + +This degrades gracefully — only image and video generation are affected. + +### Reports fail with a date `NullPointerException` + +``` +Cannot invoke "java.time.LocalDateTime.toLocalDate()" because "end" is null +``` + +`ReportGenerationService` defaults a missing range to the last 30 days. If you see this +again, a new code path is formatting `startDate`/`endDate` without a null check. +Background: [archive/changelogs/NULL_POINTER_FIX.md](archive/changelogs/NULL_POINTER_FIX.md). + +### CORS errors in the browser + +Origins come from `CORS_ALLOWED_ORIGINS` and default to `https://konturai.kz` and +`https://www.konturai.kz`. A local frontend needs its origin added explicitly — +`cors.allow-credentials=true` means a wildcard origin is not permitted. + +## Diagnostics + +```bash +curl -fsS localhost:8080/api/parser/health # liveness +docker compose logs -f parser-service # follow logs +docker compose logs --tail=200 parser-service | grep -i error +``` + +Raise log detail for a specific area by overriding its level, e.g. +`logging.level.kz.konturai.parser.service.MarketingAnalysisService=DEBUG`. + +`MarketingController` and `MarketingAnalysisService` already log at `DEBUG`. Mongo +driver logs are at `WARN` to keep the noise down — raise +`logging.level.org.springframework.data.mongodb` to `DEBUG` when investigating queries. + +Heap dumps from OOM kills land in `/dumps/heap.hprof` inside the container. diff --git a/google-key.json b/google-key.json deleted file mode 100644 index f39b7a8..0000000 --- a/google-key.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "type": "service_account", - "project_id": "gen-lang-client-0719272404", - "private_key_id": "feb98d8fa2bd9c7139b3c03fac63900877b652f0", - "private_key": "-----BEGIN PRIVATE KEY-----\nMIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDDB5ZQNAc4C6Eu\nFA1SD1GE4IxIHuKWPE0aUPe8X1YuX1l3S94XiXzwwXHgaFi8BCJJRVBRPtfvCAM+\nQvv03kfs9KEc6UvkUlaPIgF3cjddshMJuj/7W+YpEKjuuWc649l5NO4uPcug+g1S\nZJhd7UGXbx1Uglw3LSsODJ2b4wNIQUuulGym4VCLQKhu41eGElyIVbecRxrDC2N4\nR3ROgFYilAL7QYzVojTEYea3zIBAXncXvgJcFyhSWDuJq5yJbUkbPNbVNhQ7uw7G\nCFufQWMhMBeBrO62kyufQg+xI+xqMvaDOSs+JReni57ZtUqxnpjD7Gh+BxHnduJJ\n8y/osHB5AgMBAAECggEADvuWe99fXZohHgva0R7Npa5lgIXk5ONJjhfBzHYrhgD7\nu8s3iuncUBegYrvJc1pC8wuQ5cj06E9ehmo5doCcGHNbrD+s/aOotDLJ144N/FP5\nm/Hzx+Dxv95giAR0zoSiGKptEN7c9ac4HkgNn4uiUhqub2dbY77D07663fa08hg1\ntGAtqt7lbw8MZbrCrMDdqkM552xmjxn0MnS8Itkiby1MdFi4H+0xQUO7xavsOLZ6\nQXHexNgUZsjD2ZfxFoo/U/VUaWUHn1/acQh0oJyMJD9/ZerR5Cq7XNKJgUrJUn7B\ndGNaXzymOyIWHbaCkF08+KBX2th65AjSEoJgTZiYnQKBgQDqJmzik/ZomqxySUoh\nRt0WNxO6Ed775qgluQOW9TumYDRLUP4cpRqt1vA/voGpyc7C+bnQRnQnJM0gceH0\nW6AmqdmJVLX+1DJnfkVNichI30Iz5rTYzMqneirEi2kuH6Zdh7VI6jqt3fM6QB0b\nHj2ZOXT70pS3eIGMSLjQgiBZ7QKBgQDVOp6LLWSKguqaJeVCBGbkdOGgqWUb2R6/\nk2nRJCuxnK9JJICotfxTQb+MIbFZlvQGiyb6AKUQadOHrt0VdkDeP0VCTeXw88hf\npKn3fepzxUwP8qsdEg9rmI5Y0jL23oJHPT6EHf3jnUQtpR4Wy1u+c46MRiSpCqPS\nyoHIl0qvPQKBgH2vBn9QgNGBRNNLt7jI+t9zzOjxsslv9A3bk6uyEsSpmyhaXywt\nC3cIiokMzzi+FHff5/d9+dcRD/I8btblX7+hKB1pFQ+mAzA+PSDztkg3XqfRTH2a\n36SqFM7PLjQN1RUbRRnQcJLnMimwRG9L+jCHAN4zGJSq4I7Wci2py4e5AoGAbDNa\n0HUwV7knIyGnvGBPdg55j/VlgUQj/kLnp2Ebav1/VTZYs0PlzrnGYW2XeUbIfamP\nFb3OBQ4ucOOi/IkNUbn5gzPUQvjx7Na6CQS0PBsaBd22RwIrIQZA9YF0qyEuKshB\nOPmfJClht2faZOa8n2A0LapKYB0uFID+arObCmECgYEAx2PS/d178Nfi4oG6nYIR\nAHpjC3JPlt62ySSxqfag+DPdTeOyOK8YglsyLWHGU6vI2OhYCEhuU9LMawj4tVui\nS+4D3A1CS69iOMdJVBkG1jlTP7UMZHlh43jMRW+Tcu/h7fHJaSS9YWPwyX0KUAqo\n7dB0niDoH6m8Cvb9YKXCEzs=\n-----END PRIVATE KEY-----\n", - "client_email": "vertex-express@gen-lang-client-0719272404.iam.gserviceaccount.com", - "client_id": "114082700099175512857", - "auth_uri": "https://accounts.google.com/o/oauth2/auth", - "token_uri": "https://oauth2.googleapis.com/token", - "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", - "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/vertex-express%40gen-lang-client-0719272404.iam.gserviceaccount.com", - "universe_domain": "googleapis.com" -} diff --git a/scripts/bootstrap_gitlab_deploy.sh b/scripts/bootstrap_gitlab_deploy.sh deleted file mode 100755 index de63154..0000000 --- a/scripts/bootstrap_gitlab_deploy.sh +++ /dev/null @@ -1,59 +0,0 @@ -#!/usr/bin/env bash - -set -Eeuo pipefail - -SOURCE_CONTAINER="${SOURCE_CONTAINER:-konturai-parser-app}" -DEPLOY_DIR="${DEPLOY_DIR:-/home/gitlab-runner/deploy/marketing-parser}" - -ENV_KEYS=( - SPRING_DATASOURCE_URL - POSTGRES_USER - POSTGRES_PASSWORD - SPRING_JPA_HIBERNATE_DDL_AUTO - CORS_ALLOWED_ORIGIN - FACEBOOK_LEADS_PAGE_ID - FACEBOOK_LEADS_ACCESS_TOKEN - FACEBOOK_LEADS_CRON - FACEBOOK_LEADS_GRAPH_API_VERSION - FACEBOOK_LEADS_CALL_CENTER_BASE_URL -) - -if [[ "${EUID}" -ne 0 ]]; then - echo "Run this script as root so it can write the deploy directory for gitlab-runner." >&2 - exit 1 -fi - -if ! command -v docker >/dev/null 2>&1; then - echo "Docker is required." >&2 - exit 1 -fi - -if ! id gitlab-runner >/dev/null 2>&1; then - echo "gitlab-runner user does not exist." >&2 - exit 1 -fi - -if ! docker inspect "$SOURCE_CONTAINER" >/dev/null 2>&1; then - echo "Source container not found: $SOURCE_CONTAINER" >&2 - exit 1 -fi - -install -d -o gitlab-runner -g gitlab-runner "$DEPLOY_DIR" - -TMP_ENV="$(mktemp)" -trap 'rm -f "$TMP_ENV"' EXIT - -PATTERN="$(printf '%s|' "${ENV_KEYS[@]}")" -PATTERN="^(${PATTERN%|})=" - -docker inspect "$SOURCE_CONTAINER" --format '{{range .Config.Env}}{{println .}}{{end}}' \ - | grep -E "$PATTERN" > "$TMP_ENV" - -if [[ ! -s "$TMP_ENV" ]]; then - echo "Failed to extract deployment environment from $SOURCE_CONTAINER" >&2 - exit 1 -fi - -install -m 600 -o gitlab-runner -g gitlab-runner "$TMP_ENV" "$DEPLOY_DIR/.env.production" - -echo "Bootstrap complete: wrote $DEPLOY_DIR/.env.production from $SOURCE_CONTAINER" diff --git a/scripts/deploy_gitlab.sh b/scripts/deploy_gitlab.sh deleted file mode 100755 index 7fa0481..0000000 --- a/scripts/deploy_gitlab.sh +++ /dev/null @@ -1,118 +0,0 @@ -#!/usr/bin/env bash - -set -Eeuo pipefail - -DEPLOY_DIR="${DEPLOY_DIR:-/home/gitlab-runner/deploy/marketing-parser}" -COMPOSE_FILE="${COMPOSE_FILE:-$DEPLOY_DIR/deployment/docker-compose.server.yml}" -PARSER_IMAGE_NAME="${PARSER_IMAGE_NAME:-marketing-parser-app}" -PARSER_IMAGE_TAG="${PARSER_IMAGE_TAG:-${CI_COMMIT_SHORT_SHA:-latest}}" -PARSER_IMAGE="${PARSER_IMAGE:-${PARSER_IMAGE_NAME}:${PARSER_IMAGE_TAG}}" -PARSER_CONTAINER_NAME="${PARSER_CONTAINER_NAME:-konturai-parser-app}" -COMPOSE_PROJECT_NAME="${COMPOSE_PROJECT_NAME:-marketing-parser}" -WAIT_TIMEOUT_SECONDS="${WAIT_TIMEOUT_SECONDS:-120}" - -require_command() { - if ! command -v "$1" >/dev/null 2>&1; then - echo "Missing required command: $1" >&2 - exit 1 - fi -} - -wait_for_container() { - local deadline status - deadline=$((SECONDS + WAIT_TIMEOUT_SECONDS)) - - while (( SECONDS < deadline )); do - status="$(docker inspect "$PARSER_CONTAINER_NAME" --format '{{.State.Status}}' 2>/dev/null || true)" - if [[ "$status" == "running" ]]; then - echo "Container is running: $PARSER_CONTAINER_NAME" - return 0 - fi - if [[ "$status" == "exited" || "$status" == "dead" ]]; then - echo "Container $PARSER_CONTAINER_NAME is in state: $status" >&2 - docker logs --tail 100 "$PARSER_CONTAINER_NAME" || true - exit 1 - fi - sleep 3 - done - - echo "Timed out waiting for $PARSER_CONTAINER_NAME to start" >&2 - docker logs --tail 100 "$PARSER_CONTAINER_NAME" || true - exit 1 -} - -require_command bash -require_command docker -require_command rsync - -if docker compose version >/dev/null 2>&1; then - COMPOSE_CMD=(docker compose) -elif command -v docker-compose >/dev/null 2>&1; then - COMPOSE_CMD=(docker-compose) -else - echo "Missing docker compose or docker-compose" >&2 - exit 1 -fi - -if [[ -z "${CI_PROJECT_DIR:-}" || ! -d "${CI_PROJECT_DIR:-}" ]]; then - echo "CI_PROJECT_DIR is not set or does not exist" >&2 - exit 1 -fi - -if ! docker info >/dev/null 2>&1; then - echo "Docker daemon is not reachable for the runner user" >&2 - exit 1 -fi - -install -d "$DEPLOY_DIR" - -if [[ "$CI_PROJECT_DIR" != "$DEPLOY_DIR" ]]; then - rsync -a --delete \ - --exclude '.git/' \ - --exclude '.m2/' \ - --exclude 'target/' \ - --exclude '.codex' \ - --exclude '.claude/' \ - --exclude '.cursor/' \ - --exclude '.idea/' \ - --exclude '.vscode/' \ - --exclude '.DS_Store' \ - --exclude '.env' \ - --exclude '.env.*' \ - "$CI_PROJECT_DIR/" "$DEPLOY_DIR/" -fi - -if [[ ! -f "$DEPLOY_DIR/.env.production" ]]; then - if [[ -n "${DEPLOY_ENV_FILE:-}" && -f "${DEPLOY_ENV_FILE}" ]]; then - install -m 600 "$DEPLOY_ENV_FILE" "$DEPLOY_DIR/.env.production" - else - echo "Missing $DEPLOY_DIR/.env.production. Run scripts/bootstrap_gitlab_deploy.sh once or set DEPLOY_ENV_FILE." >&2 - exit 1 - fi -fi - -if docker ps -a --format '{{.Names}}' | grep -Fxq "$PARSER_CONTAINER_NAME"; then - EXISTING_PROJECT="$(docker inspect "$PARSER_CONTAINER_NAME" --format '{{ index .Config.Labels "com.docker.compose.project" }}' 2>/dev/null || true)" - if [[ -n "$EXISTING_PROJECT" && "$EXISTING_PROJECT" != "$COMPOSE_PROJECT_NAME" ]]; then - echo "Removing existing container $PARSER_CONTAINER_NAME from compose project $EXISTING_PROJECT" - docker rm -f "$PARSER_CONTAINER_NAME" - fi -fi - -cd "$DEPLOY_DIR" - -echo "Deploy directory: $DEPLOY_DIR" -echo "Building image: $PARSER_IMAGE" - -docker build -t "$PARSER_IMAGE" -t "${PARSER_IMAGE_NAME}:latest" "$DEPLOY_DIR" - -export PARSER_IMAGE -export PARSER_CONTAINER_NAME -export COMPOSE_PROJECT_NAME - -"${COMPOSE_CMD[@]}" -f "$COMPOSE_FILE" config -q -"${COMPOSE_CMD[@]}" -f "$COMPOSE_FILE" up -d --remove-orphans --force-recreate - -wait_for_container - -docker ps --filter "name=^${PARSER_CONTAINER_NAME}$" --format 'table {{.Names}}\t{{.Image}}\t{{.Status}}' diff --git a/scripts/install_gitlab_runner.sh b/scripts/install_gitlab_runner.sh deleted file mode 100755 index d6e4c47..0000000 --- a/scripts/install_gitlab_runner.sh +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/env bash - -set -Eeuo pipefail - -GITLAB_URL="${GITLAB_URL:-https://gitlab.konturai.kz/}" -RUNNER_NAME="${RUNNER_NAME:-marketing-parser-prod-runner}" -RUNNER_TAGS="${RUNNER_TAGS:-marketing-parser-prod}" -RUNNER_EXECUTOR="${RUNNER_EXECUTOR:-shell}" -RUNNER_TOKEN="${RUNNER_TOKEN:-}" -DEPLOY_DIR="${DEPLOY_DIR:-/home/gitlab-runner/deploy/marketing-parser}" -SKIP_REGISTER="${SKIP_REGISTER:-0}" - -if [[ "${EUID}" -ne 0 ]]; then - echo "Run this script as root." >&2 - exit 1 -fi - -if [[ "$SKIP_REGISTER" != "1" && -z "$RUNNER_TOKEN" ]]; then - echo "Set RUNNER_TOKEN from GitLab project/group runner settings before running this script." >&2 - exit 1 -fi - -apt-get update -apt-get install -y ca-certificates curl rsync docker.io docker-compose-plugin - -if ! command -v gitlab-runner >/dev/null 2>&1; then - curl -L "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh" | bash - apt-get install -y gitlab-runner -fi - -if ! getent group docker >/dev/null 2>&1; then - echo "Docker group does not exist. Install Docker before registering the runner." >&2 - exit 1 -fi - -usermod -aG docker gitlab-runner -install -d -o gitlab-runner -g gitlab-runner "$(dirname "$DEPLOY_DIR")" -install -d -o gitlab-runner -g gitlab-runner "$DEPLOY_DIR" - -if [[ "$SKIP_REGISTER" == "1" ]]; then - echo "gitlab-runner installed. Registration skipped because SKIP_REGISTER=1." -elif gitlab-runner list 2>/dev/null | grep -Fq "$RUNNER_NAME"; then - echo "Runner $RUNNER_NAME is already registered." -else - register_args=( - --non-interactive - --url "$GITLAB_URL" - --executor "$RUNNER_EXECUTOR" - --description "$RUNNER_NAME" - --tag-list "$RUNNER_TAGS" - --run-untagged="false" - --locked="true" - ) - if [[ "$RUNNER_TOKEN" == glrt-* ]]; then - register_args+=(--token "$RUNNER_TOKEN") - else - register_args+=(--registration-token "$RUNNER_TOKEN") - fi - gitlab-runner register "${register_args[@]}" -fi - -systemctl enable --now gitlab-runner -systemctl restart gitlab-runner -if [[ "$SKIP_REGISTER" != "1" ]]; then - gitlab-runner verify -fi - -if [[ "$SKIP_REGISTER" == "1" ]]; then - echo "gitlab-runner service is installed and running." -else - echo "Runner $RUNNER_NAME is ready." -fi diff --git a/run_parser.sh b/scripts/run-parser.sh old mode 100644 new mode 100755 similarity index 100% rename from run_parser.sh rename to scripts/run-parser.sh diff --git a/scripts/smoke-mongodb.sh b/scripts/smoke-mongodb.sh new file mode 100755 index 0000000..3e7ad72 --- /dev/null +++ b/scripts/smoke-mongodb.sh @@ -0,0 +1,41 @@ +#!/bin/bash +# Checks that the configured MongoDB server is reachable and prints a ready-to-use +# connection string. Reads the same environment variables the application uses. +set -euo pipefail + +HOST="${MONGODB_HOST:-localhost}" +PORT="${MONGODB_PORT:-27017}" +DATABASE="${MONGODB_DATABASE:-parser_db}" +USERNAME="${MONGODB_USERNAME:-}" +AUTH_DB="${MONGODB_AUTH_DATABASE:-admin}" + +echo "🔍 Checking MongoDB connectivity..." +echo "======================================" +echo "📡 Probing ${HOST}:${PORT}..." + +if nc -z "$HOST" "$PORT"; then + echo "✅ MongoDB server is reachable" +else + echo "❌ MongoDB server is unreachable" + echo " Check that the server is running and that MONGODB_HOST/MONGODB_PORT are correct." + exit 1 +fi + +echo "" +echo "🔐 Configured connection:" +echo " Host: ${HOST}:${PORT}" +echo " Database: ${DATABASE}" +echo " Username: ${USERNAME:-}" +echo " Auth DB: ${AUTH_DB}" + +echo "" +echo "📝 Verify credentials with:" +echo " mongosh \"mongodb://${USERNAME:-}@${HOST}:${PORT}/${DATABASE}?authSource=${AUTH_DB}\"" +echo " (mongosh will prompt for the password; never pass it on the command line)" + +echo "" +echo "⚠️ If authentication fails, check:" +echo " 1. MONGODB_USERNAME / MONGODB_PASSWORD are exported" +echo " 2. Firewall rules on the MongoDB host" +echo " 3. The user's grants on '${DATABASE}'" +echo " 4. That authSource matches how the user was created" diff --git a/test-openai-api.sh b/scripts/smoke-openai-api.sh old mode 100644 new mode 100755 similarity index 100% rename from test-openai-api.sh rename to scripts/smoke-openai-api.sh diff --git a/test_research_api.sh b/scripts/smoke-research-api.sh old mode 100644 new mode 100755 similarity index 100% rename from test_research_api.sh rename to scripts/smoke-research-api.sh diff --git a/src/.DS_Store b/src/.DS_Store deleted file mode 100644 index f1befbd..0000000 Binary files a/src/.DS_Store and /dev/null differ diff --git a/src/main/java/kz/konturai/parser/config/SwaggerConfig.java b/src/main/java/kz/konturai/parser/config/SwaggerConfig.java index 9470566..c4c431a 100644 --- a/src/main/java/kz/konturai/parser/config/SwaggerConfig.java +++ b/src/main/java/kz/konturai/parser/config/SwaggerConfig.java @@ -21,8 +21,11 @@ public class SwaggerConfig { return new OpenAPI() .servers(List.of(new Server().url("http://localhost:8080"))) .info(new Info() - .title("Название вашего API") - .description("Здесь описание того, что делает ваше приложение") + .title("Marketing Parser API") + .description(""" + RSS ingestion, AI-driven marketing analysis and strategy generation, \ + report rendering (PDF/DOCX/Markdown), social media publishing and \ + Facebook lead collection for the KonturAI platform.""") .version("1.0.0")) // 1. Добавляем возможность ввода токена (кнопка Authorize) .addSecurityItem(new SecurityRequirement().addList(securitySchemeName)) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 82e77f2..d44b7f4 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,65 +1,49 @@ -ollama.host=http://185.35.223.45:11434 -ollama.model=gemma3:1b -ollama.timeoutMs=18000000 -ollama.connectTimeoutMs=10000000 -ollama.responseTimeoutMs=18000000 - -minio.endpoint=http://92.38.48.166:9000 -minio.access-key=z9HhZTjzhVWqw3D20u7q -minio.secret-key=lhhHtJow1b10z6EZRMTQIU1tsKkoaxCVpSypCrcb -minio.bucket-name=konturai - -java.awt.headless=true spring.application.name=parser +java.awt.headless=true -cors.allowed-origins=${CORS_ALLOWED_ORIGINS:${CORS_ALLOWED_ORIGIN:https://konturai.kz,https://www.konturai.kz}} -cors.allowed-methods=${CORS_ALLOWED_METHODS:GET,POST,PUT,PATCH,DELETE,OPTIONS} -cors.allowed-headers=${CORS_ALLOWED_HEADERS:*} -cors.exposed-headers=${CORS_EXPOSED_HEADERS:Location,Content-Disposition} -cors.allow-credentials=${CORS_ALLOW_CREDENTIALS:true} -cors.max-age-seconds=${CORS_MAX_AGE_SECONDS:3600} - -spring.data.mongodb.host=92.38.48.166 -spring.data.mongodb.port=27017 -spring.data.mongodb.database=parser_db -spring.data.mongodb.username=konturai -spring.data.mongodb.password=konturai2024 -spring.data.mongodb.authentication-database=admin - -rss.feed.url=https://kursiv.media/feed/ -rss.kapital.url=https://kapital.kz/rss/ -rss.lsm.url=https://lsm.kz/rss -rss.rbc.url=https://static.feed.rbc.ru/rbc/logical/footer/news.rss -rss.vedomosti.url=https://www.vedomosti.ru/rss/rubric/technology/internet - -parser.scheduler.enabled=false -spring.task.scheduling.pool.size=5 -spring.task.scheduling.thread-name-prefix=scheduled-task- +# ============================================================================= +# SECRETS +# ----------------------------------------------------------------------------- +# Every credential below is resolved from an environment variable with NO +# default, so the application fails fast at startup if one is missing instead +# of silently authenticating as nobody. See .env.example for the full list and +# docs/configuration.md for how they are supplied per environment. +# ============================================================================= +# --- MongoDB --- +spring.data.mongodb.host=${MONGODB_HOST:localhost} +spring.data.mongodb.port=${MONGODB_PORT:27017} +spring.data.mongodb.database=${MONGODB_DATABASE:parser_db} +spring.data.mongodb.username=${MONGODB_USERNAME} +spring.data.mongodb.password=${MONGODB_PASSWORD} +spring.data.mongodb.authentication-database=${MONGODB_AUTH_DATABASE:admin} spring.data.mongodb.connection-timeout=30000 spring.data.mongodb.socket-timeout=30000 spring.data.mongodb.server-selection-timeout=30000 -logging.level.kz.konturai.parser.service.KursivParserService=INFO -logging.level.kz.konturai.parser.service.KapitalParserService=INFO -logging.level.kz.konturai.parser.service.LsmParserService=INFO -logging.level.kz.konturai.parser.service.RbcParserService=INFO -logging.level.kz.konturai.parser.service.VedomostiParserService=INFO -logging.level.org.springframework.scheduling=DEBUG -logging.level.org.springframework.data.mongodb=INFO -logging.level.com.mongodb=WARN -logging.level.kz.konturai.parser.service.OllamaAnalyticsService=INFO -logging.level.kz.konturai.parser.controller.MarketingController=DEBUG -logging.level.kz.konturai.parser.service.MarketingAnalysisService=DEBUG -logging.level.kz.konturai.parser.service.GeminiVideoGenerationService=INFO -logging.level.kz.konturai.parser.service.NanoBananaImageGenerationService=INFO -logging.level.kz.konturai.parser.service.FacebookLeadCollectorService=INFO -logging.level.kz.konturai.parser.service.FacebookLeadGraphApiClient=INFO -logging.level.kz.konturai.parser.service.FacebookLeadCallCenterSyncService=INFO -logging.level.kz.konturai.parser.config.MongoConfig=WARN -logging.level.org.springframework.data.mongodb.core.convert=WARN +# --- MinIO object storage --- +minio.endpoint=${MINIO_ENDPOINT} +minio.access-key=${MINIO_ACCESS_KEY} +minio.secret-key=${MINIO_SECRET_KEY} +minio.bucket-name=${MINIO_BUCKET_NAME:konturai} -openai.api.key=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 +# --- Application security --- +security.jwt.secret-base64=${JWT_SECRET_BASE64} +encryption.secret-key=${ENCRYPTION_SECRET_KEY} + +# ============================================================================= +# AI PROVIDERS +# ============================================================================= + +# --- Ollama (self-hosted text model) --- +ollama.host=${OLLAMA_HOST:http://localhost:11434} +ollama.model=${OLLAMA_MODEL:gemma3:1b} +ollama.timeoutMs=18000000 +ollama.connectTimeoutMs=10000000 +ollama.responseTimeoutMs=18000000 + +# --- OpenAI --- +openai.api.key=${OPENAI_API_KEY} openai.api.url=https://api.openai.com/v1/chat/completions openai.model.name=gpt-4o-mini openai.model.name.text=gpt-4o @@ -74,24 +58,20 @@ openai.retry.rateLimitInitialDelayMs=5000 openai.retry.rateLimitMaxDelayMs=300000 openai.rateLimit.maxConcurrentRequests=3 -serper.api.key=5ae7ad0baf7dfacb8bcd5fc8dca01f61b3207e75 -serper.api.url=https://google.serper.dev -serper.timeoutMs=30000 -serper.retry.maxAttempts=3 -serper.retry.initialDelayMs=1000 -serper.retry.maxDelayMs=10000 -serper.retry.multiplier=2.0 - +# --- Image generation --- +image.generation.provider=${IMAGE_GENERATION_PROVIDER:nano-banana} +image.generation.delayBetweenRequestsMs=3000 openai.image.model=dall-e-3 openai.image.size=1024x1024 openai.image.quality=hd openai.image.style=natural -image.generation.provider=nano-banana -image.generation.delayBetweenRequestsMs=3000 - -google.cloud.project-id=gen-lang-client-0719272404 -google.cloud.location=us-central1 +# --- Google Vertex AI (Imagen / Veo) --- +# Authenticates with the service-account JSON on the classpath at +# keys/google-key.json. That file is NOT in version control - see +# docs/configuration.md. +google.cloud.project-id=${GOOGLE_CLOUD_PROJECT_ID} +google.cloud.location=${GOOGLE_CLOUD_LOCATION:us-central1} google.gemini.image.model=imagen-3.0-generate-001 google.gemini.video.model=veo-3.0-generate-001 google.gemini.timeoutMs=120000 @@ -101,67 +81,54 @@ google.gemini.retry.maxDelayMs=120000 google.gemini.retry.multiplier=2.0 google.gemini.rateLimit.delayMs=20000 -spring.mail.host=smtp.gmail.com -spring.mail.port=587 -spring.mail.username=your-email@gmail.com -spring.mail.password=your-app-password -spring.mail.properties.mail.smtp.auth=true -spring.mail.properties.mail.smtp.starttls.enable=true -spring.mail.properties.mail.smtp.starttls.required=true -management.health.mail.enabled=false +# --- Serper (Google search API) --- +serper.api.key=${SERPER_API_KEY} +serper.api.url=https://google.serper.dev +serper.timeoutMs=30000 +serper.retry.maxAttempts=3 +serper.retry.initialDelayMs=1000 +serper.retry.maxDelayMs=10000 +serper.retry.multiplier=2.0 -deep-research.api.url=http://185.35.223.45:3051 +# --- Deep research service --- +deep-research.api.url=${DEEP_RESEARCH_API_URL} deep-research.api.timeout=1800000 -security.jwt.secret-base64=ZmFrZV9zZWNyZXRfMTIzNDU2Nzg5MGFiY2RlZmFrZV9zZWNyZXRfMTIzNDU2Nzg5MGFiY2Rl +# --- Targeting AI models --- +targeting.ai.audience-model=gpt-4o +targeting.ai.max-audience-tokens=2500 +targeting.ai.budget-model=gpt-4o-mini +targeting.ai.max-budget-tokens=1000 +targeting.ai.creatives-model=gpt-4o +targeting.ai.max-creatives-tokens=2000 -encryption.secret-key=ZmFrZV9zZWNyZXRfMTIzNDU2Nzg5MGFiY2RlZmFrZV9zZWNyZXRfMTIzNDU2Nzg5MGFiY2Rl +# ============================================================================= +# SOCIAL NETWORKS +# ============================================================================= -posting.scheduler.enabled=true +# --- Facebook posting --- +facebook.app.id=${FACEBOOK_APP_ID} +facebook.app.secret=${FACEBOOK_APP_SECRET} +facebook.page.id=${FACEBOOK_PAGE_ID} +facebook.page.token=${FACEBOOK_PAGE_TOKEN} - -telegram.api.timeout=30000 - -# facebook.api.timeout=30000 -# facebook.verify.token=konturAI -# facebook.page.access.token=EAAaocqgT3JoBQtNeU4uqBrywSRwGmFZBQDZBnd1ynWjX070wAa09QBKebjrd9vyjAZCiJuZAZCU8266VlJYTAfwue20QNvENgM3wpjWNmCrTO0gTMAkmPZBKZBXKvZA8eCA4aZCUhmU2jsBRluYqKUyqpYV3ZCK928OVqLqCNZCUhqU6nUU0xP0DOzk90x58tmxpS2y1i7hjQZDZD -# -# # Targeting Module Configuration -# targeting.kzt-usd-rate=460.0 -# -# targeting.facebook.app-id=${FACEBOOK_APP_ID:dummy-app-id} -# targeting.facebook.app-secret=${FACEBOOK_APP_SECRET:dummy-app-secret} -# targeting.facebook.oauth-redirect-uri=${FACEBOOK_REDIRECT_URI:http://localhost:8080/api/v1/targeting/facebook/callback} -# targeting.facebook.graph-api-version=v19.0 -# targeting.facebook.rate-limit-retry-ms=5000 -# targeting.facebook.max-retries=3 -# -# targeting.tiktok.app-id=${TIKTOK_APP_ID:dummy-app-id} -# targeting.tiktok.app-secret=${TIKTOK_APP_SECRET:dummy-app-secret} -# targeting.tiktok.oauth-redirect-uri=${TIKTOK_REDIRECT_URI:http://localhost:8080/api/v1/targeting/tiktok/callback} -# targeting.tiktok.base-url=https://business-api.tiktok.com/open_api/v1.3 - -# Facebook Posting Configuration -facebook.app.id=1874060259875994 -facebook.app.secret=1e096c34d375641b7c4d05fff64299ea -facebook.page.id=918835061309575 -facebook.page.token=EAAaocqgT3JoBROtsPgmyXxbOCrhL1o6q43rdbXfZCxsrRTRFG4BFrndpZB1SeC77oI3iDqTws6ZBY3Kvv1ZAoZCFubulQjZAItIORmzdQZAmR0szuadwdAkvKENlpERtexNxNRfFEVZCWKDYm1px9knYzoJQOeGjOQOMi3oyweLgouC4ZBB3PoGB6Y8xz5Jh9b5nYCBc3 - -# Facebook Hot Leads Configuration -facebook.leads.page-id=${FACEBOOK_LEADS_PAGE_ID:918835061309575} -facebook.leads.access-token=${FACEBOOK_LEADS_ACCESS_TOKEN:EAAaocqgT3JoBROtsPgmyXxbOCrhL1o6q43rdbXfZCxsrRTRFG4BFrndpZB1SeC77oI3iDqTws6ZBY3Kvv1ZAoZCFubulQjZAItIORmzdQZAmR0szuadwdAkvKENlpERtexNxNRfFEVZCWKDYm1px9knYzoJQOeGjOQOMi3oyweLgouC4ZBB3PoGB6Y8xz5Jh9b5nYCBc3} +# --- Facebook hot leads collector --- +facebook.leads.page-id=${FACEBOOK_LEADS_PAGE_ID} +facebook.leads.access-token=${FACEBOOK_LEADS_ACCESS_TOKEN} facebook.leads.cron=${FACEBOOK_LEADS_CRON:0 */15 * * * *} facebook.leads.graph-api-version=${FACEBOOK_LEADS_GRAPH_API_VERSION:v19.0} facebook.leads.timeout-ms=${FACEBOOK_LEADS_TIMEOUT_MS:30000} facebook.leads.posts-page-size=${FACEBOOK_LEADS_POSTS_PAGE_SIZE:25} facebook.leads.comments-page-size=${FACEBOOK_LEADS_COMMENTS_PAGE_SIZE:100} + +# --- Facebook leads -> call centre sync --- facebook.leads.call-center.enabled=${FACEBOOK_LEADS_CALL_CENTER_ENABLED:true} facebook.leads.call-center.base-url=${FACEBOOK_LEADS_CALL_CENTER_BASE_URL:http://localhost:8080} facebook.leads.call-center.customer-path=${FACEBOOK_LEADS_CALL_CENTER_CUSTOMER_PATH:/proxy/customer/customers} facebook.leads.call-center.interaction-path=${FACEBOOK_LEADS_CALL_CENTER_INTERACTION_PATH:/proxy/interaction/interactions} facebook.leads.call-center.auth-login-path=${FACEBOOK_LEADS_CALL_CENTER_AUTH_LOGIN_PATH:/proxy/auth/auth/login} -facebook.leads.call-center.auth-username=${FACEBOOK_LEADS_CALL_CENTER_AUTH_USERNAME:admin} -facebook.leads.call-center.auth-password=${FACEBOOK_LEADS_CALL_CENTER_AUTH_PASSWORD:admin123} +facebook.leads.call-center.auth-username=${FACEBOOK_LEADS_CALL_CENTER_AUTH_USERNAME} +facebook.leads.call-center.auth-password=${FACEBOOK_LEADS_CALL_CENTER_AUTH_PASSWORD} facebook.leads.call-center.actor-user=${FACEBOOK_LEADS_CALL_CENTER_ACTOR_USER:facebook-lead-bot} facebook.leads.call-center.actor-role=${FACEBOOK_LEADS_CALL_CENTER_ACTOR_ROLE:admin} facebook.leads.call-center.interaction-channel=${FACEBOOK_LEADS_CALL_CENTER_INTERACTION_CHANNEL:webchat} @@ -169,9 +136,66 @@ facebook.leads.call-center.interaction-queue-id=${FACEBOOK_LEADS_CALL_CENTER_INT facebook.leads.call-center.timeout-ms=${FACEBOOK_LEADS_CALL_CENTER_TIMEOUT_MS:30000} facebook.leads.call-center.subject-prefix=${FACEBOOK_LEADS_CALL_CENTER_SUBJECT_PREFIX:[Facebook]} -targeting.ai.audience-model=gpt-4o -targeting.ai.max-audience-tokens=2500 -targeting.ai.budget-model=gpt-4o-mini -targeting.ai.max-budget-tokens=1000 -targeting.ai.creatives-model=gpt-4o -targeting.ai.max-creatives-tokens=2000 +# --- Telegram --- +telegram.api.timeout=30000 + +# ============================================================================= +# RSS SOURCES +# ============================================================================= +rss.feed.url=https://kursiv.media/feed/ +rss.kapital.url=https://kapital.kz/rss/ +rss.lsm.url=https://lsm.kz/rss +rss.rbc.url=https://static.feed.rbc.ru/rbc/logical/footer/news.rss +rss.vedomosti.url=https://www.vedomosti.ru/rss/rubric/technology/internet + +# ============================================================================= +# SCHEDULING +# ============================================================================= +parser.scheduler.enabled=${PARSER_SCHEDULER_ENABLED:false} +posting.scheduler.enabled=${POSTING_SCHEDULER_ENABLED:true} +spring.task.scheduling.pool.size=5 +spring.task.scheduling.thread-name-prefix=scheduled-task- + +# ============================================================================= +# MAIL +# ============================================================================= +spring.mail.host=${MAIL_HOST:smtp.gmail.com} +spring.mail.port=${MAIL_PORT:587} +spring.mail.username=${MAIL_USERNAME} +spring.mail.password=${MAIL_PASSWORD} +spring.mail.properties.mail.smtp.auth=true +spring.mail.properties.mail.smtp.starttls.enable=true +spring.mail.properties.mail.smtp.starttls.required=true +management.health.mail.enabled=false + +# ============================================================================= +# CORS +# ============================================================================= +cors.allowed-origins=${CORS_ALLOWED_ORIGINS:${CORS_ALLOWED_ORIGIN:https://konturai.kz,https://www.konturai.kz}} +cors.allowed-methods=${CORS_ALLOWED_METHODS:GET,POST,PUT,PATCH,DELETE,OPTIONS} +cors.allowed-headers=${CORS_ALLOWED_HEADERS:*} +cors.exposed-headers=${CORS_EXPOSED_HEADERS:Location,Content-Disposition} +cors.allow-credentials=${CORS_ALLOW_CREDENTIALS:true} +cors.max-age-seconds=${CORS_MAX_AGE_SECONDS:3600} + +# ============================================================================= +# LOGGING +# ============================================================================= +logging.level.kz.konturai.parser.service.KursivParserService=INFO +logging.level.kz.konturai.parser.service.KapitalParserService=INFO +logging.level.kz.konturai.parser.service.LsmParserService=INFO +logging.level.kz.konturai.parser.service.RbcParserService=INFO +logging.level.kz.konturai.parser.service.VedomostiParserService=INFO +logging.level.kz.konturai.parser.service.OllamaAnalyticsService=INFO +logging.level.kz.konturai.parser.service.GeminiVideoGenerationService=INFO +logging.level.kz.konturai.parser.service.NanoBananaImageGenerationService=INFO +logging.level.kz.konturai.parser.service.FacebookLeadCollectorService=INFO +logging.level.kz.konturai.parser.service.FacebookLeadGraphApiClient=INFO +logging.level.kz.konturai.parser.service.FacebookLeadCallCenterSyncService=INFO +logging.level.kz.konturai.parser.controller.MarketingController=DEBUG +logging.level.kz.konturai.parser.service.MarketingAnalysisService=DEBUG +logging.level.kz.konturai.parser.config.MongoConfig=WARN +logging.level.org.springframework.scheduling=DEBUG +logging.level.org.springframework.data.mongodb=INFO +logging.level.org.springframework.data.mongodb.core.convert=WARN +logging.level.com.mongodb=WARN diff --git a/src/main/resources/keys/google-key.json b/src/main/resources/keys/google-key.json deleted file mode 100644 index f39b7a8..0000000 --- a/src/main/resources/keys/google-key.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "type": "service_account", - "project_id": "gen-lang-client-0719272404", - "private_key_id": "feb98d8fa2bd9c7139b3c03fac63900877b652f0", - "private_key": "-----BEGIN PRIVATE KEY-----\nMIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDDB5ZQNAc4C6Eu\nFA1SD1GE4IxIHuKWPE0aUPe8X1YuX1l3S94XiXzwwXHgaFi8BCJJRVBRPtfvCAM+\nQvv03kfs9KEc6UvkUlaPIgF3cjddshMJuj/7W+YpEKjuuWc649l5NO4uPcug+g1S\nZJhd7UGXbx1Uglw3LSsODJ2b4wNIQUuulGym4VCLQKhu41eGElyIVbecRxrDC2N4\nR3ROgFYilAL7QYzVojTEYea3zIBAXncXvgJcFyhSWDuJq5yJbUkbPNbVNhQ7uw7G\nCFufQWMhMBeBrO62kyufQg+xI+xqMvaDOSs+JReni57ZtUqxnpjD7Gh+BxHnduJJ\n8y/osHB5AgMBAAECggEADvuWe99fXZohHgva0R7Npa5lgIXk5ONJjhfBzHYrhgD7\nu8s3iuncUBegYrvJc1pC8wuQ5cj06E9ehmo5doCcGHNbrD+s/aOotDLJ144N/FP5\nm/Hzx+Dxv95giAR0zoSiGKptEN7c9ac4HkgNn4uiUhqub2dbY77D07663fa08hg1\ntGAtqt7lbw8MZbrCrMDdqkM552xmjxn0MnS8Itkiby1MdFi4H+0xQUO7xavsOLZ6\nQXHexNgUZsjD2ZfxFoo/U/VUaWUHn1/acQh0oJyMJD9/ZerR5Cq7XNKJgUrJUn7B\ndGNaXzymOyIWHbaCkF08+KBX2th65AjSEoJgTZiYnQKBgQDqJmzik/ZomqxySUoh\nRt0WNxO6Ed775qgluQOW9TumYDRLUP4cpRqt1vA/voGpyc7C+bnQRnQnJM0gceH0\nW6AmqdmJVLX+1DJnfkVNichI30Iz5rTYzMqneirEi2kuH6Zdh7VI6jqt3fM6QB0b\nHj2ZOXT70pS3eIGMSLjQgiBZ7QKBgQDVOp6LLWSKguqaJeVCBGbkdOGgqWUb2R6/\nk2nRJCuxnK9JJICotfxTQb+MIbFZlvQGiyb6AKUQadOHrt0VdkDeP0VCTeXw88hf\npKn3fepzxUwP8qsdEg9rmI5Y0jL23oJHPT6EHf3jnUQtpR4Wy1u+c46MRiSpCqPS\nyoHIl0qvPQKBgH2vBn9QgNGBRNNLt7jI+t9zzOjxsslv9A3bk6uyEsSpmyhaXywt\nC3cIiokMzzi+FHff5/d9+dcRD/I8btblX7+hKB1pFQ+mAzA+PSDztkg3XqfRTH2a\n36SqFM7PLjQN1RUbRRnQcJLnMimwRG9L+jCHAN4zGJSq4I7Wci2py4e5AoGAbDNa\n0HUwV7knIyGnvGBPdg55j/VlgUQj/kLnp2Ebav1/VTZYs0PlzrnGYW2XeUbIfamP\nFb3OBQ4ucOOi/IkNUbn5gzPUQvjx7Na6CQS0PBsaBd22RwIrIQZA9YF0qyEuKshB\nOPmfJClht2faZOa8n2A0LapKYB0uFID+arObCmECgYEAx2PS/d178Nfi4oG6nYIR\nAHpjC3JPlt62ySSxqfag+DPdTeOyOK8YglsyLWHGU6vI2OhYCEhuU9LMawj4tVui\nS+4D3A1CS69iOMdJVBkG1jlTP7UMZHlh43jMRW+Tcu/h7fHJaSS9YWPwyX0KUAqo\n7dB0niDoH6m8Cvb9YKXCEzs=\n-----END PRIVATE KEY-----\n", - "client_email": "vertex-express@gen-lang-client-0719272404.iam.gserviceaccount.com", - "client_id": "114082700099175512857", - "auth_uri": "https://accounts.google.com/o/oauth2/auth", - "token_uri": "https://oauth2.googleapis.com/token", - "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", - "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/vertex-express%40gen-lang-client-0719272404.iam.gserviceaccount.com", - "universe_domain": "googleapis.com" -} diff --git a/src/test/java/kz/konturai/parser/service/KapitalParserServiceTest.java b/src/test/java/kz/konturai/parser/service/KapitalParserServiceTest.java index c4e9c77..cbbb4b9 100644 --- a/src/test/java/kz/konturai/parser/service/KapitalParserServiceTest.java +++ b/src/test/java/kz/konturai/parser/service/KapitalParserServiceTest.java @@ -15,8 +15,8 @@ import static org.junit.jupiter.api.Assertions.*; @SpringBootTest @EnabledIfEnvironmentVariable(named = "RUN_INTEGRATION_TESTS", matches = "true") @TestPropertySource(properties = { - "spring.data.mongodb.host=92.38.48.166", - "spring.data.mongodb.port=27017", + "spring.data.mongodb.host=${MONGODB_HOST:localhost}", + "spring.data.mongodb.port=${MONGODB_PORT:27017}", "spring.data.mongodb.database=parser_test_db", "rss.kapital.url=https://kapital.kz/rss/" }) diff --git a/src/test/java/kz/konturai/parser/service/MarketItemServiceTest.java b/src/test/java/kz/konturai/parser/service/MarketItemServiceTest.java index 35b3115..a262613 100644 --- a/src/test/java/kz/konturai/parser/service/MarketItemServiceTest.java +++ b/src/test/java/kz/konturai/parser/service/MarketItemServiceTest.java @@ -22,12 +22,12 @@ import static org.junit.jupiter.api.Assertions.*; @SpringBootTest @EnabledIfEnvironmentVariable(named = "RUN_INTEGRATION_TESTS", matches = "true") @TestPropertySource(properties = { - "spring.data.mongodb.host=92.38.48.166", - "spring.data.mongodb.port=27017", + "spring.data.mongodb.host=${MONGODB_HOST:localhost}", + "spring.data.mongodb.port=${MONGODB_PORT:27017}", "spring.data.mongodb.database=parser_test_db", - "spring.data.mongodb.username=konturai", - "spring.data.mongodb.password=konturai2024", - "spring.data.mongodb.authentication-database=admin" + "spring.data.mongodb.username=${MONGODB_USERNAME:}", + "spring.data.mongodb.password=${MONGODB_PASSWORD:}", + "spring.data.mongodb.authentication-database=${MONGODB_AUTH_DATABASE:admin}" }) public class MarketItemServiceTest { diff --git a/test-mongodb-connection.sh b/test-mongodb-connection.sh deleted file mode 100644 index cfb33a7..0000000 --- a/test-mongodb-connection.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -echo "🔍 Тестирование подключения к MongoDB..." -echo "======================================" - -# Проверяем доступность MongoDB сервера -echo "📡 Проверка доступности сервера 92.38.48.166:27017..." -if nc -z 92.38.48.166 27017; then - echo "✅ Сервер MongoDB доступен" -else - echo "❌ Сервер MongoDB недоступен" - echo " Убедитесь, что сервер запущен и доступен" - exit 1 -fi - -echo "" -echo "🔐 Проверка аутентификации..." -echo "Используемые учетные данные:" -echo " Host: 92.38.48.166:27017" -echo " Database: parser_db" -echo " Username: parser_user" -echo " Password: parser_password" -echo " Auth Database: admin" - -echo "" -echo "📝 Для проверки подключения используйте:" -echo "mongo mongodb://parser_user:parser_password@92.38.48.166:27017/parser_db?authSource=admin" - -echo "" -echo "🚀 Для запуска приложения с новой конфигурацией:" -echo "./mvnw spring-boot:run" - -echo "" -echo "⚠️ Если подключение не работает, проверьте:" -echo "1. Правильность учетных данных" -echo "2. Настройки firewall на сервере MongoDB" -echo "3. Права доступа пользователя parser_user" -echo "4. Настройки аутентификации в MongoDB"