diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 969423c..b4ce3b2 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -111,17 +111,17 @@ jobs: - name: Build and push runtime base image run: | - AGENT_VERSION=$(curl -sf "https://gitea.siegeln.net/api/packages/cameleer/maven/com/cameleer3/cameleer3-agent/1.0-SNAPSHOT/maven-metadata.xml" \ + AGENT_VERSION=$(curl -sf "https://gitea.siegeln.net/api/packages/cameleer/maven/com/cameleer/cameleer-agent/1.0-SNAPSHOT/maven-metadata.xml" \ | sed -n 's/.*\([^<]*\)<\/value>.*/\1/p' | tail -1) echo "Agent version: $AGENT_VERSION" curl -sf -o docker/runtime-base/agent.jar \ - "https://gitea.siegeln.net/api/packages/cameleer/maven/com/cameleer3/cameleer3-agent/1.0-SNAPSHOT/cameleer3-agent-${AGENT_VERSION}-shaded.jar" - APPENDER_VERSION=$(curl -sf "https://gitea.siegeln.net/api/packages/cameleer/maven/com/cameleer3/cameleer3-log-appender/1.0-SNAPSHOT/maven-metadata.xml" \ + "https://gitea.siegeln.net/api/packages/cameleer/maven/com/cameleer/cameleer-agent/1.0-SNAPSHOT/cameleer-agent-${AGENT_VERSION}-shaded.jar" + APPENDER_VERSION=$(curl -sf "https://gitea.siegeln.net/api/packages/cameleer/maven/com/cameleer/cameleer-log-appender/1.0-SNAPSHOT/maven-metadata.xml" \ | sed -n 's/.*\([^<]*\)<\/value>.*/\1/p' | tail -1) echo "Log appender version: $APPENDER_VERSION" - curl -sf -o docker/runtime-base/cameleer3-log-appender.jar \ - "https://gitea.siegeln.net/api/packages/cameleer/maven/com/cameleer3/cameleer3-log-appender/1.0-SNAPSHOT/cameleer3-log-appender-${APPENDER_VERSION}.jar" - ls -la docker/runtime-base/agent.jar docker/runtime-base/cameleer3-log-appender.jar + curl -sf -o docker/runtime-base/cameleer-log-appender.jar \ + "https://gitea.siegeln.net/api/packages/cameleer/maven/com/cameleer/cameleer-log-appender/1.0-SNAPSHOT/cameleer-log-appender-${APPENDER_VERSION}.jar" + ls -la docker/runtime-base/agent.jar docker/runtime-base/cameleer-log-appender.jar TAGS="-t gitea.siegeln.net/cameleer/cameleer-runtime-base:${{ github.sha }}" for TAG in $IMAGE_TAGS; do TAGS="$TAGS -t gitea.siegeln.net/cameleer/cameleer-runtime-base:$TAG" diff --git a/.gitignore b/.gitignore index 058a3ed..a928ab0 100644 --- a/.gitignore +++ b/.gitignore @@ -22,7 +22,12 @@ Thumbs.db # Worktrees .worktrees/ +# Claude +.claude/ +.superpowers/ +.playwright-mcp/ +.gitnexus + # Generated by postinstall from @cameleer/design-system ui/public/favicon.svg docker/runtime-base/agent.jar -.gitnexus diff --git a/CLAUDE.md b/CLAUDE.md index c136f8e..9a1f336 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -4,18 +4,18 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co ## Project -Cameleer SaaS — **vendor management plane** for the Cameleer observability stack. Two personas: **vendor** (platform:admin) manages the platform and provisions tenants; **tenant admin** (tenant:manage) manages their observability instance. The vendor creates tenants, which provisions per-tenant cameleer3-server + UI instances via Docker API. No example tenant — clean slate bootstrap, vendor creates everything. +Cameleer SaaS — **vendor management plane** for the Cameleer observability stack. Two personas: **vendor** (platform:admin) manages the platform and provisions tenants; **tenant admin** (tenant:manage) manages their observability instance. The vendor creates tenants, which provisions per-tenant cameleer-server + UI instances via Docker API. No example tenant — clean slate bootstrap, vendor creates everything. ## Ecosystem This repo is the SaaS layer on top of two proven components: -- **cameleer3** (sibling repo) — Java agent using ByteBuddy for zero-code instrumentation of Camel apps. Captures route executions, processor traces, payloads, metrics, and route graph topology. Deploys as `-javaagent` JAR. -- **cameleer3-server** (sibling repo) — Spring Boot observability backend. Receives agent data via HTTP, pushes config/commands via SSE. PostgreSQL + ClickHouse storage. React SPA dashboard. JWT auth with Ed25519 config signing. Docker container orchestration for app deployments. +- **cameleer** (sibling repo) — Java agent using ByteBuddy for zero-code instrumentation of Camel apps. Captures route executions, processor traces, payloads, metrics, and route graph topology. Deploys as `-javaagent` JAR. +- **cameleer-server** (sibling repo) — Spring Boot observability backend. Receives agent data via HTTP, pushes config/commands via SSE. PostgreSQL + ClickHouse storage. React SPA dashboard. JWT auth with Ed25519 config signing. Docker container orchestration for app deployments. - **cameleer-website** — Marketing site (Astro 5) - **design-system** — Shared React component library (`@cameleer/design-system` on Gitea npm registry) -Agent-server protocol is defined in `cameleer3/cameleer3-common/PROTOCOL.md`. The agent and server are mature, proven components — this repo wraps them with multi-tenancy, billing, and self-service onboarding. +Agent-server protocol is defined in `cameleer/cameleer-common/PROTOCOL.md`. The agent and server are mature, proven components — this repo wraps them with multi-tenancy, billing, and self-service onboarding. ## Key Classes @@ -70,7 +70,7 @@ Agent-server protocol is defined in `cameleer3/cameleer3-common/PROTOCOL.md`. Th **identity/** — Logto & server integration - `LogtoConfig.java` — Logto endpoint, M2M credentials (reads from bootstrap file) - `LogtoManagementClient.java` — Logto Management API calls (create org, create user, add to org, get user, SSO connectors, JIT provisioning, password updates via `PATCH /api/users/{id}/password`) -- `ServerApiClient.java` — M2M client for cameleer3-server API (Logto M2M token, `X-Cameleer-Protocol-Version: 1` header). Health checks, license/OIDC push, agent count, environment count, server admin password reset per tenant server. +- `ServerApiClient.java` — M2M client for cameleer-server API (Logto M2M token, `X-Cameleer-Protocol-Version: 1` header). Health checks, license/OIDC push, agent count, environment count, server admin password reset per tenant server. **audit/** — Audit logging - `AuditEntity.java` — JPA entity (actor_id, actor_email, tenant_id, action, resource, status) @@ -97,7 +97,7 @@ Agent-server protocol is defined in `cameleer3/cameleer3-common/PROTOCOL.md`. Th ## Architecture Context -The SaaS platform is a **vendor management plane**. It does not proxy requests to servers — instead it provisions dedicated per-tenant cameleer3-server instances via Docker API. Each tenant gets isolated server + UI containers with their own database schemas, networks, and Traefik routing. +The SaaS platform is a **vendor management plane**. It does not proxy requests to servers — instead it provisions dedicated per-tenant cameleer-server instances via Docker API. Each tenant gets isolated server + UI containers with their own database schemas, networks, and Traefik routing. ### Routing (single-domain, path-based via Traefik) @@ -141,7 +141,7 @@ Server containers join three networks: tenant network (primary), shared services ### Custom sign-in UI (`ui/sign-in/`) -Separate Vite+React SPA replacing Logto's default sign-in page. Visually matches cameleer3-server LoginPage. +Separate Vite+React SPA replacing Logto's default sign-in page. Visually matches cameleer-server LoginPage. - Built as custom Logto Docker image (`cameleer-logto`): `ui/sign-in/Dockerfile` = node build stage + `FROM ghcr.io/logto-io/logto:latest` + COPY dist over `/etc/logto/packages/experience/dist/` - Uses `@cameleer/design-system` components (Card, Input, Button, FormField, Alert) @@ -178,7 +178,7 @@ These env vars are injected into provisioned per-tenant server containers: | Env var | Value | Purpose | |---------|-------|---------| -| `SPRING_DATASOURCE_URL` | `jdbc:postgresql://cameleer-postgres:5432/cameleer3?currentSchema=tenant_{slug}&ApplicationName=tenant_{slug}` | Per-tenant schema isolation + diagnostic query scoping | +| `SPRING_DATASOURCE_URL` | `jdbc:postgresql://cameleer-postgres:5432/cameleer?currentSchema=tenant_{slug}&ApplicationName=tenant_{slug}` | Per-tenant schema isolation + diagnostic query scoping | | `SPRING_DATASOURCE_USERNAME` | `tenant_{slug}` | Per-tenant PG user (owns only its schema) | | `SPRING_DATASOURCE_PASSWORD` | (generated, stored in `TenantEntity.dbPassword`) | Per-tenant PG password | | `CAMELEER_SERVER_SECURITY_OIDCISSUERURI` | `${PUBLIC_PROTOCOL}://${PUBLIC_HOST}/oidc` | Token issuer claim validation | @@ -188,7 +188,7 @@ These env vars are injected into provisioned per-tenant server containers: | `CAMELEER_SERVER_SECURITY_CORSALLOWEDORIGINS` | `${PUBLIC_PROTOCOL}://${PUBLIC_HOST}` | Allow browser requests through Traefik | | `CAMELEER_SERVER_SECURITY_BOOTSTRAPTOKEN` | (generated) | Bootstrap auth token for M2M communication | | `CAMELEER_SERVER_RUNTIME_ENABLED` | `true` | Enable Docker orchestration | -| `CAMELEER_SERVER_RUNTIME_SERVERURL` | `http://cameleer3-server-{slug}:8081` | Per-tenant server URL (DNS alias on tenant network) | +| `CAMELEER_SERVER_RUNTIME_SERVERURL` | `http://cameleer-server-{slug}:8081` | Per-tenant server URL (DNS alias on tenant network) | | `CAMELEER_SERVER_RUNTIME_ROUTINGDOMAIN` | `${PUBLIC_HOST}` | Domain for Traefik routing labels | | `CAMELEER_SERVER_RUNTIME_ROUTINGMODE` | `path` | `path` or `subdomain` routing | | `CAMELEER_SERVER_RUNTIME_JARSTORAGEPATH` | `/data/jars` | Directory for uploaded JARs | @@ -240,7 +240,7 @@ The server's OIDC config (`OidcConfig`) includes `audience` (RFC 8707 resource i ### Deployment pipeline -App deployment is handled by the cameleer3-server's `DeploymentExecutor` (7-stage async flow): +App deployment is handled by the cameleer-server's `DeploymentExecutor` (7-stage async flow): 1. PRE_FLIGHT — validate config, check JAR exists 2. PULL_IMAGE — pull base image if missing 3. CREATE_NETWORK — ensure cameleer-traefik and cameleer-env-{slug} networks @@ -250,8 +250,8 @@ App deployment is handled by the cameleer3-server's `DeploymentExecutor` (7-stag 7. COMPLETE — mark RUNNING or DEGRADED Key files: -- `DeploymentExecutor.java` (in cameleer3-server) — async staged deployment -- `DockerRuntimeOrchestrator.java` (in cameleer3-server) — Docker client, container lifecycle +- `DeploymentExecutor.java` (in cameleer-server) — async staged deployment +- `DockerRuntimeOrchestrator.java` (in cameleer-server) — Docker client, container lifecycle - `docker/runtime-base/Dockerfile` — base image with agent JAR, maps env vars to `-D` system properties - `ServerApiClient.java` — M2M token acquisition for SaaS->server API calls (agent status). Uses `X-Cameleer-Protocol-Version: 1` header - Docker socket access: `group_add: ["0"]` in docker-compose.dev.yml (not root group membership in Dockerfile) @@ -272,7 +272,7 @@ Idempotent script run inside the Logto container entrypoint. **Clean slate** — 10. Write bootstrap results to `/data/logto-bootstrap.json` 12. Create `saas-vendor` global role with all API scopes and assign to admin user (always runs — admin IS the platform admin). -The multi-tenant compose stack is: Traefik + PostgreSQL + ClickHouse + Logto (with bootstrap entrypoint) + cameleer-saas. No `cameleer3-server` or `cameleer3-server-ui` in compose — those are provisioned per-tenant by `DockerTenantProvisioner`. +The multi-tenant compose stack is: Traefik + PostgreSQL + ClickHouse + Logto (with bootstrap entrypoint) + cameleer-saas. No `cameleer-server` or `cameleer-server-ui` in compose — those are provisioned per-tenant by `DockerTenantProvisioner`. ### Deployment Modes (installer) @@ -340,7 +340,7 @@ PostgreSQL (Flyway): `src/main/resources/db/migration/` - Docker images: CI builds and pushes all images — Dockerfiles use multi-stage builds, no local builds needed - `cameleer-saas` — SaaS vendor management plane (frontend + JAR baked in) - `cameleer-logto` — custom Logto with sign-in UI baked in - - `cameleer3-server` / `cameleer3-server-ui` — provisioned per-tenant (not in compose, created by `DockerTenantProvisioner`) + - `cameleer-server` / `cameleer-server-ui` — provisioned per-tenant (not in compose, created by `DockerTenantProvisioner`) - `cameleer-runtime-base` — base image for deployed apps (agent JAR + JRE). CI downloads latest agent SNAPSHOT from Gitea Maven registry. Uses `CAMELEER_SERVER_RUNTIME_SERVERURL` env var (not CAMELEER_EXPORT_ENDPOINT). - Docker builds: `--no-cache`, `--provenance=false` for Gitea compatibility - `docker-compose.dev.yml` — exposes ports for direct access, sets `SPRING_PROFILES_ACTIVE: dev`. Volume-mounts `./ui/dist` into the container so local UI builds are served without rebuilding the Docker image (`SPRING_WEB_RESOURCES_STATIC_LOCATIONS` overrides classpath). Adds Docker socket mount for tenant provisioning. diff --git a/HOWTO.md b/HOWTO.md index 5674f64..41f1948 100644 --- a/HOWTO.md +++ b/HOWTO.md @@ -48,7 +48,7 @@ The platform runs as a Docker Compose stack: *Ports exposed to host only with `docker-compose.dev.yml` overlay. -Per-tenant `cameleer3-server` and `cameleer3-server-ui` containers are provisioned dynamically by `DockerTenantProvisioner` — they are NOT part of the compose stack. +Per-tenant `cameleer-server` and `cameleer-server-ui` containers are provisioned dynamically by `DockerTenantProvisioner` — they are NOT part of the compose stack. ## Installation @@ -222,7 +222,7 @@ To disable routing, set `exposedPort` to `null`. ### View the Observability Dashboard -The cameleer3-server React SPA dashboard is available at: +The cameleer-server React SPA dashboard is available at: ``` http://localhost/dashboard @@ -233,7 +233,7 @@ This shows execution traces, route topology graphs, metrics, and logs for all de ### Check Agent & Observability Status ```bash -# Is the agent registered with cameleer3-server? +# Is the agent registered with cameleer-server? curl "http://localhost:8080/api/apps/$APP_ID/agent-status" \ -H "Authorization: Bearer $TOKEN" # Returns: registered, state (ACTIVE/STALE/DEAD/UNKNOWN), routeIds @@ -303,7 +303,7 @@ Query params: `since`, `until` (ISO timestamps), `limit` (default 500), `stream` ### Dashboard | Path | Description | |------|-------------| -| `/dashboard` | cameleer3-server observability dashboard (forward-auth protected) | +| `/dashboard` | cameleer-server observability dashboard (forward-auth protected) | ### Vendor: Certificates (platform:admin) | Method | Path | Description | @@ -404,7 +404,7 @@ Output goes to `src/main/resources/static/` (configured in `vite.config.ts`). Th ### SPA Routing -Spring Boot serves `index.html` for all non-API routes via `SpaController.java`. React Router handles client-side routing. The SPA lives at `/`, while the observability dashboard (cameleer3-server) is at `/dashboard`. +Spring Boot serves `index.html` for all non-API routes via `SpaController.java`. React Router handles client-side routing. The SPA lives at `/`, while the observability dashboard (cameleer-server) is at `/dashboard`. ## Development diff --git a/audit-screenshots/01-dashboard.png b/audit-screenshots/01-dashboard.png new file mode 100644 index 0000000..cb15871 Binary files /dev/null and b/audit-screenshots/01-dashboard.png differ diff --git a/audit-screenshots/02-user-menu-open.png b/audit-screenshots/02-user-menu-open.png new file mode 100644 index 0000000..431328f Binary files /dev/null and b/audit-screenshots/02-user-menu-open.png differ diff --git a/audit-screenshots/03-search-dialog.png b/audit-screenshots/03-search-dialog.png new file mode 100644 index 0000000..dcc7472 Binary files /dev/null and b/audit-screenshots/03-search-dialog.png differ diff --git a/audit-screenshots/04-error-filter.png b/audit-screenshots/04-error-filter.png new file mode 100644 index 0000000..e1aa582 Binary files /dev/null and b/audit-screenshots/04-error-filter.png differ diff --git a/audit-screenshots/05-license-page.png b/audit-screenshots/05-license-page.png new file mode 100644 index 0000000..35cf0af Binary files /dev/null and b/audit-screenshots/05-license-page.png differ diff --git a/audit-screenshots/06-license-token-shown.png b/audit-screenshots/06-license-token-shown.png new file mode 100644 index 0000000..a064fd4 Binary files /dev/null and b/audit-screenshots/06-license-token-shown.png differ diff --git a/audit-screenshots/07-admin-tenants-error.png b/audit-screenshots/07-admin-tenants-error.png new file mode 100644 index 0000000..740e8e0 Binary files /dev/null and b/audit-screenshots/07-admin-tenants-error.png differ diff --git a/audit-screenshots/08-dark-mode.png b/audit-screenshots/08-dark-mode.png new file mode 100644 index 0000000..613235a Binary files /dev/null and b/audit-screenshots/08-dark-mode.png differ diff --git a/audit-screenshots/09-sidebar-collapsed.png b/audit-screenshots/09-sidebar-collapsed.png new file mode 100644 index 0000000..e17572c Binary files /dev/null and b/audit-screenshots/09-sidebar-collapsed.png differ diff --git a/audit-screenshots/10-server-dashboard.png b/audit-screenshots/10-server-dashboard.png new file mode 100644 index 0000000..eda31ac Binary files /dev/null and b/audit-screenshots/10-server-dashboard.png differ diff --git a/audit-screenshots/11-server-dashboard-tab.png b/audit-screenshots/11-server-dashboard-tab.png new file mode 100644 index 0000000..855e042 Binary files /dev/null and b/audit-screenshots/11-server-dashboard-tab.png differ diff --git a/audit-screenshots/12-server-runtime.png b/audit-screenshots/12-server-runtime.png new file mode 100644 index 0000000..2b4721c Binary files /dev/null and b/audit-screenshots/12-server-runtime.png differ diff --git a/audit-screenshots/13-server-deployments.png b/audit-screenshots/13-server-deployments.png new file mode 100644 index 0000000..7ddb4ed Binary files /dev/null and b/audit-screenshots/13-server-deployments.png differ diff --git a/audit-screenshots/14-server-audit-log.png b/audit-screenshots/14-server-audit-log.png new file mode 100644 index 0000000..9e5a09d Binary files /dev/null and b/audit-screenshots/14-server-audit-log.png differ diff --git a/audit-screenshots/15-server-environments.png b/audit-screenshots/15-server-environments.png new file mode 100644 index 0000000..7195edc Binary files /dev/null and b/audit-screenshots/15-server-environments.png differ diff --git a/audit-screenshots/16-server-users-roles.png b/audit-screenshots/16-server-users-roles.png new file mode 100644 index 0000000..cb082bc Binary files /dev/null and b/audit-screenshots/16-server-users-roles.png differ diff --git a/audit-screenshots/17-server-oidc.png b/audit-screenshots/17-server-oidc.png new file mode 100644 index 0000000..e0ee40c Binary files /dev/null and b/audit-screenshots/17-server-oidc.png differ diff --git a/audit-screenshots/17b-server-oidc-full.png b/audit-screenshots/17b-server-oidc-full.png new file mode 100644 index 0000000..e0ee40c Binary files /dev/null and b/audit-screenshots/17b-server-oidc-full.png differ diff --git a/audit-screenshots/18-server-clickhouse.png b/audit-screenshots/18-server-clickhouse.png new file mode 100644 index 0000000..a362e39 Binary files /dev/null and b/audit-screenshots/18-server-clickhouse.png differ diff --git a/audit-screenshots/19-server-database.png b/audit-screenshots/19-server-database.png new file mode 100644 index 0000000..4de3b04 Binary files /dev/null and b/audit-screenshots/19-server-database.png differ diff --git a/audit-screenshots/20-server-api-docs.png b/audit-screenshots/20-server-api-docs.png new file mode 100644 index 0000000..a306968 Binary files /dev/null and b/audit-screenshots/20-server-api-docs.png differ diff --git a/audit-screenshots/21-auto-refresh-enabled.png b/audit-screenshots/21-auto-refresh-enabled.png new file mode 100644 index 0000000..d797f11 Binary files /dev/null and b/audit-screenshots/21-auto-refresh-enabled.png differ diff --git a/audit-screenshots/22-login-page.png b/audit-screenshots/22-login-page.png new file mode 100644 index 0000000..856d392 Binary files /dev/null and b/audit-screenshots/22-login-page.png differ diff --git a/audit-screenshots/23-sign-in-page.png b/audit-screenshots/23-sign-in-page.png new file mode 100644 index 0000000..4dc92b3 Binary files /dev/null and b/audit-screenshots/23-sign-in-page.png differ diff --git a/audit-screenshots/24-dashboard-fullpage.png b/audit-screenshots/24-dashboard-fullpage.png new file mode 100644 index 0000000..40d385d Binary files /dev/null and b/audit-screenshots/24-dashboard-fullpage.png differ diff --git a/audit/01-platform-dashboard.png b/audit/01-platform-dashboard.png new file mode 100644 index 0000000..136410e Binary files /dev/null and b/audit/01-platform-dashboard.png differ diff --git a/audit/02-user-menu-dropdown.png b/audit/02-user-menu-dropdown.png new file mode 100644 index 0000000..98ab5f3 Binary files /dev/null and b/audit/02-user-menu-dropdown.png differ diff --git a/audit/03-login-page.png b/audit/03-login-page.png new file mode 100644 index 0000000..146e239 Binary files /dev/null and b/audit/03-login-page.png differ diff --git a/audit/04-login-error.png b/audit/04-login-error.png new file mode 100644 index 0000000..ed175d8 Binary files /dev/null and b/audit/04-login-error.png differ diff --git a/audit/05-platform-dashboard-loggedin.png b/audit/05-platform-dashboard-loggedin.png new file mode 100644 index 0000000..c990de4 Binary files /dev/null and b/audit/05-platform-dashboard-loggedin.png differ diff --git a/audit/06-license-page.png b/audit/06-license-page.png new file mode 100644 index 0000000..13e1ff1 Binary files /dev/null and b/audit/06-license-page.png differ diff --git a/audit/07-license-token-revealed.png b/audit/07-license-token-revealed.png new file mode 100644 index 0000000..f05f058 Binary files /dev/null and b/audit/07-license-token-revealed.png differ diff --git a/audit/08-dashboard-dark-mode.png b/audit/08-dashboard-dark-mode.png new file mode 100644 index 0000000..6dea604 Binary files /dev/null and b/audit/08-dashboard-dark-mode.png differ diff --git a/audit/09-license-dark-mode.png b/audit/09-license-dark-mode.png new file mode 100644 index 0000000..9fa65d7 Binary files /dev/null and b/audit/09-license-dark-mode.png differ diff --git a/audit/10-server-dashboard.png b/audit/10-server-dashboard.png new file mode 100644 index 0000000..d563e66 Binary files /dev/null and b/audit/10-server-dashboard.png differ diff --git a/audit/11-search-modal.png b/audit/11-search-modal.png new file mode 100644 index 0000000..b842305 Binary files /dev/null and b/audit/11-search-modal.png differ diff --git a/audit/12-sidebar-collapsed.png b/audit/12-sidebar-collapsed.png new file mode 100644 index 0000000..d8f35e7 Binary files /dev/null and b/audit/12-sidebar-collapsed.png differ diff --git a/audit/13-responsive-tablet.png b/audit/13-responsive-tablet.png new file mode 100644 index 0000000..103bf98 Binary files /dev/null and b/audit/13-responsive-tablet.png differ diff --git a/audit/14-responsive-mobile.png b/audit/14-responsive-mobile.png new file mode 100644 index 0000000..782700b Binary files /dev/null and b/audit/14-responsive-mobile.png differ diff --git a/audit/15-dashboard-desktop-1280.png b/audit/15-dashboard-desktop-1280.png new file mode 100644 index 0000000..65669b0 Binary files /dev/null and b/audit/15-dashboard-desktop-1280.png differ diff --git a/audit/16-license-features-detail.png b/audit/16-license-features-detail.png new file mode 100644 index 0000000..33650f2 Binary files /dev/null and b/audit/16-license-features-detail.png differ diff --git a/audit/17-license-limits-detail.png b/audit/17-license-limits-detail.png new file mode 100644 index 0000000..1cac0ed Binary files /dev/null and b/audit/17-license-limits-detail.png differ diff --git a/audit/18-license-validity-detail.png b/audit/18-license-validity-detail.png new file mode 100644 index 0000000..e5c10cf Binary files /dev/null and b/audit/18-license-validity-detail.png differ diff --git a/audit/19-tenant-info-detail.png b/audit/19-tenant-info-detail.png new file mode 100644 index 0000000..1e6badf Binary files /dev/null and b/audit/19-tenant-info-detail.png differ diff --git a/audit/20-kpi-strip-detail.png b/audit/20-kpi-strip-detail.png new file mode 100644 index 0000000..857603b Binary files /dev/null and b/audit/20-kpi-strip-detail.png differ diff --git a/audit/21-sidebar-detail.png b/audit/21-sidebar-detail.png new file mode 100644 index 0000000..422fbc8 Binary files /dev/null and b/audit/21-sidebar-detail.png differ diff --git a/audit/22-header-bar-detail.png b/audit/22-header-bar-detail.png new file mode 100644 index 0000000..0a9c263 Binary files /dev/null and b/audit/22-header-bar-detail.png differ diff --git a/audit/platform-ui-findings.md b/audit/platform-ui-findings.md index 2adad83..c04db2d 100644 --- a/audit/platform-ui-findings.md +++ b/audit/platform-ui-findings.md @@ -26,10 +26,10 @@ | Severity | Issue | Element | |----------|-------|---------| | Important | **No password visibility toggle** -- the Password input uses `type="password"` with no eye icon to reveal. Most modern login forms offer this. | Password field | -| Important | **Branding says "cameleer3"** not "Cameleer" or "Cameleer SaaS" -- the product name on the login page is the internal repo name, not the user-facing brand | `.logo` text content | +| Important | **Branding says "cameleer"** not "Cameleer" or "Cameleer SaaS" -- the product name on the login page is the internal repo name, not the user-facing brand | `.logo` text content | | Nice-to-have | **No "Forgot password" link** -- even if it goes to a "contact admin" page, users expect this | Below password field | | Nice-to-have | **No Enter-key submit hint** -- though Enter does work via form submit, there's no visual affordance | Form area | -| Nice-to-have | **Page title is "Sign in -- cameleer3"** -- should match product branding ("Cameleer SaaS") | `` tag | +| Nice-to-have | **Page title is "Sign in -- cameleer"** -- should match product branding ("Cameleer SaaS") | `<title>` tag | --- @@ -216,7 +216,7 @@ ### Important (17) 1. No password visibility toggle on login -2. Branding says "cameleer3" instead of product name on login +2. Branding says "cameleer" instead of product name on login 3. Breadcrumbs always empty on platform pages 4. Massive empty space below dashboard content 5. Tier badge color mapping inconsistent between Dashboard and License pages @@ -235,7 +235,7 @@ ### Nice-to-have (8) 1. No "Forgot password" link on login -2. Login page title uses "cameleer3" branding +2. Login page title uses "cameleer" branding 3. No external link icon on "Open Server Dashboard" 4. Avatar shows "AD" for "admin" 5. No units on limit values diff --git a/audit/source-code-findings.md b/audit/source-code-findings.md index 04f6679..67219d1 100644 --- a/audit/source-code-findings.md +++ b/audit/source-code-findings.md @@ -356,7 +356,7 @@ These use **different tier names** (enterprise/pro/starter vs BUSINESS/HIGH/MID/ 3. **Hardcoded branding** (`SignInPage.tsx:61`): ```tsx - cameleer3 + cameleer ``` The brand name is hardcoded text, not sourced from configuration. diff --git a/audit/verify-01-dashboard.png b/audit/verify-01-dashboard.png new file mode 100644 index 0000000..afe72b7 Binary files /dev/null and b/audit/verify-01-dashboard.png differ diff --git a/audit/verify-02-license.png b/audit/verify-02-license.png new file mode 100644 index 0000000..0f70fab Binary files /dev/null and b/audit/verify-02-license.png differ diff --git a/ci-docker-log.txt b/ci-docker-log.txt new file mode 100644 index 0000000..38a94b0 --- /dev/null +++ b/ci-docker-log.txt @@ -0,0 +1,4974 @@ +2026-04-06T14:00:32.9560241Z my-docker-runner-2(version:v0.3.0) received task 4078 of job docker, be triggered by event: push +2026-04-06T14:00:32.9565883Z workflow prepared +2026-04-06T14:00:32.9566904Z evaluating expression 'success()' +2026-04-06T14:00:32.9567891Z expression 'success()' evaluated to 'true' +2026-04-06T14:00:32.9568051Z 'runs-on' key not defined in CI/build +2026-04-06T14:00:32.9568183Z No steps found +2026-04-06T14:00:32.9569042Z evaluating expression 'github.event_name == 'push'' +2026-04-06T14:00:32.9569653Z expression 'github.event_name == 'push'' evaluated to 'true' +2026-04-06T14:00:32.9570241Z expression '${{ secrets.REGISTRY_TOKEN }}' rewritten to 'format('{0}', secrets.REGISTRY_TOKEN)' +2026-04-06T14:00:32.9570422Z evaluating expression 'format('{0}', secrets.REGISTRY_TOKEN)' +2026-04-06T14:00:32.9570710Z expression 'format('{0}', secrets.REGISTRY_TOKEN)' evaluated to '%!t(string=***)' +2026-04-06T14:00:32.9570891Z 🚀 Start image=gitea.siegeln.net/cameleer/cameleer-docker-builder:1 +2026-04-06T14:00:32.9644149Z 🐳 docker pull image=gitea.siegeln.net/cameleer/cameleer-docker-builder:1 platform= username=cameleer forcePull=true +2026-04-06T14:00:32.9644571Z 🐳 docker pull gitea.siegeln.net/cameleer/cameleer-docker-builder:1 +2026-04-06T14:00:32.9645002Z pulling image 'gitea.siegeln.net/cameleer/cameleer-docker-builder:1' () +2026-04-06T14:00:32.9650792Z using authentication for docker pull +2026-04-06T14:00:33.1547087Z Pulling from cameleer/cameleer-docker-builder :: 1 +2026-04-06T14:00:33.1616536Z Digest: sha256:7787fd7ceef55a84a4b11a74254f7b805164ae8589333233cfa04a16563c16c7 :: +2026-04-06T14:00:33.1617099Z Status: Image is up to date for gitea.siegeln.net/cameleer/cameleer-docker-builder:1 :: +2026-04-06T14:00:33.1778188Z 🐳 docker create image=gitea.siegeln.net/cameleer/cameleer-docker-builder:1 platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_gitea_***" +2026-04-06T14:00:33.1878136Z Custom container.Config from options ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:true AttachStderr:true ExposedPorts:map[] Tty:false OpenStdin:false StdinOnce:false Env:[] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image: Volumes:map[] WorkingDir: Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]} +2026-04-06T14:00:33.1878992Z Merged container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:true AttachStderr:true ExposedPorts:map[] Tty:false OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=ARM64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:gitea.siegeln.net/cameleer/cameleer-docker-builder:1 Volumes:map[] WorkingDir:/workspace/cameleer/cameleer-saas Entrypoint:[/bin/sleep 10800] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]} +2026-04-06T14:00:33.1879787Z Custom container.HostConfig from options ==> &{Binds:[] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:gitea_gitea_*** PortBindings:map[] RestartPolicy:{Name:no MaximumRetryCount:0} AutoRemove:false VolumeDriver: VolumesFrom:[] ConsoleSize:[0 0] Annotations:map[] CapAdd:[] CapDrop:[] CgroupnsMode: DNS:[] DNSOptions:[] DNSSearch:[] ExtraHosts:[] GroupAdd:[] IpcMode: Cgroup: Links:[] OomScoreAdj:0 PidMode: Privileged:false PublishAllPorts:false ReadonlyRootfs:false SecurityOpt:[] StorageOpt:map[] Tmpfs:map[] UTSMode: UsernsMode: ShmSize:0 Sysctls:map[] Runtime: Isolation: Resources:{CPUShares:0 Memory:0 NanoCPUs:0 CgroupParent: BlkioWeight:0 BlkioWeightDevice:[] BlkioDeviceReadBps:[] BlkioDeviceWriteBps:[] BlkioDeviceReadIOps:[] BlkioDeviceWriteIOps:[] CPUPeriod:0 CPUQuota:0 CPURealtimePeriod:0 CPURealtimeRuntime:0 CpusetCpus: CpusetMems: Devices:[] DeviceCgroupRules:[] DeviceRequests:[] KernelMemory:0 KernelMemoryTCP:0 MemoryReservation:0 MemorySwap:0 MemorySwappiness:0xb9c60b219c8 OomKillDisable:0xb9c60b218c3 PidsLimit:0xb9c60b21a28 Ulimits:[] CPUCount:0 CPUPercent:0 IOMaximumIOps:0 IOMaximumBandwidth:0} Mounts:[] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>} +2026-04-06T14:00:33.1880655Z --network and --net in the options will be ignored. +2026-04-06T14:00:33.1881107Z Merged container.HostConfig ==> &{Binds:[/var/run/docker.sock:/var/run/docker.sock] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:gitea_gitea_*** PortBindings:map[] RestartPolicy:{Name:no MaximumRetryCount:0} AutoRemove:true VolumeDriver: VolumesFrom:[] ConsoleSize:[0 0] Annotations:map[] CapAdd:[] CapDrop:[] CgroupnsMode: DNS:[] DNSOptions:[] DNSSearch:[] ExtraHosts:[] GroupAdd:[] IpcMode: Cgroup: Links:[] OomScoreAdj:0 PidMode: Privileged:false PublishAllPorts:false ReadonlyRootfs:false SecurityOpt:[] StorageOpt:map[] Tmpfs:map[] UTSMode: UsernsMode: ShmSize:0 Sysctls:map[] Runtime: Isolation: Resources:{CPUShares:0 Memory:0 NanoCPUs:0 CgroupParent: BlkioWeight:0 BlkioWeightDevice:[] BlkioDeviceReadBps:[] BlkioDeviceWriteBps:[] BlkioDeviceReadIOps:[] BlkioDeviceWriteIOps:[] CPUPeriod:0 CPUQuota:0 CPURealtimePeriod:0 CPURealtimeRuntime:0 CpusetCpus: CpusetMems: Devices:[] DeviceCgroupRules:[] DeviceRequests:[] KernelMemory:0 KernelMemoryTCP:0 MemoryReservation:0 MemorySwap:0 MemorySwappiness:0xb9c60b219c8 OomKillDisable:0xb9c60b218c3 PidsLimit:0xb9c60b21a28 Ulimits:[] CPUCount:0 CPUPercent:0 IOMaximumIOps:0 IOMaximumBandwidth:0} Mounts:[{Type:volume Source:act-toolcache Target:/opt/hostedtoolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:GITEA-ACTIONS-TASK-4078_WORKFLOW-CI_JOB-docker-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:GITEA-ACTIONS-TASK-4078_WORKFLOW-CI_JOB-docker Target:/workspace/cameleer/cameleer-saas ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>} +2026-04-06T14:00:33.3008011Z Created container name=GITEA-ACTIONS-TASK-4078_WORKFLOW-CI_JOB-docker id=99f113be2a3c1381abc30fc0e045f78a0ae73922a543219f18636b64cd5651b7 from image gitea.siegeln.net/cameleer/cameleer-docker-builder:1 (platform: ) +2026-04-06T14:00:33.3008498Z ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=ARM64 RUNNER_TEMP=/tmp LANG=C.UTF-8] +2026-04-06T14:00:33.3008685Z 🐳 docker run image=gitea.siegeln.net/cameleer/cameleer-docker-builder:1 platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_gitea_***" +2026-04-06T14:00:33.3008891Z Starting container: 99f113be2a3c1381abc30fc0e045f78a0ae73922a543219f18636b64cd5651b7 +2026-04-06T14:00:33.4873670Z Started container: 99f113be2a3c1381abc30fc0e045f78a0ae73922a543219f18636b64cd5651b7 +2026-04-06T14:00:33.5730976Z Writing entry to tarball workflow/event.json len:5365 +2026-04-06T14:00:33.5731550Z Writing entry to tarball workflow/envs.txt len:0 +2026-04-06T14:00:33.5731780Z Extracting content to '/var/run/act/' +2026-04-06T14:00:33.5914878Z expression '${{ secrets.REGISTRY_TOKEN }}' rewritten to 'format('{0}', secrets.REGISTRY_TOKEN)' +2026-04-06T14:00:33.5915319Z evaluating expression 'format('{0}', secrets.REGISTRY_TOKEN)' +2026-04-06T14:00:33.5915690Z expression 'format('{0}', secrets.REGISTRY_TOKEN)' evaluated to '%!t(string=***)' +2026-04-06T14:00:33.6058741Z evaluating expression '' +2026-04-06T14:00:33.6059369Z expression '' evaluated to 'true' +2026-04-06T14:00:33.6059566Z ⭐ Run Main Checkout +2026-04-06T14:00:33.6059805Z Writing entry to tarball workflow/outputcmd.txt len:0 +2026-04-06T14:00:33.6060022Z Writing entry to tarball workflow/statecmd.txt len:0 +2026-04-06T14:00:33.6060165Z Writing entry to tarball workflow/pathcmd.txt len:0 +2026-04-06T14:00:33.6060311Z Writing entry to tarball workflow/envs.txt len:0 +2026-04-06T14:00:33.6060451Z Writing entry to tarball workflow/SUMMARY.md len:0 +2026-04-06T14:00:33.6060613Z Extracting content to '/var/run/act' +2026-04-06T14:00:33.6288329Z Wrote command \n\ngit clone --depth=1 --branch=${GITHUB_REF_NAME} https://cameleer:${REGISTRY_TOKEN}@gitea.siegeln.net/${GITHUB_REPOSITORY}.git .\n\n\n to 'workflow/0.sh' +2026-04-06T14:00:33.6289376Z Writing entry to tarball workflow/0.sh len:130 +2026-04-06T14:00:33.6289705Z Extracting content to '/var/run/act' +2026-04-06T14:00:33.6310931Z 🐳 docker exec cmd=[sh -e /var/run/act/workflow/0.sh] user= workdir= +2026-04-06T14:00:33.6311351Z Exec command '[sh -e /var/run/act/workflow/0.sh]' +2026-04-06T14:00:33.6311776Z Working directory '/workspace/cameleer/cameleer-saas' +2026-04-06T14:00:33.6853122Z Cloning into '.'... +2026-04-06T14:00:34.1172808Z WARNING! Your password will be stored unencrypted in /root/.docker/config.json. +2026-04-06T14:00:34.1173581Z Configure a credential helper to remove this warning. See +2026-04-06T14:00:34.1173755Z https://docs.docker.com/engine/reference/commandline/login/#credential-stores +2026-04-06T14:00:34.1173934Z +2026-04-06T14:00:34.1217010Z Login Succeeded +2026-04-06T14:00:34.3310416Z Unable to find image 'gitea.siegeln.net/cameleer/binfmt:1' locally +2026-04-06T14:00:34.5588148Z 1: Pulling from cameleer/binfmt +2026-04-06T14:00:34.5588734Z e92b65d92a26: Pulling fs layer +2026-04-06T14:00:34.5589466Z db3b36a9c1d3: Pulling fs layer +2026-04-06T14:00:34.6173086Z db3b36a9c1d3: Verifying Checksum +2026-04-06T14:00:34.6173628Z db3b36a9c1d3: Download complete +2026-04-06T14:00:34.6899124Z e92b65d92a26: Download complete +2026-04-06T14:00:35.0726612Z e92b65d92a26: Pull complete +2026-04-06T14:00:35.1700749Z db3b36a9c1d3: Pull complete +2026-04-06T14:00:35.1921297Z Digest: sha256:64105cfb52d4460c98173da070276f21b24456e9d651493d02a53fb7accf24ad +2026-04-06T14:00:35.2003535Z Status: Downloaded newer image for gitea.siegeln.net/cameleer/binfmt:1 +2026-04-06T14:00:35.6679171Z { +2026-04-06T14:00:35.6679724Z "supported": [ +2026-04-06T14:00:35.6679897Z "linux/arm64", +2026-04-06T14:00:35.6680111Z "linux/amd64", +2026-04-06T14:00:35.6680271Z "linux/amd64/v2", +2026-04-06T14:00:35.6680472Z "linux/riscv64", +2026-04-06T14:00:35.6680618Z "linux/ppc64le", +2026-04-06T14:00:35.6680756Z "linux/s390x", +2026-04-06T14:00:35.6680901Z "linux/386", +2026-04-06T14:00:35.6681037Z "linux/mips64le", +2026-04-06T14:00:35.6681164Z "linux/mips64", +2026-04-06T14:00:35.6681295Z "linux/loong64", +2026-04-06T14:00:35.6681428Z "linux/arm/v7", +2026-04-06T14:00:35.6681718Z "linux/arm/v6" +2026-04-06T14:00:35.6681861Z ], +2026-04-06T14:00:35.6681977Z "emulators": [ +2026-04-06T14:00:35.6682101Z "python3.11", +2026-04-06T14:00:35.6682229Z "qemu-i386", +2026-04-06T14:00:35.6682353Z "qemu-loongarch64", +2026-04-06T14:00:35.6682473Z "qemu-mips64", +2026-04-06T14:00:35.6682612Z "qemu-mips64el", +2026-04-06T14:00:35.6682752Z "qemu-ppc64le", +2026-04-06T14:00:35.6682980Z "qemu-riscv64", +2026-04-06T14:00:35.6683107Z "qemu-s390x", +2026-04-06T14:00:35.6683227Z "qemu-x86_64" +2026-04-06T14:00:35.6683343Z ] +2026-04-06T14:00:35.6683458Z } +2026-04-06T14:00:36.2303635Z cibuilder +2026-04-06T14:00:36.5791407Z #0 building with "cibuilder" instance using docker-container driver +2026-04-06T14:00:36.5791909Z +2026-04-06T14:00:36.5792071Z #1 [internal] load build definition from Dockerfile +2026-04-06T14:00:36.5792241Z #1 transferring dockerfile: 1.03kB done +2026-04-06T14:00:36.5792381Z #1 DONE 0.1s +2026-04-06T14:00:36.5792504Z +2026-04-06T14:00:36.5792626Z #2 resolve image config for docker-image://docker.io/docker/dockerfile:1 +2026-04-06T14:00:37.2002048Z #2 DONE 0.8s +2026-04-06T14:00:37.3365609Z +2026-04-06T14:00:37.3366130Z #3 docker-image://docker.io/docker/dockerfile:1@sha256:4a43a54dd1fedceb30ba47e76cfcf2b47304f4161c0caeac2db1c61804ea3c91 +2026-04-06T14:00:37.3366440Z #3 resolve docker.io/docker/dockerfile:1@sha256:4a43a54dd1fedceb30ba47e76cfcf2b47304f4161c0caeac2db1c61804ea3c91 0.0s done +2026-04-06T14:00:37.3366615Z #3 CACHED +2026-04-06T14:00:37.3366847Z +2026-04-06T14:00:37.3366967Z #4 [internal] load metadata for docker.io/library/eclipse-temurin:21-jre-alpine +2026-04-06T14:00:38.0146338Z #4 ... +2026-04-06T14:00:38.0146922Z +2026-04-06T14:00:38.0147066Z #5 [internal] load metadata for docker.io/library/node:22-alpine +2026-04-06T14:00:38.0147305Z #5 DONE 0.7s +2026-04-06T14:00:38.1213807Z +2026-04-06T14:00:38.1215054Z #6 [internal] load metadata for docker.io/library/eclipse-temurin:21-jdk-alpine +2026-04-06T14:00:38.1215680Z #6 DONE 0.7s +2026-04-06T14:00:38.1215881Z +2026-04-06T14:00:38.1216126Z #4 [internal] load metadata for docker.io/library/eclipse-temurin:21-jre-alpine +2026-04-06T14:00:38.1216477Z #4 DONE 0.7s +2026-04-06T14:00:38.1216654Z +2026-04-06T14:00:38.1216819Z #7 [internal] load .dockerignore +2026-04-06T14:00:38.1217042Z #7 transferring context: 2B done +2026-04-06T14:00:38.1217245Z #7 DONE 0.1s +2026-04-06T14:00:38.2577614Z +2026-04-06T14:00:38.2578307Z #8 [stage-2 1/4] FROM docker.io/library/eclipse-temurin:21-jre-alpine@sha256:6ad8ed080d9be96b61438ec3ce99388e294af216ed57356000c06070e85c5d5d +2026-04-06T14:00:38.2578671Z #8 resolve docker.io/library/eclipse-temurin:21-jre-alpine@sha256:6ad8ed080d9be96b61438ec3ce99388e294af216ed57356000c06070e85c5d5d 0.1s done +2026-04-06T14:00:38.2579017Z #8 DONE 0.1s +2026-04-06T14:00:38.2579217Z +2026-04-06T14:00:38.2579404Z #9 [stage-2 2/4] WORKDIR /app +2026-04-06T14:00:38.2579760Z #9 CACHED +2026-04-06T14:00:38.2579952Z +2026-04-06T14:00:38.2580145Z #10 [frontend 1/6] FROM docker.io/library/node:22-alpine@sha256:4d64b49e6c891c8fc821007cb1cdc6c0db7773110ac2c34bf2e6960adef62ed3 +2026-04-06T14:00:38.2580400Z #10 resolve docker.io/library/node:22-alpine@sha256:4d64b49e6c891c8fc821007cb1cdc6c0db7773110ac2c34bf2e6960adef62ed3 0.1s done +2026-04-06T14:00:38.2580642Z #10 DONE 0.1s +2026-04-06T14:00:38.2580820Z +2026-04-06T14:00:38.2580993Z #11 [frontend 2/6] WORKDIR /ui +2026-04-06T14:00:38.2581202Z #11 CACHED +2026-04-06T14:00:38.2581396Z +2026-04-06T14:00:38.2581568Z #12 [build 1/8] FROM docker.io/library/eclipse-temurin:21-jdk-alpine@sha256:c98f0d2e171c898bf896dc4166815d28a56d428e218190a1f35cdc7d82efd61f +2026-04-06T14:00:38.2581838Z #12 resolve docker.io/library/eclipse-temurin:21-jdk-alpine@sha256:c98f0d2e171c898bf896dc4166815d28a56d428e218190a1f35cdc7d82efd61f 0.1s done +2026-04-06T14:00:38.2582327Z #12 DONE 0.1s +2026-04-06T14:00:38.2582519Z +2026-04-06T14:00:38.2582714Z #13 [build 2/8] WORKDIR /build +2026-04-06T14:00:38.2582894Z #13 CACHED +2026-04-06T14:00:38.2583056Z +2026-04-06T14:00:38.2583234Z #14 [internal] load build context +2026-04-06T14:00:38.3811022Z #14 transferring context: 526.47kB 0.1s done +2026-04-06T14:00:38.3811598Z #14 DONE 0.1s +2026-04-06T14:00:38.3811773Z +2026-04-06T14:00:38.3812001Z #15 [frontend 3/6] COPY ui/package.json ui/package-lock.json ui/.npmrc ./ +2026-04-06T14:00:38.5016776Z #15 DONE 0.1s +2026-04-06T14:00:38.5017343Z +2026-04-06T14:00:38.5017708Z #16 [build 3/8] COPY .mvn/ .mvn/ +2026-04-06T14:00:38.5017929Z #16 DONE 0.1s +2026-04-06T14:00:38.5018074Z +2026-04-06T14:00:38.5018744Z #17 [build 4/8] COPY mvnw pom.xml ./ +2026-04-06T14:00:38.7479993Z #17 DONE 0.1s +2026-04-06T14:00:38.7480654Z +2026-04-06T14:00:38.7480863Z #18 [stage-2 3/4] RUN addgroup -S cameleer && adduser -S cameleer -G cameleer +2026-04-06T14:00:38.7481101Z #18 DONE 0.4s +2026-04-06T14:00:38.7481255Z +2026-04-06T14:00:38.7481389Z #19 [build 5/8] RUN ./mvnw dependency:go-offline -B || true +2026-04-06T14:00:42.6604422Z #19 3.912 [INFO] Scanning for projects... +2026-04-06T14:00:43.0750107Z #19 4.475 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-parent/3.4.3/spring-boot-starter-parent-3.4.3.pom +2026-04-06T14:00:43.8584684Z #19 5.260 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-parent/3.4.3/spring-boot-starter-parent-3.4.3.pom (13 kB at 17 kB/s) +2026-04-06T14:00:43.9904663Z #19 5.308 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-dependencies/3.4.3/spring-boot-dependencies-3.4.3.pom +2026-04-06T14:00:43.9905401Z #19 5.393 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-dependencies/3.4.3/spring-boot-dependencies-3.4.3.pom (97 kB at 1.1 MB/s) +2026-04-06T14:00:44.1890137Z #19 5.591 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/activemq/activemq-bom/6.1.5/activemq-bom-6.1.5.pom +2026-04-06T14:00:44.2919784Z #19 5.633 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/activemq/activemq-bom/6.1.5/activemq-bom-6.1.5.pom (7.9 kB at 188 kB/s) +2026-04-06T14:00:44.2920520Z #19 5.652 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/activemq/artemis-bom/2.37.0/artemis-bom-2.37.0.pom +2026-04-06T14:00:44.2920888Z #19 5.694 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/activemq/artemis-bom/2.37.0/artemis-bom-2.37.0.pom (9.6 kB at 229 kB/s) +2026-04-06T14:00:44.4022652Z #19 5.709 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/activemq/artemis-project/2.37.0/artemis-project-2.37.0.pom +2026-04-06T14:00:44.4023586Z #19 5.777 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/activemq/artemis-project/2.37.0/artemis-project-2.37.0.pom (57 kB at 854 kB/s) +2026-04-06T14:00:44.4023879Z #19 5.804 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/33/apache-33.pom +2026-04-06T14:00:44.5145132Z #19 5.844 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/33/apache-33.pom (24 kB at 636 kB/s) +2026-04-06T14:00:44.5145800Z #19 5.864 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-bom/3.26.3/assertj-bom-3.26.3.pom +2026-04-06T14:00:44.5146047Z #19 5.901 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-bom/3.26.3/assertj-bom-3.26.3.pom (3.7 kB at 97 kB/s) +2026-04-06T14:00:44.5146263Z #19 5.917 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/zipkin/reporter2/zipkin-reporter-bom/3.4.3/zipkin-reporter-bom-3.4.3.pom +2026-04-06T14:00:44.6161159Z #19 5.955 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/zipkin/reporter2/zipkin-reporter-bom/3.4.3/zipkin-reporter-bom-3.4.3.pom (6.4 kB at 168 kB/s) +2026-04-06T14:00:44.6164199Z #19 5.969 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/zipkin/brave/brave-bom/6.0.3/brave-bom-6.0.3.pom +2026-04-06T14:00:44.6164504Z #19 6.006 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/zipkin/brave/brave-bom/6.0.3/brave-bom-6.0.3.pom (11 kB at 297 kB/s) +2026-04-06T14:00:44.6164866Z #19 6.018 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/cassandra/java-driver-bom/4.18.1/java-driver-bom-4.18.1.pom +2026-04-06T14:00:44.7267067Z #19 6.053 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/cassandra/java-driver-bom/4.18.1/java-driver-bom-4.18.1.pom (5.5 kB at 156 kB/s) +2026-04-06T14:00:44.7268324Z #19 6.061 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom +2026-04-06T14:00:44.7268663Z #19 6.093 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-bom/4.0.5/jaxb-bom-4.0.5.pom (12 kB at 353 kB/s) +2026-04-06T14:00:44.7269283Z #19 6.098 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom +2026-04-06T14:00:44.7271292Z #19 6.129 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.9/project-1.0.9.pom (16 kB at 520 kB/s) +2026-04-06T14:00:44.8617924Z #19 6.139 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/groovy/groovy-bom/4.0.25/groovy-bom-4.0.25.pom +2026-04-06T14:00:44.8618681Z #19 6.169 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/groovy/groovy-bom/4.0.25/groovy-bom-4.0.25.pom (27 kB at 909 kB/s) +2026-04-06T14:00:44.8619234Z #19 6.184 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/15.0.13.Final/infinispan-bom-15.0.13.Final.pom +2026-04-06T14:00:44.8619585Z #19 6.219 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/15.0.13.Final/infinispan-bom-15.0.13.Final.pom (18 kB at 520 kB/s) +2026-04-06T14:00:44.8620769Z #19 6.227 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/15.0.13.Final/infinispan-build-configuration-parent-15.0.13.Final.pom +2026-04-06T14:00:44.8621068Z #19 6.264 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/15.0.13.Final/infinispan-build-configuration-parent-15.0.13.Final.pom (19 kB at 540 kB/s) +2026-04-06T14:00:44.9671265Z #19 6.273 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/43/jboss-parent-43.pom +2026-04-06T14:00:44.9672178Z #19 6.308 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/43/jboss-parent-43.pom (75 kB at 2.2 MB/s) +2026-04-06T14:00:44.9672531Z #19 6.334 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.18.2/jackson-bom-2.18.2.pom +2026-04-06T14:00:44.9673037Z #19 6.369 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.18.2/jackson-bom-2.18.2.pom (19 kB at 534 kB/s) +2026-04-06T14:00:45.1007346Z #19 6.378 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.18.1/jackson-parent-2.18.1.pom +2026-04-06T14:00:45.1007939Z #19 6.406 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.18.1/jackson-parent-2.18.1.pom (6.7 kB at 248 kB/s) +2026-04-06T14:00:45.1008247Z #19 6.411 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/61/oss-parent-61.pom +2026-04-06T14:00:45.1008453Z #19 6.443 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/61/oss-parent-61.pom (23 kB at 753 kB/s) +2026-04-06T14:00:45.1008658Z #19 6.464 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jersey/jersey-bom/3.1.10/jersey-bom-3.1.10.pom +2026-04-06T14:00:45.2033443Z #19 6.502 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jersey/jersey-bom/3.1.10/jersey-bom-3.1.10.pom (21 kB at 547 kB/s) +2026-04-06T14:00:45.2034711Z #19 6.516 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.16/jetty-ee10-bom-12.0.16.pom +2026-04-06T14:00:45.2035114Z #19 6.549 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.16/jetty-ee10-bom-12.0.16.pom (9.6 kB at 289 kB/s) +2026-04-06T14:00:45.2035674Z #19 6.563 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-bom/12.0.16/jetty-bom-12.0.16.pom +2026-04-06T14:00:45.2035868Z #19 6.596 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-bom/12.0.16/jetty-bom-12.0.16.pom (14 kB at 466 kB/s) +2026-04-06T14:00:45.2036055Z #19 6.606 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.11.4/junit-bom-5.11.4.pom +2026-04-06T14:00:45.3252054Z #19 6.637 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.11.4/junit-bom-5.11.4.pom (5.6 kB at 177 kB/s) +2026-04-06T14:00:45.3253274Z #19 6.645 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.9.25/kotlin-bom-1.9.25.pom +2026-04-06T14:00:45.3254177Z #19 6.681 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.9.25/kotlin-bom-1.9.25.pom (9.1 kB at 253 kB/s) +2026-04-06T14:00:45.3254450Z #19 6.690 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.8.1/kotlinx-coroutines-bom-1.8.1.pom +2026-04-06T14:00:45.3254792Z #19 6.727 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.8.1/kotlinx-coroutines-bom-1.8.1.pom (4.3 kB at 113 kB/s) +2026-04-06T14:00:45.4394337Z #19 6.734 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom +2026-04-06T14:00:45.4395033Z #19 6.763 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-serialization-bom/1.6.3/kotlinx-serialization-bom-1.6.3.pom (3.7 kB at 131 kB/s) +2026-04-06T14:00:45.4395315Z #19 6.769 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-bom/2.24.3/log4j-bom-2.24.3.pom +2026-04-06T14:00:45.4395529Z #19 6.802 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-bom/2.24.3/log4j-bom-2.24.3.pom (12 kB at 395 kB/s) +2026-04-06T14:00:45.4395732Z #19 6.805 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/11.3.0/logging-parent-11.3.0.pom +2026-04-06T14:00:45.4395948Z #19 6.840 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/11.3.0/logging-parent-11.3.0.pom (53 kB at 1.5 MB/s) +2026-04-06T14:00:45.5592723Z #19 6.856 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-bom/1.14.4/micrometer-bom-1.14.4.pom +2026-04-06T14:00:45.5593570Z #19 6.884 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-bom/1.14.4/micrometer-bom-1.14.4.pom (8.6 kB at 296 kB/s) +2026-04-06T14:00:45.5594963Z #19 6.891 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-tracing-bom/1.4.3/micrometer-tracing-bom-1.4.3.pom +2026-04-06T14:00:45.5595287Z #19 6.921 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-tracing-bom/1.4.3/micrometer-tracing-bom-1.4.3.pom (4.5 kB at 150 kB/s) +2026-04-06T14:00:45.5595786Z #19 6.927 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-bom/5.14.2/mockito-bom-5.14.2.pom +2026-04-06T14:00:45.5595973Z #19 6.961 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-bom/5.14.2/mockito-bom-5.14.2.pom (3.0 kB at 87 kB/s) +2026-04-06T14:00:45.6634091Z #19 6.967 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.118.Final/netty-bom-4.1.118.Final.pom +2026-04-06T14:00:45.6635099Z #19 6.998 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.118.Final/netty-bom-4.1.118.Final.pom (14 kB at 429 kB/s) +2026-04-06T14:00:45.6636722Z #19 7.004 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom +2026-04-06T14:00:45.6637379Z #19 7.029 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 193 kB/s) +2026-04-06T14:00:45.6637707Z #19 7.036 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-bom/1.43.0/opentelemetry-bom-1.43.0.pom +2026-04-06T14:00:45.7707959Z #19 7.066 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-bom/1.43.0/opentelemetry-bom-1.43.0.pom (5.9 kB at 196 kB/s) +2026-04-06T14:00:45.7709570Z #19 7.075 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/prometheus-metrics-bom/1.3.6/prometheus-metrics-bom-1.3.6.pom +2026-04-06T14:00:45.7709916Z #19 7.103 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/prometheus-metrics-bom/1.3.6/prometheus-metrics-bom-1.3.6.pom (5.8 kB at 214 kB/s) +2026-04-06T14:00:45.7710227Z #19 7.108 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/client_java/1.3.6/client_java-1.3.6.pom +2026-04-06T14:00:45.7710454Z #19 7.135 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/client_java/1.3.6/client_java-1.3.6.pom (22 kB at 810 kB/s) +2026-04-06T14:00:45.7710638Z #19 7.144 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom +2026-04-06T14:00:45.8757592Z #19 7.173 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_bom/0.16.0/simpleclient_bom-0.16.0.pom (6.0 kB at 207 kB/s) +2026-04-06T14:00:45.8758543Z #19 7.179 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/parent/0.16.0/parent-0.16.0.pom +2026-04-06T14:00:45.8758790Z #19 7.207 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/parent/0.16.0/parent-0.16.0.pom (13 kB at 447 kB/s) +2026-04-06T14:00:45.8759040Z #19 7.215 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/pulsar/pulsar-bom/3.3.4/pulsar-bom-3.3.4.pom +2026-04-06T14:00:45.8759292Z #19 7.242 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/pulsar/pulsar-bom/3.3.4/pulsar-bom-3.3.4.pom (26 kB at 920 kB/s) +2026-04-06T14:00:45.8759539Z #19 7.247 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom +2026-04-06T14:00:45.8759750Z #19 7.278 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom (21 kB at 767 kB/s) +2026-04-06T14:00:45.9812247Z #19 7.285 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/querydsl/querydsl-bom/5.1.0/querydsl-bom-5.1.0.pom +2026-04-06T14:00:45.9812965Z #19 7.316 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/querydsl/querydsl-bom/5.1.0/querydsl-bom-5.1.0.pom (7.2 kB at 231 kB/s) +2026-04-06T14:00:45.9813331Z #19 7.333 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/projectreactor/reactor-bom/2024.0.3/reactor-bom-2024.0.3.pom +2026-04-06T14:00:45.9813614Z #19 7.366 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/projectreactor/reactor-bom/2024.0.3/reactor-bom-2024.0.3.pom (4.8 kB at 149 kB/s) +2026-04-06T14:00:46.0950613Z #19 7.384 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/rest-assured/rest-assured-bom/5.5.1/rest-assured-bom-5.5.1.pom +2026-04-06T14:00:46.0951377Z #19 7.417 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/rest-assured/rest-assured-bom/5.5.1/rest-assured-bom-5.5.1.pom (5.0 kB at 152 kB/s) +2026-04-06T14:00:46.0951650Z #19 7.425 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-bom/1.1.5/rsocket-bom-1.1.5.pom +2026-04-06T14:00:46.0951871Z #19 7.458 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-bom/1.1.5/rsocket-bom-1.1.5.pom (2.4 kB at 74 kB/s) +2026-04-06T14:00:46.0952063Z #19 7.464 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-bom/4.25.0/selenium-bom-4.25.0.pom +2026-04-06T14:00:46.0952269Z #19 7.497 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-bom/4.25.0/selenium-bom-4.25.0.pom (6.0 kB at 183 kB/s) +2026-04-06T14:00:46.2078322Z #19 7.502 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/amqp/spring-amqp-bom/3.2.3/spring-amqp-bom-3.2.3.pom +2026-04-06T14:00:46.2078945Z #19 7.535 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/amqp/spring-amqp-bom/3.2.3/spring-amqp-bom-3.2.3.pom (3.9 kB at 117 kB/s) +2026-04-06T14:00:46.2079166Z #19 7.540 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/batch/spring-batch-bom/5.2.1/spring-batch-bom-5.2.1.pom +2026-04-06T14:00:46.2079352Z #19 7.570 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/batch/spring-batch-bom/5.2.1/spring-batch-bom-5.2.1.pom (3.2 kB at 108 kB/s) +2026-04-06T14:00:46.2079631Z #19 7.578 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-bom/2024.1.3/spring-data-bom-2024.1.3.pom +2026-04-06T14:00:46.2079822Z #19 7.610 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-bom/2024.1.3/spring-data-bom-2024.1.3.pom (5.5 kB at 184 kB/s) +2026-04-06T14:00:46.3139732Z #19 7.612 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/6.2.3/spring-framework-bom-6.2.3.pom +2026-04-06T14:00:46.3140416Z #19 7.642 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/6.2.3/spring-framework-bom-6.2.3.pom (5.8 kB at 208 kB/s) +2026-04-06T14:00:46.3140689Z #19 7.646 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/integration/spring-integration-bom/6.4.2/spring-integration-bom-6.4.2.pom +2026-04-06T14:00:46.3140974Z #19 7.675 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/integration/spring-integration-bom/6.4.2/spring-integration-bom-6.4.2.pom (10 kB at 343 kB/s) +2026-04-06T14:00:46.3141187Z #19 7.681 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/pulsar/spring-pulsar-bom/1.2.3/spring-pulsar-bom-1.2.3.pom +2026-04-06T14:00:46.3141393Z #19 7.710 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/pulsar/spring-pulsar-bom/1.2.3/spring-pulsar-bom-1.2.3.pom (2.9 kB at 101 kB/s) +2026-04-06T14:00:46.3141600Z #19 7.715 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/restdocs/spring-restdocs-bom/3.0.3/spring-restdocs-bom-3.0.3.pom +2026-04-06T14:00:46.4171128Z #19 7.744 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/restdocs/spring-restdocs-bom/3.0.3/spring-restdocs-bom-3.0.3.pom (2.6 kB at 86 kB/s) +2026-04-06T14:00:46.4172583Z #19 7.751 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-bom/6.4.3/spring-security-bom-6.4.3.pom +2026-04-06T14:00:46.4173073Z #19 7.786 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-bom/6.4.3/spring-security-bom-6.4.3.pom (5.3 kB at 152 kB/s) +2026-04-06T14:00:46.4173302Z #19 7.791 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/session/spring-session-bom/3.4.2/spring-session-bom-3.4.2.pom +2026-04-06T14:00:46.4173715Z #19 7.819 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/session/spring-session-bom/3.4.2/spring-session-bom-3.4.2.pom (2.9 kB at 103 kB/s) +2026-04-06T14:00:46.5295025Z #19 7.824 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/ws/spring-ws-bom/4.0.11/spring-ws-bom-4.0.11.pom +2026-04-06T14:00:46.5295738Z #19 7.851 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/ws/spring-ws-bom/4.0.11/spring-ws-bom-4.0.11.pom (3.5 kB at 130 kB/s) +2026-04-06T14:00:46.5296018Z #19 7.856 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.21.4/testcontainers-bom-1.21.4.pom +2026-04-06T14:00:46.5296366Z #19 7.885 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.21.4/testcontainers-bom-1.21.4.pom (12 kB at 385 kB/s) +2026-04-06T14:00:46.5296703Z #19 7.905 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.20.5/testcontainers-bom-1.20.5.pom +2026-04-06T14:00:46.5296913Z #19 7.932 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.20.5/testcontainers-bom-1.20.5.pom (12 kB at 428 kB/s) +2026-04-06T14:00:46.6583028Z #19 ... +2026-04-06T14:00:46.6583660Z +2026-04-06T14:00:46.6583894Z #20 [frontend 4/6] RUN echo "//gitea.siegeln.net/api/packages/cameleer/npm/:_authToken=***" >> .npmrc && npm ci +2026-04-06T14:00:46.6584248Z #20 7.599 +2026-04-06T14:00:46.6584432Z #20 7.599 added 90 packages, and audited 91 packages in 7s +2026-04-06T14:00:46.6584661Z #20 7.600 +2026-04-06T14:00:46.6584813Z #20 7.600 18 packages are looking for funding +2026-04-06T14:00:46.6585104Z #20 7.600 run `npm fund` for details +2026-04-06T14:00:46.6585302Z #20 7.602 +2026-04-06T14:00:46.6585492Z #20 7.602 found 0 vulnerabilities +2026-04-06T14:00:46.6585649Z #20 7.604 npm notice +2026-04-06T14:00:46.6585789Z #20 7.604 npm notice New major version of npm available! 10.9.7 -> 11.12.1 +2026-04-06T14:00:46.6585985Z #20 7.604 npm notice Changelog: https://github.com/npm/cli/releases/tag/v11.12.1 +2026-04-06T14:00:46.6586155Z #20 7.604 npm notice To update run: npm install -g npm@11.12.1 +2026-04-06T14:00:46.6586303Z #20 7.604 npm notice +2026-04-06T14:00:46.6586429Z #20 DONE 8.1s +2026-04-06T14:00:46.6586549Z +2026-04-06T14:00:46.6586704Z #19 [build 5/8] RUN ./mvnw dependency:go-offline -B || true +2026-04-06T14:00:46.6586857Z #19 7.977 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/3.4.3/spring-boot-maven-plugin-3.4.3.pom +2026-04-06T14:00:46.6587076Z #19 8.006 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/3.4.3/spring-boot-maven-plugin-3.4.3.pom (4.0 kB at 138 kB/s) +2026-04-06T14:00:46.6587362Z #19 8.026 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/3.4.3/spring-boot-maven-plugin-3.4.3.jar +2026-04-06T14:00:46.6587557Z #19 8.059 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/3.4.3/spring-boot-maven-plugin-3.4.3.jar (137 kB at 4.3 MB/s) +2026-04-06T14:00:46.6587738Z #19 ... +2026-04-06T14:00:46.6587858Z +2026-04-06T14:00:46.6587980Z #21 [frontend 5/6] COPY ui/ . +2026-04-06T14:00:46.7587529Z #21 DONE 0.1s +2026-04-06T14:00:46.7589804Z +2026-04-06T14:00:46.7631952Z #19 [build 5/8] RUN ./mvnw dependency:go-offline -B || true +2026-04-06T14:00:46.7632787Z #19 8.075 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.4.1/maven-clean-plugin-3.4.1.pom +2026-04-06T14:00:46.7633501Z #19 8.108 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.4.1/maven-clean-plugin-3.4.1.pom (5.6 kB at 165 kB/s) +2026-04-06T14:00:46.7633803Z #19 8.114 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/43/maven-plugins-43.pom +2026-04-06T14:00:46.7634067Z #19 8.144 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/43/maven-plugins-43.pom (7.5 kB at 249 kB/s) +2026-04-06T14:00:46.7634292Z #19 8.149 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/43/maven-parent-43.pom +2026-04-06T14:00:46.8676243Z #19 8.183 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/43/maven-parent-43.pom (50 kB at 1.5 MB/s) +2026-04-06T14:00:46.8692590Z #19 8.194 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.10.3/junit-bom-5.10.3.pom +2026-04-06T14:00:46.8693318Z #19 8.222 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.10.3/junit-bom-5.10.3.pom (5.6 kB at 202 kB/s) +2026-04-06T14:00:46.8693648Z #19 8.230 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.4.1/maven-clean-plugin-3.4.1.jar +2026-04-06T14:00:46.8694050Z #19 8.266 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.4.1/maven-clean-plugin-3.4.1.jar (36 kB at 1.1 MB/s) +2026-04-06T14:00:46.9811921Z #19 8.277 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom +2026-04-06T14:00:46.9812594Z #19 8.312 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom (8.2 kB at 240 kB/s) +2026-04-06T14:00:46.9812940Z #19 8.319 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom +2026-04-06T14:00:46.9813155Z #19 8.348 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (8.1 kB at 270 kB/s) +2026-04-06T14:00:46.9813359Z #19 8.357 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom +2026-04-06T14:00:46.9813544Z #19 8.384 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom (48 kB at 1.7 MB/s) +2026-04-06T14:00:47.0917260Z #19 8.399 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar +2026-04-06T14:00:47.0918292Z #19 8.423 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar (31 kB at 1.1 MB/s) +2026-04-06T14:00:47.0918621Z #19 8.431 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.pom +2026-04-06T14:00:47.0918908Z #19 8.458 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.pom (7.7 kB at 285 kB/s) +2026-04-06T14:00:47.0919195Z #19 8.464 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/42/maven-plugins-42.pom +2026-04-06T14:00:47.0919466Z #19 8.494 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/42/maven-plugins-42.pom (7.7 kB at 285 kB/s) +2026-04-06T14:00:47.1980204Z #19 8.496 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/42/maven-parent-42.pom +2026-04-06T14:00:47.1981195Z #19 8.526 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/42/maven-parent-42.pom (50 kB at 1.6 MB/s) +2026-04-06T14:00:47.1981560Z #19 8.535 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/32/apache-32.pom +2026-04-06T14:00:47.1981756Z #19 8.562 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/32/apache-32.pom (24 kB at 896 kB/s) +2026-04-06T14:00:47.1981968Z #19 8.575 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom +2026-04-06T14:00:47.1982152Z #19 8.600 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.10.2/junit-bom-5.10.2.pom (5.6 kB at 217 kB/s) +2026-04-06T14:00:47.2994424Z #19 8.606 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.jar +2026-04-06T14:00:47.2995074Z #19 8.633 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.4.2/maven-jar-plugin-3.4.2.jar (34 kB at 1.3 MB/s) +2026-04-06T14:00:47.2995437Z #19 8.640 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.13.0/maven-compiler-plugin-3.13.0.pom +2026-04-06T14:00:47.2995683Z #19 8.670 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.13.0/maven-compiler-plugin-3.13.0.pom (10 kB at 348 kB/s) +2026-04-06T14:00:47.2995934Z #19 8.676 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/41/maven-plugins-41.pom +2026-04-06T14:00:47.2996150Z #19 8.702 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/41/maven-plugins-41.pom (7.4 kB at 283 kB/s) +2026-04-06T14:00:47.4081791Z #19 8.707 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/41/maven-parent-41.pom +2026-04-06T14:00:47.4082830Z #19 8.742 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/41/maven-parent-41.pom (50 kB at 1.6 MB/s) +2026-04-06T14:00:47.4083431Z #19 8.745 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/31/apache-31.pom +2026-04-06T14:00:47.4083964Z #19 8.778 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/31/apache-31.pom (24 kB at 784 kB/s) +2026-04-06T14:00:47.4084864Z #19 8.784 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.13.0/maven-compiler-plugin-3.13.0.jar +2026-04-06T14:00:47.4085149Z #19 8.811 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.13.0/maven-compiler-plugin-3.13.0.jar (83 kB at 3.1 MB/s) +2026-04-06T14:00:47.5191909Z #19 8.819 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/3.5.2/maven-surefire-plugin-3.5.2.pom +2026-04-06T14:00:47.5196221Z #19 8.849 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/3.5.2/maven-surefire-plugin-3.5.2.pom (5.7 kB at 190 kB/s) +2026-04-06T14:00:47.5196695Z #19 8.863 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/3.5.2/surefire-3.5.2.pom +2026-04-06T14:00:47.5196942Z #19 8.897 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/3.5.2/surefire-3.5.2.pom (20 kB at 576 kB/s) +2026-04-06T14:00:47.5197208Z #19 8.921 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/3.5.2/maven-surefire-plugin-3.5.2.jar +2026-04-06T14:00:47.6229827Z #19 8.966 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/3.5.2/maven-surefire-plugin-3.5.2.jar (46 kB at 1.1 MB/s) +2026-04-06T14:00:47.6230757Z #19 8.977 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/3.1.3/maven-install-plugin-3.1.3.pom +2026-04-06T14:00:47.6231083Z #19 9.011 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/3.1.3/maven-install-plugin-3.1.3.pom (8.1 kB at 245 kB/s) +2026-04-06T14:00:47.6231351Z #19 9.025 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/3.1.3/maven-install-plugin-3.1.3.jar +2026-04-06T14:00:47.7486478Z #19 9.056 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/3.1.3/maven-install-plugin-3.1.3.jar (33 kB at 1.1 MB/s) +2026-04-06T14:00:47.7487724Z #19 9.065 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/3.1.3/maven-deploy-plugin-3.1.3.pom +2026-04-06T14:00:47.7488632Z #19 9.105 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/3.1.3/maven-deploy-plugin-3.1.3.pom (9.2 kB at 230 kB/s) +2026-04-06T14:00:47.7488895Z #19 9.123 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/3.1.3/maven-deploy-plugin-3.1.3.jar +2026-04-06T14:00:47.7489118Z #19 9.151 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/3.1.3/maven-deploy-plugin-3.1.3.jar (40 kB at 1.4 MB/s) +2026-04-06T14:00:47.8674946Z #19 9.158 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-site-plugin/3.12.1/maven-site-plugin-3.12.1.pom +2026-04-06T14:00:47.8675683Z #19 9.199 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-site-plugin/3.12.1/maven-site-plugin-3.12.1.pom (20 kB at 485 kB/s) +2026-04-06T14:00:47.8676637Z #19 9.203 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/36/maven-plugins-36.pom +2026-04-06T14:00:47.8676919Z #19 9.231 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/36/maven-plugins-36.pom (9.9 kB at 341 kB/s) +2026-04-06T14:00:47.8677126Z #19 9.236 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/36/maven-parent-36.pom +2026-04-06T14:00:47.8677330Z #19 9.270 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/36/maven-parent-36.pom (45 kB at 1.3 MB/s) +2026-04-06T14:00:47.9910166Z #19 9.276 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/26/apache-26.pom +2026-04-06T14:00:47.9910872Z #19 9.303 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/26/apache-26.pom (21 kB at 734 kB/s) +2026-04-06T14:00:47.9911141Z #19 9.322 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-site-plugin/3.12.1/maven-site-plugin-3.12.1.jar +2026-04-06T14:00:47.9911380Z #19 9.360 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-site-plugin/3.12.1/maven-site-plugin-3.12.1.jar (119 kB at 3.1 MB/s) +2026-04-06T14:00:47.9911626Z #19 9.388 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/3.6.0/build-helper-maven-plugin-3.6.0.pom +2026-04-06T14:00:48.1058490Z #19 9.431 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/3.6.0/build-helper-maven-plugin-3.6.0.pom (8.1 kB at 193 kB/s) +2026-04-06T14:00:48.1059190Z #19 9.463 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/82/mojo-parent-82.pom +2026-04-06T14:00:48.1059504Z #19 9.508 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/82/mojo-parent-82.pom (36 kB at 816 kB/s) +2026-04-06T14:00:48.2247005Z #19 9.526 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/3.6.0/build-helper-maven-plugin-3.6.0.jar +2026-04-06T14:00:48.2247900Z #19 9.561 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/3.6.0/build-helper-maven-plugin-3.6.0.jar (72 kB at 2.1 MB/s) +2026-04-06T14:00:48.2248234Z #19 9.584 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/cyclonedx/cyclonedx-maven-plugin/2.9.1/cyclonedx-maven-plugin-2.9.1.pom +2026-04-06T14:00:48.2248483Z #19 9.627 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/cyclonedx/cyclonedx-maven-plugin/2.9.1/cyclonedx-maven-plugin-2.9.1.pom (19 kB at 443 kB/s) +2026-04-06T14:00:48.3349961Z #19 9.643 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.11.2/junit-bom-5.11.2.pom +2026-04-06T14:00:48.3350766Z #19 9.680 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.11.2/junit-bom-5.11.2.pom (5.6 kB at 171 kB/s) +2026-04-06T14:00:48.3351002Z #19 9.691 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/cyclonedx/cyclonedx-maven-plugin/2.9.1/cyclonedx-maven-plugin-2.9.1.jar +2026-04-06T14:00:48.3351216Z #19 9.735 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/cyclonedx/cyclonedx-maven-plugin/2.9.1/cyclonedx-maven-plugin-2.9.1.jar (52 kB at 1.2 MB/s) +2026-04-06T14:00:48.4640550Z #19 9.756 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-maven-plugin/10.20.1/flyway-maven-plugin-10.20.1.pom +2026-04-06T14:00:48.4641369Z #19 9.785 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-maven-plugin/10.20.1/flyway-maven-plugin-10.20.1.pom (3.8 kB at 130 kB/s) +2026-04-06T14:00:48.4641683Z #19 9.795 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-parent/10.20.1/flyway-parent-10.20.1.pom +2026-04-06T14:00:48.4641932Z #19 9.866 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-parent/10.20.1/flyway-parent-10.20.1.pom (36 kB at 515 kB/s) +2026-04-06T14:00:48.5849208Z #19 9.883 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-maven-plugin/10.20.1/flyway-maven-plugin-10.20.1.jar +2026-04-06T14:00:48.5849958Z #19 9.925 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-maven-plugin/10.20.1/flyway-maven-plugin-10.20.1.jar (110 kB at 2.6 MB/s) +2026-04-06T14:00:48.5850214Z #19 9.952 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/github/git-commit-id/git-commit-id-maven-plugin/9.0.1/git-commit-id-maven-plugin-9.0.1.pom +2026-04-06T14:00:48.6941756Z #19 9.987 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/github/git-commit-id/git-commit-id-maven-plugin/9.0.1/git-commit-id-maven-plugin-9.0.1.pom (28 kB at 787 kB/s) +2026-04-06T14:00:48.6942594Z #19 9.994 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom +2026-04-06T14:00:48.6942892Z #19 10.02 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 227 kB/s) +2026-04-06T14:00:48.6943320Z #19 10.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/github/git-commit-id/git-commit-id-maven-plugin/9.0.1/git-commit-id-maven-plugin-9.0.1.jar +2026-04-06T14:00:48.6943549Z #19 10.06 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/github/git-commit-id/git-commit-id-maven-plugin/9.0.1/git-commit-id-maven-plugin-9.0.1.jar (55 kB at 2.1 MB/s) +2026-04-06T14:00:48.6943785Z #19 10.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen-maven/3.19.19/jooq-codegen-maven-3.19.19.pom +2026-04-06T14:00:48.8040426Z #19 10.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen-maven/3.19.19/jooq-codegen-maven-3.19.19.pom (3.8 kB at 118 kB/s) +2026-04-06T14:00:48.8041235Z #19 10.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-parent/3.19.19/jooq-parent-3.19.19.pom +2026-04-06T14:00:48.8041556Z #19 10.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-parent/3.19.19/jooq-parent-3.19.19.pom (40 kB at 1.3 MB/s) +2026-04-06T14:00:48.8041768Z #19 10.14 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen-maven/3.19.19/jooq-codegen-maven-3.19.19.jar +2026-04-06T14:00:48.8041968Z #19 10.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen-maven/3.19.19/jooq-codegen-maven-3.19.19.jar (17 kB at 578 kB/s) +2026-04-06T14:00:48.8042167Z #19 10.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-maven-plugin/1.9.25/kotlin-maven-plugin-1.9.25.pom +2026-04-06T14:00:48.9220211Z #19 10.21 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-maven-plugin/1.9.25/kotlin-maven-plugin-1.9.25.pom (6.7 kB at 230 kB/s) +2026-04-06T14:00:48.9220983Z #19 10.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-project/1.9.25/kotlin-project-1.9.25.pom +2026-04-06T14:00:48.9221257Z #19 10.24 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-project/1.9.25/kotlin-project-1.9.25.pom (16 kB at 521 kB/s) +2026-04-06T14:00:48.9221474Z #19 10.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-maven-plugin/1.9.25/kotlin-maven-plugin-1.9.25.jar +2026-04-06T14:00:48.9221672Z #19 10.28 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-maven-plugin/1.9.25/kotlin-maven-plugin-1.9.25.jar (82 kB at 3.0 MB/s) +2026-04-06T14:00:48.9222074Z #19 10.29 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/liquibase/liquibase-maven-plugin/4.29.2/liquibase-maven-plugin-4.29.2.pom +2026-04-06T14:00:49.0309906Z #19 10.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/liquibase/liquibase-maven-plugin/4.29.2/liquibase-maven-plugin-4.29.2.pom (2.0 kB at 57 kB/s) +2026-04-06T14:00:49.0310621Z #19 10.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/liquibase/liquibase-maven-plugin/4.29.2/liquibase-maven-plugin-4.29.2.jar +2026-04-06T14:00:49.0311100Z #19 10.39 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/liquibase/liquibase-maven-plugin/4.29.2/liquibase-maven-plugin-4.29.2.jar (310 kB at 5.8 MB/s) +2026-04-06T14:00:49.0311464Z #19 10.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.pom +2026-04-06T14:00:49.1605075Z #19 10.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.pom (9.1 kB at 276 kB/s) +2026-04-06T14:00:49.1605991Z #19 10.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom +2026-04-06T14:00:49.2670238Z #19 10.56 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom (11 kB at 194 kB/s) +2026-04-06T14:00:49.2670935Z #19 10.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom +2026-04-06T14:00:49.2671260Z #19 10.67 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 595 kB/s) +2026-04-06T14:00:49.3950118Z #19 10.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom +2026-04-06T14:00:49.3950869Z #19 10.72 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (18 kB at 576 kB/s) +2026-04-06T14:00:49.3951222Z #19 10.76 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.jar +2026-04-06T14:00:49.3951480Z #19 10.80 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.jar (41 kB at 1.1 MB/s) +2026-04-06T14:00:49.5031393Z #19 10.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/3.7.1/maven-assembly-plugin-3.7.1.pom +2026-04-06T14:00:49.5032634Z #19 10.85 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/3.7.1/maven-assembly-plugin-3.7.1.pom (15 kB at 422 kB/s) +2026-04-06T14:00:49.5032880Z #19 10.86 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/3.7.1/maven-assembly-plugin-3.7.1.jar +2026-04-06T14:00:49.5033100Z #19 10.90 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/3.7.1/maven-assembly-plugin-3.7.1.jar (240 kB at 5.4 MB/s) +2026-04-06T14:00:49.6141963Z #19 10.92 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/3.8.1/maven-dependency-plugin-3.8.1.pom +2026-04-06T14:00:49.6142660Z #19 10.97 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/3.8.1/maven-dependency-plugin-3.8.1.pom (18 kB at 429 kB/s) +2026-04-06T14:00:49.6143074Z #19 10.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/3.8.1/maven-dependency-plugin-3.8.1.jar +2026-04-06T14:00:49.6143327Z #19 11.02 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/3.8.1/maven-dependency-plugin-3.8.1.jar (208 kB at 5.9 MB/s) +2026-04-06T14:00:49.7161090Z #19 11.05 [INFO] +2026-04-06T14:00:49.7162802Z #19 11.05 [INFO] -----------------< net.siegeln.cameleer:cameleer-saas >----------------- +2026-04-06T14:00:49.7163209Z #19 11.05 [INFO] Building Cameleer SaaS Platform 0.1.0-SNAPSHOT +2026-04-06T14:00:49.7163407Z #19 11.05 [INFO] from pom.xml +2026-04-06T14:00:49.7163560Z #19 11.05 [INFO] --------------------------------[ jar ]--------------------------------- +2026-04-06T14:00:49.7163791Z #19 11.06 [INFO] +2026-04-06T14:00:49.7163964Z #19 11.06 [INFO] --- dependency:3.8.1:go-offline (***-cli) @ cameleer-saas --- +2026-04-06T14:00:49.7164203Z #19 11.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/2.0.0/doxia-sink-api-2.0.0.pom +2026-04-06T14:00:49.7164437Z #19 11.11 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/2.0.0/doxia-sink-api-2.0.0.pom (1.4 kB at 43 kB/s) +2026-04-06T14:00:49.7164663Z #19 11.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/2.0.0/doxia-2.0.0.pom +2026-04-06T14:00:49.8306204Z #19 11.15 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/2.0.0/doxia-2.0.0.pom (17 kB at 574 kB/s) +2026-04-06T14:00:49.8306974Z #19 11.16 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.11.1/junit-bom-5.11.1.pom +2026-04-06T14:00:49.8307319Z #19 11.19 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.11.1/junit-bom-5.11.1.pom (5.6 kB at 182 kB/s) +2026-04-06T14:00:49.8307557Z #19 11.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/4.0.0/maven-reporting-api-4.0.0.pom +2026-04-06T14:00:49.8307803Z #19 11.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/4.0.0/maven-reporting-api-4.0.0.pom (2.8 kB at 87 kB/s) +2026-04-06T14:00:49.9576580Z #19 11.24 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/43/maven-shared-components-43.pom +2026-04-06T14:00:49.9577376Z #19 11.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/43/maven-shared-components-43.pom (3.8 kB at 122 kB/s) +2026-04-06T14:00:49.9578282Z #19 11.28 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/4.0.0/maven-reporting-impl-4.0.0.pom +2026-04-06T14:00:49.9579640Z #19 11.31 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/4.0.0/maven-reporting-impl-4.0.0.pom (8.8 kB at 292 kB/s) +2026-04-06T14:00:49.9580247Z #19 11.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.pom +2026-04-06T14:00:49.9580568Z #19 11.36 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.pom (5.9 kB at 197 kB/s) +2026-04-06T14:00:50.0655336Z #19 11.38 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom +2026-04-06T14:00:50.0656870Z #19 11.41 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom (3.2 kB at 107 kB/s) +2026-04-06T14:00:50.0658362Z #19 11.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom +2026-04-06T14:00:50.0658749Z #19 11.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 83 kB/s) +2026-04-06T14:00:50.1879504Z #19 11.49 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom +2026-04-06T14:00:50.1880951Z #19 11.53 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 313 kB/s) +2026-04-06T14:00:50.1882235Z #19 11.55 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom +2026-04-06T14:00:50.1882496Z #19 11.59 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom (20 kB at 493 kB/s) +2026-04-06T14:00:50.2938306Z #19 11.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom +2026-04-06T14:00:50.2940113Z #19 11.64 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 1.9 MB/s) +2026-04-06T14:00:50.2940668Z #19 11.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom +2026-04-06T14:00:50.2940920Z #19 11.69 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 182 kB/s) +2026-04-06T14:00:50.4172949Z #19 11.70 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-model/2.0.0/doxia-site-model-2.0.0.pom +2026-04-06T14:00:50.4175665Z #19 11.73 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-model/2.0.0/doxia-site-model-2.0.0.pom (5.8 kB at 182 kB/s) +2026-04-06T14:00:50.4176095Z #19 11.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/2.0.0/doxia-sitetools-2.0.0.pom +2026-04-06T14:00:50.4176332Z #19 11.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/2.0.0/doxia-sitetools-2.0.0.pom (12 kB at 386 kB/s) +2026-04-06T14:00:50.4176548Z #19 11.78 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.9.0.M3/org.eclipse.sisu.plexus-0.9.0.M3.pom +2026-04-06T14:00:50.4176800Z #19 11.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.9.0.M3/org.eclipse.sisu.plexus-0.9.0.M3.pom (17 kB at 460 kB/s) +2026-04-06T14:00:50.5415170Z #19 11.83 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.9.0.M3/sisu-inject-0.9.0.M3.pom +2026-04-06T14:00:50.5415877Z #19 11.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.9.0.M3/sisu-inject-0.9.0.M3.pom (24 kB at 758 kB/s) +2026-04-06T14:00:50.5416125Z #19 11.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.9.0.M3/org.eclipse.sisu.inject-0.9.0.M3.pom +2026-04-06T14:00:50.5416322Z #19 11.90 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.9.0.M3/org.eclipse.sisu.inject-0.9.0.M3.pom (20 kB at 594 kB/s) +2026-04-06T14:00:50.5416700Z #19 11.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom +2026-04-06T14:00:50.5416984Z #19 11.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 24 kB/s) +2026-04-06T14:00:50.6699237Z #19 11.95 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom +2026-04-06T14:00:50.6699921Z #19 11.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 166 kB/s) +2026-04-06T14:00:50.6700181Z #19 11.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom +2026-04-06T14:00:50.6701720Z #19 12.02 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 643 kB/s) +2026-04-06T14:00:50.6702156Z #19 12.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom +2026-04-06T14:00:50.6702395Z #19 12.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 240 kB/s) +2026-04-06T14:00:50.7917178Z #19 12.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.pom +2026-04-06T14:00:50.7917980Z #19 12.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.pom (7.8 kB at 280 kB/s) +2026-04-06T14:00:50.7918306Z #19 12.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/17/plexus-17.pom +2026-04-06T14:00:50.7918508Z #19 12.15 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/17/plexus-17.pom (28 kB at 854 kB/s) +2026-04-06T14:00:50.7918712Z #19 12.16 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.pom +2026-04-06T14:00:50.7918909Z #19 12.19 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.pom (3.7 kB at 112 kB/s) +2026-04-06T14:00:50.9162488Z #19 12.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/18/plexus-18.pom +2026-04-06T14:00:50.9163277Z #19 12.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/18/plexus-18.pom (29 kB at 943 kB/s) +2026-04-06T14:00:50.9163544Z #19 12.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom +2026-04-06T14:00:50.9163774Z #19 12.26 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 20 kB/s) +2026-04-06T14:00:50.9164017Z #19 12.28 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/2.0.0/doxia-core-2.0.0.pom +2026-04-06T14:00:50.9164460Z #19 12.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/2.0.0/doxia-core-2.0.0.pom (3.9 kB at 115 kB/s) +2026-04-06T14:00:51.0233296Z #19 12.35 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.17.0/commons-io-2.17.0.pom +2026-04-06T14:00:51.0234116Z #19 12.38 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.17.0/commons-io-2.17.0.pom (20 kB at 646 kB/s) +2026-04-06T14:00:51.0234678Z #19 12.38 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/74/commons-parent-74.pom +2026-04-06T14:00:51.0234917Z #19 12.42 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/74/commons-parent-74.pom (78 kB at 2.0 MB/s) +2026-04-06T14:00:51.1249343Z #19 12.46 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.11.0/junit-bom-5.11.0.pom +2026-04-06T14:00:51.1250279Z #19 12.49 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.11.0/junit-bom-5.11.0.pom (5.6 kB at 166 kB/s) +2026-04-06T14:00:51.1250741Z #19 12.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom +2026-04-06T14:00:51.1250973Z #19 12.53 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom (20 kB at 684 kB/s) +2026-04-06T14:00:51.2418388Z #19 12.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/69/commons-parent-69.pom +2026-04-06T14:00:51.2419035Z #19 12.57 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/69/commons-parent-69.pom (77 kB at 2.1 MB/s) +2026-04-06T14:00:51.2419361Z #19 12.61 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.pom +2026-04-06T14:00:51.2419593Z #19 12.64 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.pom (31 kB at 858 kB/s) +2026-04-06T14:00:51.3444347Z #19 12.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/64/commons-parent-64.pom +2026-04-06T14:00:51.3445433Z #19 12.69 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/64/commons-parent-64.pom (78 kB at 2.5 MB/s) +2026-04-06T14:00:51.3445704Z #19 12.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/30/apache-30.pom +2026-04-06T14:00:51.3445908Z #19 12.73 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/30/apache-30.pom (23 kB at 830 kB/s) +2026-04-06T14:00:51.3446114Z #19 12.75 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom +2026-04-06T14:00:51.4572620Z #19 12.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom (5.6 kB at 209 kB/s) +2026-04-06T14:00:51.4573390Z #19 12.78 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.pom +2026-04-06T14:00:51.4573629Z #19 12.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.pom (31 kB at 1.1 MB/s) +2026-04-06T14:00:51.4573871Z #19 12.82 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/73/commons-parent-73.pom +2026-04-06T14:00:51.4574060Z #19 12.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/73/commons-parent-73.pom (78 kB at 2.2 MB/s) +2026-04-06T14:00:51.5796747Z #19 12.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/2.0.0/doxia-integration-tools-2.0.0.pom +2026-04-06T14:00:51.5797575Z #19 12.90 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/2.0.0/doxia-integration-tools-2.0.0.pom (7.8 kB at 277 kB/s) +2026-04-06T14:00:51.5797969Z #19 12.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom +2026-04-06T14:00:51.5798212Z #19 12.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 65 kB/s) +2026-04-06T14:00:51.5798450Z #19 12.95 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom +2026-04-06T14:00:51.5798650Z #19 12.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 104 kB/s) +2026-04-06T14:00:51.6901336Z #19 12.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom +2026-04-06T14:00:51.6902111Z #19 13.01 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 330 kB/s) +2026-04-06T14:00:51.6902364Z #19 13.02 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.pom +2026-04-06T14:00:51.6902658Z #19 13.04 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.pom (3.0 kB at 112 kB/s) +2026-04-06T14:00:51.6902991Z #19 13.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/16/plexus-16.pom +2026-04-06T14:00:51.6903190Z #19 13.08 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/16/plexus-16.pom (28 kB at 953 kB/s) +2026-04-06T14:00:51.6903389Z #19 13.09 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom +2026-04-06T14:00:51.7980627Z #19 13.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom (5.6 kB at 161 kB/s) +2026-04-06T14:00:51.7981494Z #19 13.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/2.0.0/doxia-site-renderer-2.0.0.pom +2026-04-06T14:00:51.7982067Z #19 13.16 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/2.0.0/doxia-site-renderer-2.0.0.pom (7.4 kB at 224 kB/s) +2026-04-06T14:00:51.7982545Z #19 13.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/2.0.0/doxia-skin-model-2.0.0.pom +2026-04-06T14:00:51.7982843Z #19 13.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/2.0.0/doxia-skin-model-2.0.0.pom (3.0 kB at 101 kB/s) +2026-04-06T14:00:51.9254022Z #19 13.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/2.0.0/doxia-module-xhtml5-2.0.0.pom +2026-04-06T14:00:51.9255591Z #19 13.24 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/2.0.0/doxia-module-xhtml5-2.0.0.pom (2.9 kB at 83 kB/s) +2026-04-06T14:00:51.9255884Z #19 13.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/2.0.0/doxia-modules-2.0.0.pom +2026-04-06T14:00:51.9271238Z #19 13.28 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/2.0.0/doxia-modules-2.0.0.pom (2.5 kB at 76 kB/s) +2026-04-06T14:00:51.9272071Z #19 13.29 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/2.2.0/plexus-velocity-2.2.0.pom +2026-04-06T14:00:51.9272624Z #19 13.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/2.2.0/plexus-velocity-2.2.0.pom (4.1 kB at 131 kB/s) +2026-04-06T14:00:52.0315152Z #19 13.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/19/plexus-19.pom +2026-04-06T14:00:52.0316270Z #19 13.36 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/19/plexus-19.pom (25 kB at 819 kB/s) +2026-04-06T14:00:52.0316529Z #19 13.37 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.4/velocity-engine-core-2.4.pom +2026-04-06T14:00:52.0316740Z #19 13.40 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.4/velocity-engine-core-2.4.pom (12 kB at 399 kB/s) +2026-04-06T14:00:52.0316966Z #19 13.40 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-parent/2.4/velocity-engine-parent-2.4.pom +2026-04-06T14:00:52.0317160Z #19 13.43 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-parent/2.4/velocity-engine-parent-2.4.pom (9.5 kB at 307 kB/s) +2026-04-06T14:00:52.1535598Z #19 13.44 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-master/7/velocity-master-7.pom +2026-04-06T14:00:52.1536456Z #19 13.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-master/7/velocity-master-7.pom (7.9 kB at 264 kB/s) +2026-04-06T14:00:52.1536792Z #19 13.47 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/tools/velocity-tools-generic/3.1/velocity-tools-generic-3.1.pom +2026-04-06T14:00:52.1537015Z #19 13.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/tools/velocity-tools-generic/3.1/velocity-tools-generic-3.1.pom (2.6 kB at 71 kB/s) +2026-04-06T14:00:52.1537225Z #19 13.52 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/tools/velocity-tools-parent/3.1/velocity-tools-parent-3.1.pom +2026-04-06T14:00:52.1537419Z #19 13.56 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/tools/velocity-tools-parent/3.1/velocity-tools-parent-3.1.pom (8.0 kB at 229 kB/s) +2026-04-06T14:00:52.2628145Z #19 13.56 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-master/4/velocity-master-4.pom +2026-04-06T14:00:52.2628864Z #19 13.59 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-master/4/velocity-master-4.pom (7.8 kB at 243 kB/s) +2026-04-06T14:00:52.2631113Z #19 13.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom +2026-04-06T14:00:52.2631415Z #19 13.63 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom (10 kB at 361 kB/s) +2026-04-06T14:00:52.2631655Z #19 13.63 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom +2026-04-06T14:00:52.2631875Z #19 13.66 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom (14 kB at 446 kB/s) +2026-04-06T14:00:52.3729085Z #19 13.67 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.11/commons-lang3-3.11.pom +2026-04-06T14:00:52.3729819Z #19 13.70 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.11/commons-lang3-3.11.pom (30 kB at 1.0 MB/s) +2026-04-06T14:00:52.3730110Z #19 13.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom +2026-04-06T14:00:52.3730304Z #19 13.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom (78 kB at 2.4 MB/s) +2026-04-06T14:00:52.3730512Z #19 13.75 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom +2026-04-06T14:00:52.3730718Z #19 13.78 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom (3.8 kB at 148 kB/s) +2026-04-06T14:00:52.4967030Z #19 13.79 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom +2026-04-06T14:00:52.4967896Z #19 13.81 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom (14 kB at 460 kB/s) +2026-04-06T14:00:52.4968166Z #19 13.82 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom +2026-04-06T14:00:52.4968471Z #19 13.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 563 kB/s) +2026-04-06T14:00:52.4968708Z #19 13.86 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom +2026-04-06T14:00:52.4968965Z #19 13.90 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 2.2 MB/s) +2026-04-06T14:00:52.6235614Z #19 13.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom +2026-04-06T14:00:52.6236352Z #19 13.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (15 kB at 516 kB/s) +2026-04-06T14:00:52.6236601Z #19 13.95 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom +2026-04-06T14:00:52.6236874Z #19 13.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 582 kB/s) +2026-04-06T14:00:52.6270131Z #19 13.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom +2026-04-06T14:00:52.6270516Z #19 14.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 1.6 MB/s) +2026-04-06T14:00:52.7239463Z #19 14.04 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom +2026-04-06T14:00:52.7240437Z #19 14.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 kB at 399 kB/s) +2026-04-06T14:00:52.7240776Z #19 14.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom +2026-04-06T14:00:52.7241011Z #19 14.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 345 kB/s) +2026-04-06T14:00:52.8339012Z #19 14.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom +2026-04-06T14:00:52.8339817Z #19 14.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 1.5 MB/s) +2026-04-06T14:00:52.8340086Z #19 14.19 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom +2026-04-06T14:00:52.8340290Z #19 14.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (15 kB at 497 kB/s) +2026-04-06T14:00:52.8340595Z #19 14.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-digester3/3.2/commons-digester3-3.2.pom +2026-04-06T14:00:52.9462220Z #19 14.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-digester3/3.2/commons-digester3-3.2.pom (18 kB at 475 kB/s) +2026-04-06T14:00:52.9463037Z #19 14.28 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom +2026-04-06T14:00:52.9463314Z #19 14.31 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom (42 kB at 1.4 MB/s) +2026-04-06T14:00:52.9463618Z #19 14.32 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom +2026-04-06T14:00:52.9463873Z #19 14.35 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 kB at 523 kB/s) +2026-04-06T14:00:53.0604042Z #19 14.35 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.pom +2026-04-06T14:00:53.0604766Z #19 14.39 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.pom (11 kB at 295 kB/s) +2026-04-06T14:00:53.0605040Z #19 14.40 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/14/commons-parent-14.pom +2026-04-06T14:00:53.0605367Z #19 14.42 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/14/commons-parent-14.pom (31 kB at 1.1 MB/s) +2026-04-06T14:00:53.0605610Z #19 14.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom +2026-04-06T14:00:53.0605849Z #19 14.46 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (14 kB at 498 kB/s) +2026-04-06T14:00:53.2632401Z #19 14.47 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom +2026-04-06T14:00:53.2636079Z #19 14.50 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom (18 kB at 592 kB/s) +2026-04-06T14:00:53.2645147Z #19 14.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/5/commons-parent-5.pom +2026-04-06T14:00:53.2661272Z #19 14.54 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/5/commons-parent-5.pom (16 kB at 446 kB/s) +2026-04-06T14:00:53.2668610Z #19 14.54 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom +2026-04-06T14:00:53.2672049Z #19 14.66 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (4.5 kB at 41 kB/s) +2026-04-06T14:00:53.3712512Z #19 14.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.10/commons-lang3-3.10.pom +2026-04-06T14:00:53.3713349Z #19 14.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.10/commons-lang3-3.10.pom (31 kB at 1.0 MB/s) +2026-04-06T14:00:53.3713650Z #19 14.73 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/50/commons-parent-50.pom +2026-04-06T14:00:53.3713865Z #19 14.76 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/50/commons-parent-50.pom (76 kB at 2.3 MB/s) +2026-04-06T14:00:53.3714088Z #19 14.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom +2026-04-06T14:00:53.4859712Z #19 14.80 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 kB at 634 kB/s) +2026-04-06T14:00:53.4861356Z #19 14.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/cliftonlabs/json-simple/3.0.2/json-simple-3.0.2.pom +2026-04-06T14:00:53.4861695Z #19 14.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/cliftonlabs/json-simple/3.0.2/json-simple-3.0.2.pom (7.5 kB at 258 kB/s) +2026-04-06T14:00:53.4861906Z #19 14.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/2.0.0/doxia-module-apt-2.0.0.pom +2026-04-06T14:00:53.4862110Z #19 14.87 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/2.0.0/doxia-module-apt-2.0.0.pom (2.9 kB at 102 kB/s) +2026-04-06T14:00:53.4862393Z #19 14.89 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/2.0.0/doxia-module-xdoc-2.0.0.pom +2026-04-06T14:00:53.5940881Z #19 14.91 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/2.0.0/doxia-module-xdoc-2.0.0.pom (5.4 kB at 192 kB/s) +2026-04-06T14:00:53.5941660Z #19 14.93 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.pom +2026-04-06T14:00:53.5941926Z #19 14.96 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.pom (4.4 kB at 119 kB/s) +2026-04-06T14:00:53.5942161Z #19 14.97 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/41/maven-shared-components-41.pom +2026-04-06T14:00:53.5942366Z #19 15.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/41/maven-shared-components-41.pom (3.2 kB at 113 kB/s) +2026-04-06T14:00:53.7138441Z #19 15.00 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.pom +2026-04-06T14:00:53.7139137Z #19 15.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.pom (6.0 kB at 207 kB/s) +2026-04-06T14:00:53.7139365Z #19 15.04 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.pom +2026-04-06T14:00:53.7139643Z #19 15.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.pom (3.9 kB at 121 kB/s) +2026-04-06T14:00:53.7139824Z #19 15.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom +2026-04-06T14:00:53.7142391Z #19 15.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom (20 kB at 624 kB/s) +2026-04-06T14:00:53.8497732Z #19 15.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/65/commons-parent-65.pom +2026-04-06T14:00:53.8498381Z #19 15.16 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/65/commons-parent-65.pom (78 kB at 1.9 MB/s) +2026-04-06T14:00:53.8498748Z #19 15.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom +2026-04-06T14:00:53.8498931Z #19 15.21 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom (22 kB at 678 kB/s) +2026-04-06T14:00:53.8499138Z #19 15.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/66/commons-parent-66.pom +2026-04-06T14:00:53.8499349Z #19 15.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/66/commons-parent-66.pom (77 kB at 2.0 MB/s) +2026-04-06T14:00:53.9603076Z #19 15.27 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom +2026-04-06T14:00:53.9603674Z #19 15.29 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom (16 kB at 490 kB/s) +2026-04-06T14:00:53.9604126Z #19 15.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom +2026-04-06T14:00:53.9604310Z #19 15.35 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom (15 kB at 323 kB/s) +2026-04-06T14:00:53.9604510Z #19 15.36 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.9/xz-1.9.pom +2026-04-06T14:00:54.0675270Z #19 15.39 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.9/xz-1.9.pom (2.0 kB at 66 kB/s) +2026-04-06T14:00:54.0676164Z #19 15.40 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.pom +2026-04-06T14:00:54.0676556Z #19 15.43 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.pom (2.0 kB at 65 kB/s) +2026-04-06T14:00:54.0676829Z #19 15.44 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.pom +2026-04-06T14:00:54.0677101Z #19 15.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.pom (2.6 kB at 82 kB/s) +2026-04-06T14:00:54.1977455Z #19 15.47 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.4.1/maven-resolver-1.4.1.pom +2026-04-06T14:00:54.1978366Z #19 15.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.4.1/maven-resolver-1.4.1.pom (18 kB at 551 kB/s) +2026-04-06T14:00:54.1978641Z #19 15.52 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom +2026-04-06T14:00:54.1978866Z #19 15.55 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 kB at 1.3 MB/s) +2026-04-06T14:00:54.1979104Z #19 15.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.10.0/plexus-archiver-4.10.0.pom +2026-04-06T14:00:54.1979352Z #19 15.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.10.0/plexus-archiver-4.10.0.pom (5.8 kB at 194 kB/s) +2026-04-06T14:00:54.3163071Z #19 15.61 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.5.0/plexus-io-3.5.0.pom +2026-04-06T14:00:54.3163773Z #19 15.64 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.5.0/plexus-io-3.5.0.pom (4.3 kB at 145 kB/s) +2026-04-06T14:00:54.3164012Z #19 15.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom +2026-04-06T14:00:54.3164201Z #19 15.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom (20 kB at 516 kB/s) +2026-04-06T14:00:54.3164456Z #19 15.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.2/commons-compress-1.26.2.pom +2026-04-06T14:00:54.4424557Z #19 15.72 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.2/commons-compress-1.26.2.pom (23 kB at 695 kB/s) +2026-04-06T14:00:54.4470679Z #19 15.73 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.17.0/commons-codec-1.17.0.pom +2026-04-06T14:00:54.4471085Z #19 15.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.17.0/commons-codec-1.17.0.pom (18 kB at 542 kB/s) +2026-04-06T14:00:54.4471300Z #19 15.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/airlift/aircompressor/0.27/aircompressor-0.27.pom +2026-04-06T14:00:54.4471749Z #19 15.81 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/airlift/aircompressor/0.27/aircompressor-0.27.pom (5.8 kB at 180 kB/s) +2026-04-06T14:00:54.4471966Z #19 15.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/airlift/airbase/112/airbase-112.pom +2026-04-06T14:00:54.4472170Z #19 15.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/airlift/airbase/112/airbase-112.pom (69 kB at 2.1 MB/s) +2026-04-06T14:00:54.5495479Z #19 15.85 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.0-M1/junit-bom-5.8.0-M1.pom +2026-04-06T14:00:54.5496077Z #19 15.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.0-M1/junit-bom-5.8.0-M1.pom (5.7 kB at 203 kB/s) +2026-04-06T14:00:54.5496359Z #19 15.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.6-3/zstd-jni-1.5.6-3.pom +2026-04-06T14:00:54.5496550Z #19 15.91 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.6-3/zstd-jni-1.5.6-3.pom (2.0 kB at 72 kB/s) +2026-04-06T14:00:54.5496735Z #19 15.92 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.5.1/plexus-io-3.5.1.pom +2026-04-06T14:00:54.5496954Z #19 15.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.5.1/plexus-io-3.5.1.pom (4.3 kB at 150 kB/s) +2026-04-06T14:00:54.6609398Z #19 15.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.15.0/maven-dependency-analyzer-1.15.0.pom +2026-04-06T14:00:54.6611172Z #19 15.99 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.15.0/maven-dependency-analyzer-1.15.0.pom (32 kB at 1.1 MB/s) +2026-04-06T14:00:54.6611640Z #19 15.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.pom +2026-04-06T14:00:54.6611866Z #19 16.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.pom (2.4 kB at 72 kB/s) +2026-04-06T14:00:54.6612057Z #19 16.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom +2026-04-06T14:00:54.6612276Z #19 16.06 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 434 kB/s) +2026-04-06T14:00:54.7643670Z #19 16.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.3.0/maven-dependency-tree-3.3.0.pom +2026-04-06T14:00:54.7644335Z #19 16.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.3.0/maven-dependency-tree-3.3.0.pom (7.0 kB at 233 kB/s) +2026-04-06T14:00:54.7644589Z #19 16.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/42/maven-shared-components-42.pom +2026-04-06T14:00:54.7644805Z #19 16.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/42/maven-shared-components-42.pom (3.8 kB at 135 kB/s) +2026-04-06T14:00:54.7645104Z #19 16.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.pom +2026-04-06T14:00:54.7645330Z #19 16.16 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.pom (2.8 kB at 97 kB/s) +2026-04-06T14:00:54.7645528Z #19 16.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.pom +2026-04-06T14:00:54.8653784Z #19 16.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.pom (5.4 kB at 179 kB/s) +2026-04-06T14:00:54.8654483Z #19 16.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.pom +2026-04-06T14:00:54.8654761Z #19 16.24 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.pom (11 kB at 351 kB/s) +2026-04-06T14:00:54.8655004Z #19 16.24 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom +2026-04-06T14:00:54.8655213Z #19 16.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 196 kB/s) +2026-04-06T14:00:54.9730918Z #19 16.27 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom +2026-04-06T14:00:54.9731644Z #19 16.30 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom (750 B at 24 kB/s) +2026-04-06T14:00:54.9731938Z #19 16.31 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom +2026-04-06T14:00:54.9732171Z #19 16.33 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom (4.8 kB at 185 kB/s) +2026-04-06T14:00:54.9732375Z #19 16.34 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.pom +2026-04-06T14:00:54.9732615Z #19 16.38 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.pom (5.3 kB at 165 kB/s) +2026-04-06T14:00:55.0894288Z #19 16.39 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom +2026-04-06T14:00:55.0894980Z #19 16.41 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom (5.1 kB at 212 kB/s) +2026-04-06T14:00:55.0895346Z #19 16.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom +2026-04-06T14:00:55.0895631Z #19 16.45 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 144 kB/s) +2026-04-06T14:00:55.0896061Z #19 16.46 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom +2026-04-06T14:00:55.0896315Z #19 16.49 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 684 kB/s) +2026-04-06T14:00:55.2276823Z #19 16.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom +2026-04-06T14:00:55.2277460Z #19 16.53 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 800 kB/s) +2026-04-06T14:00:55.2277704Z #19 16.54 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom +2026-04-06T14:00:55.2277903Z #19 16.58 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 kB at 328 kB/s) +2026-04-06T14:00:55.2278092Z #19 16.59 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom +2026-04-06T14:00:55.2278364Z #19 16.63 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 54 kB/s) +2026-04-06T14:00:55.3497505Z #19 16.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom +2026-04-06T14:00:55.3498216Z #19 16.67 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 149 kB/s) +2026-04-06T14:00:55.3498484Z #19 16.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom +2026-04-06T14:00:55.3498764Z #19 16.72 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 98 kB/s) +2026-04-06T14:00:55.3499075Z #19 16.72 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom +2026-04-06T14:00:55.3499283Z #19 16.75 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 84 kB/s) +2026-04-06T14:00:55.4662788Z #19 16.76 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom +2026-04-06T14:00:55.4663569Z #19 16.79 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 43 kB/s) +2026-04-06T14:00:55.4663960Z #19 16.79 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom +2026-04-06T14:00:55.4664209Z #19 16.83 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 210 kB/s) +2026-04-06T14:00:55.4664468Z #19 16.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom +2026-04-06T14:00:55.4664703Z #19 16.87 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 336 kB/s) +2026-04-06T14:00:55.5683776Z #19 16.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom +2026-04-06T14:00:55.5684666Z #19 16.91 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 27 kB/s) +2026-04-06T14:00:55.5685057Z #19 16.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom +2026-04-06T14:00:55.5685329Z #19 16.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 170 kB/s) +2026-04-06T14:00:55.5685578Z #19 16.94 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom +2026-04-06T14:00:55.5685905Z #19 16.97 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 560 kB/s) +2026-04-06T14:00:55.6688275Z #19 16.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom +2026-04-06T14:00:55.6690472Z #19 17.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 167 kB/s) +2026-04-06T14:00:55.6691022Z #19 17.00 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom +2026-04-06T14:00:55.6691232Z #19 17.04 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 541 kB/s) +2026-04-06T14:00:55.6691521Z #19 17.04 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom +2026-04-06T14:00:55.6691730Z #19 17.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 176 kB/s) +2026-04-06T14:00:55.8008736Z #19 17.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom +2026-04-06T14:00:55.8009334Z #19 17.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 395 kB/s) +2026-04-06T14:00:55.8009543Z #19 17.11 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom +2026-04-06T14:00:55.8009824Z #19 17.14 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom (5.0 kB at 192 kB/s) +2026-04-06T14:00:55.8010032Z #19 17.14 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom +2026-04-06T14:00:55.8010241Z #19 17.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 176 kB/s) +2026-04-06T14:00:55.8010436Z #19 17.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom +2026-04-06T14:00:55.8010656Z #19 17.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom (41 kB at 1.3 MB/s) +2026-04-06T14:00:55.9020965Z #19 17.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom +2026-04-06T14:00:55.9021748Z #19 17.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (16 kB at 603 kB/s) +2026-04-06T14:00:55.9022105Z #19 17.24 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom +2026-04-06T14:00:55.9023959Z #19 17.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom (13 kB at 429 kB/s) +2026-04-06T14:00:55.9024702Z #19 17.28 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom +2026-04-06T14:00:55.9025174Z #19 17.30 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom (2.7 kB at 103 kB/s) +2026-04-06T14:00:56.0098741Z #19 17.31 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom +2026-04-06T14:00:56.0100984Z #19 17.34 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom (12 kB at 422 kB/s) +2026-04-06T14:00:56.0101377Z #19 17.34 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom +2026-04-06T14:00:56.0101659Z #19 17.37 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom (3.2 kB at 110 kB/s) +2026-04-06T14:00:56.0101910Z #19 17.38 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom +2026-04-06T14:00:56.0102122Z #19 17.41 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom (8.4 kB at 261 kB/s) +2026-04-06T14:00:56.1216502Z #19 17.42 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom +2026-04-06T14:00:56.1218818Z #19 17.45 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 261 kB/s) +2026-04-06T14:00:56.1219140Z #19 17.49 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/2.0.0/doxia-sink-api-2.0.0.jar +2026-04-06T14:00:56.1219420Z #19 17.52 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/2.0.0/doxia-sink-api-2.0.0.jar (11 kB at 378 kB/s) +2026-04-06T14:00:56.2403575Z #19 17.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/4.0.0/maven-reporting-api-4.0.0.jar +2026-04-06T14:00:56.2404364Z #19 17.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/4.0.0/maven-reporting-impl-4.0.0.jar +2026-04-06T14:00:56.2404647Z #19 17.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-model/2.0.0/doxia-site-model-2.0.0.jar +2026-04-06T14:00:56.2404912Z #19 17.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/2.0.0/doxia-core-2.0.0.jar +2026-04-06T14:00:56.2405135Z #19 17.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.jar +2026-04-06T14:00:56.2405357Z #19 17.56 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/4.0.0/maven-reporting-impl-4.0.0.jar (21 kB at 655 kB/s) +2026-04-06T14:00:56.2405615Z #19 17.56 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/2.0.0/doxia-integration-tools-2.0.0.jar +2026-04-06T14:00:56.2405837Z #19 17.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/2.0.0/doxia-integration-tools-2.0.0.jar (50 kB at 695 kB/s) +2026-04-06T14:00:56.2406076Z #19 17.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.jar +2026-04-06T14:00:56.2406286Z #19 17.64 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.27/plexus-interpolation-1.27.jar (86 kB at 767 kB/s) +2026-04-06T14:00:56.2406545Z #19 17.64 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-model/2.0.0/doxia-site-model-2.0.0.jar (86 kB at 735 kB/s) +2026-04-06T14:00:56.3410754Z #19 17.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/2.0.0/doxia-site-renderer-2.0.0.jar +2026-04-06T14:00:56.3411534Z #19 17.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/2.0.0/doxia-skin-model-2.0.0.jar +2026-04-06T14:00:56.3411785Z #19 17.66 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/4.0.0/maven-reporting-api-4.0.0.jar (9.8 kB at 70 kB/s) +2026-04-06T14:00:56.3412002Z #19 17.66 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/2.0.0/doxia-core-2.0.0.jar (168 kB at 1.2 MB/s) +2026-04-06T14:00:56.3412229Z #19 17.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/2.0.0/doxia-module-xhtml5-2.0.0.jar +2026-04-06T14:00:56.3412554Z #19 17.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/2.2.0/plexus-velocity-2.2.0.jar +2026-04-06T14:00:56.3412803Z #19 17.67 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/2.0.0/doxia-skin-model-2.0.0.jar (16 kB at 121 kB/s) +2026-04-06T14:00:56.3413056Z #19 17.67 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.4/velocity-engine-core-2.4.jar +2026-04-06T14:00:56.3413249Z #19 17.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/2.0.0/doxia-site-renderer-2.0.0.jar (44 kB at 301 kB/s) +2026-04-06T14:00:56.3413500Z #19 17.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/tools/velocity-tools-generic/3.1/velocity-tools-generic-3.1.jar +2026-04-06T14:00:56.3413742Z #19 17.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.jar (251 kB at 1.7 MB/s) +2026-04-06T14:00:56.3413926Z #19 17.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar +2026-04-06T14:00:56.3414154Z #19 17.69 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/2.0.0/doxia-module-xhtml5-2.0.0.jar (17 kB at 104 kB/s) +2026-04-06T14:00:56.3414378Z #19 17.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar +2026-04-06T14:00:56.3414642Z #19 17.70 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/2.2.0/plexus-velocity-2.2.0.jar (5.7 kB at 33 kB/s) +2026-04-06T14:00:56.3414912Z #19 17.70 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar +2026-04-06T14:00:56.3415144Z #19 17.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/tools/velocity-tools-generic/3.1/velocity-tools-generic-3.1.jar (217 kB at 1.2 MB/s) +2026-04-06T14:00:56.3415344Z #19 17.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-digester3/3.2/commons-digester3-3.2.jar +2026-04-06T14:00:56.3415550Z #19 17.72 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.4/velocity-engine-core-2.4.jar (510 kB at 2.7 MB/s) +2026-04-06T14:00:56.3415760Z #19 17.72 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/cliftonlabs/json-simple/3.0.2/json-simple-3.0.2.jar +2026-04-06T14:00:56.3415956Z #19 17.73 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar (62 kB at 311 kB/s) +2026-04-06T14:00:56.3416144Z #19 17.73 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/2.0.0/doxia-module-apt-2.0.0.jar +2026-04-06T14:00:56.3416357Z #19 17.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar (247 kB at 1.2 MB/s) +2026-04-06T14:00:56.3416576Z #19 17.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/2.0.0/doxia-module-xdoc-2.0.0.jar +2026-04-06T14:00:56.4665304Z #19 17.75 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/cliftonlabs/json-simple/3.0.2/json-simple-3.0.2.jar (35 kB at 159 kB/s) +2026-04-06T14:00:56.4665995Z #19 17.75 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.jar +2026-04-06T14:00:56.4666251Z #19 17.76 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-digester3/3.2/commons-digester3-3.2.jar (242 kB at 1.1 MB/s) +2026-04-06T14:00:56.4666467Z #19 17.76 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.jar +2026-04-06T14:00:56.4666775Z #19 17.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/2.0.0/doxia-module-apt-2.0.0.jar (54 kB at 226 kB/s) +2026-04-06T14:00:56.4667032Z #19 17.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.9.0.M3/org.eclipse.sisu.plexus-0.9.0.M3.jar +2026-04-06T14:00:56.4667227Z #19 17.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/2.0.0/doxia-module-xdoc-2.0.0.jar (35 kB at 144 kB/s) +2026-04-06T14:00:56.4667480Z #19 17.78 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.9.0.M3/org.eclipse.sisu.inject-0.9.0.M3.jar +2026-04-06T14:00:56.4667705Z #19 17.78 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.6.2/maven-archiver-3.6.2.jar (27 kB at 107 kB/s) +2026-04-06T14:00:56.4667954Z #19 17.78 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar +2026-04-06T14:00:56.4668172Z #19 17.79 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.jar (149 kB at 577 kB/s) +2026-04-06T14:00:56.4668405Z #19 17.79 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.10.0/plexus-archiver-4.10.0.jar +2026-04-06T14:00:56.4668613Z #19 17.81 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 2.1 MB/s) +2026-04-06T14:00:56.4668814Z #19 17.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar +2026-04-06T14:00:56.4669393Z #19 17.81 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar (53 kB at 190 kB/s) +2026-04-06T14:00:56.4669765Z #19 17.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar +2026-04-06T14:00:56.4669969Z #19 17.81 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.9.0.M3/org.eclipse.sisu.plexus-0.9.0.M3.jar (216 kB at 767 kB/s) +2026-04-06T14:00:56.4670205Z #19 17.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.2/commons-compress-1.26.2.jar +2026-04-06T14:00:56.4670615Z #19 17.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.10.0/plexus-archiver-4.10.0.jar (225 kB at 766 kB/s) +2026-04-06T14:00:56.4670846Z #19 17.82 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.17.0/commons-codec-1.17.0.jar +2026-04-06T14:00:56.4671027Z #19 17.83 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.9.0.M3/org.eclipse.sisu.inject-0.9.0.M3.jar (434 kB at 1.4 MB/s) +2026-04-06T14:00:56.4671221Z #19 17.83 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/airlift/aircompressor/0.27/aircompressor-0.27.jar +2026-04-06T14:00:56.4671431Z #19 17.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 8.2 kB/s) +2026-04-06T14:00:56.4671650Z #19 17.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.9/xz-1.9.jar +2026-04-06T14:00:56.4673330Z #19 17.87 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.17.0/commons-codec-1.17.0.jar (373 kB at 1.1 MB/s) +2026-04-06T14:00:56.4673522Z #19 17.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.6-3/zstd-jni-1.5.6-3.jar +2026-04-06T14:00:56.5916196Z #19 17.87 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.9/xz-1.9.jar (116 kB at 338 kB/s) +2026-04-06T14:00:56.5917164Z #19 17.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar +2026-04-06T14:00:56.5917509Z #19 17.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar (509 kB at 1.5 MB/s) +2026-04-06T14:00:56.5917756Z #19 17.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.jar +2026-04-06T14:00:56.5917959Z #19 17.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/airlift/aircompressor/0.27/aircompressor-0.27.jar (255 kB at 722 kB/s) +2026-04-06T14:00:56.5918171Z #19 17.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.jar +2026-04-06T14:00:56.5918443Z #19 17.91 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.jar (193 kB at 507 kB/s) +2026-04-06T14:00:56.5918699Z #19 17.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.5.1/plexus-io-3.5.1.jar +2026-04-06T14:00:56.5918905Z #19 17.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-xml/3.0.1/plexus-xml-3.0.1.jar (94 kB at 245 kB/s) +2026-04-06T14:00:56.5919093Z #19 17.92 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar +2026-04-06T14:00:56.5919275Z #19 17.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.2/commons-compress-1.26.2.jar (1.1 MB at 2.8 MB/s) +2026-04-06T14:00:56.5919518Z #19 17.92 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.15.0/maven-dependency-analyzer-1.15.0.jar +2026-04-06T14:00:56.5919756Z #19 17.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar (674 kB at 1.7 MB/s) +2026-04-06T14:00:56.5919971Z #19 17.92 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.jar +2026-04-06T14:00:56.5920155Z #19 17.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.5.1/plexus-io-3.5.1.jar (80 kB at 195 kB/s) +2026-04-06T14:00:56.5920354Z #19 17.94 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.3.0/maven-dependency-tree-3.3.0.jar +2026-04-06T14:00:56.5920653Z #19 17.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.jar (125 kB at 300 kB/s) +2026-04-06T14:00:56.5920874Z #19 17.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 28 kB/s) +2026-04-06T14:00:56.5921097Z #19 17.95 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.jar +2026-04-06T14:00:56.5921320Z #19 17.95 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.jar +2026-04-06T14:00:56.5925019Z #19 17.96 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.15.0/maven-dependency-analyzer-1.15.0.jar (45 kB at 106 kB/s) +2026-04-06T14:00:56.5925497Z #19 17.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.jar +2026-04-06T14:00:56.5925748Z #19 17.99 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.jar (4.2 kB at 9.2 kB/s) +2026-04-06T14:00:56.5925956Z #19 17.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar +2026-04-06T14:00:56.6968387Z #19 ... +2026-04-06T14:00:56.6969229Z +2026-04-06T14:00:56.6969410Z #22 [frontend 6/6] RUN npm run build +2026-04-06T14:00:56.6969604Z #22 0.347 +2026-04-06T14:00:56.6969746Z #22 0.347 > cameleer-saas-ui@0.1.0 build +2026-04-06T14:00:56.6969916Z #22 0.347 > tsc -b && vite build +2026-04-06T14:00:56.6970057Z #22 0.347 +2026-04-06T14:00:56.6970199Z #22 5.564 vite v6.4.1 building for production... +2026-04-06T14:00:56.6970340Z #22 5.684 transforming... +2026-04-06T14:00:56.6970470Z #22 9.048 ✓ 244 modules transformed. +2026-04-06T14:00:56.6970641Z #22 9.652 rendering chunks... +2026-04-06T14:00:56.6970779Z #22 9.673 computing gzip size... +2026-04-06T14:00:56.6970967Z #22 9.704 dist/index.html 0.41 kB │ gzip: 0.28 kB +2026-04-06T14:00:56.6971132Z #22 9.706 dist/_app/index-BhP2KiA0.css 109.80 kB │ gzip: 17.85 kB +2026-04-06T14:00:56.6971284Z #22 9.707 dist/_app/index-BKGcEaeX.js 430.47 kB │ gzip: 130.93 kB +2026-04-06T14:00:56.6971460Z #22 9.709 ✓ built in 4.09s +2026-04-06T14:00:56.6971629Z #22 DONE 9.8s +2026-04-06T14:00:56.6971759Z +2026-04-06T14:00:56.6971883Z #19 [build 5/8] RUN ./mvnw dependency:go-offline -B || true +2026-04-06T14:00:56.6972053Z #19 17.99 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.jar (58 kB at 127 kB/s) +2026-04-06T14:00:56.6972290Z #19 17.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.jar +2026-04-06T14:00:56.6972489Z #19 18.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.3.0/maven-dependency-tree-3.3.0.jar (43 kB at 92 kB/s) +2026-04-06T14:00:56.6972699Z #19 18.00 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar +2026-04-06T14:00:56.6972949Z #19 18.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.jar (159 kB at 342 kB/s) +2026-04-06T14:00:56.6973172Z #19 18.00 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar +2026-04-06T14:00:56.6973367Z #19 18.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar (41 kB at 83 kB/s) +2026-04-06T14:00:56.6973564Z #19 18.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.jar (168 kB at 333 kB/s) +2026-04-06T14:00:56.6973752Z #19 18.04 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar (8.5 kB at 17 kB/s) +2026-04-06T14:00:56.6973936Z #19 18.04 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar (151 kB at 297 kB/s) +2026-04-06T14:00:56.6974139Z #19 18.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.6-3/zstd-jni-1.5.6-3.jar (6.7 MB at 12 MB/s) +2026-04-06T14:00:57.3996571Z #19 18.80 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-buildpack-platform/3.4.3/spring-boot-buildpack-platform-3.4.3.pom +2026-04-06T14:00:57.5175352Z #19 18.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-buildpack-platform/3.4.3/spring-boot-buildpack-platform-3.4.3.pom (3.2 kB at 97 kB/s) +2026-04-06T14:00:57.5177103Z #19 18.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.pom +2026-04-06T14:00:57.5177558Z #19 18.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.pom (21 kB at 966 kB/s) +2026-04-06T14:00:57.5178446Z #19 18.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.18.2/jackson-base-2.18.2.pom +2026-04-06T14:00:57.5179447Z #19 18.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.18.2/jackson-base-2.18.2.pom (12 kB at 559 kB/s) +2026-04-06T14:00:57.5180581Z #19 18.90 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.pom +2026-04-06T14:00:57.5180860Z #19 18.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.pom (7.1 kB at 296 kB/s) +2026-04-06T14:00:57.6399183Z #19 18.93 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.pom +2026-04-06T14:00:57.6399827Z #19 18.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.pom (10 kB at 455 kB/s) +2026-04-06T14:00:57.6400045Z #19 18.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.18.2/jackson-module-parameter-names-2.18.2.pom +2026-04-06T14:00:57.6400264Z #19 18.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.18.2/jackson-module-parameter-names-2.18.2.pom (4.2 kB at 176 kB/s) +2026-04-06T14:00:57.6400493Z #19 18.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.18.2/jackson-modules-java8-2.18.2.pom +2026-04-06T14:00:57.6400741Z #19 19.01 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.18.2/jackson-modules-java8-2.18.2.pom (3.3 kB at 138 kB/s) +2026-04-06T14:00:57.6400962Z #19 19.01 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.pom +2026-04-06T14:00:57.6401143Z #19 19.04 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.pom (2.3 kB at 80 kB/s) +2026-04-06T14:00:57.7401326Z #19 19.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom +2026-04-06T14:00:57.7402113Z #19 19.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom (2.0 kB at 72 kB/s) +2026-04-06T14:00:57.7402465Z #19 19.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.pom +2026-04-06T14:00:57.7402724Z #19 19.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.pom (22 kB at 868 kB/s) +2026-04-06T14:00:57.7402974Z #19 19.11 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5/5.4.2/httpclient5-5.4.2.pom +2026-04-06T14:00:57.7403228Z #19 19.14 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5/5.4.2/httpclient5-5.4.2.pom (6.1 kB at 209 kB/s) +2026-04-06T14:00:57.8585003Z #19 19.15 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5-parent/5.4.2/httpclient5-parent-5.4.2.pom +2026-04-06T14:00:57.8585712Z #19 19.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5-parent/5.4.2/httpclient5-parent-5.4.2.pom (16 kB at 603 kB/s) +2026-04-06T14:00:57.8585998Z #19 19.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom +2026-04-06T14:00:57.8586295Z #19 19.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/13/httpcomponents-parent-13.pom (30 kB at 1.2 MB/s) +2026-04-06T14:00:57.8586548Z #19 19.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom +2026-04-06T14:00:57.8586815Z #19 19.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom (20 kB at 754 kB/s) +2026-04-06T14:00:57.8587060Z #19 19.24 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5/5.3.3/httpcore5-5.3.3.pom +2026-04-06T14:00:57.8587293Z #19 19.26 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5/5.3.3/httpcore5-5.3.3.pom (3.9 kB at 188 kB/s) +2026-04-06T14:00:57.9681960Z #19 19.26 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-parent/5.3.3/httpcore5-parent-5.3.3.pom +2026-04-06T14:00:57.9682625Z #19 19.29 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-parent/5.3.3/httpcore5-parent-5.3.3.pom (14 kB at 581 kB/s) +2026-04-06T14:00:57.9682848Z #19 19.29 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-h2/5.3.3/httpcore5-h2-5.3.3.pom +2026-04-06T14:00:57.9683087Z #19 19.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-h2/5.3.3/httpcore5-h2-5.3.3.pom (3.6 kB at 151 kB/s) +2026-04-06T14:00:57.9683303Z #19 19.32 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/6.2.3/spring-core-6.2.3.pom +2026-04-06T14:00:57.9683496Z #19 19.34 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/6.2.3/spring-core-6.2.3.pom (2.0 kB at 92 kB/s) +2026-04-06T14:00:57.9683679Z #19 19.35 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/6.2.3/spring-jcl-6.2.3.pom +2026-04-06T14:00:57.9683865Z #19 19.37 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/6.2.3/spring-jcl-6.2.3.pom (1.8 kB at 74 kB/s) +2026-04-06T14:00:58.0718263Z #19 19.37 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.pom +2026-04-06T14:00:58.0740027Z #19 19.40 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.pom (2.8 kB at 134 kB/s) +2026-04-06T14:00:58.0740494Z #19 19.40 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.pom +2026-04-06T14:00:58.0740855Z #19 19.42 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.pom (3.6 kB at 151 kB/s) +2026-04-06T14:00:58.0741068Z #19 19.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.7.2/antlr4-master-4.7.2.pom +2026-04-06T14:00:58.0741272Z #19 19.45 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.7.2/antlr4-master-4.7.2.pom (4.4 kB at 191 kB/s) +2026-04-06T14:00:58.0741511Z #19 19.45 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom +2026-04-06T14:00:58.1730646Z #19 19.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 186 kB/s) +2026-04-06T14:00:58.1731423Z #19 19.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/3.4.3/spring-boot-loader-tools-3.4.3.pom +2026-04-06T14:00:58.1731740Z #19 19.50 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/3.4.3/spring-boot-loader-tools-3.4.3.pom (2.2 kB at 102 kB/s) +2026-04-06T14:00:58.1732027Z #19 19.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.pom +2026-04-06T14:00:58.1732272Z #19 19.52 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.pom (5.3 kB at 239 kB/s) +2026-04-06T14:00:58.1732557Z #19 19.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/37/maven-shared-components-37.pom +2026-04-06T14:00:58.1732762Z #19 19.55 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/37/maven-shared-components-37.pom (4.9 kB at 245 kB/s) +2026-04-06T14:00:58.1732966Z #19 19.55 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/37/maven-parent-37.pom +2026-04-06T14:00:58.1733185Z #19 19.58 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/37/maven-parent-37.pom (46 kB at 1.8 MB/s) +2026-04-06T14:00:58.2834682Z #19 19.58 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/6.2.3/spring-context-6.2.3.pom +2026-04-06T14:00:58.2835405Z #19 19.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/6.2.3/spring-context-6.2.3.pom (2.8 kB at 121 kB/s) +2026-04-06T14:00:58.2835636Z #19 19.61 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/6.2.3/spring-aop-6.2.3.pom +2026-04-06T14:00:58.2836495Z #19 19.63 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/6.2.3/spring-aop-6.2.3.pom (2.2 kB at 105 kB/s) +2026-04-06T14:00:58.2837048Z #19 19.63 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/6.2.3/spring-beans-6.2.3.pom +2026-04-06T14:00:58.2837344Z #19 19.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/6.2.3/spring-beans-6.2.3.pom (2.0 kB at 92 kB/s) +2026-04-06T14:00:58.2838266Z #19 19.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/6.2.3/spring-expression-6.2.3.pom +2026-04-06T14:00:58.2838806Z #19 19.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/6.2.3/spring-expression-6.2.3.pom (2.1 kB at 77 kB/s) +2026-04-06T14:00:58.3852383Z #19 19.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-observation/1.14.4/micrometer-observation-1.14.4.pom +2026-04-06T14:00:58.3853025Z #19 19.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-observation/1.14.4/micrometer-observation-1.14.4.pom (3.8 kB at 154 kB/s) +2026-04-06T14:00:58.3853265Z #19 19.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-commons/1.14.4/micrometer-commons-1.14.4.pom +2026-04-06T14:00:58.3853446Z #19 19.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-commons/1.14.4/micrometer-commons-1.14.4.pom (3.4 kB at 155 kB/s) +2026-04-06T14:00:58.3853652Z #19 19.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.5.0/maven-shade-plugin-3.5.0.pom +2026-04-06T14:00:58.3853978Z #19 19.76 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.5.0/maven-shade-plugin-3.5.0.pom (12 kB at 540 kB/s) +2026-04-06T14:00:58.3854182Z #19 19.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom +2026-04-06T14:00:58.3854381Z #19 19.79 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom (8.8 kB at 418 kB/s) +2026-04-06T14:00:58.4912624Z #19 19.79 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom +2026-04-06T14:00:58.4913286Z #19 19.81 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 1.1 MB/s) +2026-04-06T14:00:58.4913561Z #19 19.82 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.pom +2026-04-06T14:00:58.4913823Z #19 19.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.pom (3.8 kB at 174 kB/s) +2026-04-06T14:00:58.4914043Z #19 19.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.32/slf4j-parent-1.7.32.pom +2026-04-06T14:00:58.4914243Z #19 19.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.32/slf4j-parent-1.7.32.pom (14 kB at 628 kB/s) +2026-04-06T14:00:58.4914437Z #19 19.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.5/asm-9.5.pom +2026-04-06T14:00:58.4914662Z #19 19.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.5/asm-9.5.pom (2.4 kB at 91 kB/s) +2026-04-06T14:00:58.5952816Z #19 19.90 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.pom +2026-04-06T14:00:58.5953511Z #19 19.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.pom (2.8 kB at 127 kB/s) +2026-04-06T14:00:58.5953827Z #19 19.92 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.pom +2026-04-06T14:00:58.5954024Z #19 19.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.pom (2.6 kB at 118 kB/s) +2026-04-06T14:00:58.5954206Z #19 19.95 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.pom +2026-04-06T14:00:58.5954403Z #19 19.97 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.pom (4.6 kB at 200 kB/s) +2026-04-06T14:00:58.5954600Z #19 19.97 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.2.1/maven-dependency-tree-3.2.1.pom +2026-04-06T14:00:58.5954808Z #19 20.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.2.1/maven-dependency-tree-3.2.1.pom (6.2 kB at 271 kB/s) +2026-04-06T14:00:58.6960595Z #19 20.00 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.pom +2026-04-06T14:00:58.6961366Z #19 20.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.pom (2.2 kB at 81 kB/s) +2026-04-06T14:00:58.6961598Z #19 20.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/1.0.0.v20140518/aether-1.0.0.v20140518.pom +2026-04-06T14:00:58.6961855Z #19 20.06 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/1.0.0.v20140518/aether-1.0.0.v20140518.pom (30 kB at 1.1 MB/s) +2026-04-06T14:00:58.6962036Z #19 20.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.pom +2026-04-06T14:00:58.6962237Z #19 20.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.pom (1.9 kB at 86 kB/s) +2026-04-06T14:00:58.6962428Z #19 20.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.13.0/commons-io-2.13.0.pom +2026-04-06T14:00:58.8028133Z #19 20.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.13.0/commons-io-2.13.0.pom (20 kB at 883 kB/s) +2026-04-06T14:00:58.8029156Z #19 20.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom +2026-04-06T14:00:58.8029437Z #19 20.15 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom (83 kB at 3.2 MB/s) +2026-04-06T14:00:58.8029666Z #19 20.16 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom +2026-04-06T14:00:58.8029841Z #19 20.18 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (5.6 kB at 245 kB/s) +2026-04-06T14:00:58.8030019Z #19 20.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/vafer/jdependency/2.8.0/jdependency-2.8.0.pom +2026-04-06T14:00:58.8030205Z #19 20.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/vafer/jdependency/2.8.0/jdependency-2.8.0.pom (14 kB at 604 kB/s) +2026-04-06T14:00:58.9276534Z #19 20.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.pom +2026-04-06T14:00:58.9277319Z #19 20.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.pom (24 kB at 1.1 MB/s) +2026-04-06T14:00:58.9277618Z #19 20.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom +2026-04-06T14:00:58.9277854Z #19 20.26 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom (72 kB at 2.9 MB/s) +2026-04-06T14:00:58.9278079Z #19 20.27 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-buildpack-platform/3.4.3/spring-boot-buildpack-platform-3.4.3.jar +2026-04-06T14:00:58.9278377Z #19 20.30 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-buildpack-platform/3.4.3/spring-boot-buildpack-platform-3.4.3.jar (298 kB at 12 MB/s) +2026-04-06T14:00:58.9278643Z #19 20.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar +2026-04-06T14:00:58.9278866Z #19 20.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar +2026-04-06T14:00:58.9279109Z #19 20.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar +2026-04-06T14:00:58.9279338Z #19 20.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.18.2/jackson-module-parameter-names-2.18.2.jar +2026-04-06T14:00:58.9279801Z #19 20.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar +2026-04-06T14:00:58.9280073Z #19 20.33 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.18.2/jackson-module-parameter-names-2.18.2.jar (10 kB at 356 kB/s) +2026-04-06T14:00:58.9280420Z #19 20.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.13.0/jna-5.13.0.jar +2026-04-06T14:00:59.0292124Z #19 20.34 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar (78 kB at 2.1 MB/s) +2026-04-06T14:00:59.0293029Z #19 20.34 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.jar +2026-04-06T14:00:59.0293300Z #19 20.37 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar (1.7 MB at 24 MB/s) +2026-04-06T14:00:59.0296956Z #19 20.37 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5/5.4.2/httpclient5-5.4.2.jar +2026-04-06T14:00:59.0297975Z #19 20.38 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar (598 kB at 7.6 MB/s) +2026-04-06T14:00:59.0298868Z #19 20.38 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5/5.3.3/httpcore5-5.3.3.jar +2026-04-06T14:00:59.0299194Z #19 20.38 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar (1.4 MB at 17 MB/s) +2026-04-06T14:00:59.0299397Z #19 20.39 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-h2/5.3.3/httpcore5-h2-5.3.3.jar +2026-04-06T14:00:59.0299633Z #19 20.40 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.13.0/jna-5.13.0.jar (1.9 MB at 19 MB/s) +2026-04-06T14:00:59.0299944Z #19 20.40 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.jar +2026-04-06T14:00:59.0300157Z #19 20.43 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5/5.3.3/httpcore5-5.3.3.jar (907 kB at 7.3 MB/s) +2026-04-06T14:00:59.0300391Z #19 20.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.jar +2026-04-06T14:00:59.0300593Z #19 20.43 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.jar (1.1 MB at 8.4 MB/s) +2026-04-06T14:00:59.0300833Z #19 20.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar +2026-04-06T14:00:59.1362928Z #19 20.43 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-h2/5.3.3/httpcore5-h2-5.3.3.jar (241 kB at 1.8 MB/s) +2026-04-06T14:00:59.1363713Z #19 20.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/3.4.3/spring-boot-loader-tools-3.4.3.jar +2026-04-06T14:00:59.1364026Z #19 20.44 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tomlj/tomlj/1.0.0/tomlj-1.0.0.jar (157 kB at 1.1 MB/s) +2026-04-06T14:00:59.1364284Z #19 20.44 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.jar +2026-04-06T14:00:59.1364609Z #19 20.44 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5/5.4.2/httpclient5-5.4.2.jar (909 kB at 6.4 MB/s) +2026-04-06T14:00:59.1364835Z #19 20.45 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/6.2.3/spring-core-6.2.3.jar +2026-04-06T14:00:59.1365109Z #19 20.46 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.jar (58 kB at 367 kB/s) +2026-04-06T14:00:59.1365366Z #19 20.46 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/6.2.3/spring-jcl-6.2.3.jar +2026-04-06T14:00:59.1365617Z #19 20.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 122 kB/s) +2026-04-06T14:00:59.1365903Z #19 20.47 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/6.2.3/spring-context-6.2.3.jar +2026-04-06T14:00:59.1366130Z #19 20.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.jar (338 kB at 2.0 MB/s) +2026-04-06T14:00:59.1366377Z #19 20.47 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/6.2.3/spring-aop-6.2.3.jar +2026-04-06T14:00:59.1366598Z #19 20.48 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/3.4.3/spring-boot-loader-tools-3.4.3.jar (465 kB at 2.7 MB/s) +2026-04-06T14:00:59.1366850Z #19 20.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/6.2.3/spring-beans-6.2.3.jar +2026-04-06T14:00:59.1367079Z #19 20.49 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/6.2.3/spring-jcl-6.2.3.jar (25 kB at 130 kB/s) +2026-04-06T14:00:59.1367340Z #19 20.49 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/6.2.3/spring-expression-6.2.3.jar +2026-04-06T14:00:59.1367623Z #19 20.50 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/6.2.3/spring-core-6.2.3.jar (2.0 MB at 10 MB/s) +2026-04-06T14:00:59.1367908Z #19 20.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-observation/1.14.4/micrometer-observation-1.14.4.jar +2026-04-06T14:00:59.1368190Z #19 20.54 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/6.2.3/spring-aop-6.2.3.jar (420 kB at 1.8 MB/s) +2026-04-06T14:00:59.1368399Z #19 20.54 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-commons/1.14.4/micrometer-commons-1.14.4.jar +2026-04-06T14:00:59.1368616Z #19 20.54 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/6.2.3/spring-context-6.2.3.jar (1.4 MB at 5.8 MB/s) +2026-04-06T14:00:59.1368863Z #19 20.54 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.5.0/maven-shade-plugin-3.5.0.jar +2026-04-06T14:00:59.2478280Z #19 20.54 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-observation/1.14.4/micrometer-observation-1.14.4.jar (75 kB at 315 kB/s) +2026-04-06T14:00:59.2479156Z #19 20.54 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar +2026-04-06T14:00:59.2479456Z #19 20.54 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/6.2.3/spring-beans-6.2.3.jar (883 kB at 3.7 MB/s) +2026-04-06T14:00:59.2479687Z #19 20.54 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.5/asm-9.5.jar +2026-04-06T14:00:59.2479930Z #19 20.55 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/6.2.3/spring-expression-6.2.3.jar (318 kB at 1.3 MB/s) +2026-04-06T14:00:59.2480260Z #19 20.55 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar +2026-04-06T14:00:59.2483201Z #19 20.56 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.5.0/maven-shade-plugin-3.5.0.jar (147 kB at 577 kB/s) +2026-04-06T14:00:59.2484293Z #19 20.56 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar +2026-04-06T14:00:59.2484587Z #19 20.56 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-commons/1.14.4/micrometer-commons-1.14.4.jar (48 kB at 184 kB/s) +2026-04-06T14:00:59.2485262Z #19 20.56 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar +2026-04-06T14:00:59.2485537Z #19 20.57 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar (72 kB at 270 kB/s) +2026-04-06T14:00:59.2485734Z #19 20.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.2.1/maven-dependency-tree-3.2.1.jar +2026-04-06T14:00:59.2485952Z #19 20.58 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.5/asm-9.5.jar (122 kB at 446 kB/s) +2026-04-06T14:00:59.2486139Z #19 20.58 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.jar +2026-04-06T14:00:59.2486324Z #19 20.58 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar (269 kB at 979 kB/s) +2026-04-06T14:00:59.2486537Z #19 20.58 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.jar +2026-04-06T14:00:59.2486739Z #19 20.58 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar (52 kB at 189 kB/s) +2026-04-06T14:00:59.2486919Z #19 20.58 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.13.0/commons-io-2.13.0.jar +2026-04-06T14:00:59.2487082Z #19 20.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.jar (146 kB at 496 kB/s) +2026-04-06T14:00:59.2487285Z #19 20.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/vafer/jdependency/2.8.0/jdependency-2.8.0.jar +2026-04-06T14:00:59.2487506Z #19 20.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar (328 kB at 1.1 MB/s) +2026-04-06T14:00:59.2487709Z #19 20.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar +2026-04-06T14:00:59.2487912Z #19 20.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.2.1/maven-dependency-tree-3.2.1.jar (43 kB at 142 kB/s) +2026-04-06T14:00:59.2488124Z #19 20.61 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.13.0/commons-io-2.13.0.jar (484 kB at 1.6 MB/s) +2026-04-06T14:00:59.2488311Z #19 20.61 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.jar (136 kB at 443 kB/s) +2026-04-06T14:00:59.2488494Z #19 20.62 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/vafer/jdependency/2.8.0/jdependency-2.8.0.jar (233 kB at 731 kB/s) +2026-04-06T14:00:59.2488665Z #19 20.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar (752 kB at 2.2 MB/s) +2026-04-06T14:00:59.3645679Z #19 20.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom +2026-04-06T14:00:59.3646577Z #19 20.70 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom (2.7 kB at 102 kB/s) +2026-04-06T14:00:59.3646949Z #19 20.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom +2026-04-06T14:00:59.3647265Z #19 20.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom (6.0 kB at 224 kB/s) +2026-04-06T14:00:59.3647519Z #19 20.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom +2026-04-06T14:00:59.3647885Z #19 20.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 297 kB/s) +2026-04-06T14:00:59.4656665Z #19 20.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom +2026-04-06T14:00:59.4657368Z #19 20.80 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 1.1 MB/s) +2026-04-06T14:00:59.4657661Z #19 20.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom +2026-04-06T14:00:59.4657875Z #19 20.83 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 182 kB/s) +2026-04-06T14:00:59.4658111Z #19 20.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar +2026-04-06T14:00:59.4658564Z #19 20.87 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar (85 kB at 2.9 MB/s) +2026-04-06T14:00:59.5654834Z #19 20.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar +2026-04-06T14:00:59.5656154Z #19 20.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar +2026-04-06T14:00:59.5656395Z #19 20.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar +2026-04-06T14:00:59.5656590Z #19 20.90 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar (327 kB at 11 MB/s) +2026-04-06T14:00:59.5659241Z #19 20.90 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar (55 kB at 1.8 MB/s) +2026-04-06T14:00:59.5659633Z #19 20.91 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar (587 kB at 17 MB/s) +2026-04-06T14:00:59.5659935Z #19 20.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/3.5.2/surefire-api-3.5.2.pom +2026-04-06T14:00:59.5660158Z #19 20.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/3.5.2/surefire-api-3.5.2.pom (3.5 kB at 141 kB/s) +2026-04-06T14:00:59.5660454Z #19 20.94 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/3.5.2/surefire-logger-api-3.5.2.pom +2026-04-06T14:00:59.5660727Z #19 20.97 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/3.5.2/surefire-logger-api-3.5.2.pom (3.3 kB at 130 kB/s) +2026-04-06T14:00:59.6721898Z #19 20.97 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-shared-utils/3.5.2/surefire-shared-utils-3.5.2.pom +2026-04-06T14:00:59.6722691Z #19 21.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-shared-utils/3.5.2/surefire-shared-utils-3.5.2.pom (4.7 kB at 147 kB/s) +2026-04-06T14:00:59.6722989Z #19 21.01 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-api/3.5.2/surefire-extensions-api-3.5.2.pom +2026-04-06T14:00:59.6723203Z #19 21.04 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-api/3.5.2/surefire-extensions-api-3.5.2.pom (3.5 kB at 141 kB/s) +2026-04-06T14:00:59.6723431Z #19 21.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/3.5.2/maven-surefire-common-3.5.2.pom +2026-04-06T14:00:59.6723633Z #19 21.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/3.5.2/maven-surefire-common-3.5.2.pom (7.8 kB at 289 kB/s) +2026-04-06T14:00:59.7726081Z #19 21.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/3.5.2/surefire-booter-3.5.2.pom +2026-04-06T14:00:59.7727757Z #19 21.11 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/3.5.2/surefire-booter-3.5.2.pom (4.8 kB at 172 kB/s) +2026-04-06T14:00:59.7728059Z #19 21.11 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-spi/3.5.2/surefire-extensions-spi-3.5.2.pom +2026-04-06T14:00:59.7728383Z #19 21.14 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-spi/3.5.2/surefire-extensions-spi-3.5.2.pom (1.8 kB at 61 kB/s) +2026-04-06T14:00:59.7728757Z #19 21.15 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.3.0/plexus-java-1.3.0.pom +2026-04-06T14:00:59.7728984Z #19 21.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.3.0/plexus-java-1.3.0.pom (14 kB at 523 kB/s) +2026-04-06T14:00:59.8733169Z #19 21.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.1.0/qdox-2.1.0.pom +2026-04-06T14:00:59.8733879Z #19 21.21 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.1.0/qdox-2.1.0.pom (18 kB at 568 kB/s) +2026-04-06T14:00:59.8734214Z #19 21.22 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/3.5.2/surefire-api-3.5.2.jar +2026-04-06T14:00:59.8734457Z #19 21.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/3.5.2/surefire-api-3.5.2.jar (171 kB at 6.3 MB/s) +2026-04-06T14:00:59.8734721Z #19 21.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/3.5.2/surefire-logger-api-3.5.2.jar +2026-04-06T14:00:59.8734958Z #19 21.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-shared-utils/3.5.2/surefire-shared-utils-3.5.2.jar +2026-04-06T14:00:59.8735170Z #19 21.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-api/3.5.2/surefire-extensions-api-3.5.2.jar +2026-04-06T14:00:59.8735414Z #19 21.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/3.5.2/maven-surefire-common-3.5.2.jar +2026-04-06T14:00:59.8735621Z #19 21.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/3.5.2/surefire-booter-3.5.2.jar +2026-04-06T14:00:59.8735853Z #19 21.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/3.5.2/surefire-logger-api-3.5.2.jar (14 kB at 566 kB/s) +2026-04-06T14:00:59.8736075Z #19 21.27 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-spi/3.5.2/surefire-extensions-spi-3.5.2.jar +2026-04-06T14:00:59.9766625Z #19 21.28 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/3.5.2/maven-surefire-common-3.5.2.jar (311 kB at 10 MB/s) +2026-04-06T14:00:59.9767730Z #19 21.29 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.3.0/plexus-java-1.3.0.jar +2026-04-06T14:00:59.9768032Z #19 21.29 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-api/3.5.2/surefire-extensions-api-3.5.2.jar (26 kB at 742 kB/s) +2026-04-06T14:00:59.9768285Z #19 21.29 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.1.0/qdox-2.1.0.jar +2026-04-06T14:00:59.9768526Z #19 21.30 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/3.5.2/surefire-booter-3.5.2.jar (118 kB at 2.7 MB/s) +2026-04-06T14:00:59.9768769Z #19 21.30 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-spi/3.5.2/surefire-extensions-spi-3.5.2.jar (8.2 kB at 178 kB/s) +2026-04-06T14:00:59.9769018Z #19 21.31 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-shared-utils/3.5.2/surefire-shared-utils-3.5.2.jar (2.8 MB at 43 MB/s) +2026-04-06T14:00:59.9769260Z #19 21.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.3.0/plexus-java-1.3.0.jar (57 kB at 882 kB/s) +2026-04-06T14:00:59.9769491Z #19 21.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.1.0/qdox-2.1.0.jar (348 kB at 5.2 MB/s) +2026-04-06T14:00:59.9769710Z #19 21.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.9.18/maven-resolver-util-1.9.18.pom +2026-04-06T14:00:59.9769928Z #19 21.35 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.9.18/maven-resolver-util-1.9.18.pom (2.9 kB at 130 kB/s) +2026-04-06T14:00:59.9770151Z #19 21.36 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.9.18/maven-resolver-1.9.18.pom +2026-04-06T14:00:59.9770362Z #19 21.38 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.9.18/maven-resolver-1.9.18.pom (22 kB at 1.0 MB/s) +2026-04-06T14:01:00.0796374Z #19 21.39 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.9.18/maven-resolver-api-1.9.18.pom +2026-04-06T14:01:00.0797118Z #19 21.41 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.9.18/maven-resolver-api-1.9.18.pom (2.7 kB at 116 kB/s) +2026-04-06T14:01:00.0797552Z #19 21.42 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.9.18/maven-resolver-util-1.9.18.jar +2026-04-06T14:01:00.0797852Z #19 21.44 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.9.18/maven-resolver-util-1.9.18.jar (196 kB at 8.2 MB/s) +2026-04-06T14:01:00.0798107Z #19 21.44 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.9.18/maven-resolver-api-1.9.18.jar +2026-04-06T14:01:00.0798345Z #19 21.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.9.18/maven-resolver-api-1.9.18.jar (157 kB at 5.8 MB/s) +2026-04-06T14:01:00.0798591Z #19 21.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.pom +2026-04-06T14:01:00.1978691Z #19 21.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.pom (4.5 kB at 187 kB/s) +2026-04-06T14:01:00.1979452Z #19 21.51 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/36/maven-shared-components-36.pom +2026-04-06T14:01:00.1979742Z #19 21.54 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/36/maven-shared-components-36.pom (4.9 kB at 196 kB/s) +2026-04-06T14:01:00.1980042Z #19 21.55 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.jar +2026-04-06T14:01:00.1980417Z #19 21.57 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.jar (36 kB at 1.8 MB/s) +2026-04-06T14:01:00.1980648Z #19 21.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.jar +2026-04-06T14:01:00.1980858Z #19 21.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.jar +2026-04-06T14:01:00.1981048Z #19 21.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar +2026-04-06T14:01:00.1981235Z #19 21.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar +2026-04-06T14:01:00.1981446Z #19 21.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar +2026-04-06T14:01:00.1981628Z #19 21.59 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.jar (225 kB at 8.6 MB/s) +2026-04-06T14:01:00.3341303Z #19 21.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar +2026-04-06T14:01:00.3342151Z #19 21.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.jar (79 kB at 2.3 MB/s) +2026-04-06T14:01:00.3342506Z #19 21.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.jar +2026-04-06T14:01:00.3342746Z #19 21.62 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar (658 kB at 15 MB/s) +2026-04-06T14:01:00.3342965Z #19 21.62 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar (365 kB at 7.3 MB/s) +2026-04-06T14:01:00.3343176Z #19 21.62 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar (1.1 MB at 20 MB/s) +2026-04-06T14:01:00.3343381Z #19 21.63 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar (58 kB at 1.1 MB/s) +2026-04-06T14:01:00.3343586Z #19 21.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.jar (6.8 MB at 43 MB/s) +2026-04-06T14:01:00.4553105Z #19 21.76 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.pom +2026-04-06T14:01:00.4553971Z #19 21.79 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.pom (3.8 kB at 114 kB/s) +2026-04-06T14:01:00.4554298Z #19 21.80 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.11.1/doxia-sink-api-1.11.1.pom +2026-04-06T14:01:00.4554515Z #19 21.83 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.11.1/doxia-sink-api-1.11.1.pom (1.6 kB at 58 kB/s) +2026-04-06T14:01:00.4554855Z #19 21.83 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.11.1/doxia-1.11.1.pom +2026-04-06T14:01:00.4555160Z #19 21.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.11.1/doxia-1.11.1.pom (18 kB at 582 kB/s) +2026-04-06T14:01:00.5657555Z #19 21.86 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.11.1/doxia-logging-api-1.11.1.pom +2026-04-06T14:01:00.5659120Z #19 21.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.11.1/doxia-logging-api-1.11.1.pom (1.6 kB at 55 kB/s) +2026-04-06T14:01:00.5659752Z #19 21.90 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-exec/1.6.0/maven-reporting-exec-1.6.0.pom +2026-04-06T14:01:00.5659996Z #19 21.93 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-exec/1.6.0/maven-reporting-exec-1.6.0.pom (14 kB at 463 kB/s) +2026-04-06T14:01:00.5660236Z #19 21.93 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.0/maven-reporting-api-3.1.0.pom +2026-04-06T14:01:00.6697040Z #19 21.97 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.0/maven-reporting-api-3.1.0.pom (3.8 kB at 130 kB/s) +2026-04-06T14:01:00.6697624Z #19 21.97 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.pom +2026-04-06T14:01:00.6697931Z #19 22.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.pom (2.3 kB at 81 kB/s) +2026-04-06T14:01:00.6698980Z #19 22.00 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.2.5/maven-3.2.5.pom +2026-04-06T14:01:00.6699185Z #19 22.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.2.5/maven-3.2.5.pom (22 kB at 746 kB/s) +2026-04-06T14:01:00.6699368Z #19 22.04 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/25/maven-parent-25.pom +2026-04-06T14:01:00.6699550Z #19 22.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/25/maven-parent-25.pom (37 kB at 1.2 MB/s) +2026-04-06T14:01:00.6699768Z #19 22.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/15/apache-15.pom +2026-04-06T14:01:00.7921301Z #19 22.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/15/apache-15.pom (15 kB at 544 kB/s) +2026-04-06T14:01:00.7922055Z #19 22.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom +2026-04-06T14:01:00.7922319Z #19 22.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 192 kB/s) +2026-04-06T14:01:00.7922558Z #19 22.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.pom +2026-04-06T14:01:00.7922772Z #19 22.16 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.pom (8.1 kB at 288 kB/s) +2026-04-06T14:01:00.7922976Z #19 22.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5.pom +2026-04-06T14:01:00.7923187Z #19 22.19 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5.pom (4.2 kB at 157 kB/s) +2026-04-06T14:01:00.9139376Z #19 22.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.pom +2026-04-06T14:01:00.9140059Z #19 22.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.pom (2.2 kB at 78 kB/s) +2026-04-06T14:01:00.9140429Z #19 22.24 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.pom +2026-04-06T14:01:00.9140724Z #19 22.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.pom (2.6 kB at 84 kB/s) +2026-04-06T14:01:00.9140985Z #19 22.29 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom +2026-04-06T14:01:00.9141274Z #19 22.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom (1.5 kB at 59 kB/s) +2026-04-06T14:01:01.0321240Z #19 22.32 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom +2026-04-06T14:01:01.0322207Z #19 22.35 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom (3.1 kB at 99 kB/s) +2026-04-06T14:01:01.0322491Z #19 22.36 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom +2026-04-06T14:01:01.0322789Z #19 22.39 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 601 kB/s) +2026-04-06T14:01:01.0323036Z #19 22.40 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom +2026-04-06T14:01:01.0323254Z #19 22.43 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 199 kB/s) +2026-04-06T14:01:01.1372552Z #19 22.44 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom +2026-04-06T14:01:01.1373620Z #19 22.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 377 kB/s) +2026-04-06T14:01:01.1374325Z #19 22.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom +2026-04-06T14:01:01.1374602Z #19 22.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom (770 B at 28 kB/s) +2026-04-06T14:01:01.1374866Z #19 22.51 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom +2026-04-06T14:01:01.1375056Z #19 22.54 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom (6.0 kB at 216 kB/s) +2026-04-06T14:01:01.2573540Z #19 22.54 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom +2026-04-06T14:01:01.2574147Z #19 22.57 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 887 kB/s) +2026-04-06T14:01:01.2574348Z #19 22.58 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom +2026-04-06T14:01:01.2574601Z #19 22.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 102 kB/s) +2026-04-06T14:01:01.2574851Z #19 22.61 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom +2026-04-06T14:01:01.2575027Z #19 22.63 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 272 kB/s) +2026-04-06T14:01:01.2575211Z #19 22.63 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom +2026-04-06T14:01:01.2575401Z #19 22.66 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 323 kB/s) +2026-04-06T14:01:01.3795122Z #19 22.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom +2026-04-06T14:01:01.3795731Z #19 22.69 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 74 kB/s) +2026-04-06T14:01:01.3795986Z #19 22.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.pom +2026-04-06T14:01:01.3796258Z #19 22.72 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.pom (2.2 kB at 80 kB/s) +2026-04-06T14:01:01.3796480Z #19 22.73 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.pom +2026-04-06T14:01:01.3796661Z #19 22.75 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.pom (3.0 kB at 108 kB/s) +2026-04-06T14:01:01.3796852Z #19 22.76 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.5/org.eclipse.sisu.plexus-0.3.5.pom +2026-04-06T14:01:01.3797031Z #19 22.78 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.5/org.eclipse.sisu.plexus-0.3.5.pom (4.3 kB at 179 kB/s) +2026-04-06T14:01:01.4827122Z #19 22.79 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.5/sisu-plexus-0.3.5.pom +2026-04-06T14:01:01.4830693Z #19 22.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.5/sisu-plexus-0.3.5.pom (14 kB at 404 kB/s) +2026-04-06T14:01:01.4831082Z #19 22.82 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom +2026-04-06T14:01:01.4831285Z #19 22.85 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom (13 kB at 448 kB/s) +2026-04-06T14:01:01.4831496Z #19 22.86 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom +2026-04-06T14:01:01.4831724Z #19 22.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 165 kB/s) +2026-04-06T14:01:01.6130147Z #19 22.89 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.2/cdi-api-1.2.pom +2026-04-06T14:01:01.6130773Z #19 22.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.2/cdi-api-1.2.pom (6.3 kB at 224 kB/s) +2026-04-06T14:01:01.6131033Z #19 22.92 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/26/weld-parent-26.pom +2026-04-06T14:01:01.6131303Z #19 22.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/26/weld-parent-26.pom (32 kB at 1.0 MB/s) +2026-04-06T14:01:01.6131614Z #19 22.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.5/org.eclipse.sisu.inject-0.3.5.pom +2026-04-06T14:01:01.6131817Z #19 22.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.5/org.eclipse.sisu.inject-0.3.5.pom (2.6 kB at 105 kB/s) +2026-04-06T14:01:01.6132014Z #19 22.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.5/sisu-inject-0.3.5.pom +2026-04-06T14:01:01.7467870Z #19 23.02 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.5/sisu-inject-0.3.5.pom (14 kB at 450 kB/s) +2026-04-06T14:01:01.7468596Z #19 23.02 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom +2026-04-06T14:01:01.7469300Z #19 23.05 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 292 kB/s) +2026-04-06T14:01:01.7469563Z #19 23.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.pom +2026-04-06T14:01:01.7469794Z #19 23.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.pom (3.0 kB at 125 kB/s) +2026-04-06T14:01:01.7470069Z #19 23.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.pom +2026-04-06T14:01:01.7470313Z #19 23.11 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.pom (4.2 kB at 133 kB/s) +2026-04-06T14:01:01.7470533Z #19 23.11 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.pom +2026-04-06T14:01:01.7470781Z #19 23.15 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.pom (2.1 kB at 60 kB/s) +2026-04-06T14:01:01.8584718Z #19 23.16 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.pom +2026-04-06T14:01:01.8585299Z #19 23.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.pom (3.5 kB at 76 kB/s) +2026-04-06T14:01:01.8585591Z #19 23.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3.pom +2026-04-06T14:01:01.8585806Z #19 23.26 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3.pom (11 kB at 199 kB/s) +2026-04-06T14:01:01.9880151Z #19 23.26 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-parent/3.2.3/guice-parent-3.2.3.pom +2026-04-06T14:01:01.9881188Z #19 23.30 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-parent/3.2.3/guice-parent-3.2.3.pom (13 kB at 396 kB/s) +2026-04-06T14:01:01.9881456Z #19 23.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/38/forge-parent-38.pom +2026-04-06T14:01:01.9881744Z #19 23.33 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/38/forge-parent-38.pom (19 kB at 721 kB/s) +2026-04-06T14:01:01.9881938Z #19 23.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom +2026-04-06T14:01:01.9882123Z #19 23.36 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 14 kB/s) +2026-04-06T14:01:01.9882316Z #19 23.36 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom +2026-04-06T14:01:01.9882520Z #19 23.39 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom (6.1 kB at 197 kB/s) +2026-04-06T14:01:02.1105572Z #19 23.39 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom +2026-04-06T14:01:02.1106152Z #19 23.42 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom (7.3 kB at 293 kB/s) +2026-04-06T14:01:02.1106374Z #19 23.42 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom +2026-04-06T14:01:02.1106578Z #19 23.45 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 233 kB/s) +2026-04-06T14:01:02.1106887Z #19 23.45 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom +2026-04-06T14:01:02.1107077Z #19 23.48 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 548 kB/s) +2026-04-06T14:01:02.1107286Z #19 23.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom +2026-04-06T14:01:02.1107468Z #19 23.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 2.1 MB/s) +2026-04-06T14:01:02.2385169Z #19 23.52 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.2/maven-archiver-3.5.2.pom +2026-04-06T14:01:02.2385890Z #19 23.55 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.2/maven-archiver-3.5.2.pom (5.5 kB at 191 kB/s) +2026-04-06T14:01:02.2386147Z #19 23.55 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.pom +2026-04-06T14:01:02.2386366Z #19 23.58 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.pom (2.0 kB at 76 kB/s) +2026-04-06T14:01:02.2386589Z #19 23.58 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.1.1/maven-3.1.1.pom +2026-04-06T14:01:02.2386773Z #19 23.61 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.1.1/maven-3.1.1.pom (22 kB at 789 kB/s) +2026-04-06T14:01:02.2386955Z #19 23.61 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom +2026-04-06T14:01:02.2387128Z #19 23.64 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 1.2 MB/s) +2026-04-06T14:01:02.3654235Z #19 23.65 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.pom +2026-04-06T14:01:02.3654899Z #19 23.67 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.pom (4.1 kB at 159 kB/s) +2026-04-06T14:01:02.3655231Z #19 23.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.pom +2026-04-06T14:01:02.3655469Z #19 23.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.pom (7.3 kB at 242 kB/s) +2026-04-06T14:01:02.3655727Z #19 23.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.pom +2026-04-06T14:01:02.3655947Z #19 23.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.pom (2.2 kB at 87 kB/s) +2026-04-06T14:01:02.3656158Z #19 23.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.pom +2026-04-06T14:01:02.3656381Z #19 23.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.pom (2.6 kB at 93 kB/s) +2026-04-06T14:01:02.4914780Z #19 23.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.19/plexus-interpolation-1.19.pom +2026-04-06T14:01:02.4915989Z #19 23.80 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.19/plexus-interpolation-1.19.pom (1.0 kB at 40 kB/s) +2026-04-06T14:01:02.4916274Z #19 23.80 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.pom +2026-04-06T14:01:02.4916516Z #19 23.83 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.pom (2.2 kB at 86 kB/s) +2026-04-06T14:01:02.4916773Z #19 23.83 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.pom +2026-04-06T14:01:02.4916994Z #19 23.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.pom (3.4 kB at 130 kB/s) +2026-04-06T14:01:02.4917240Z #19 23.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.pom +2026-04-06T14:01:02.4917444Z #19 23.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.pom (2.8 kB at 108 kB/s) +2026-04-06T14:01:02.5942128Z #19 23.90 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.1.1/maven-aether-provider-3.1.1.pom +2026-04-06T14:01:02.5943093Z #19 23.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.1.1/maven-aether-provider-3.1.1.pom (4.1 kB at 157 kB/s) +2026-04-06T14:01:02.5943340Z #19 23.93 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/0.9.0.M2/aether-api-0.9.0.M2.pom +2026-04-06T14:01:02.5943654Z #19 23.96 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/0.9.0.M2/aether-api-0.9.0.M2.pom (1.7 kB at 64 kB/s) +2026-04-06T14:01:02.5943846Z #19 23.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom +2026-04-06T14:01:02.5944040Z #19 23.99 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom (28 kB at 899 kB/s) +2026-04-06T14:01:02.5944308Z #19 24.00 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/0.9.0.M2/aether-spi-0.9.0.M2.pom +2026-04-06T14:01:02.7135517Z #19 24.02 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/0.9.0.M2/aether-spi-0.9.0.M2.pom (1.8 kB at 63 kB/s) +2026-04-06T14:01:02.7136236Z #19 24.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom +2026-04-06T14:01:02.7136459Z #19 24.05 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom (2.0 kB at 75 kB/s) +2026-04-06T14:01:02.7136649Z #19 24.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/0.9.0.M2/aether-impl-0.9.0.M2.pom +2026-04-06T14:01:02.7136846Z #19 24.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/0.9.0.M2/aether-impl-0.9.0.M2.pom (3.3 kB at 115 kB/s) +2026-04-06T14:01:02.7137027Z #19 24.09 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom +2026-04-06T14:01:02.7137224Z #19 24.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom (5.0 kB at 193 kB/s) +2026-04-06T14:01:02.8339599Z #19 24.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.3/maven-shared-utils-3.3.3.pom +2026-04-06T14:01:02.8340464Z #19 24.14 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.3/maven-shared-utils-3.3.3.pom (5.8 kB at 241 kB/s) +2026-04-06T14:01:02.8340811Z #19 24.15 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.20/commons-compress-1.20.pom +2026-04-06T14:01:02.8341018Z #19 24.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.20/commons-compress-1.20.pom (18 kB at 652 kB/s) +2026-04-06T14:01:02.8341226Z #19 24.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.7/plexus-archiver-4.2.7.pom +2026-04-06T14:01:02.8341422Z #19 24.21 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.7/plexus-archiver-4.2.7.pom (4.9 kB at 182 kB/s) +2026-04-06T14:01:02.8341633Z #19 24.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/8/plexus-8.pom +2026-04-06T14:01:02.8341925Z #19 24.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/8/plexus-8.pom (25 kB at 978 kB/s) +2026-04-06T14:01:02.9556236Z #19 24.24 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.pom +2026-04-06T14:01:02.9557041Z #19 24.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.pom (4.5 kB at 162 kB/s) +2026-04-06T14:01:02.9557383Z #19 24.27 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom +2026-04-06T14:01:02.9557664Z #19 24.29 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom (20 kB at 820 kB/s) +2026-04-06T14:01:02.9557864Z #19 24.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.pom +2026-04-06T14:01:02.9558112Z #19 24.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.pom (8.2 kB at 316 kB/s) +2026-04-06T14:01:02.9558331Z #19 24.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-***/2.1.0/plexus-container-***-2.1.0.pom +2026-04-06T14:01:02.9558554Z #19 24.36 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-***/2.1.0/plexus-container-***-2.1.0.pom (3.0 kB at 106 kB/s) +2026-04-06T14:01:03.0796607Z #19 24.36 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom +2026-04-06T14:01:03.0797232Z #19 24.39 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 176 kB/s) +2026-04-06T14:01:03.0797456Z #19 24.39 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom +2026-04-06T14:01:03.0797637Z #19 24.42 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 572 kB/s) +2026-04-06T14:01:03.0797816Z #19 24.42 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom +2026-04-06T14:01:03.0798099Z #19 24.45 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 203 kB/s) +2026-04-06T14:01:03.0798291Z #19 24.45 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-***-flava/2.0/genesis-***-flava-2.0.pom +2026-04-06T14:01:03.0798508Z #19 24.48 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-***-flava/2.0/genesis-***-flava-2.0.pom (18 kB at 594 kB/s) +2026-04-06T14:01:03.1925742Z #19 24.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom +2026-04-06T14:01:03.1926412Z #19 24.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (18 kB at 682 kB/s) +2026-04-06T14:01:03.1950081Z #19 24.51 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom +2026-04-06T14:01:03.1950334Z #19 24.54 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 99 kB/s) +2026-04-06T14:01:03.1950778Z #19 24.54 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom +2026-04-06T14:01:03.1950979Z #19 24.57 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (1.6 kB at 62 kB/s) +2026-04-06T14:01:03.1951202Z #19 24.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.pom +2026-04-06T14:01:03.1951395Z #19 24.59 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.pom (4.5 kB at 181 kB/s) +2026-04-06T14:01:03.3144975Z #19 24.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom +2026-04-06T14:01:03.3145558Z #19 24.62 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 1.1 MB/s) +2026-04-06T14:01:03.3145841Z #19 24.63 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom +2026-04-06T14:01:03.3146047Z #19 24.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom (14 kB at 594 kB/s) +2026-04-06T14:01:03.3146223Z #19 24.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom +2026-04-06T14:01:03.3146421Z #19 24.69 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom (73 kB at 2.4 MB/s) +2026-04-06T14:01:03.3146602Z #19 24.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom +2026-04-06T14:01:03.3146780Z #19 24.72 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom (28 kB at 1.1 MB/s) +2026-04-06T14:01:03.4310685Z #19 24.72 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom +2026-04-06T14:01:03.4311311Z #19 24.75 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 264 kB/s) +2026-04-06T14:01:03.4311600Z #19 24.75 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom +2026-04-06T14:01:03.4311863Z #19 24.78 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 585 kB/s) +2026-04-06T14:01:03.4312114Z #19 24.78 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom +2026-04-06T14:01:03.4312332Z #19 24.80 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 1.3 MB/s) +2026-04-06T14:01:03.4312562Z #19 24.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom +2026-04-06T14:01:03.4312792Z #19 24.83 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 199 kB/s) +2026-04-06T14:01:03.5315848Z #19 24.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom +2026-04-06T14:01:03.5316698Z #19 24.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 506 kB/s) +2026-04-06T14:01:03.5317079Z #19 24.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom +2026-04-06T14:01:03.5317339Z #19 24.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 517 kB/s) +2026-04-06T14:01:03.5317603Z #19 24.90 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom +2026-04-06T14:01:03.5317877Z #19 24.93 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom (5.0 kB at 142 kB/s) +2026-04-06T14:01:03.6516688Z #19 24.94 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom +2026-04-06T14:01:03.6517304Z #19 24.96 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom (13 kB at 506 kB/s) +2026-04-06T14:01:03.6517544Z #19 24.97 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.pom +2026-04-06T14:01:03.6517805Z #19 25.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.pom (2.0 kB at 68 kB/s) +2026-04-06T14:01:03.6518028Z #19 25.00 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.11.1/doxia-modules-1.11.1.pom +2026-04-06T14:01:03.6518281Z #19 25.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.11.1/doxia-modules-1.11.1.pom (2.7 kB at 105 kB/s) +2026-04-06T14:01:03.6518477Z #19 25.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.pom +2026-04-06T14:01:03.6518664Z #19 25.05 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.pom (2.0 kB at 79 kB/s) +2026-04-06T14:01:03.7756699Z #19 25.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.11.1/doxia-module-apt-1.11.1.pom +2026-04-06T14:01:03.7757380Z #19 25.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.11.1/doxia-module-apt-1.11.1.pom (2.1 kB at 80 kB/s) +2026-04-06T14:01:03.7757601Z #19 25.09 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.11.1/doxia-module-xdoc-1.11.1.pom +2026-04-06T14:01:03.7757816Z #19 25.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.11.1/doxia-module-xdoc-1.11.1.pom (4.5 kB at 166 kB/s) +2026-04-06T14:01:03.7758015Z #19 25.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.11.1/doxia-module-fml-1.11.1.pom +2026-04-06T14:01:03.7758211Z #19 25.15 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.11.1/doxia-module-fml-1.11.1.pom (4.4 kB at 156 kB/s) +2026-04-06T14:01:03.7758399Z #19 25.15 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-markdown/1.11.1/doxia-module-markdown-1.11.1.pom +2026-04-06T14:01:03.7758584Z #19 25.18 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-markdown/1.11.1/doxia-module-markdown-1.11.1.pom (5.4 kB at 215 kB/s) +2026-04-06T14:01:03.8900697Z #19 25.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-all/0.42.14/flexmark-all-0.42.14.pom +2026-04-06T14:01:03.8901509Z #19 25.22 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-all/0.42.14/flexmark-all-0.42.14.pom (9.0 kB at 249 kB/s) +2026-04-06T14:01:03.8901865Z #19 25.22 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-java/0.42.14/flexmark-java-0.42.14.pom +2026-04-06T14:01:03.8902101Z #19 25.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-java/0.42.14/flexmark-java-0.42.14.pom (20 kB at 666 kB/s) +2026-04-06T14:01:03.8902320Z #19 25.26 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark/0.42.14/flexmark-0.42.14.pom +2026-04-06T14:01:03.8902559Z #19 25.29 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark/0.42.14/flexmark-0.42.14.pom (2.5 kB at 79 kB/s) +2026-04-06T14:01:03.9968747Z #19 25.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-util/0.42.14/flexmark-util-0.42.14.pom +2026-04-06T14:01:03.9969880Z #19 25.33 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-util/0.42.14/flexmark-util-0.42.14.pom (792 B at 23 kB/s) +2026-04-06T14:01:03.9970191Z #19 25.34 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-abbreviation/0.42.14/flexmark-ext-abbreviation-0.42.14.pom +2026-04-06T14:01:03.9970736Z #19 25.37 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-abbreviation/0.42.14/flexmark-ext-abbreviation-0.42.14.pom (2.5 kB at 82 kB/s) +2026-04-06T14:01:03.9971102Z #19 25.37 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-autolink/0.42.14/flexmark-ext-autolink-0.42.14.pom +2026-04-06T14:01:03.9971829Z #19 25.40 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-autolink/0.42.14/flexmark-ext-autolink-0.42.14.pom (1.8 kB at 63 kB/s) +2026-04-06T14:01:04.0962728Z #19 25.40 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/nibor/autolink/autolink/0.6.0/autolink-0.6.0.pom +2026-04-06T14:01:04.0963428Z #19 25.43 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/nibor/autolink/autolink/0.6.0/autolink-0.6.0.pom (9.2 kB at 286 kB/s) +2026-04-06T14:01:04.0963787Z #19 25.44 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-formatter/0.42.14/flexmark-formatter-0.42.14.pom +2026-04-06T14:01:04.0964032Z #19 25.46 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-formatter/0.42.14/flexmark-formatter-0.42.14.pom (1.1 kB at 44 kB/s) +2026-04-06T14:01:04.0964315Z #19 25.47 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-admonition/0.42.14/flexmark-ext-admonition-0.42.14.pom +2026-04-06T14:01:04.0964577Z #19 25.50 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-admonition/0.42.14/flexmark-ext-admonition-0.42.14.pom (1.5 kB at 47 kB/s) +2026-04-06T14:01:04.2195155Z #19 25.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-anchorlink/0.42.14/flexmark-ext-anchorlink-0.42.14.pom +2026-04-06T14:01:04.2195906Z #19 25.53 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-anchorlink/0.42.14/flexmark-ext-anchorlink-0.42.14.pom (1.6 kB at 53 kB/s) +2026-04-06T14:01:04.2196414Z #19 25.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-aside/0.42.14/flexmark-ext-aside-0.42.14.pom +2026-04-06T14:01:04.2196748Z #19 25.56 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-aside/0.42.14/flexmark-ext-aside-0.42.14.pom (1.5 kB at 53 kB/s) +2026-04-06T14:01:04.2197184Z #19 25.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-jira-converter/0.42.14/flexmark-jira-converter-0.42.14.pom +2026-04-06T14:01:04.2197460Z #19 25.59 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-jira-converter/0.42.14/flexmark-jira-converter-0.42.14.pom (2.1 kB at 78 kB/s) +2026-04-06T14:01:04.2197662Z #19 25.59 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-strikethrough/0.42.14/flexmark-ext-gfm-strikethrough-0.42.14.pom +2026-04-06T14:01:04.2197861Z #19 25.62 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-strikethrough/0.42.14/flexmark-ext-gfm-strikethrough-0.42.14.pom (1.3 kB at 50 kB/s) +2026-04-06T14:01:04.3381355Z #19 25.62 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-tables/0.42.14/flexmark-ext-tables-0.42.14.pom +2026-04-06T14:01:04.3382641Z #19 25.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-tables/0.42.14/flexmark-ext-tables-0.42.14.pom (1.5 kB at 55 kB/s) +2026-04-06T14:01:04.3383009Z #19 25.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-wikilink/0.42.14/flexmark-ext-wikilink-0.42.14.pom +2026-04-06T14:01:04.3383231Z #19 25.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-wikilink/0.42.14/flexmark-ext-wikilink-0.42.14.pom (1.5 kB at 58 kB/s) +2026-04-06T14:01:04.3383689Z #19 25.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-ins/0.42.14/flexmark-ext-ins-0.42.14.pom +2026-04-06T14:01:04.3383927Z #19 25.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-ins/0.42.14/flexmark-ext-ins-0.42.14.pom (1.3 kB at 45 kB/s) +2026-04-06T14:01:04.3384271Z #19 25.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-superscript/0.42.14/flexmark-ext-superscript-0.42.14.pom +2026-04-06T14:01:04.3384650Z #19 25.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-superscript/0.42.14/flexmark-ext-superscript-0.42.14.pom (1.3 kB at 48 kB/s) +2026-04-06T14:01:04.4555398Z #19 25.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-attributes/0.42.14/flexmark-ext-attributes-0.42.14.pom +2026-04-06T14:01:04.4556088Z #19 25.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-attributes/0.42.14/flexmark-ext-attributes-0.42.14.pom (2.6 kB at 93 kB/s) +2026-04-06T14:01:04.4556359Z #19 25.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-definition/0.42.14/flexmark-ext-definition-0.42.14.pom +2026-04-06T14:01:04.4556570Z #19 25.80 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-definition/0.42.14/flexmark-ext-definition-0.42.14.pom (1.3 kB at 50 kB/s) +2026-04-06T14:01:04.4556765Z #19 25.80 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-emoji/0.42.14/flexmark-ext-emoji-0.42.14.pom +2026-04-06T14:01:04.4556943Z #19 25.83 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-emoji/0.42.14/flexmark-ext-emoji-0.42.14.pom (1.5 kB at 58 kB/s) +2026-04-06T14:01:04.4557128Z #19 25.83 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-enumerated-reference/0.42.14/flexmark-ext-enumerated-reference-0.42.14.pom +2026-04-06T14:01:04.4557320Z #19 25.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-enumerated-reference/0.42.14/flexmark-ext-enumerated-reference-0.42.14.pom (1.7 kB at 64 kB/s) +2026-04-06T14:01:04.5825445Z #19 25.86 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-escaped-character/0.42.14/flexmark-ext-escaped-character-0.42.14.pom +2026-04-06T14:01:04.5826096Z #19 25.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-escaped-character/0.42.14/flexmark-ext-escaped-character-0.42.14.pom (1.3 kB at 45 kB/s) +2026-04-06T14:01:04.5826383Z #19 25.89 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-footnotes/0.42.14/flexmark-ext-footnotes-0.42.14.pom +2026-04-06T14:01:04.5826661Z #19 25.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-footnotes/0.42.14/flexmark-ext-footnotes-0.42.14.pom (1.3 kB at 46 kB/s) +2026-04-06T14:01:04.5826892Z #19 25.92 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-issues/0.42.14/flexmark-ext-gfm-issues-0.42.14.pom +2026-04-06T14:01:04.5827105Z #19 25.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-issues/0.42.14/flexmark-ext-gfm-issues-0.42.14.pom (1.3 kB at 45 kB/s) +2026-04-06T14:01:04.5827292Z #19 25.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tables/0.42.14/flexmark-ext-gfm-tables-0.42.14.pom +2026-04-06T14:01:04.5827487Z #19 25.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tables/0.42.14/flexmark-ext-gfm-tables-0.42.14.pom (1.3 kB at 48 kB/s) +2026-04-06T14:01:04.6993289Z #19 25.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tasklist/0.42.14/flexmark-ext-gfm-tasklist-0.42.14.pom +2026-04-06T14:01:04.6994024Z #19 26.02 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tasklist/0.42.14/flexmark-ext-gfm-tasklist-0.42.14.pom (1.4 kB at 48 kB/s) +2026-04-06T14:01:04.6994282Z #19 26.02 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-users/0.42.14/flexmark-ext-gfm-users-0.42.14.pom +2026-04-06T14:01:04.6994508Z #19 26.04 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-users/0.42.14/flexmark-ext-gfm-users-0.42.14.pom (1.3 kB at 52 kB/s) +2026-04-06T14:01:04.6994722Z #19 26.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gitlab/0.42.14/flexmark-ext-gitlab-0.42.14.pom +2026-04-06T14:01:04.6994921Z #19 26.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gitlab/0.42.14/flexmark-ext-gitlab-0.42.14.pom (1.3 kB at 53 kB/s) +2026-04-06T14:01:04.6995137Z #19 26.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-front-matter/0.42.14/flexmark-ext-jekyll-front-matter-0.42.14.pom +2026-04-06T14:01:04.6995334Z #19 26.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-front-matter/0.42.14/flexmark-ext-jekyll-front-matter-0.42.14.pom (1.5 kB at 53 kB/s) +2026-04-06T14:01:04.8173831Z #19 26.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-yaml-front-matter/0.42.14/flexmark-ext-yaml-front-matter-0.42.14.pom +2026-04-06T14:01:04.8174508Z #19 26.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-yaml-front-matter/0.42.14/flexmark-ext-yaml-front-matter-0.42.14.pom (1.3 kB at 51 kB/s) +2026-04-06T14:01:04.8174787Z #19 26.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-tag/0.42.14/flexmark-ext-jekyll-tag-0.42.14.pom +2026-04-06T14:01:04.8174991Z #19 26.16 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-tag/0.42.14/flexmark-ext-jekyll-tag-0.42.14.pom (1.3 kB at 52 kB/s) +2026-04-06T14:01:04.8175186Z #19 26.16 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-media-tags/0.42.14/flexmark-ext-media-tags-0.42.14.pom +2026-04-06T14:01:04.8175377Z #19 26.19 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-media-tags/0.42.14/flexmark-ext-media-tags-0.42.14.pom (1.0 kB at 35 kB/s) +2026-04-06T14:01:04.8175589Z #19 26.19 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-macros/0.42.14/flexmark-ext-macros-0.42.14.pom +2026-04-06T14:01:04.8175796Z #19 26.22 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-macros/0.42.14/flexmark-ext-macros-0.42.14.pom (1.6 kB at 61 kB/s) +2026-04-06T14:01:04.9330348Z #19 26.22 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-xwiki-macros/0.42.14/flexmark-ext-xwiki-macros-0.42.14.pom +2026-04-06T14:01:04.9330952Z #19 26.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-xwiki-macros/0.42.14/flexmark-ext-xwiki-macros-0.42.14.pom (1.3 kB at 52 kB/s) +2026-04-06T14:01:04.9332445Z #19 26.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-toc/0.42.14/flexmark-ext-toc-0.42.14.pom +2026-04-06T14:01:04.9332801Z #19 26.28 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-toc/0.42.14/flexmark-ext-toc-0.42.14.pom (1.5 kB at 56 kB/s) +2026-04-06T14:01:04.9333079Z #19 26.28 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-typographic/0.42.14/flexmark-ext-typographic-0.42.14.pom +2026-04-06T14:01:04.9333277Z #19 26.31 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-typographic/0.42.14/flexmark-ext-typographic-0.42.14.pom (1.3 kB at 48 kB/s) +2026-04-06T14:01:04.9333472Z #19 26.31 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-youtube-embedded/0.42.14/flexmark-ext-youtube-embedded-0.42.14.pom +2026-04-06T14:01:04.9333660Z #19 26.34 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-youtube-embedded/0.42.14/flexmark-ext-youtube-embedded-0.42.14.pom (883 B at 33 kB/s) +2026-04-06T14:01:05.0616378Z #19 26.34 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-html-parser/0.42.14/flexmark-html-parser-0.42.14.pom +2026-04-06T14:01:05.0616988Z #19 26.37 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-html-parser/0.42.14/flexmark-html-parser-0.42.14.pom (1.5 kB at 50 kB/s) +2026-04-06T14:01:05.0617318Z #19 26.37 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.10.2/jsoup-1.10.2.pom +2026-04-06T14:01:05.0617510Z #19 26.40 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.10.2/jsoup-1.10.2.pom (7.3 kB at 270 kB/s) +2026-04-06T14:01:05.0617726Z #19 26.40 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-profile-pegdown/0.42.14/flexmark-profile-pegdown-0.42.14.pom +2026-04-06T14:01:05.0617939Z #19 26.43 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-profile-pegdown/0.42.14/flexmark-profile-pegdown-0.42.14.pom (4.0 kB at 144 kB/s) +2026-04-06T14:01:05.0618138Z #19 26.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-youtrack-converter/0.42.14/flexmark-youtrack-converter-0.42.14.pom +2026-04-06T14:01:05.0618342Z #19 26.46 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-youtrack-converter/0.42.14/flexmark-youtrack-converter-0.42.14.pom (1.7 kB at 47 kB/s) +2026-04-06T14:01:05.1891426Z #19 26.47 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-confluence/1.11.1/doxia-module-confluence-1.11.1.pom +2026-04-06T14:01:05.1892302Z #19 26.49 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-confluence/1.11.1/doxia-module-confluence-1.11.1.pom (2.2 kB at 81 kB/s) +2026-04-06T14:01:05.1892602Z #19 26.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-docbook-simple/1.11.1/doxia-module-docbook-simple-1.11.1.pom +2026-04-06T14:01:05.1893033Z #19 26.53 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-docbook-simple/1.11.1/doxia-module-docbook-simple-1.11.1.pom (2.0 kB at 72 kB/s) +2026-04-06T14:01:05.1893286Z #19 26.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-twiki/1.11.1/doxia-module-twiki-1.11.1.pom +2026-04-06T14:01:05.1893577Z #19 26.56 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-twiki/1.11.1/doxia-module-twiki-1.11.1.pom (2.1 kB at 73 kB/s) +2026-04-06T14:01:05.1893803Z #19 26.56 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.pom +2026-04-06T14:01:05.1894095Z #19 26.59 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.pom (3.4 kB at 114 kB/s) +2026-04-06T14:01:05.3068497Z #19 26.59 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.11.1/doxia-sitetools-1.11.1.pom +2026-04-06T14:01:05.3069668Z #19 26.62 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.11.1/doxia-sitetools-1.11.1.pom (14 kB at 503 kB/s) +2026-04-06T14:01:05.3070151Z #19 26.62 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.pom +2026-04-06T14:01:05.3070460Z #19 26.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.pom (7.7 kB at 285 kB/s) +2026-04-06T14:01:05.3070694Z #19 26.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom +2026-04-06T14:01:05.3071010Z #19 26.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 77 kB/s) +2026-04-06T14:01:05.3071217Z #19 26.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.pom +2026-04-06T14:01:05.3071422Z #19 26.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.pom (3.0 kB at 117 kB/s) +2026-04-06T14:01:05.4199082Z #19 26.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-***/1.0-alpha-30/plexus-container-***-1.0-alpha-30.pom +2026-04-06T14:01:05.4200857Z #19 26.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-***/1.0-alpha-30/plexus-container-***-1.0-alpha-30.pom (3.5 kB at 129 kB/s) +2026-04-06T14:01:05.4201505Z #19 26.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom +2026-04-06T14:01:05.4201734Z #19 26.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 76 kB/s) +2026-04-06T14:01:05.4202055Z #19 26.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom +2026-04-06T14:01:05.4202260Z #19 26.79 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 359 kB/s) +2026-04-06T14:01:05.4202511Z #19 26.80 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom +2026-04-06T14:01:05.4202812Z #19 26.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 124 kB/s) +2026-04-06T14:01:05.5445816Z #19 26.82 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom +2026-04-06T14:01:05.5446521Z #19 26.85 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 34 kB/s) +2026-04-06T14:01:05.5447185Z #19 26.86 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom +2026-04-06T14:01:05.5447852Z #19 26.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 108 kB/s) +2026-04-06T14:01:05.5448229Z #19 26.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom +2026-04-06T14:01:05.5448476Z #19 26.91 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.7 kB at 111 kB/s) +2026-04-06T14:01:05.5448714Z #19 26.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom +2026-04-06T14:01:05.5449008Z #19 26.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 632 kB/s) +2026-04-06T14:01:05.6680480Z #19 26.95 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-***/1.0-alpha-9-stable-1/plexus-container-***-1.0-alpha-9-stable-1.pom +2026-04-06T14:01:05.6681372Z #19 26.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-***/1.0-alpha-9-stable-1/plexus-container-***-1.0-alpha-9-stable-1.pom (3.9 kB at 146 kB/s) +2026-04-06T14:01:05.6681729Z #19 26.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom +2026-04-06T14:01:05.6681968Z #19 27.01 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 19 kB/s) +2026-04-06T14:01:05.6682195Z #19 27.01 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom +2026-04-06T14:01:05.6682385Z #19 27.04 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 229 kB/s) +2026-04-06T14:01:05.6682602Z #19 27.04 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom +2026-04-06T14:01:05.6682790Z #19 27.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 101 kB/s) +2026-04-06T14:01:05.7841205Z #19 27.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom +2026-04-06T14:01:05.7841868Z #19 27.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 234 kB/s) +2026-04-06T14:01:05.7842138Z #19 27.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom +2026-04-06T14:01:05.7842395Z #19 27.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 374 kB/s) +2026-04-06T14:01:05.7842616Z #19 27.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom +2026-04-06T14:01:05.7842810Z #19 27.16 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 521 kB/s) +2026-04-06T14:01:05.7843026Z #19 27.16 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom +2026-04-06T14:01:05.7843212Z #19 27.19 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 812 kB/s) +2026-04-06T14:01:05.8995176Z #19 27.19 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom +2026-04-06T14:01:05.9009314Z #19 27.22 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 499 kB/s) +2026-04-06T14:01:05.9009701Z #19 27.22 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom +2026-04-06T14:01:05.9009908Z #19 27.24 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 758 kB/s) +2026-04-06T14:01:05.9010137Z #19 27.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom +2026-04-06T14:01:05.9010332Z #19 27.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom (357 B at 15 kB/s) +2026-04-06T14:01:05.9010541Z #19 27.27 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom +2026-04-06T14:01:05.9010756Z #19 27.30 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 32 kB/s) +2026-04-06T14:01:06.0125374Z #19 27.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom +2026-04-06T14:01:06.0127954Z #19 27.33 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 269 kB/s) +2026-04-06T14:01:06.0128385Z #19 27.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom +2026-04-06T14:01:06.0128662Z #19 27.36 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 269 kB/s) +2026-04-06T14:01:06.0128865Z #19 27.36 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom +2026-04-06T14:01:06.0129044Z #19 27.38 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 5.6 kB/s) +2026-04-06T14:01:06.0129230Z #19 27.39 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom +2026-04-06T14:01:06.0129427Z #19 27.41 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 5.2 kB/s) +2026-04-06T14:01:06.1291728Z #19 27.42 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom +2026-04-06T14:01:06.1292507Z #19 27.44 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 6.0 kB/s) +2026-04-06T14:01:06.1292739Z #19 27.45 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom +2026-04-06T14:01:06.1292929Z #19 27.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 251 kB/s) +2026-04-06T14:01:06.1293119Z #19 27.47 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom +2026-04-06T14:01:06.1293324Z #19 27.50 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 41 kB/s) +2026-04-06T14:01:06.1293503Z #19 27.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom +2026-04-06T14:01:06.1293688Z #19 27.53 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom (2.3 kB at 75 kB/s) +2026-04-06T14:01:06.2411412Z #19 27.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom +2026-04-06T14:01:06.2412237Z #19 27.56 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 6.3 kB/s) +2026-04-06T14:01:06.2412501Z #19 27.56 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom +2026-04-06T14:01:06.2412741Z #19 27.59 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom (171 B at 6.8 kB/s) +2026-04-06T14:01:06.2412932Z #19 27.59 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom +2026-04-06T14:01:06.2413122Z #19 27.62 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 119 kB/s) +2026-04-06T14:01:06.2413321Z #19 27.62 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom +2026-04-06T14:01:06.2413529Z #19 27.64 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 90 kB/s) +2026-04-06T14:01:06.3429726Z #19 27.65 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom +2026-04-06T14:01:06.3430350Z #19 27.67 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 424 kB/s) +2026-04-06T14:01:06.3430658Z #19 27.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom +2026-04-06T14:01:06.3430840Z #19 27.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 4.6 kB/s) +2026-04-06T14:01:06.3431046Z #19 27.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom +2026-04-06T14:01:06.3431222Z #19 27.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 4.0 kB/s) +2026-04-06T14:01:06.3431396Z #19 27.75 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom +2026-04-06T14:01:06.4617823Z #19 27.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 379 kB/s) +2026-04-06T14:01:06.4618618Z #19 27.78 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.pom +2026-04-06T14:01:06.4618892Z #19 27.81 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.pom (6.0 kB at 208 kB/s) +2026-04-06T14:01:06.4619135Z #19 27.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom +2026-04-06T14:01:06.4619353Z #19 27.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 82 kB/s) +2026-04-06T14:01:06.4619561Z #19 27.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom +2026-04-06T14:01:06.4619776Z #19 27.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 389 kB/s) +2026-04-06T14:01:06.5792951Z #19 27.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom +2026-04-06T14:01:06.5793981Z #19 27.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 931 kB/s) +2026-04-06T14:01:06.5794341Z #19 27.89 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom +2026-04-06T14:01:06.5794606Z #19 27.93 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 43 kB/s) +2026-04-06T14:01:06.5794837Z #19 27.93 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom +2026-04-06T14:01:06.5795045Z #19 27.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 371 kB/s) +2026-04-06T14:01:06.5795244Z #19 27.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom +2026-04-06T14:01:06.5795435Z #19 27.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 1.2 MB/s) +2026-04-06T14:01:06.6978890Z #19 27.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom +2026-04-06T14:01:06.6979726Z #19 28.01 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom (1.6 kB at 61 kB/s) +2026-04-06T14:01:06.6980099Z #19 28.01 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom +2026-04-06T14:01:06.6980415Z #19 28.04 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom (22 kB at 862 kB/s) +2026-04-06T14:01:06.6980662Z #19 28.04 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/11/maven-parent-11.pom +2026-04-06T14:01:06.6981106Z #19 28.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/11/maven-parent-11.pom (32 kB at 1.2 MB/s) +2026-04-06T14:01:06.6981353Z #19 28.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/5/apache-5.pom +2026-04-06T14:01:06.6981598Z #19 28.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/5/apache-5.pom (4.1 kB at 158 kB/s) +2026-04-06T14:01:06.8175394Z #19 28.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom +2026-04-06T14:01:06.8176016Z #19 28.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom (3.2 kB at 130 kB/s) +2026-04-06T14:01:06.8176298Z #19 28.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom +2026-04-06T14:01:06.8176517Z #19 28.15 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom (1.5 kB at 58 kB/s) +2026-04-06T14:01:06.8176757Z #19 28.16 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.46.v20220331/jetty-server-9.4.46.v20220331.pom +2026-04-06T14:01:06.8177022Z #19 28.18 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.46.v20220331/jetty-server-9.4.46.v20220331.pom (3.4 kB at 127 kB/s) +2026-04-06T14:01:06.8177218Z #19 28.19 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.46.v20220331/jetty-project-9.4.46.v20220331.pom +2026-04-06T14:01:06.8177414Z #19 28.22 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.46.v20220331/jetty-project-9.4.46.v20220331.pom (71 kB at 2.2 MB/s) +2026-04-06T14:01:06.9429982Z #19 28.22 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom +2026-04-06T14:01:06.9430943Z #19 28.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom (5.6 kB at 225 kB/s) +2026-04-06T14:01:06.9431361Z #19 28.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom +2026-04-06T14:01:06.9431622Z #19 28.28 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom (7.2 kB at 226 kB/s) +2026-04-06T14:01:06.9431832Z #19 28.29 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom +2026-04-06T14:01:06.9432102Z #19 28.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom (19 kB at 627 kB/s) +2026-04-06T14:01:06.9432354Z #19 28.32 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom +2026-04-06T14:01:06.9432566Z #19 28.34 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom (13 kB at 493 kB/s) +2026-04-06T14:01:07.0435980Z #19 28.35 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom +2026-04-06T14:01:07.0437404Z #19 28.38 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom (66 kB at 2.2 MB/s) +2026-04-06T14:01:07.0437941Z #19 28.38 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom +2026-04-06T14:01:07.0438170Z #19 28.41 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 kB at 451 kB/s) +2026-04-06T14:01:07.0438514Z #19 28.42 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.46.v20220331/jetty-http-9.4.46.v20220331.pom +2026-04-06T14:01:07.0438704Z #19 28.45 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.46.v20220331/jetty-http-9.4.46.v20220331.pom (4.0 kB at 130 kB/s) +2026-04-06T14:01:07.1444649Z #19 28.45 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.46.v20220331/jetty-util-9.4.46.v20220331.pom +2026-04-06T14:01:07.1446155Z #19 28.48 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.46.v20220331/jetty-util-9.4.46.v20220331.pom (4.0 kB at 149 kB/s) +2026-04-06T14:01:07.1446760Z #19 28.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.46.v20220331/jetty-io-9.4.46.v20220331.pom +2026-04-06T14:01:07.1446976Z #19 28.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.46.v20220331/jetty-io-9.4.46.v20220331.pom (1.2 kB at 48 kB/s) +2026-04-06T14:01:07.1447308Z #19 28.52 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.46.v20220331/jetty-servlet-9.4.46.v20220331.pom +2026-04-06T14:01:07.1447522Z #19 28.54 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.46.v20220331/jetty-servlet-9.4.46.v20220331.pom (2.3 kB at 84 kB/s) +2026-04-06T14:01:07.1447816Z #19 28.55 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.46.v20220331/jetty-security-9.4.46.v20220331.pom +2026-04-06T14:01:07.2659636Z #19 28.57 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.46.v20220331/jetty-security-9.4.46.v20220331.pom (2.1 kB at 81 kB/s) +2026-04-06T14:01:07.2660434Z #19 28.58 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.46.v20220331/jetty-util-ajax-9.4.46.v20220331.pom +2026-04-06T14:01:07.2661196Z #19 28.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.46.v20220331/jetty-util-ajax-9.4.46.v20220331.pom (1.3 kB at 45 kB/s) +2026-04-06T14:01:07.2662071Z #19 28.61 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.46.v20220331/jetty-webapp-9.4.46.v20220331.pom +2026-04-06T14:01:07.2662357Z #19 28.64 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.46.v20220331/jetty-webapp-9.4.46.v20220331.pom (3.2 kB at 113 kB/s) +2026-04-06T14:01:07.2662667Z #19 28.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.46.v20220331/jetty-xml-9.4.46.v20220331.pom +2026-04-06T14:01:07.2662857Z #19 28.67 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.46.v20220331/jetty-xml-9.4.46.v20220331.pom (1.7 kB at 58 kB/s) +2026-04-06T14:01:07.3729589Z #19 28.70 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.jar +2026-04-06T14:01:07.3730629Z #19 28.73 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.jar (11 kB at 391 kB/s) +2026-04-06T14:01:07.3731091Z #19 28.73 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-exec/1.6.0/maven-reporting-exec-1.6.0.jar +2026-04-06T14:01:07.3731357Z #19 28.73 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.jar +2026-04-06T14:01:07.3731636Z #19 28.73 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.jar +2026-04-06T14:01:07.3731870Z #19 28.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.jar +2026-04-06T14:01:07.3732148Z #19 28.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.jar +2026-04-06T14:01:07.3732403Z #19 28.76 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-exec/1.6.0/maven-reporting-exec-1.6.0.jar (31 kB at 1.1 MB/s) +2026-04-06T14:01:07.3732793Z #19 28.76 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.jar +2026-04-06T14:01:07.3733089Z #19 28.76 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.jar (55 kB at 1.8 MB/s) +2026-04-06T14:01:07.3733321Z #19 28.76 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.jar +2026-04-06T14:01:07.3733647Z #19 28.76 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.jar (26 kB at 865 kB/s) +2026-04-06T14:01:07.3733966Z #19 28.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.jar +2026-04-06T14:01:07.3734229Z #19 28.78 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.jar (608 kB at 14 MB/s) +2026-04-06T14:01:07.4801839Z #19 28.78 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.5/org.eclipse.sisu.plexus-0.3.5.jar +2026-04-06T14:01:07.4802611Z #19 28.78 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.jar (170 kB at 3.7 MB/s) +2026-04-06T14:01:07.4802925Z #19 28.78 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar +2026-04-06T14:01:07.4803154Z #19 28.78 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.jar (31 kB at 603 kB/s) +2026-04-06T14:01:07.4803428Z #19 28.78 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.2/cdi-api-1.2.jar +2026-04-06T14:01:07.4803641Z #19 28.78 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.jar (66 kB at 1.3 MB/s) +2026-04-06T14:01:07.4803883Z #19 28.78 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.5/org.eclipse.sisu.inject-0.3.5.jar +2026-04-06T14:01:07.4804067Z #19 28.81 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.5/org.eclipse.sisu.plexus-0.3.5.jar (205 kB at 2.8 MB/s) +2026-04-06T14:01:07.4804269Z #19 28.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3-no_aop.jar +2026-04-06T14:01:07.4804510Z #19 28.81 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar (26 kB at 338 kB/s) +2026-04-06T14:01:07.4804718Z #19 28.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar +2026-04-06T14:01:07.4804909Z #19 28.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.2/cdi-api-1.2.jar (71 kB at 846 kB/s) +2026-04-06T14:01:07.4805112Z #19 28.82 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.jar +2026-04-06T14:01:07.4805284Z #19 28.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.jar (172 kB at 2.0 MB/s) +2026-04-06T14:01:07.4805467Z #19 28.82 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar +2026-04-06T14:01:07.4805684Z #19 28.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.5/org.eclipse.sisu.inject-0.3.5.jar (379 kB at 4.4 MB/s) +2026-04-06T14:01:07.4805884Z #19 28.82 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar +2026-04-06T14:01:07.4806082Z #19 28.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 42 kB/s) +2026-04-06T14:01:07.4806282Z #19 28.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar +2026-04-06T14:01:07.4806472Z #19 28.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar (53 kB at 492 kB/s) +2026-04-06T14:01:07.4806667Z #19 28.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5.jar +2026-04-06T14:01:07.4806840Z #19 28.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3-no_aop.jar (398 kB at 3.6 MB/s) +2026-04-06T14:01:07.4807021Z #19 28.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.jar +2026-04-06T14:01:07.4807204Z #19 28.85 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar (29 kB at 238 kB/s) +2026-04-06T14:01:07.4807385Z #19 28.85 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.jar +2026-04-06T14:01:07.4807567Z #19 28.87 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 102 kB/s) +2026-04-06T14:01:07.4807770Z #19 28.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.jar +2026-04-06T14:01:07.4807959Z #19 28.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5.jar (161 kB at 1.1 MB/s) +2026-04-06T14:01:07.4808156Z #19 28.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.jar (2.2 MB at 16 MB/s) +2026-04-06T14:01:07.4808338Z #19 28.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar +2026-04-06T14:01:07.4808524Z #19 28.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar +2026-04-06T14:01:07.4808680Z #19 28.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.jar (46 kB at 312 kB/s) +2026-04-06T14:01:07.4808876Z #19 28.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.2/maven-archiver-3.5.2.jar +2026-04-06T14:01:07.5832264Z #19 28.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.jar (43 kB at 276 kB/s) +2026-04-06T14:01:07.5833090Z #19 28.89 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.20/commons-compress-1.20.jar +2026-04-06T14:01:07.5833361Z #19 28.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.jar (44 kB at 275 kB/s) +2026-04-06T14:01:07.5833592Z #19 28.89 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.7/plexus-archiver-4.2.7.jar +2026-04-06T14:01:07.5833876Z #19 28.90 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 912 kB/s) +2026-04-06T14:01:07.5834171Z #19 28.90 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.jar +2026-04-06T14:01:07.5834438Z #19 28.90 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 1.3 MB/s) +2026-04-06T14:01:07.5834661Z #19 28.90 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.jar +2026-04-06T14:01:07.5834850Z #19 28.91 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.2/maven-archiver-3.5.2.jar (26 kB at 149 kB/s) +2026-04-06T14:01:07.5835079Z #19 28.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.11.1/doxia-sink-api-1.11.1.jar +2026-04-06T14:01:07.5835340Z #19 28.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.7/plexus-archiver-4.2.7.jar (195 kB at 1.1 MB/s) +2026-04-06T14:01:07.5835550Z #19 28.92 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.11.1/doxia-logging-api-1.11.1.jar +2026-04-06T14:01:07.5835737Z #19 28.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.jar (267 kB at 1.4 MB/s) +2026-04-06T14:01:07.5835926Z #19 28.92 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.jar +2026-04-06T14:01:07.5836125Z #19 28.93 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.jar (76 kB at 389 kB/s) +2026-04-06T14:01:07.5836408Z #19 28.93 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-***/2.1.0/plexus-container-***-2.1.0.jar +2026-04-06T14:01:07.5836638Z #19 28.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.11.1/doxia-sink-api-1.11.1.jar (12 kB at 57 kB/s) +2026-04-06T14:01:07.5837111Z #19 28.94 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.jar +2026-04-06T14:01:07.5837380Z #19 28.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.20/commons-compress-1.20.jar (632 kB at 3.1 MB/s) +2026-04-06T14:01:07.5837579Z #19 28.94 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.jar +2026-04-06T14:01:07.5837846Z #19 28.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.11.1/doxia-logging-api-1.11.1.jar (12 kB at 57 kB/s) +2026-04-06T14:01:07.5838092Z #19 28.94 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.jar +2026-04-06T14:01:07.5838306Z #19 28.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.jar (218 kB at 1.0 MB/s) +2026-04-06T14:01:07.5838600Z #19 28.95 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar +2026-04-06T14:01:07.5838877Z #19 28.96 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-***/2.1.0/plexus-container-***-2.1.0.jar (230 kB at 1.0 MB/s) +2026-04-06T14:01:07.5839171Z #19 28.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar +2026-04-06T14:01:07.5839419Z #19 28.96 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.jar (4.1 kB at 18 kB/s) +2026-04-06T14:01:07.5839677Z #19 28.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar +2026-04-06T14:01:07.5839916Z #19 28.96 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.jar (148 kB at 647 kB/s) +2026-04-06T14:01:07.5840179Z #19 28.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar +2026-04-06T14:01:07.5840435Z #19 28.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.jar (640 kB at 2.6 MB/s) +2026-04-06T14:01:07.5840645Z #19 28.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar +2026-04-06T14:01:07.5840852Z #19 28.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 2.0 MB/s) +2026-04-06T14:01:07.5841071Z #19 28.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.jar +2026-04-06T14:01:07.5841332Z #19 28.99 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar (183 kB at 732 kB/s) +2026-04-06T14:01:07.6853102Z #19 28.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.jar +2026-04-06T14:01:07.6853953Z #19 29.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 1.3 MB/s) +2026-04-06T14:01:07.6854245Z #19 29.00 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.11.1/doxia-module-apt-1.11.1.jar +2026-04-06T14:01:07.6854479Z #19 29.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 2.9 MB/s) +2026-04-06T14:01:07.6854699Z #19 29.00 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.11.1/doxia-module-xdoc-1.11.1.jar +2026-04-06T14:01:07.6854906Z #19 29.01 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 1.2 MB/s) +2026-04-06T14:01:07.6855114Z #19 29.01 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.11.1/doxia-module-fml-1.11.1.jar +2026-04-06T14:01:07.6855358Z #19 29.01 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.jar (18 kB at 65 kB/s) +2026-04-06T14:01:07.6855612Z #19 29.01 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-markdown/1.11.1/doxia-module-markdown-1.11.1.jar +2026-04-06T14:01:07.6855819Z #19 29.01 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.jar (17 kB at 63 kB/s) +2026-04-06T14:01:07.6856059Z #19 29.01 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-all/0.42.14/flexmark-all-0.42.14.jar +2026-04-06T14:01:07.6856255Z #19 29.02 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.11.1/doxia-module-xdoc-1.11.1.jar (37 kB at 129 kB/s) +2026-04-06T14:01:07.6856475Z #19 29.02 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark/0.42.14/flexmark-0.42.14.jar +2026-04-06T14:01:07.6856714Z #19 29.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.11.1/doxia-module-apt-1.11.1.jar (55 kB at 186 kB/s) +2026-04-06T14:01:07.6856905Z #19 29.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-abbreviation/0.42.14/flexmark-ext-abbreviation-0.42.14.jar +2026-04-06T14:01:07.6857098Z #19 29.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.11.1/doxia-module-fml-1.11.1.jar (38 kB at 131 kB/s) +2026-04-06T14:01:07.6857305Z #19 29.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-admonition/0.42.14/flexmark-ext-admonition-0.42.14.jar +2026-04-06T14:01:07.6857506Z #19 29.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-markdown/1.11.1/doxia-module-markdown-1.11.1.jar (18 kB at 60 kB/s) +2026-04-06T14:01:07.6857721Z #19 29.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-anchorlink/0.42.14/flexmark-ext-anchorlink-0.42.14.jar +2026-04-06T14:01:07.6857948Z #19 29.04 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-all/0.42.14/flexmark-all-0.42.14.jar (2.2 kB at 7.0 kB/s) +2026-04-06T14:01:07.6858162Z #19 29.04 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-aside/0.42.14/flexmark-ext-aside-0.42.14.jar +2026-04-06T14:01:07.6858360Z #19 29.05 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark/0.42.14/flexmark-0.42.14.jar (389 kB at 1.2 MB/s) +2026-04-06T14:01:07.6858550Z #19 29.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-attributes/0.42.14/flexmark-ext-attributes-0.42.14.jar +2026-04-06T14:01:07.6858743Z #19 29.06 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-abbreviation/0.42.14/flexmark-ext-abbreviation-0.42.14.jar (35 kB at 111 kB/s) +2026-04-06T14:01:07.6858975Z #19 29.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-autolink/0.42.14/flexmark-ext-autolink-0.42.14.jar +2026-04-06T14:01:07.6859193Z #19 29.06 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-admonition/0.42.14/flexmark-ext-admonition-0.42.14.jar (34 kB at 107 kB/s) +2026-04-06T14:01:07.6859392Z #19 29.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/nibor/autolink/autolink/0.6.0/autolink-0.6.0.jar +2026-04-06T14:01:07.6859584Z #19 29.06 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-anchorlink/0.42.14/flexmark-ext-anchorlink-0.42.14.jar (17 kB at 52 kB/s) +2026-04-06T14:01:07.6859828Z #19 29.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-definition/0.42.14/flexmark-ext-definition-0.42.14.jar +2026-04-06T14:01:07.6860052Z #19 29.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-aside/0.42.14/flexmark-ext-aside-0.42.14.jar (16 kB at 48 kB/s) +2026-04-06T14:01:07.6860266Z #19 29.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-emoji/0.42.14/flexmark-ext-emoji-0.42.14.jar +2026-04-06T14:01:07.6860474Z #19 29.08 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-attributes/0.42.14/flexmark-ext-attributes-0.42.14.jar (36 kB at 105 kB/s) +2026-04-06T14:01:07.6860788Z #19 29.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-enumerated-reference/0.42.14/flexmark-ext-enumerated-reference-0.42.14.jar +2026-04-06T14:01:07.6860993Z #19 29.08 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-autolink/0.42.14/flexmark-ext-autolink-0.42.14.jar (9.4 kB at 27 kB/s) +2026-04-06T14:01:07.6861171Z #19 29.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-escaped-character/0.42.14/flexmark-ext-escaped-character-0.42.14.jar +2026-04-06T14:01:07.6861383Z #19 29.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-definition/0.42.14/flexmark-ext-definition-0.42.14.jar (40 kB at 114 kB/s) +2026-04-06T14:01:07.7906618Z #19 29.09 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-footnotes/0.42.14/flexmark-ext-footnotes-0.42.14.jar +2026-04-06T14:01:07.7907365Z #19 29.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-enumerated-reference/0.42.14/flexmark-ext-enumerated-reference-0.42.14.jar (66 kB at 183 kB/s) +2026-04-06T14:01:07.7907995Z #19 29.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-issues/0.42.14/flexmark-ext-gfm-issues-0.42.14.jar +2026-04-06T14:01:07.7909351Z #19 29.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/nibor/autolink/autolink/0.6.0/autolink-0.6.0.jar (16 kB at 44 kB/s) +2026-04-06T14:01:07.7924143Z #19 29.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-strikethrough/0.42.14/flexmark-ext-gfm-strikethrough-0.42.14.jar +2026-04-06T14:01:07.7924682Z #19 29.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-emoji/0.42.14/flexmark-ext-emoji-0.42.14.jar (73 kB at 201 kB/s) +2026-04-06T14:01:07.7924892Z #19 29.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tables/0.42.14/flexmark-ext-gfm-tables-0.42.14.jar +2026-04-06T14:01:07.7925084Z #19 29.11 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-escaped-character/0.42.14/flexmark-ext-escaped-character-0.42.14.jar (13 kB at 35 kB/s) +2026-04-06T14:01:07.7925300Z #19 29.11 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tasklist/0.42.14/flexmark-ext-gfm-tasklist-0.42.14.jar +2026-04-06T14:01:07.7925552Z #19 29.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-footnotes/0.42.14/flexmark-ext-footnotes-0.42.14.jar (41 kB at 107 kB/s) +2026-04-06T14:01:07.7925749Z #19 29.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-users/0.42.14/flexmark-ext-gfm-users-0.42.14.jar +2026-04-06T14:01:07.7925952Z #19 29.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-issues/0.42.14/flexmark-ext-gfm-issues-0.42.14.jar (16 kB at 41 kB/s) +2026-04-06T14:01:07.7926161Z #19 29.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gitlab/0.42.14/flexmark-ext-gitlab-0.42.14.jar +2026-04-06T14:01:07.7926353Z #19 29.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tasklist/0.42.14/flexmark-ext-gfm-tasklist-0.42.14.jar (28 kB at 71 kB/s) +2026-04-06T14:01:07.7926582Z #19 29.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-front-matter/0.42.14/flexmark-ext-jekyll-front-matter-0.42.14.jar +2026-04-06T14:01:07.7926805Z #19 29.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-strikethrough/0.42.14/flexmark-ext-gfm-strikethrough-0.42.14.jar (29 kB at 73 kB/s) +2026-04-06T14:01:07.7927022Z #19 29.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-tag/0.42.14/flexmark-ext-jekyll-tag-0.42.14.jar +2026-04-06T14:01:07.7927245Z #19 29.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tables/0.42.14/flexmark-ext-gfm-tables-0.42.14.jar (33 kB at 84 kB/s) +2026-04-06T14:01:07.7927422Z #19 29.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-media-tags/0.42.14/flexmark-ext-media-tags-0.42.14.jar +2026-04-06T14:01:07.7927616Z #19 29.14 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-users/0.42.14/flexmark-ext-gfm-users-0.42.14.jar (16 kB at 39 kB/s) +2026-04-06T14:01:07.7927826Z #19 29.14 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-macros/0.42.14/flexmark-ext-macros-0.42.14.jar +2026-04-06T14:01:07.7928026Z #19 29.14 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gitlab/0.42.14/flexmark-ext-gitlab-0.42.14.jar (42 kB at 105 kB/s) +2026-04-06T14:01:07.7928249Z #19 29.14 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-ins/0.42.14/flexmark-ext-ins-0.42.14.jar +2026-04-06T14:01:07.7928480Z #19 29.15 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-front-matter/0.42.14/flexmark-ext-jekyll-front-matter-0.42.14.jar (18 kB at 44 kB/s) +2026-04-06T14:01:07.7928715Z #19 29.15 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-xwiki-macros/0.42.14/flexmark-ext-xwiki-macros-0.42.14.jar +2026-04-06T14:01:07.7928912Z #19 29.16 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-tag/0.42.14/flexmark-ext-jekyll-tag-0.42.14.jar (21 kB at 50 kB/s) +2026-04-06T14:01:07.7929094Z #19 29.16 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-superscript/0.42.14/flexmark-ext-superscript-0.42.14.jar +2026-04-06T14:01:07.7929292Z #19 29.16 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-macros/0.42.14/flexmark-ext-macros-0.42.14.jar (35 kB at 82 kB/s) +2026-04-06T14:01:07.7929486Z #19 29.16 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-tables/0.42.14/flexmark-ext-tables-0.42.14.jar +2026-04-06T14:01:07.7929663Z #19 29.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-media-tags/0.42.14/flexmark-ext-media-tags-0.42.14.jar (25 kB at 58 kB/s) +2026-04-06T14:01:07.7929867Z #19 29.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-toc/0.42.14/flexmark-ext-toc-0.42.14.jar +2026-04-06T14:01:07.7930050Z #19 29.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-ins/0.42.14/flexmark-ext-ins-0.42.14.jar (13 kB at 30 kB/s) +2026-04-06T14:01:07.7930246Z #19 29.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-typographic/0.42.14/flexmark-ext-typographic-0.42.14.jar +2026-04-06T14:01:07.7930427Z #19 29.18 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-xwiki-macros/0.42.14/flexmark-ext-xwiki-macros-0.42.14.jar (31 kB at 70 kB/s) +2026-04-06T14:01:07.7930602Z #19 29.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-wikilink/0.42.14/flexmark-ext-wikilink-0.42.14.jar +2026-04-06T14:01:07.7930772Z #19 29.18 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-superscript/0.42.14/flexmark-ext-superscript-0.42.14.jar (13 kB at 30 kB/s) +2026-04-06T14:01:07.7930949Z #19 29.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-yaml-front-matter/0.42.14/flexmark-ext-yaml-front-matter-0.42.14.jar +2026-04-06T14:01:07.7931152Z #19 29.18 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-tables/0.42.14/flexmark-ext-tables-0.42.14.jar (76 kB at 171 kB/s) +2026-04-06T14:01:07.7931360Z #19 29.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-youtube-embedded/0.42.14/flexmark-ext-youtube-embedded-0.42.14.jar +2026-04-06T14:01:07.7931540Z #19 29.19 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-typographic/0.42.14/flexmark-ext-typographic-0.42.14.jar (22 kB at 48 kB/s) +2026-04-06T14:01:07.7931738Z #19 29.19 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-formatter/0.42.14/flexmark-formatter-0.42.14.jar +2026-04-06T14:01:07.8907907Z #19 29.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-toc/0.42.14/flexmark-ext-toc-0.42.14.jar (91 kB at 198 kB/s) +2026-04-06T14:01:07.8908666Z #19 29.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-html-parser/0.42.14/flexmark-html-parser-0.42.14.jar +2026-04-06T14:01:07.8909310Z #19 29.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-youtube-embedded/0.42.14/flexmark-ext-youtube-embedded-0.42.14.jar (13 kB at 27 kB/s) +2026-04-06T14:01:07.8909565Z #19 29.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.10.2/jsoup-1.10.2.jar +2026-04-06T14:01:07.8909788Z #19 29.21 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-yaml-front-matter/0.42.14/flexmark-ext-yaml-front-matter-0.42.14.jar (18 kB at 39 kB/s) +2026-04-06T14:01:07.8910001Z #19 29.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-jira-converter/0.42.14/flexmark-jira-converter-0.42.14.jar +2026-04-06T14:01:07.8910233Z #19 29.21 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-wikilink/0.42.14/flexmark-ext-wikilink-0.42.14.jar (26 kB at 54 kB/s) +2026-04-06T14:01:07.8910475Z #19 29.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-profile-pegdown/0.42.14/flexmark-profile-pegdown-0.42.14.jar +2026-04-06T14:01:07.8910669Z #19 29.22 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-formatter/0.42.14/flexmark-formatter-0.42.14.jar (97 kB at 203 kB/s) +2026-04-06T14:01:07.8910873Z #19 29.22 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-util/0.42.14/flexmark-util-0.42.14.jar +2026-04-06T14:01:07.8911057Z #19 29.22 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-html-parser/0.42.14/flexmark-html-parser-0.42.14.jar (45 kB at 92 kB/s) +2026-04-06T14:01:07.8911294Z #19 29.22 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-youtrack-converter/0.42.14/flexmark-youtrack-converter-0.42.14.jar +2026-04-06T14:01:07.8911485Z #19 29.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.10.2/jsoup-1.10.2.jar (351 kB at 716 kB/s) +2026-04-06T14:01:07.8911656Z #19 29.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-confluence/1.11.1/doxia-module-confluence-1.11.1.jar +2026-04-06T14:01:07.8911847Z #19 29.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-jira-converter/0.42.14/flexmark-jira-converter-0.42.14.jar (40 kB at 81 kB/s) +2026-04-06T14:01:07.8912044Z #19 29.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-docbook-simple/1.11.1/doxia-module-docbook-simple-1.11.1.jar +2026-04-06T14:01:07.8912248Z #19 29.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-profile-pegdown/0.42.14/flexmark-profile-pegdown-0.42.14.jar (6.3 kB at 13 kB/s) +2026-04-06T14:01:07.8912441Z #19 29.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-twiki/1.11.1/doxia-module-twiki-1.11.1.jar +2026-04-06T14:01:07.8912616Z #19 29.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-youtrack-converter/0.42.14/flexmark-youtrack-converter-0.42.14.jar (41 kB at 80 kB/s) +2026-04-06T14:01:07.8912827Z #19 29.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-util/0.42.14/flexmark-util-0.42.14.jar (385 kB at 755 kB/s) +2026-04-06T14:01:07.8913018Z #19 29.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.jar +2026-04-06T14:01:07.8913219Z #19 29.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.jar +2026-04-06T14:01:07.8913418Z #19 29.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-confluence/1.11.1/doxia-module-confluence-1.11.1.jar (58 kB at 114 kB/s) +2026-04-06T14:01:07.8913619Z #19 29.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.jar +2026-04-06T14:01:07.8913831Z #19 29.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-docbook-simple/1.11.1/doxia-module-docbook-simple-1.11.1.jar (128 kB at 248 kB/s) +2026-04-06T14:01:07.8914035Z #19 29.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar +2026-04-06T14:01:07.8914223Z #19 29.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-twiki/1.11.1/doxia-module-twiki-1.11.1.jar (73 kB at 139 kB/s) +2026-04-06T14:01:07.8914421Z #19 29.27 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar +2026-04-06T14:01:07.8914591Z #19 29.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.jar (65 kB at 122 kB/s) +2026-04-06T14:01:07.8914806Z #19 29.27 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar +2026-04-06T14:01:07.8915001Z #19 29.28 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 15 kB/s) +2026-04-06T14:01:07.8915219Z #19 29.28 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar +2026-04-06T14:01:07.8915401Z #19 29.28 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.jar (16 kB at 30 kB/s) +2026-04-06T14:01:07.8915584Z #19 29.28 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar +2026-04-06T14:01:07.8915768Z #19 29.29 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.jar (60 kB at 108 kB/s) +2026-04-06T14:01:07.9989781Z #19 29.29 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar +2026-04-06T14:01:07.9990865Z #19 29.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 450 kB/s) +2026-04-06T14:01:07.9991200Z #19 29.32 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar +2026-04-06T14:01:07.9991479Z #19 29.33 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 764 kB/s) +2026-04-06T14:01:07.9991724Z #19 29.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar +2026-04-06T14:01:07.9991942Z #19 29.33 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar (189 kB at 319 kB/s) +2026-04-06T14:01:07.9992164Z #19 29.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar +2026-04-06T14:01:07.9992388Z #19 29.33 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (144 kB at 242 kB/s) +2026-04-06T14:01:07.9992667Z #19 29.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.jar +2026-04-06T14:01:07.9992875Z #19 29.33 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 581 kB/s) +2026-04-06T14:01:07.9993076Z #19 29.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.46.v20220331/jetty-server-9.4.46.v20220331.jar +2026-04-06T14:01:07.9993274Z #19 29.36 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 145 kB/s) +2026-04-06T14:01:07.9993486Z #19 29.36 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar +2026-04-06T14:01:07.9993693Z #19 29.37 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.jar (47 kB at 74 kB/s) +2026-04-06T14:01:07.9993905Z #19 29.37 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.46.v20220331/jetty-http-9.4.46.v20220331.jar +2026-04-06T14:01:07.9994079Z #19 29.38 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 102 kB/s) +2026-04-06T14:01:07.9994251Z #19 29.38 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.46.v20220331/jetty-io-9.4.46.v20220331.jar +2026-04-06T14:01:07.9994435Z #19 29.38 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 716 kB/s) +2026-04-06T14:01:07.9994607Z #19 29.38 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.46.v20220331/jetty-servlet-9.4.46.v20220331.jar +2026-04-06T14:01:07.9994780Z #19 29.39 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.46.v20220331/jetty-server-9.4.46.v20220331.jar (733 kB at 1.1 MB/s) +2026-04-06T14:01:07.9994955Z #19 29.39 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.46.v20220331/jetty-security-9.4.46.v20220331.jar +2026-04-06T14:01:08.1914983Z #19 29.39 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar (96 kB at 146 kB/s) +2026-04-06T14:01:08.1915682Z #19 29.39 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.46.v20220331/jetty-util-ajax-9.4.46.v20220331.jar +2026-04-06T14:01:08.1915913Z #19 29.41 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.46.v20220331/jetty-io-9.4.46.v20220331.jar (184 kB at 277 kB/s) +2026-04-06T14:01:08.1916121Z #19 29.41 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.46.v20220331/jetty-webapp-9.4.46.v20220331.jar +2026-04-06T14:01:08.1916309Z #19 29.41 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.46.v20220331/jetty-servlet-9.4.46.v20220331.jar (147 kB at 220 kB/s) +2026-04-06T14:01:08.1916532Z #19 29.41 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.46.v20220331/jetty-xml-9.4.46.v20220331.jar +2026-04-06T14:01:08.1916723Z #19 29.41 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.46.v20220331/jetty-http-9.4.46.v20220331.jar (225 kB at 336 kB/s) +2026-04-06T14:01:08.1916903Z #19 29.41 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.46.v20220331/jetty-util-9.4.46.v20220331.jar +2026-04-06T14:01:08.1917071Z #19 29.42 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.46.v20220331/jetty-security-9.4.46.v20220331.jar (119 kB at 176 kB/s) +2026-04-06T14:01:08.1917254Z #19 29.42 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.46.v20220331/jetty-util-ajax-9.4.46.v20220331.jar (67 kB at 98 kB/s) +2026-04-06T14:01:08.1917446Z #19 29.44 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.46.v20220331/jetty-webapp-9.4.46.v20220331.jar (141 kB at 203 kB/s) +2026-04-06T14:01:08.1917644Z #19 29.44 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.46.v20220331/jetty-util-9.4.46.v20220331.jar (586 kB at 833 kB/s) +2026-04-06T14:01:08.1917821Z #19 29.44 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.46.v20220331/jetty-xml-9.4.46.v20220331.jar (69 kB at 97 kB/s) +2026-04-06T14:01:08.3357186Z #19 29.62 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom +2026-04-06T14:01:08.3357818Z #19 29.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 125 kB/s) +2026-04-06T14:01:08.3358122Z #19 29.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom +2026-04-06T14:01:08.3358321Z #19 29.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 318 kB/s) +2026-04-06T14:01:08.3358548Z #19 29.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.2.0/plexus-java-1.2.0.pom +2026-04-06T14:01:08.3358781Z #19 29.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.2.0/plexus-java-1.2.0.pom (4.3 kB at 178 kB/s) +2026-04-06T14:01:08.3358965Z #19 29.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.2.0/plexus-languages-1.2.0.pom +2026-04-06T14:01:08.3359158Z #19 29.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.2.0/plexus-languages-1.2.0.pom (3.2 kB at 145 kB/s) +2026-04-06T14:01:08.4361098Z #19 29.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/15/plexus-15.pom +2026-04-06T14:01:08.4361852Z #19 29.76 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/15/plexus-15.pom (28 kB at 1.3 MB/s) +2026-04-06T14:01:08.4362131Z #19 29.76 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.6/asm-9.6.pom +2026-04-06T14:01:08.4362322Z #19 29.78 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.6/asm-9.6.pom (2.4 kB at 113 kB/s) +2026-04-06T14:01:08.4362504Z #19 29.79 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom +2026-04-06T14:01:08.4362681Z #19 29.81 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 907 kB/s) +2026-04-06T14:01:08.4362922Z #19 29.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.pom +2026-04-06T14:01:08.4363153Z #19 29.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.pom (1.4 kB at 49 kB/s) +2026-04-06T14:01:08.5397312Z #19 29.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.15.0/plexus-compiler-2.15.0.pom +2026-04-06T14:01:08.5397960Z #19 29.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.15.0/plexus-compiler-2.15.0.pom (7.6 kB at 317 kB/s) +2026-04-06T14:01:08.5398204Z #19 29.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.0/plexus-utils-4.0.0.pom +2026-04-06T14:01:08.5398502Z #19 29.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.0/plexus-utils-4.0.0.pom (8.7 kB at 393 kB/s) +2026-04-06T14:01:08.5398756Z #19 29.89 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/13/plexus-13.pom +2026-04-06T14:01:08.5398981Z #19 29.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/13/plexus-13.pom (27 kB at 1.2 MB/s) +2026-04-06T14:01:08.5399212Z #19 29.92 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.pom +2026-04-06T14:01:08.5399431Z #19 29.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.pom (1.3 kB at 61 kB/s) +2026-04-06T14:01:08.6432460Z #19 29.95 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-xml/3.0.0/plexus-xml-3.0.0.pom +2026-04-06T14:01:08.6433285Z #19 29.97 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-xml/3.0.0/plexus-xml-3.0.0.pom (3.7 kB at 187 kB/s) +2026-04-06T14:01:08.6433602Z #19 29.97 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.pom +2026-04-06T14:01:08.6433946Z #19 29.99 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.pom (1.3 kB at 61 kB/s) +2026-04-06T14:01:08.6434313Z #19 29.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.15.0/plexus-compilers-2.15.0.pom +2026-04-06T14:01:08.6434563Z #19 30.02 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.15.0/plexus-compilers-2.15.0.pom (1.6 kB at 65 kB/s) +2026-04-06T14:01:08.6434822Z #19 30.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar +2026-04-06T14:01:08.6435130Z #19 30.05 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 677 kB/s) +2026-04-06T14:01:08.7496261Z #19 30.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.2.0/plexus-java-1.2.0.jar +2026-04-06T14:01:08.7496986Z #19 30.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.6/asm-9.6.jar +2026-04-06T14:01:08.7497218Z #19 30.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar +2026-04-06T14:01:08.7497403Z #19 30.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.jar +2026-04-06T14:01:08.7497619Z #19 30.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.jar +2026-04-06T14:01:08.7497820Z #19 30.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.2.0/plexus-java-1.2.0.jar (58 kB at 2.7 MB/s) +2026-04-06T14:01:08.7498008Z #19 30.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-xml/3.0.0/plexus-xml-3.0.0.jar +2026-04-06T14:01:08.7498189Z #19 30.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 14 MB/s) +2026-04-06T14:01:08.7498391Z #19 30.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.jar +2026-04-06T14:01:08.7498596Z #19 30.08 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.15.0/plexus-compiler-manager-2.15.0.jar (5.2 kB at 187 kB/s) +2026-04-06T14:01:08.7498809Z #19 30.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.0/plexus-utils-4.0.0.jar +2026-04-06T14:01:08.7499013Z #19 30.08 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.15.0/plexus-compiler-api-2.15.0.jar (29 kB at 969 kB/s) +2026-04-06T14:01:08.7499240Z #19 30.08 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.6/asm-9.6.jar (124 kB at 3.4 MB/s) +2026-04-06T14:01:08.7499418Z #19 30.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-xml/3.0.0/plexus-xml-3.0.0.jar (93 kB at 2.7 MB/s) +2026-04-06T14:01:08.7499603Z #19 30.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.15.0/plexus-compiler-javac-2.15.0.jar (26 kB at 571 kB/s) +2026-04-06T14:01:08.7499869Z #19 30.11 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.0/plexus-utils-4.0.0.jar (192 kB at 3.3 MB/s) +2026-04-06T14:01:08.7500056Z #19 30.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-database-postgresql/10.20.1/flyway-database-postgresql-10.20.1.pom +2026-04-06T14:01:08.7500266Z #19 30.15 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-database-postgresql/10.20.1/flyway-database-postgresql-10.20.1.pom (2.7 kB at 88 kB/s) +2026-04-06T14:01:08.8584010Z #19 30.16 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-core/10.20.1/flyway-core-10.20.1.pom +2026-04-06T14:01:08.8584678Z #19 30.19 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-core/10.20.1/flyway-core-10.20.1.pom (5.6 kB at 188 kB/s) +2026-04-06T14:01:08.8584896Z #19 30.19 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.2/jackson-dataformat-toml-2.15.2.pom +2026-04-06T14:01:08.8585134Z #19 30.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.2/jackson-dataformat-toml-2.15.2.pom (3.5 kB at 97 kB/s) +2026-04-06T14:01:08.8585347Z #19 30.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.2/jackson-dataformats-text-2.15.2.pom +2026-04-06T14:01:08.8585536Z #19 30.26 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.2/jackson-dataformats-text-2.15.2.pom (3.5 kB at 105 kB/s) +2026-04-06T14:01:08.9815064Z #19 30.26 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.15.2/jackson-base-2.15.2.pom +2026-04-06T14:01:08.9815740Z #19 30.29 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.15.2/jackson-base-2.15.2.pom (11 kB at 389 kB/s) +2026-04-06T14:01:08.9815961Z #19 30.29 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom +2026-04-06T14:01:08.9816156Z #19 30.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.15.2/jackson-bom-2.15.2.pom (18 kB at 580 kB/s) +2026-04-06T14:01:08.9816341Z #19 30.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom +2026-04-06T14:01:08.9816559Z #19 30.35 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.15/jackson-parent-2.15.pom (6.5 kB at 251 kB/s) +2026-04-06T14:01:08.9816767Z #19 30.35 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/50/oss-parent-50.pom +2026-04-06T14:01:08.9816939Z #19 30.38 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/50/oss-parent-50.pom (24 kB at 814 kB/s) +2026-04-06T14:01:09.0827916Z #19 30.39 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.15.2/jackson-databind-2.15.2.pom +2026-04-06T14:01:09.0829998Z #19 30.42 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.15.2/jackson-databind-2.15.2.pom (19 kB at 666 kB/s) +2026-04-06T14:01:09.0830477Z #19 30.42 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom +2026-04-06T14:01:09.0830685Z #19 30.45 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom (5.6 kB at 188 kB/s) +2026-04-06T14:01:09.0830870Z #19 30.45 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.15.2/jackson-annotations-2.15.2.pom +2026-04-06T14:01:09.0831059Z #19 30.49 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.15.2/jackson-annotations-2.15.2.pom (7.1 kB at 221 kB/s) +2026-04-06T14:01:09.2095505Z #19 30.49 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.15.2/jackson-core-2.15.2.pom +2026-04-06T14:01:09.2096817Z #19 30.53 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.15.2/jackson-core-2.15.2.pom (9.8 kB at 238 kB/s) +2026-04-06T14:01:09.2097057Z #19 30.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.2/jackson-datatype-jsr310-2.15.2.pom +2026-04-06T14:01:09.2097305Z #19 30.57 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.2/jackson-datatype-jsr310-2.15.2.pom (4.9 kB at 133 kB/s) +2026-04-06T14:01:09.2097506Z #19 30.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.15.2/jackson-modules-java8-2.15.2.pom +2026-04-06T14:01:09.2097757Z #19 30.61 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.15.2/jackson-modules-java8-2.15.2.pom (3.1 kB at 79 kB/s) +2026-04-06T14:01:09.3101639Z #19 30.62 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-database-postgresql/10.20.1/flyway-database-postgresql-10.20.1.jar +2026-04-06T14:01:09.3102250Z #19 30.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-database-postgresql/10.20.1/flyway-database-postgresql-10.20.1.jar (47 kB at 1.6 MB/s) +2026-04-06T14:01:09.3102497Z #19 30.65 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-core/10.20.1/flyway-core-10.20.1.jar +2026-04-06T14:01:09.3102755Z #19 30.65 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.2/jackson-dataformat-toml-2.15.2.jar +2026-04-06T14:01:09.3102972Z #19 30.65 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.15.2/jackson-databind-2.15.2.jar +2026-04-06T14:01:09.3103170Z #19 30.65 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.15.2/jackson-core-2.15.2.jar +2026-04-06T14:01:09.3103366Z #19 30.65 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.2/jackson-datatype-jsr310-2.15.2.jar +2026-04-06T14:01:09.3103583Z #19 30.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.2/jackson-dataformat-toml-2.15.2.jar (56 kB at 2.1 MB/s) +2026-04-06T14:01:09.3103793Z #19 30.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.15.2/jackson-annotations-2.15.2.jar +2026-04-06T14:01:09.3104008Z #19 30.69 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-core/10.20.1/flyway-core-10.20.1.jar (664 kB at 15 MB/s) +2026-04-06T14:01:09.3104207Z #19 30.70 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.2/jackson-datatype-jsr310-2.15.2.jar (123 kB at 2.7 MB/s) +2026-04-06T14:01:09.3104391Z #19 30.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.15.2/jackson-core-2.15.2.jar (549 kB at 9.0 MB/s) +2026-04-06T14:01:09.3104576Z #19 30.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.15.2/jackson-databind-2.15.2.jar (1.6 MB at 25 MB/s) +2026-04-06T14:01:09.3104782Z #19 30.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.15.2/jackson-annotations-2.15.2.jar (76 kB at 1.3 MB/s) +2026-04-06T14:01:09.4209225Z #19 30.72 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-core/3.4.1/docker-java-core-3.4.1.pom +2026-04-06T14:01:09.4210307Z #19 30.75 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-core/3.4.1/docker-java-core-3.4.1.pom (3.0 kB at 129 kB/s) +2026-04-06T14:01:09.4210834Z #19 30.75 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-parent/3.4.1/docker-java-parent-3.4.1.pom +2026-04-06T14:01:09.4211538Z #19 30.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-parent/3.4.1/docker-java-parent-3.4.1.pom (12 kB at 534 kB/s) +2026-04-06T14:01:09.4211904Z #19 30.78 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-api/3.4.1/docker-java-api-3.4.1.pom +2026-04-06T14:01:09.4212123Z #19 30.80 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-api/3.4.1/docker-java-api-3.4.1.pom (2.4 kB at 109 kB/s) +2026-04-06T14:01:09.4212323Z #19 30.80 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.3/jackson-annotations-2.10.3.pom +2026-04-06T14:01:09.4212602Z #19 30.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.3/jackson-annotations-2.10.3.pom (3.4 kB at 149 kB/s) +2026-04-06T14:01:09.5232047Z #19 30.83 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.10/jackson-parent-2.10.pom +2026-04-06T14:01:09.5232654Z #19 30.85 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.10/jackson-parent-2.10.pom (8.3 kB at 359 kB/s) +2026-04-06T14:01:09.5232875Z #19 30.85 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom +2026-04-06T14:01:09.5233264Z #19 30.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 kB at 854 kB/s) +2026-04-06T14:01:09.5233464Z #19 30.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport/3.4.1/docker-java-transport-3.4.1.pom +2026-04-06T14:01:09.5233653Z #19 30.90 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport/3.4.1/docker-java-transport-3.4.1.pom (1.6 kB at 75 kB/s) +2026-04-06T14:01:09.5233847Z #19 30.90 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.3/jackson-databind-2.10.3.pom +2026-04-06T14:01:09.5234031Z #19 30.93 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.3/jackson-databind-2.10.3.pom (7.2 kB at 341 kB/s) +2026-04-06T14:01:09.6309093Z #19 30.93 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.3/jackson-base-2.10.3.pom +2026-04-06T14:01:09.6309729Z #19 30.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.3/jackson-base-2.10.3.pom (7.2 kB at 314 kB/s) +2026-04-06T14:01:09.6309975Z #19 30.95 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.3/jackson-bom-2.10.3.pom +2026-04-06T14:01:09.6310168Z #19 30.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.3/jackson-bom-2.10.3.pom (13 kB at 521 kB/s) +2026-04-06T14:01:09.6310371Z #19 30.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.3/jackson-core-2.10.3.pom +2026-04-06T14:01:09.6310616Z #19 31.01 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.3/jackson-core-2.10.3.pom (4.6 kB at 178 kB/s) +2026-04-06T14:01:09.6310824Z #19 31.01 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.pom +2026-04-06T14:01:09.6311029Z #19 31.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.pom (6.8 kB at 295 kB/s) +2026-04-06T14:01:09.7352828Z #19 31.04 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom +2026-04-06T14:01:09.7353573Z #19 31.06 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom (9.9 kB at 429 kB/s) +2026-04-06T14:01:09.7353862Z #19 31.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom +2026-04-06T14:01:09.7354079Z #19 31.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.pom (1.6 kB at 68 kB/s) +2026-04-06T14:01:09.7354298Z #19 31.09 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom +2026-04-06T14:01:09.7354492Z #19 31.11 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.pom (1.1 kB at 52 kB/s) +2026-04-06T14:01:09.7354772Z #19 31.11 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom +2026-04-06T14:01:09.7354996Z #19 31.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.pom (1.3 kB at 63 kB/s) +2026-04-06T14:01:09.8424451Z #19 31.14 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-core/3.4.1/docker-java-core-3.4.1.jar +2026-04-06T14:01:09.8425103Z #19 31.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-core/3.4.1/docker-java-core-3.4.1.jar (382 kB at 12 MB/s) +2026-04-06T14:01:09.8425321Z #19 31.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-api/3.4.1/docker-java-api-3.4.1.jar +2026-04-06T14:01:09.8425531Z #19 31.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.3/jackson-annotations-2.10.3.jar +2026-04-06T14:01:09.8425724Z #19 31.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport/3.4.1/docker-java-transport-3.4.1.jar +2026-04-06T14:01:09.8425945Z #19 31.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar +2026-04-06T14:01:09.8426130Z #19 31.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar +2026-04-06T14:01:09.8426320Z #19 31.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.3/jackson-annotations-2.10.3.jar (68 kB at 2.6 MB/s) +2026-04-06T14:01:09.8426520Z #19 31.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.3/jackson-databind-2.10.3.jar +2026-04-06T14:01:09.8426718Z #19 31.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar (41 kB at 1.4 MB/s) +2026-04-06T14:01:09.8426923Z #19 31.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.3/jackson-core-2.10.3.jar +2026-04-06T14:01:09.8427117Z #19 31.21 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport/3.4.1/docker-java-transport-3.4.1.jar (39 kB at 1.2 MB/s) +2026-04-06T14:01:09.8427428Z #19 31.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.jar +2026-04-06T14:01:09.8427650Z #19 31.21 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-api/3.4.1/docker-java-api-3.4.1.jar (486 kB at 13 MB/s) +2026-04-06T14:01:09.8427847Z #19 31.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.jar +2026-04-06T14:01:09.8428040Z #19 31.24 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.3/jackson-databind-2.10.3.jar (1.4 MB at 21 MB/s) +2026-04-06T14:01:09.8428280Z #19 31.24 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.jar +2026-04-06T14:01:10.0058300Z #19 31.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.3/jackson-core-2.10.3.jar (349 kB at 4.7 MB/s) +2026-04-06T14:01:10.0060088Z #19 31.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.jar +2026-04-06T14:01:10.0060339Z #19 31.28 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk18on/1.76/bcpkix-jdk18on-1.76.jar (1.1 MB at 11 MB/s) +2026-04-06T14:01:10.0060539Z #19 31.29 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar (1.0 MB at 9.0 MB/s) +2026-04-06T14:01:10.0060752Z #19 31.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.jar (2.3 MB at 16 MB/s) +2026-04-06T14:01:10.0060949Z #19 31.33 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcutil-jdk18on/1.76/bcutil-jdk18on-1.76.jar (677 kB at 4.5 MB/s) +2026-04-06T14:01:10.0061142Z #19 31.41 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk18on/1.76/bcprov-jdk18on-1.76.jar (8.4 MB at 36 MB/s) +2026-04-06T14:01:10.1094449Z #19 31.42 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport-httpclient5/3.4.1/docker-java-transport-httpclient5-3.4.1.pom +2026-04-06T14:01:10.1095313Z #19 31.44 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport-httpclient5/3.4.1/docker-java-transport-httpclient5-3.4.1.pom (2.1 kB at 86 kB/s) +2026-04-06T14:01:10.1096593Z #19 31.44 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5/5.0.3/httpclient5-5.0.3.pom +2026-04-06T14:01:10.1096856Z #19 31.46 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5/5.0.3/httpclient5-5.0.3.pom (6.5 kB at 308 kB/s) +2026-04-06T14:01:10.1097076Z #19 31.47 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5-parent/5.0.3/httpclient5-parent-5.0.3.pom +2026-04-06T14:01:10.1097266Z #19 31.49 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5-parent/5.0.3/httpclient5-parent-5.0.3.pom (13 kB at 595 kB/s) +2026-04-06T14:01:10.1097471Z #19 31.49 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/12/httpcomponents-parent-12.pom +2026-04-06T14:01:10.1097662Z #19 31.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/12/httpcomponents-parent-12.pom (32 kB at 1.5 MB/s) +2026-04-06T14:01:10.2102822Z #19 31.52 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5/5.0.2/httpcore5-5.0.2.pom +2026-04-06T14:01:10.2104259Z #19 31.54 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5/5.0.2/httpcore5-5.0.2.pom (4.8 kB at 201 kB/s) +2026-04-06T14:01:10.2104572Z #19 31.54 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-parent/5.0.2/httpcore5-parent-5.0.2.pom +2026-04-06T14:01:10.2104839Z #19 31.56 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-parent/5.0.2/httpcore5-parent-5.0.2.pom (9.3 kB at 421 kB/s) +2026-04-06T14:01:10.2105041Z #19 31.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-h2/5.0.2/httpcore5-h2-5.0.2.pom +2026-04-06T14:01:10.2105229Z #19 31.59 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-h2/5.0.2/httpcore5-h2-5.0.2.pom (4.3 kB at 214 kB/s) +2026-04-06T14:01:10.2105416Z #19 31.59 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom +2026-04-06T14:01:10.2105620Z #19 31.61 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 167 kB/s) +2026-04-06T14:01:10.3102698Z #19 31.61 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom +2026-04-06T14:01:10.3104502Z #19 31.64 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 kB at 540 kB/s) +2026-04-06T14:01:10.3105369Z #19 31.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.13/commons-codec-1.13.pom +2026-04-06T14:01:10.3105907Z #19 31.67 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.13/commons-codec-1.13.pom (14 kB at 649 kB/s) +2026-04-06T14:01:10.3106162Z #19 31.67 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport-httpclient5/3.4.1/docker-java-transport-httpclient5-3.4.1.jar +2026-04-06T14:01:10.3106585Z #19 31.69 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport-httpclient5/3.4.1/docker-java-transport-httpclient5-3.4.1.jar (18 kB at 913 kB/s) +2026-04-06T14:01:10.3106851Z #19 31.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5/5.0.3/httpclient5-5.0.3.jar +2026-04-06T14:01:10.3107030Z #19 31.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5/5.0.2/httpcore5-5.0.2.jar +2026-04-06T14:01:10.3107317Z #19 31.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-h2/5.0.2/httpcore5-h2-5.0.2.jar +2026-04-06T14:01:10.3107514Z #19 31.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar +2026-04-06T14:01:10.3107680Z #19 31.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.13/commons-codec-1.13.jar +2026-04-06T14:01:10.3107914Z #19 31.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar (41 kB at 2.0 MB/s) +2026-04-06T14:01:10.4313437Z #19 31.73 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5/5.0.3/httpclient5-5.0.3.jar (776 kB at 19 MB/s) +2026-04-06T14:01:10.4314050Z #19 31.73 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.13/commons-codec-1.13.jar (344 kB at 8.8 MB/s) +2026-04-06T14:01:10.4314360Z #19 31.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5/5.0.2/httpcore5-5.0.2.jar (810 kB at 18 MB/s) +2026-04-06T14:01:10.4314573Z #19 31.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-h2/5.0.2/httpcore5-h2-5.0.2.jar (226 kB at 4.8 MB/s) +2026-04-06T14:01:10.4314782Z #19 31.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-aop/3.4.3/spring-boot-starter-aop-3.4.3.pom +2026-04-06T14:01:10.4315023Z #19 31.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-aop/3.4.3/spring-boot-starter-aop-3.4.3.pom (2.5 kB at 77 kB/s) +2026-04-06T14:01:10.4315254Z #19 31.78 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/3.4.3/spring-boot-starter-3.4.3.pom +2026-04-06T14:01:10.4315471Z #19 31.80 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/3.4.3/spring-boot-starter-3.4.3.pom (3.0 kB at 113 kB/s) +2026-04-06T14:01:10.4315709Z #19 31.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/3.4.3/spring-boot-3.4.3.pom +2026-04-06T14:01:10.4315891Z #19 31.83 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/3.4.3/spring-boot-3.4.3.pom (2.2 kB at 78 kB/s) +2026-04-06T14:01:10.5557353Z #19 31.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/3.4.3/spring-boot-autoconfigure-3.4.3.pom +2026-04-06T14:01:10.5558961Z #19 31.87 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/3.4.3/spring-boot-autoconfigure-3.4.3.pom (2.1 kB at 69 kB/s) +2026-04-06T14:01:10.5559837Z #19 31.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/3.4.3/spring-boot-starter-logging-3.4.3.pom +2026-04-06T14:01:10.5560125Z #19 31.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/3.4.3/spring-boot-starter-logging-3.4.3.pom (2.5 kB at 91 kB/s) +2026-04-06T14:01:10.5560411Z #19 31.90 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.5.16/logback-classic-1.5.16.pom +2026-04-06T14:01:10.5560629Z #19 31.93 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.5.16/logback-classic-1.5.16.pom (13 kB at 420 kB/s) +2026-04-06T14:01:10.5560835Z #19 31.93 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.5.16/logback-parent-1.5.16.pom +2026-04-06T14:01:10.5561014Z #19 31.96 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.5.16/logback-parent-1.5.16.pom (18 kB at 635 kB/s) +2026-04-06T14:01:10.6706887Z #19 31.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.5.16/logback-core-1.5.16.pom +2026-04-06T14:01:10.6707621Z #19 31.99 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.5.16/logback-core-1.5.16.pom (7.9 kB at 294 kB/s) +2026-04-06T14:01:10.6707859Z #19 31.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.16/slf4j-api-2.0.16.pom +2026-04-06T14:01:10.6708064Z #19 32.02 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.16/slf4j-api-2.0.16.pom (2.8 kB at 105 kB/s) +2026-04-06T14:01:10.6708247Z #19 32.02 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.16/slf4j-parent-2.0.16.pom +2026-04-06T14:01:10.6708437Z #19 32.05 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.16/slf4j-parent-2.0.16.pom (13 kB at 514 kB/s) +2026-04-06T14:01:10.6708642Z #19 32.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-bom/2.0.16/slf4j-bom-2.0.16.pom +2026-04-06T14:01:10.6708819Z #19 32.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-bom/2.0.16/slf4j-bom-2.0.16.pom (7.3 kB at 306 kB/s) +2026-04-06T14:01:10.7780713Z #19 32.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.pom +2026-04-06T14:01:10.7781518Z #19 32.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.pom (5.0 kB at 186 kB/s) +2026-04-06T14:01:10.7781975Z #19 32.11 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.24.3/log4j-2.24.3.pom +2026-04-06T14:01:10.7782175Z #19 32.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.24.3/log4j-2.24.3.pom (35 kB at 1.3 MB/s) +2026-04-06T14:01:10.7782389Z #19 32.14 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/groovy/groovy-bom/4.0.22/groovy-bom-4.0.22.pom +2026-04-06T14:01:10.7782588Z #19 32.18 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/groovy/groovy-bom/4.0.22/groovy-bom-4.0.22.pom (27 kB at 649 kB/s) +2026-04-06T14:01:10.9037829Z #19 32.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.17.2/jackson-bom-2.17.2.pom +2026-04-06T14:01:10.9038558Z #19 32.21 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.17.2/jackson-bom-2.17.2.pom (19 kB at 668 kB/s) +2026-04-06T14:01:10.9038813Z #19 32.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom +2026-04-06T14:01:10.9039015Z #19 32.24 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.17/jackson-parent-2.17.pom (6.5 kB at 225 kB/s) +2026-04-06T14:01:10.9039231Z #19 32.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/58/oss-parent-58.pom +2026-04-06T14:01:10.9039460Z #19 32.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/58/oss-parent-58.pom (24 kB at 816 kB/s) +2026-04-06T14:01:10.9039646Z #19 32.28 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom +2026-04-06T14:01:10.9039850Z #19 32.31 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/platform/jakarta.jakartaee-bom/9.1.0/jakarta.jakartaee-bom-9.1.0.pom (9.6 kB at 354 kB/s) +2026-04-06T14:01:11.0059435Z #19 32.31 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom +2026-04-06T14:01:11.0061498Z #19 32.34 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/platform/jakartaee-api-parent/9.1.0/jakartaee-api-parent-9.1.0.pom (15 kB at 479 kB/s) +2026-04-06T14:01:11.0061832Z #19 32.34 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom +2026-04-06T14:01:11.0062131Z #19 32.37 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom (14 kB at 506 kB/s) +2026-04-06T14:01:11.0062376Z #19 32.38 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom +2026-04-06T14:01:11.0062555Z #19 32.40 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-bom/4.11.0/mockito-bom-4.11.0.pom (3.2 kB at 113 kB/s) +2026-04-06T14:01:11.0062790Z #19 32.41 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/5.3.39/spring-framework-bom-5.3.39.pom +2026-04-06T14:01:11.1082469Z #19 32.44 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/5.3.39/spring-framework-bom-5.3.39.pom (5.7 kB at 189 kB/s) +2026-04-06T14:01:11.1083186Z #19 32.44 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.pom +2026-04-06T14:01:11.1083429Z #19 32.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.pom (4.4 kB at 147 kB/s) +2026-04-06T14:01:11.1083652Z #19 32.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/2.0.16/jul-to-slf4j-2.0.16.pom +2026-04-06T14:01:11.1083853Z #19 32.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/2.0.16/jul-to-slf4j-2.0.16.pom (1.1 kB at 38 kB/s) +2026-04-06T14:01:11.1084028Z #19 32.51 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom +2026-04-06T14:01:11.2089703Z #19 32.54 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom (16 kB at 510 kB/s) +2026-04-06T14:01:11.2090376Z #19 32.54 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/2.3/snakeyaml-2.3.pom +2026-04-06T14:01:11.2090713Z #19 32.58 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/2.3/snakeyaml-2.3.pom (22 kB at 678 kB/s) +2026-04-06T14:01:11.2090978Z #19 32.58 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjweaver/1.9.22.1/aspectjweaver-1.9.22.1.pom +2026-04-06T14:01:11.2091241Z #19 32.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjweaver/1.9.22.1/aspectjweaver-1.9.22.1.pom (2.2 kB at 82 kB/s) +2026-04-06T14:01:11.2091443Z #19 32.61 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-aop/3.4.3/spring-boot-starter-aop-3.4.3.jar +2026-04-06T14:01:11.3123614Z #19 32.63 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-aop/3.4.3/spring-boot-starter-aop-3.4.3.jar (4.8 kB at 207 kB/s) +2026-04-06T14:01:11.3124459Z #19 32.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/3.4.3/spring-boot-starter-3.4.3.jar +2026-04-06T14:01:11.3124717Z #19 32.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/3.4.3/spring-boot-3.4.3.jar +2026-04-06T14:01:11.3124925Z #19 32.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/3.4.3/spring-boot-autoconfigure-3.4.3.jar +2026-04-06T14:01:11.3125123Z #19 32.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/3.4.3/spring-boot-starter-logging-3.4.3.jar +2026-04-06T14:01:11.3125319Z #19 32.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.5.16/logback-classic-1.5.16.jar +2026-04-06T14:01:11.3125645Z #19 32.66 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/3.4.3/spring-boot-starter-logging-3.4.3.jar (4.8 kB at 198 kB/s) +2026-04-06T14:01:11.3125885Z #19 32.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.5.16/logback-core-1.5.16.jar +2026-04-06T14:01:11.3126085Z #19 32.67 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/3.4.3/spring-boot-starter-3.4.3.jar (4.8 kB at 140 kB/s) +2026-04-06T14:01:11.3126283Z #19 32.67 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.16/slf4j-api-2.0.16.jar +2026-04-06T14:01:11.3126566Z #19 32.69 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.5.16/logback-classic-1.5.16.jar (307 kB at 6.4 MB/s) +2026-04-06T14:01:11.3126780Z #19 32.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.jar +2026-04-06T14:01:11.3127010Z #19 32.70 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/3.4.3/spring-boot-autoconfigure-3.4.3.jar (2.0 MB at 31 MB/s) +2026-04-06T14:01:11.3127297Z #19 32.70 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.jar +2026-04-06T14:01:11.3127544Z #19 32.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.16/slf4j-api-2.0.16.jar (69 kB at 914 kB/s) +2026-04-06T14:01:11.4156812Z #19 32.72 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/2.0.16/jul-to-slf4j-2.0.16.jar +2026-04-06T14:01:11.4158259Z #19 32.72 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.5.16/logback-core-1.5.16.jar (622 kB at 7.9 MB/s) +2026-04-06T14:01:11.4158537Z #19 32.72 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar +2026-04-06T14:01:11.4158786Z #19 32.72 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/3.4.3/spring-boot-3.4.3.jar (1.8 MB at 21 MB/s) +2026-04-06T14:01:11.4158983Z #19 32.72 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/2.3/snakeyaml-2.3.jar +2026-04-06T14:01:11.4159197Z #19 32.72 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.24.3/log4j-to-slf4j-2.24.3.jar (24 kB at 298 kB/s) +2026-04-06T14:01:11.4159447Z #19 32.72 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjweaver/1.9.22.1/aspectjweaver-1.9.22.1.jar +2026-04-06T14:01:11.4159785Z #19 32.73 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.24.3/log4j-api-2.24.3.jar (349 kB at 3.9 MB/s) +2026-04-06T14:01:11.4160019Z #19 32.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/2.0.16/jul-to-slf4j-2.0.16.jar (6.4 kB at 63 kB/s) +2026-04-06T14:01:11.4160357Z #19 32.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar (26 kB at 256 kB/s) +2026-04-06T14:01:11.4160629Z #19 32.75 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/2.3/snakeyaml-2.3.jar (342 kB at 3.2 MB/s) +2026-04-06T14:01:11.4160874Z #19 32.78 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjweaver/1.9.22.1/aspectjweaver-1.9.22.1.jar (2.2 MB at 16 MB/s) +2026-04-06T14:01:11.4161080Z #19 32.79 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-testcontainers/3.4.3/spring-boot-testcontainers-3.4.3.pom +2026-04-06T14:01:11.4161284Z #19 32.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-testcontainers/3.4.3/spring-boot-testcontainers-3.4.3.pom (2.3 kB at 76 kB/s) +2026-04-06T14:01:11.5176427Z #19 32.82 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers/1.20.5/testcontainers-1.20.5.pom +2026-04-06T14:01:11.5177023Z #19 32.85 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers/1.20.5/testcontainers-1.20.5.pom (2.6 kB at 87 kB/s) +2026-04-06T14:01:11.5177237Z #19 32.85 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom +2026-04-06T14:01:11.5177410Z #19 32.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom (27 kB at 872 kB/s) +2026-04-06T14:01:11.5177623Z #19 32.89 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom +2026-04-06T14:01:11.5177815Z #19 32.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 25 kB/s) +2026-04-06T14:01:11.6350047Z #19 32.92 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom +2026-04-06T14:01:11.6350658Z #19 32.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 58 kB/s) +2026-04-06T14:01:11.6350866Z #19 32.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom +2026-04-06T14:01:11.6351052Z #19 32.99 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom (22 kB at 641 kB/s) +2026-04-06T14:01:11.6351233Z #19 32.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/61/commons-parent-61.pom +2026-04-06T14:01:11.6351436Z #19 33.04 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/61/commons-parent-61.pom (81 kB at 1.8 MB/s) +2026-04-06T14:01:11.7611893Z #19 33.04 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom +2026-04-06T14:01:11.7612463Z #19 33.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.pom (6.2 kB at 138 kB/s) +2026-04-06T14:01:11.7612674Z #19 33.09 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom +2026-04-06T14:01:11.7612859Z #19 33.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom (1.4 kB at 31 kB/s) +2026-04-06T14:01:11.7613044Z #19 33.14 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport-zerodep/3.4.1/docker-java-transport-zerodep-3.4.1.pom +2026-04-06T14:01:11.7613324Z #19 33.16 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport-zerodep/3.4.1/docker-java-transport-zerodep-3.4.1.pom (4.1 kB at 141 kB/s) +2026-04-06T14:01:11.8694107Z #19 33.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-testcontainers/3.4.3/spring-boot-testcontainers-3.4.3.jar +2026-04-06T14:01:11.8694842Z #19 33.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-testcontainers/3.4.3/spring-boot-testcontainers-3.4.3.jar (157 kB at 4.9 MB/s) +2026-04-06T14:01:11.8695190Z #19 33.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers/1.20.5/testcontainers-1.20.5.jar +2026-04-06T14:01:11.8695467Z #19 33.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar +2026-04-06T14:01:11.8695674Z #19 33.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar +2026-04-06T14:01:11.8695893Z #19 33.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.jar +2026-04-06T14:01:11.8696093Z #19 33.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.jar +2026-04-06T14:01:11.8696307Z #19 33.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.jar (25 kB at 1.1 MB/s) +2026-04-06T14:01:11.8696531Z #19 33.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/17.0.0/annotations-17.0.0.jar +2026-04-06T14:01:11.8696714Z #19 33.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 1.6 MB/s) +2026-04-06T14:01:11.8696908Z #19 33.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport-zerodep/3.4.1/docker-java-transport-zerodep-3.4.1.jar +2026-04-06T14:01:11.8697133Z #19 33.24 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar (385 kB at 9.4 MB/s) +2026-04-06T14:01:11.8697351Z #19 33.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/17.0.0/annotations-17.0.0.jar (19 kB at 280 kB/s) +2026-04-06T14:01:11.8697562Z #19 33.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.jar (1.1 MB at 16 MB/s) +2026-04-06T14:01:12.0912373Z #19 33.34 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport-zerodep/3.4.1/docker-java-transport-zerodep-3.4.1.jar (2.3 MB at 16 MB/s) +2026-04-06T14:01:12.1190272Z #19 33.52 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers/1.20.5/testcontainers-1.20.5.jar (18 MB at 56 MB/s) +2026-04-06T14:01:12.2511487Z #19 33.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-validation/3.4.3/spring-boot-starter-validation-3.4.3.pom +2026-04-06T14:01:12.2512201Z #19 33.56 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-validation/3.4.3/spring-boot-starter-validation-3.4.3.pom (2.5 kB at 87 kB/s) +2026-04-06T14:01:12.2512493Z #19 33.56 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/10.1.36/tomcat-embed-el-10.1.36.pom +2026-04-06T14:01:12.2512745Z #19 33.59 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/10.1.36/tomcat-embed-el-10.1.36.pom (1.5 kB at 54 kB/s) +2026-04-06T14:01:12.2512958Z #19 33.59 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/8.0.2.Final/hibernate-validator-8.0.2.Final.pom +2026-04-06T14:01:12.2513175Z #19 33.62 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/8.0.2.Final/hibernate-validator-8.0.2.Final.pom (15 kB at 469 kB/s) +2026-04-06T14:01:12.2513548Z #19 33.62 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator-parent/8.0.2.Final/hibernate-validator-parent-8.0.2.Final.pom +2026-04-06T14:01:12.2513753Z #19 33.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator-parent/8.0.2.Final/hibernate-validator-parent-8.0.2.Final.pom (82 kB at 2.6 MB/s) +2026-04-06T14:01:12.3546133Z #19 33.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom +2026-04-06T14:01:12.3546782Z #19 33.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.7.0.Alpha10/arquillian-bom-1.7.0.Alpha10.pom (10 kB at 385 kB/s) +2026-04-06T14:01:12.3547067Z #19 33.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom +2026-04-06T14:01:12.3547340Z #19 33.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom (4.0 kB at 142 kB/s) +2026-04-06T14:01:12.3547568Z #19 33.72 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom +2026-04-06T14:01:12.3547783Z #19 33.76 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/3.1.4/shrinkwrap-resolver-bom-3.1.4.pom (7.0 kB at 225 kB/s) +2026-04-06T14:01:12.4642484Z #19 33.76 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.6.3/maven-3.6.3.pom +2026-04-06T14:01:12.4643085Z #19 33.79 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.6.3/maven-3.6.3.pom (26 kB at 755 kB/s) +2026-04-06T14:01:12.4643306Z #19 33.80 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom +2026-04-06T14:01:12.4643528Z #19 33.83 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0/shrinkwrap-descriptors-bom-2.0.0.pom (5.2 kB at 163 kB/s) +2026-04-06T14:01:12.4643753Z #19 33.83 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom +2026-04-06T14:01:12.4643966Z #19 33.87 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom (11 kB at 323 kB/s) +2026-04-06T14:01:12.5703505Z #19 33.87 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom +2026-04-06T14:01:12.5704110Z #19 33.90 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom (13 kB at 392 kB/s) +2026-04-06T14:01:12.5704328Z #19 33.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.4.3.Final/jboss-logging-3.4.3.Final.pom +2026-04-06T14:01:12.5704582Z #19 33.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.4.3.Final/jboss-logging-3.4.3.Final.pom (15 kB at 510 kB/s) +2026-04-06T14:01:12.5704781Z #19 33.94 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/39/jboss-parent-39.pom +2026-04-06T14:01:12.5704973Z #19 33.97 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/39/jboss-parent-39.pom (68 kB at 2.0 MB/s) +2026-04-06T14:01:12.6832704Z #19 33.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.pom +2026-04-06T14:01:12.6833353Z #19 34.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.pom (7.3 kB at 291 kB/s) +2026-04-06T14:01:12.6833586Z #19 34.00 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom +2026-04-06T14:01:12.6833848Z #19 34.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom (23 kB at 845 kB/s) +2026-04-06T14:01:12.6834063Z #19 34.04 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-validation/3.4.3/spring-boot-starter-validation-3.4.3.jar +2026-04-06T14:01:12.6834272Z #19 34.06 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-validation/3.4.3/spring-boot-starter-validation-3.4.3.jar (4.8 kB at 207 kB/s) +2026-04-06T14:01:12.6834474Z #19 34.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/10.1.36/tomcat-embed-el-10.1.36.jar +2026-04-06T14:01:12.6834658Z #19 34.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/8.0.2.Final/hibernate-validator-8.0.2.Final.jar +2026-04-06T14:01:12.6834957Z #19 34.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.4.3.Final/jboss-logging-3.4.3.Final.jar +2026-04-06T14:01:12.6835142Z #19 34.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar +2026-04-06T14:01:12.6835312Z #19 34.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.jar +2026-04-06T14:01:12.6835504Z #19 34.08 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar (68 kB at 3.4 MB/s) +2026-04-06T14:01:12.8098096Z #19 34.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/10.1.36/tomcat-embed-el-10.1.36.jar (266 kB at 9.8 MB/s) +2026-04-06T14:01:12.8098796Z #19 34.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.4.3.Final/jboss-logging-3.4.3.Final.jar (61 kB at 2.0 MB/s) +2026-04-06T14:01:12.8099054Z #19 34.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.jar (93 kB at 2.6 MB/s) +2026-04-06T14:01:12.8099331Z #19 34.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/8.0.2.Final/hibernate-validator-8.0.2.Final.jar (1.3 MB at 22 MB/s) +2026-04-06T14:01:12.8099566Z #19 34.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/3.4.3/spring-boot-starter-test-3.4.3.pom +2026-04-06T14:01:12.8099791Z #19 34.15 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/3.4.3/spring-boot-starter-test-3.4.3.pom (5.1 kB at 187 kB/s) +2026-04-06T14:01:12.8099995Z #19 34.16 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/3.4.3/spring-boot-test-3.4.3.pom +2026-04-06T14:01:12.8100201Z #19 34.18 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/3.4.3/spring-boot-test-3.4.3.pom (2.2 kB at 92 kB/s) +2026-04-06T14:01:12.8100405Z #19 34.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-test/6.2.3/spring-test-6.2.3.pom +2026-04-06T14:01:12.8100586Z #19 34.21 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-test/6.2.3/spring-test-6.2.3.pom (2.1 kB at 71 kB/s) +2026-04-06T14:01:12.9099770Z #19 34.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/3.4.3/spring-boot-test-autoconfigure-3.4.3.pom +2026-04-06T14:01:12.9100337Z #19 34.24 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/3.4.3/spring-boot-test-autoconfigure-3.4.3.pom (2.5 kB at 85 kB/s) +2026-04-06T14:01:12.9100619Z #19 34.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom +2026-04-06T14:01:12.9100832Z #19 34.28 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.pom (1.9 kB at 66 kB/s) +2026-04-06T14:01:12.9101032Z #19 34.28 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.5.0/json-smart-2.5.0.pom +2026-04-06T14:01:12.9101270Z #19 34.31 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.5.0/json-smart-2.5.0.pom (9.2 kB at 262 kB/s) +2026-04-06T14:01:13.0353530Z #19 34.32 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.5.0/accessors-smart-2.5.0.pom +2026-04-06T14:01:13.0354317Z #19 34.34 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.5.0/accessors-smart-2.5.0.pom (11 kB at 389 kB/s) +2026-04-06T14:01:13.0354581Z #19 34.35 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.3/asm-9.3.pom +2026-04-06T14:01:13.0354807Z #19 34.38 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.3/asm-9.3.pom (2.4 kB at 76 kB/s) +2026-04-06T14:01:13.0355000Z #19 34.38 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom +2026-04-06T14:01:13.0355173Z #19 34.41 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 387 kB/s) +2026-04-06T14:01:13.0355348Z #19 34.41 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.11/slf4j-api-2.0.11.pom +2026-04-06T14:01:13.0355536Z #19 34.44 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.11/slf4j-api-2.0.11.pom (2.8 kB at 101 kB/s) +2026-04-06T14:01:13.1618796Z #19 34.44 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.11/slf4j-parent-2.0.11.pom +2026-04-06T14:01:13.1619472Z #19 34.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.11/slf4j-parent-2.0.11.pom (15 kB at 498 kB/s) +2026-04-06T14:01:13.1619729Z #19 34.47 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-bom/2.0.11/slf4j-bom-2.0.11.pom +2026-04-06T14:01:13.1619933Z #19 34.50 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-bom/2.0.11/slf4j-bom-2.0.11.pom (7.3 kB at 271 kB/s) +2026-04-06T14:01:13.1620135Z #19 34.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom +2026-04-06T14:01:13.1620474Z #19 34.53 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom (13 kB at 424 kB/s) +2026-04-06T14:01:13.1620733Z #19 34.54 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom +2026-04-06T14:01:13.1620956Z #19 34.56 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom (9.1 kB at 352 kB/s) +2026-04-06T14:01:13.2731712Z #19 34.56 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom +2026-04-06T14:01:13.2732558Z #19 34.59 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom (19 kB at 661 kB/s) +2026-04-06T14:01:13.2732863Z #19 34.59 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.5.2/json-smart-2.5.2.pom +2026-04-06T14:01:13.2733071Z #19 34.62 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.5.2/json-smart-2.5.2.pom (10 kB at 407 kB/s) +2026-04-06T14:01:13.2733269Z #19 34.62 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.pom +2026-04-06T14:01:13.2733460Z #19 34.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.pom (12 kB at 456 kB/s) +2026-04-06T14:01:13.2733687Z #19 34.65 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7.1/asm-9.7.1.pom +2026-04-06T14:01:13.2733883Z #19 34.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7.1/asm-9.7.1.pom (2.4 kB at 95 kB/s) +2026-04-06T14:01:13.3991433Z #19 34.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.26.3/assertj-core-3.26.3.pom +2026-04-06T14:01:13.3992117Z #19 34.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.26.3/assertj-core-3.26.3.pom (3.8 kB at 132 kB/s) +2026-04-06T14:01:13.3992344Z #19 34.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.14.18/byte-buddy-1.14.18.pom +2026-04-06T14:01:13.3992582Z #19 34.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.14.18/byte-buddy-1.14.18.pom (16 kB at 530 kB/s) +2026-04-06T14:01:13.3992758Z #19 34.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.14.18/byte-buddy-parent-1.14.18.pom +2026-04-06T14:01:13.3992941Z #19 34.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.14.18/byte-buddy-parent-1.14.18.pom (62 kB at 2.1 MB/s) +2026-04-06T14:01:13.3993143Z #19 34.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.pom +2026-04-06T14:01:13.3993337Z #19 34.80 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.pom (3.5 kB at 127 kB/s) +2026-04-06T14:01:13.5080547Z #19 34.80 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/awaitility/awaitility-parent/4.2.2/awaitility-parent-4.2.2.pom +2026-04-06T14:01:13.5081294Z #19 34.83 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/awaitility/awaitility-parent/4.2.2/awaitility-parent-4.2.2.pom (11 kB at 434 kB/s) +2026-04-06T14:01:13.5081594Z #19 34.83 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1.pom +2026-04-06T14:01:13.5081790Z #19 34.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1.pom (1.1 kB at 42 kB/s) +2026-04-06T14:01:13.5082022Z #19 34.86 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom +2026-04-06T14:01:13.5082217Z #19 34.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom (1.1 kB at 49 kB/s) +2026-04-06T14:01:13.5082408Z #19 34.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.11.4/junit-jupiter-5.11.4.pom +2026-04-06T14:01:13.5082581Z #19 34.91 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.11.4/junit-jupiter-5.11.4.pom (3.2 kB at 123 kB/s) +2026-04-06T14:01:13.6280839Z #19 34.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.11.4/junit-jupiter-api-5.11.4.pom +2026-04-06T14:01:13.6281527Z #19 34.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.11.4/junit-jupiter-api-5.11.4.pom (3.2 kB at 110 kB/s) +2026-04-06T14:01:13.6281745Z #19 34.94 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom +2026-04-06T14:01:13.6281965Z #19 34.97 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.pom (2.0 kB at 75 kB/s) +2026-04-06T14:01:13.6282151Z #19 34.97 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.11.4/junit-platform-commons-1.11.4.pom +2026-04-06T14:01:13.6282384Z #19 35.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.11.4/junit-platform-commons-1.11.4.pom (2.8 kB at 105 kB/s) +2026-04-06T14:01:13.6282599Z #19 35.00 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom +2026-04-06T14:01:13.6282786Z #19 35.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom (1.5 kB at 53 kB/s) +2026-04-06T14:01:13.7548739Z #19 35.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.11.4/junit-jupiter-params-5.11.4.pom +2026-04-06T14:01:13.7549837Z #19 35.06 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.11.4/junit-jupiter-params-5.11.4.pom (3.0 kB at 97 kB/s) +2026-04-06T14:01:13.7550340Z #19 35.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.11.4/junit-jupiter-engine-5.11.4.pom +2026-04-06T14:01:13.7550637Z #19 35.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.11.4/junit-jupiter-engine-5.11.4.pom (3.2 kB at 114 kB/s) +2026-04-06T14:01:13.7550902Z #19 35.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.11.4/junit-platform-engine-1.11.4.pom +2026-04-06T14:01:13.7551258Z #19 35.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.11.4/junit-platform-engine-1.11.4.pom (3.2 kB at 119 kB/s) +2026-04-06T14:01:13.7551518Z #19 35.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-core/5.14.2/mockito-core-5.14.2.pom +2026-04-06T14:01:13.7551752Z #19 35.16 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-core/5.14.2/mockito-core-5.14.2.pom (2.5 kB at 85 kB/s) +2026-04-06T14:01:13.8599186Z #19 35.16 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.15.4/byte-buddy-1.15.4.pom +2026-04-06T14:01:13.8599901Z #19 35.19 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.15.4/byte-buddy-1.15.4.pom (16 kB at 549 kB/s) +2026-04-06T14:01:13.8600118Z #19 35.19 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.15.4/byte-buddy-parent-1.15.4.pom +2026-04-06T14:01:13.8600304Z #19 35.22 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.15.4/byte-buddy-parent-1.15.4.pom (63 kB at 1.9 MB/s) +2026-04-06T14:01:13.8600496Z #19 35.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.15.4/byte-buddy-agent-1.15.4.pom +2026-04-06T14:01:13.8600695Z #19 35.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.15.4/byte-buddy-agent-1.15.4.pom (10 kB at 418 kB/s) +2026-04-06T14:01:13.8600874Z #19 35.26 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/3.3/objenesis-3.3.pom +2026-04-06T14:01:13.9699156Z #19 35.29 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/3.3/objenesis-3.3.pom (3.0 kB at 120 kB/s) +2026-04-06T14:01:13.9699862Z #19 35.29 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom +2026-04-06T14:01:13.9700085Z #19 35.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom (19 kB at 710 kB/s) +2026-04-06T14:01:13.9700318Z #19 35.32 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-junit-jupiter/5.14.2/mockito-junit-jupiter-5.14.2.pom +2026-04-06T14:01:13.9700514Z #19 35.34 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-junit-jupiter/5.14.2/mockito-junit-jupiter-5.14.2.pom (2.3 kB at 88 kB/s) +2026-04-06T14:01:13.9700699Z #19 35.35 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.11.2/junit-jupiter-api-5.11.2.pom +2026-04-06T14:01:13.9700875Z #19 35.37 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.11.2/junit-jupiter-api-5.11.2.pom (3.2 kB at 122 kB/s) +2026-04-06T14:01:14.0883721Z #19 35.37 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.11.2/junit-platform-commons-1.11.2.pom +2026-04-06T14:01:14.0884392Z #19 35.40 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.11.2/junit-platform-commons-1.11.2.pom (2.8 kB at 113 kB/s) +2026-04-06T14:01:14.0884634Z #19 35.40 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.pom +2026-04-06T14:01:14.0884833Z #19 35.43 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.pom (7.0 kB at 241 kB/s) +2026-04-06T14:01:14.0885022Z #19 35.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom +2026-04-06T14:01:14.0885217Z #19 35.46 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom (2.8 kB at 100 kB/s) +2026-04-06T14:01:14.0885459Z #19 35.46 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.10.0/xmlunit-core-2.10.0.pom +2026-04-06T14:01:14.0885666Z #19 35.49 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.10.0/xmlunit-core-2.10.0.pom (2.4 kB at 87 kB/s) +2026-04-06T14:01:14.1964804Z #19 35.49 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-parent/2.10.0/xmlunit-parent-2.10.0.pom +2026-04-06T14:01:14.1965510Z #19 35.52 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-parent/2.10.0/xmlunit-parent-2.10.0.pom (21 kB at 800 kB/s) +2026-04-06T14:01:14.1965719Z #19 35.52 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.pom +2026-04-06T14:01:14.1966099Z #19 35.55 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.pom (13 kB at 536 kB/s) +2026-04-06T14:01:14.1966319Z #19 35.55 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.3/jakarta.xml.bind-api-parent-2.3.3.pom +2026-04-06T14:01:14.1966533Z #19 35.57 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.3/jakarta.xml.bind-api-parent-2.3.3.pom (9.0 kB at 391 kB/s) +2026-04-06T14:01:14.1966731Z #19 35.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.pom +2026-04-06T14:01:14.1966909Z #19 35.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.pom (5.3 kB at 221 kB/s) +2026-04-06T14:01:14.2997059Z #19 35.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.2/all-1.2.2.pom +2026-04-06T14:01:14.2997684Z #19 35.63 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.2/all-1.2.2.pom (15 kB at 489 kB/s) +2026-04-06T14:01:14.2997976Z #19 35.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/3.4.3/spring-boot-starter-test-3.4.3.jar +2026-04-06T14:01:14.2998183Z #19 35.67 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/3.4.3/spring-boot-starter-test-3.4.3.jar (4.8 kB at 200 kB/s) +2026-04-06T14:01:14.2998406Z #19 35.67 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/3.4.3/spring-boot-test-3.4.3.jar +2026-04-06T14:01:14.2998609Z #19 35.67 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.jar +2026-04-06T14:01:14.2998787Z #19 35.67 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/3.4.3/spring-boot-test-autoconfigure-3.4.3.jar +2026-04-06T14:01:14.2999007Z #19 35.67 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.11/slf4j-api-2.0.11.jar +2026-04-06T14:01:14.2999176Z #19 35.67 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.jar +2026-04-06T14:01:14.2999379Z #19 35.69 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.jar (131 kB at 5.2 MB/s) +2026-04-06T14:01:14.2999592Z #19 35.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.jar +2026-04-06T14:01:14.2999778Z #19 35.69 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.jar (277 kB at 9.9 MB/s) +2026-04-06T14:01:14.2999964Z #19 35.70 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.5.2/json-smart-2.5.2.jar +2026-04-06T14:01:14.3000130Z #19 35.70 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.11/slf4j-api-2.0.11.jar (68 kB at 2.2 MB/s) +2026-04-06T14:01:14.3000321Z #19 35.70 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.jar +2026-04-06T14:01:14.3000489Z #19 35.70 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/3.4.3/spring-boot-test-3.4.3.jar (253 kB at 7.5 MB/s) +2026-04-06T14:01:14.3000683Z #19 35.70 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar +2026-04-06T14:01:14.3000863Z #19 35.70 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/3.4.3/spring-boot-test-autoconfigure-3.4.3.jar (227 kB at 6.5 MB/s) +2026-04-06T14:01:14.3001054Z #19 35.70 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.26.3/assertj-core-3.26.3.jar +2026-04-06T14:01:14.4169851Z #19 35.72 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.jar (67 kB at 1.4 MB/s) +2026-04-06T14:01:14.4171267Z #19 35.72 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.14.18/byte-buddy-1.14.18.jar +2026-04-06T14:01:14.4172010Z #19 35.72 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.5.2/accessors-smart-2.5.2.jar (30 kB at 595 kB/s) +2026-04-06T14:01:14.4172831Z #19 35.72 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.jar +2026-04-06T14:01:14.4173630Z #19 35.72 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.5.2/json-smart-2.5.2.jar (122 kB at 2.2 MB/s) +2026-04-06T14:01:14.4174505Z #19 35.72 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar +2026-04-06T14:01:14.4175238Z #19 35.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar (126 kB at 1.8 MB/s) +2026-04-06T14:01:14.4175713Z #19 35.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.11.4/junit-jupiter-5.11.4.jar +2026-04-06T14:01:14.4175930Z #19 35.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.jar (97 kB at 1.4 MB/s) +2026-04-06T14:01:14.4176169Z #19 35.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.11.4/junit-jupiter-api-5.11.4.jar +2026-04-06T14:01:14.4176980Z #19 35.76 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.26.3/assertj-core-3.26.3.jar (1.4 MB at 16 MB/s) +2026-04-06T14:01:14.4177382Z #19 35.76 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar +2026-04-06T14:01:14.4178197Z #19 35.76 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar (123 kB at 1.4 MB/s) +2026-04-06T14:01:14.4179244Z #19 35.76 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.11.4/junit-platform-commons-1.11.4.jar +2026-04-06T14:01:14.4179611Z #19 35.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.11.4/junit-jupiter-api-5.11.4.jar (216 kB at 2.1 MB/s) +2026-04-06T14:01:14.4179820Z #19 35.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar +2026-04-06T14:01:14.4180882Z #19 35.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.11.4/junit-jupiter-5.11.4.jar (6.4 kB at 61 kB/s) +2026-04-06T14:01:14.4181271Z #19 35.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.11.4/junit-jupiter-params-5.11.4.jar +2026-04-06T14:01:14.4181916Z #19 35.79 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar (14 kB at 120 kB/s) +2026-04-06T14:01:14.4182108Z #19 35.79 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.11.4/junit-jupiter-engine-5.11.4.jar +2026-04-06T14:01:14.4182266Z #19 35.79 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar (6.8 kB at 56 kB/s) +2026-04-06T14:01:14.4183521Z #19 35.79 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.11.4/junit-platform-engine-1.11.4.jar +2026-04-06T14:01:14.4184075Z #19 35.80 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.11.4/junit-platform-commons-1.11.4.jar (142 kB at 1.1 MB/s) +2026-04-06T14:01:14.4184740Z #19 35.80 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-core/5.14.2/mockito-core-5.14.2.jar +2026-04-06T14:01:14.4185244Z #19 35.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.11.4/junit-jupiter-params-5.11.4.jar (592 kB at 3.9 MB/s) +2026-04-06T14:01:14.4185778Z #19 35.82 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.15.4/byte-buddy-agent-1.15.4.jar +2026-04-06T14:01:14.5205321Z #19 35.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.11.4/junit-platform-engine-1.11.4.jar (247 kB at 1.6 MB/s) +2026-04-06T14:01:14.5206389Z #19 35.82 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/3.3/objenesis-3.3.jar +2026-04-06T14:01:14.5206688Z #19 35.83 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.11.4/junit-jupiter-engine-5.11.4.jar (260 kB at 1.6 MB/s) +2026-04-06T14:01:14.5206894Z #19 35.83 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-junit-jupiter/5.14.2/mockito-junit-jupiter-5.14.2.jar +2026-04-06T14:01:14.5207070Z #19 35.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-core/5.14.2/mockito-core-5.14.2.jar (708 kB at 4.1 MB/s) +2026-04-06T14:01:14.5207242Z #19 35.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.jar +2026-04-06T14:01:14.5207435Z #19 35.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.14.18/byte-buddy-1.14.18.jar (4.2 MB at 24 MB/s) +2026-04-06T14:01:14.5207615Z #19 35.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar +2026-04-06T14:01:14.5207808Z #19 35.85 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/3.3/objenesis-3.3.jar (49 kB at 279 kB/s) +2026-04-06T14:01:14.5208011Z #19 35.85 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-test/6.2.3/spring-test-6.2.3.jar +2026-04-06T14:01:14.5208196Z #19 35.85 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.15.4/byte-buddy-agent-1.15.4.jar (263 kB at 1.4 MB/s) +2026-04-06T14:01:14.5208438Z #19 35.85 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.10.0/xmlunit-core-2.10.0.jar +2026-04-06T14:01:14.5208623Z #19 35.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-junit-jupiter/5.14.2/mockito-junit-jupiter-5.14.2.jar (8.9 kB at 45 kB/s) +2026-04-06T14:01:14.5209074Z #19 35.87 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.jar (31 kB at 156 kB/s) +2026-04-06T14:01:14.5209863Z #19 35.87 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar (18 kB at 89 kB/s) +2026-04-06T14:01:14.5210381Z #19 35.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.10.0/xmlunit-core-2.10.0.jar (181 kB at 853 kB/s) +2026-04-06T14:01:14.5210629Z #19 35.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-test/6.2.3/spring-test-6.2.3.jar (1.0 MB at 4.6 MB/s) +2026-04-06T14:01:14.5210813Z #19 35.90 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/postgresql/1.21.4/postgresql-1.21.4.pom +2026-04-06T14:01:14.6337024Z #19 35.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/postgresql/1.21.4/postgresql-1.21.4.pom (1.5 kB at 72 kB/s) +2026-04-06T14:01:14.6337802Z #19 35.93 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/jdbc/1.21.4/jdbc-1.21.4.pom +2026-04-06T14:01:14.6338056Z #19 35.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/jdbc/1.21.4/jdbc-1.21.4.pom (1.5 kB at 80 kB/s) +2026-04-06T14:01:14.6338252Z #19 35.95 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/database-commons/1.21.4/database-commons-1.21.4.pom +2026-04-06T14:01:14.6338443Z #19 35.97 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/database-commons/1.21.4/database-commons-1.21.4.pom (1.5 kB at 73 kB/s) +2026-04-06T14:01:14.6338643Z #19 35.97 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers/1.21.4/testcontainers-1.21.4.pom +2026-04-06T14:01:14.6338829Z #19 35.99 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers/1.21.4/testcontainers-1.21.4.pom (2.6 kB at 114 kB/s) +2026-04-06T14:01:14.6339017Z #19 36.00 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-api/3.4.2/docker-java-api-3.4.2.pom +2026-04-06T14:01:14.6339222Z #19 36.01 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-api/3.4.2/docker-java-api-3.4.2.pom (2.4 kB at 134 kB/s) +2026-04-06T14:01:14.6339416Z #19 36.02 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-parent/3.4.2/docker-java-parent-3.4.2.pom +2026-04-06T14:01:14.6339601Z #19 36.04 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-parent/3.4.2/docker-java-parent-3.4.2.pom (12 kB at 588 kB/s) +2026-04-06T14:01:14.7354717Z #19 36.04 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport-zerodep/3.4.2/docker-java-transport-zerodep-3.4.2.pom +2026-04-06T14:01:14.7356245Z #19 36.06 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport-zerodep/3.4.2/docker-java-transport-zerodep-3.4.2.pom (4.1 kB at 204 kB/s) +2026-04-06T14:01:14.7356530Z #19 36.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport/3.4.2/docker-java-transport-3.4.2.pom +2026-04-06T14:01:14.7356785Z #19 36.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport/3.4.2/docker-java-transport-3.4.2.pom (1.6 kB at 63 kB/s) +2026-04-06T14:01:14.7357007Z #19 36.09 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/postgresql/1.21.4/postgresql-1.21.4.jar +2026-04-06T14:01:14.7357325Z #19 36.11 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/postgresql/1.21.4/postgresql-1.21.4.jar (11 kB at 563 kB/s) +2026-04-06T14:01:14.7357579Z #19 36.11 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/jdbc/1.21.4/jdbc-1.21.4.jar +2026-04-06T14:01:14.7357754Z #19 36.11 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/database-commons/1.21.4/database-commons-1.21.4.jar +2026-04-06T14:01:14.7357949Z #19 36.11 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers/1.21.4/testcontainers-1.21.4.jar +2026-04-06T14:01:14.7358128Z #19 36.11 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-api/3.4.2/docker-java-api-3.4.2.jar +2026-04-06T14:01:14.7358323Z #19 36.11 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport-zerodep/3.4.2/docker-java-transport-zerodep-3.4.2.jar +2026-04-06T14:01:14.7358510Z #19 36.14 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/jdbc/1.21.4/jdbc-1.21.4.jar (30 kB at 1.1 MB/s) +2026-04-06T14:01:14.7358715Z #19 36.14 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport/3.4.2/docker-java-transport-3.4.2.jar +2026-04-06T14:01:14.9445230Z #19 36.14 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/database-commons/1.21.4/database-commons-1.21.4.jar (15 kB at 526 kB/s) +2026-04-06T14:01:14.9445997Z #19 36.18 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-api/3.4.2/docker-java-api-3.4.2.jar (487 kB at 7.4 MB/s) +2026-04-06T14:01:14.9446474Z #19 36.19 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport/3.4.2/docker-java-transport-3.4.2.jar (39 kB at 483 kB/s) +2026-04-06T14:01:14.9451057Z #19 36.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/docker-java/docker-java-transport-zerodep/3.4.2/docker-java-transport-zerodep-3.4.2.jar (2.3 MB at 27 MB/s) +2026-04-06T14:01:14.9944371Z #19 36.40 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers/1.21.4/testcontainers-1.21.4.jar (18 MB at 63 MB/s) +2026-04-06T14:01:15.1029539Z #19 36.40 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-jdbc/0.7.1/clickhouse-jdbc-0.7.1.pom +2026-04-06T14:01:15.1030272Z #19 36.43 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-jdbc/0.7.1/clickhouse-jdbc-0.7.1.pom (8.8 kB at 368 kB/s) +2026-04-06T14:01:15.1030533Z #19 36.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-client/0.7.1/clickhouse-client-0.7.1.pom +2026-04-06T14:01:15.1030736Z #19 36.45 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-client/0.7.1/clickhouse-client-0.7.1.pom (3.7 kB at 147 kB/s) +2026-04-06T14:01:15.1030956Z #19 36.45 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-data/0.7.1/clickhouse-data-0.7.1.pom +2026-04-06T14:01:15.1031138Z #19 36.48 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-data/0.7.1/clickhouse-data-0.7.1.pom (1.6 kB at 68 kB/s) +2026-04-06T14:01:15.1031341Z #19 36.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-http-client/0.7.1/clickhouse-http-client-0.7.1.pom +2026-04-06T14:01:15.1031550Z #19 36.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-http-client/0.7.1/clickhouse-http-client-0.7.1.pom (6.6 kB at 255 kB/s) +2026-04-06T14:01:15.2250156Z #19 36.51 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-h2/5.2/httpcore5-h2-5.2.pom +2026-04-06T14:01:15.2250920Z #19 36.53 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-h2/5.2/httpcore5-h2-5.2.pom (3.6 kB at 181 kB/s) +2026-04-06T14:01:15.2251195Z #19 36.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-parent/5.2/httpcore5-parent-5.2.pom +2026-04-06T14:01:15.2251489Z #19 36.55 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-parent/5.2/httpcore5-parent-5.2.pom (14 kB at 722 kB/s) +2026-04-06T14:01:15.2251713Z #19 36.55 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom +2026-04-06T14:01:15.2251910Z #19 36.57 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 282 kB/s) +2026-04-06T14:01:15.2252107Z #19 36.58 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7.pom +2026-04-06T14:01:15.2252314Z #19 36.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7.pom (2.7 kB at 117 kB/s) +2026-04-06T14:01:15.2252514Z #19 36.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.7/slf4j-parent-2.0.7.pom +2026-04-06T14:01:15.2252713Z #19 36.63 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.7/slf4j-parent-2.0.7.pom (17 kB at 743 kB/s) +2026-04-06T14:01:15.3257967Z #19 36.63 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5/5.2.1/httpclient5-5.2.1.pom +2026-04-06T14:01:15.3258742Z #19 36.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5/5.2.1/httpclient5-5.2.1.pom (6.0 kB at 259 kB/s) +2026-04-06T14:01:15.3259212Z #19 36.65 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5-parent/5.2.1/httpclient5-parent-5.2.1.pom +2026-04-06T14:01:15.3259546Z #19 36.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5-parent/5.2.1/httpclient5-parent-5.2.1.pom (17 kB at 768 kB/s) +2026-04-06T14:01:15.3259775Z #19 36.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5/5.2.1/httpcore5-5.2.1.pom +2026-04-06T14:01:15.3259944Z #19 36.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5/5.2.1/httpcore5-5.2.1.pom (3.9 kB at 146 kB/s) +2026-04-06T14:01:15.3260246Z #19 36.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-parent/5.2.1/httpcore5-parent-5.2.1.pom +2026-04-06T14:01:15.3260435Z #19 36.73 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-parent/5.2.1/httpcore5-parent-5.2.1.pom (14 kB at 686 kB/s) +2026-04-06T14:01:15.4508653Z #19 36.73 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-jdbc/0.7.1/clickhouse-jdbc-0.7.1-all.jar +2026-04-06T14:01:15.4509682Z #19 36.85 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-jdbc/0.7.1/clickhouse-jdbc-0.7.1-all.jar (8.1 MB at 67 MB/s) +2026-04-06T14:01:15.5574769Z #19 36.85 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-client/0.7.1/clickhouse-client-0.7.1.jar +2026-04-06T14:01:15.5575606Z #19 36.85 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-data/0.7.1/clickhouse-data-0.7.1.jar +2026-04-06T14:01:15.5575873Z #19 36.86 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-http-client/0.7.1/clickhouse-http-client-0.7.1.jar +2026-04-06T14:01:15.5576128Z #19 36.86 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5/5.2.1/httpclient5-5.2.1.jar +2026-04-06T14:01:15.5576344Z #19 36.86 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-h2/5.2/httpcore5-h2-5.2.jar +2026-04-06T14:01:15.5576537Z #19 36.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-client/0.7.1/clickhouse-client-0.7.1.jar (187 kB at 7.5 MB/s) +2026-04-06T14:01:15.5576887Z #19 36.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7.jar +2026-04-06T14:01:15.5577105Z #19 36.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-http-client/0.7.1/clickhouse-http-client-0.7.1.jar (67 kB at 2.1 MB/s) +2026-04-06T14:01:15.5577316Z #19 36.89 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5/5.2.1/httpcore5-5.2.1.jar +2026-04-06T14:01:15.5577515Z #19 36.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/client5/httpclient5/5.2.1/httpclient5-5.2.1.jar (840 kB at 24 MB/s) +2026-04-06T14:01:15.5577739Z #19 36.90 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5-h2/5.2/httpcore5-h2-5.2.jar (237 kB at 5.9 MB/s) +2026-04-06T14:01:15.5578021Z #19 36.90 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7.jar (64 kB at 1.4 MB/s) +2026-04-06T14:01:15.5578230Z #19 36.90 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/clickhouse/clickhouse-data/0.7.1/clickhouse-data-0.7.1.jar (567 kB at 12 MB/s) +2026-04-06T14:01:15.5578423Z #19 36.92 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/core5/httpcore5/5.2.1/httpcore5-5.2.1.jar (853 kB at 13 MB/s) +2026-04-06T14:01:15.5578609Z #19 36.93 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-data-jpa/3.4.3/spring-boot-starter-data-jpa-3.4.3.pom +2026-04-06T14:01:15.5578847Z #19 36.96 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-data-jpa/3.4.3/spring-boot-starter-data-jpa-3.4.3.pom (2.9 kB at 99 kB/s) +2026-04-06T14:01:15.6779799Z #19 36.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/3.4.3/spring-boot-starter-jdbc-3.4.3.pom +2026-04-06T14:01:15.6780376Z #19 36.99 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/3.4.3/spring-boot-starter-jdbc-3.4.3.pom (2.5 kB at 88 kB/s) +2026-04-06T14:01:15.6780604Z #19 36.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.pom +2026-04-06T14:01:15.6780792Z #19 37.02 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.pom (26 kB at 932 kB/s) +2026-04-06T14:01:15.6781049Z #19 37.02 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/6.2.3/spring-jdbc-6.2.3.pom +2026-04-06T14:01:15.6781225Z #19 37.05 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/6.2.3/spring-jdbc-6.2.3.pom (2.4 kB at 89 kB/s) +2026-04-06T14:01:15.6781396Z #19 37.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-tx/6.2.3/spring-tx-6.2.3.pom +2026-04-06T14:01:15.6781552Z #19 37.08 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-tx/6.2.3/spring-tx-6.2.3.pom (2.2 kB at 82 kB/s) +2026-04-06T14:01:15.6781735Z #19 37.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/orm/hibernate-core/6.6.8.Final/hibernate-core-6.6.8.Final.pom +2026-04-06T14:01:15.8017164Z #19 37.11 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/orm/hibernate-core/6.6.8.Final/hibernate-core-6.6.8.Final.pom (5.8 kB at 169 kB/s) +2026-04-06T14:01:15.8018002Z #19 37.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom +2026-04-06T14:01:15.8018395Z #19 37.14 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom (16 kB at 555 kB/s) +2026-04-06T14:01:15.8019141Z #19 37.15 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom +2026-04-06T14:01:15.8019842Z #19 37.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom (14 kB at 505 kB/s) +2026-04-06T14:01:15.8020285Z #19 37.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.5.0.Final/jboss-logging-3.5.0.Final.pom +2026-04-06T14:01:15.8020522Z #19 37.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.5.0.Final/jboss-logging-3.5.0.Final.pom (18 kB at 627 kB/s) +2026-04-06T14:01:15.9045311Z #19 37.21 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/common/hibernate-commons-annotations/7.0.3.Final/hibernate-commons-annotations-7.0.3.Final.pom +2026-04-06T14:01:15.9047917Z #19 37.24 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/common/hibernate-commons-annotations/7.0.3.Final/hibernate-commons-annotations-7.0.3.Final.pom (2.0 kB at 68 kB/s) +2026-04-06T14:01:15.9048473Z #19 37.24 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/smallrye/jandex/3.2.0/jandex-3.2.0.pom +2026-04-06T14:01:15.9048743Z #19 37.28 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/smallrye/jandex/3.2.0/jandex-3.2.0.pom (7.0 kB at 183 kB/s) +2026-04-06T14:01:15.9048960Z #19 37.28 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/smallrye/jandex-parent/3.2.0/jandex-parent-3.2.0.pom +2026-04-06T14:01:15.9049159Z #19 37.31 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/smallrye/jandex-parent/3.2.0/jandex-parent-3.2.0.pom (7.2 kB at 267 kB/s) +2026-04-06T14:01:16.0346431Z #19 37.31 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/smallrye/smallrye-build-parent/42/smallrye-build-parent-42.pom +2026-04-06T14:01:16.0347326Z #19 37.34 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/smallrye/smallrye-build-parent/42/smallrye-build-parent-42.pom (39 kB at 1.5 MB/s) +2026-04-06T14:01:16.0347636Z #19 37.34 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.15.11/byte-buddy-1.15.11.pom +2026-04-06T14:01:16.0347878Z #19 37.37 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.15.11/byte-buddy-1.15.11.pom (17 kB at 667 kB/s) +2026-04-06T14:01:16.0348109Z #19 37.37 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.15.11/byte-buddy-parent-1.15.11.pom +2026-04-06T14:01:16.0348549Z #19 37.40 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.15.11/byte-buddy-parent-1.15.11.pom (63 kB at 2.1 MB/s) +2026-04-06T14:01:16.0349342Z #19 37.41 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/4.0.0/jakarta.xml.bind-api-4.0.0.pom +2026-04-06T14:01:16.0349626Z #19 37.44 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/4.0.0/jakarta.xml.bind-api-4.0.0.pom (12 kB at 378 kB/s) +2026-04-06T14:01:16.1611299Z #19 37.44 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.0/jakarta.xml.bind-api-parent-4.0.0.pom +2026-04-06T14:01:16.1612021Z #19 37.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.0/jakarta.xml.bind-api-parent-4.0.0.pom (9.2 kB at 327 kB/s) +2026-04-06T14:01:16.1612261Z #19 37.47 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/2.1.0/jakarta.activation-api-2.1.0.pom +2026-04-06T14:01:16.1612496Z #19 37.50 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/2.1.0/jakarta.activation-api-2.1.0.pom (18 kB at 598 kB/s) +2026-04-06T14:01:16.1612724Z #19 37.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-runtime/4.0.2/jaxb-runtime-4.0.2.pom +2026-04-06T14:01:16.1612916Z #19 37.53 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-runtime/4.0.2/jaxb-runtime-4.0.2.pom (4.8 kB at 166 kB/s) +2026-04-06T14:01:16.1613134Z #19 37.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.2/jaxb-runtime-parent-4.0.2.pom +2026-04-06T14:01:16.1613349Z #19 37.56 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.2/jaxb-runtime-parent-4.0.2.pom (1.2 kB at 41 kB/s) +2026-04-06T14:01:16.2767541Z #19 37.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-parent/4.0.2/jaxb-parent-4.0.2.pom +2026-04-06T14:01:16.2768611Z #19 37.59 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-parent/4.0.2/jaxb-parent-4.0.2.pom (33 kB at 1.2 MB/s) +2026-04-06T14:01:16.2768868Z #19 37.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-bom-ext/4.0.2/jaxb-bom-ext-4.0.2.pom +2026-04-06T14:01:16.2769237Z #19 37.62 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-bom-ext/4.0.2/jaxb-bom-ext-4.0.2.pom (3.5 kB at 129 kB/s) +2026-04-06T14:01:16.2769475Z #19 37.62 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-bom/4.0.2/jaxb-bom-4.0.2.pom +2026-04-06T14:01:16.2769647Z #19 37.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-bom/4.0.2/jaxb-bom-4.0.2.pom (11 kB at 407 kB/s) +2026-04-06T14:01:16.2769820Z #19 37.65 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom +2026-04-06T14:01:16.2770003Z #19 37.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.8/project-1.0.8.pom (15 kB at 561 kB/s) +2026-04-06T14:01:16.3938188Z #19 37.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-core/4.0.2/jaxb-core-4.0.2.pom +2026-04-06T14:01:16.3939087Z #19 37.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-core/4.0.2/jaxb-core-4.0.2.pom (3.7 kB at 129 kB/s) +2026-04-06T14:01:16.3939465Z #19 37.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/2.1.1/jakarta.activation-api-2.1.1.pom +2026-04-06T14:01:16.3939712Z #19 37.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/2.1.1/jakarta.activation-api-2.1.1.pom (18 kB at 707 kB/s) +2026-04-06T14:01:16.3940050Z #19 37.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/angus/angus-activation/2.0.0/angus-activation-2.0.0.pom +2026-04-06T14:01:16.3940288Z #19 37.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/angus/angus-activation/2.0.0/angus-activation-2.0.0.pom (4.1 kB at 158 kB/s) +2026-04-06T14:01:16.3940493Z #19 37.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/angus/angus-activation-project/2.0.0/angus-activation-project-2.0.0.pom +2026-04-06T14:01:16.3940679Z #19 37.80 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/angus/angus-activation-project/2.0.0/angus-activation-project-2.0.0.pom (20 kB at 728 kB/s) +2026-04-06T14:01:16.5100485Z #19 37.80 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/txw2/4.0.2/txw2-4.0.2.pom +2026-04-06T14:01:16.5101213Z #19 37.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/txw2/4.0.2/txw2-4.0.2.pom (1.8 kB at 71 kB/s) +2026-04-06T14:01:16.5101465Z #19 37.83 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.2/jaxb-txw-parent-4.0.2.pom +2026-04-06T14:01:16.5101692Z #19 37.85 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.2/jaxb-txw-parent-4.0.2.pom (1.2 kB at 43 kB/s) +2026-04-06T14:01:16.5101929Z #19 37.86 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons-runtime/4.1.1/istack-commons-runtime-4.1.1.pom +2026-04-06T14:01:16.5102260Z #19 37.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons-runtime/4.1.1/istack-commons-runtime-4.1.1.pom (2.3 kB at 88 kB/s) +2026-04-06T14:01:16.5102454Z #19 37.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons/4.1.1/istack-commons-4.1.1.pom +2026-04-06T14:01:16.5102641Z #19 37.91 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons/4.1.1/istack-commons-4.1.1.pom (24 kB at 898 kB/s) +2026-04-06T14:01:16.6241286Z #19 37.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom +2026-04-06T14:01:16.6242005Z #19 37.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom (5.9 kB at 237 kB/s) +2026-04-06T14:01:16.6242326Z #19 37.94 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom +2026-04-06T14:01:16.6242522Z #19 37.96 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom (3.6 kB at 154 kB/s) +2026-04-06T14:01:16.6243988Z #19 37.97 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom +2026-04-06T14:01:16.6258235Z #19 37.99 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom (4.8 kB at 185 kB/s) +2026-04-06T14:01:16.6258950Z #19 37.99 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-jpa/3.4.3/spring-data-jpa-3.4.3.pom +2026-04-06T14:01:16.6259380Z #19 38.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-jpa/3.4.3/spring-data-jpa-3.4.3.pom (12 kB at 390 kB/s) +2026-04-06T14:01:16.7282434Z #19 38.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-jpa-parent/3.4.3/spring-data-jpa-parent-3.4.3.pom +2026-04-06T14:01:16.7283027Z #19 38.06 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-jpa-parent/3.4.3/spring-data-jpa-parent-3.4.3.pom (5.2 kB at 193 kB/s) +2026-04-06T14:01:16.7283262Z #19 38.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/build/spring-data-parent/3.4.3/spring-data-parent-3.4.3.pom +2026-04-06T14:01:16.7283516Z #19 38.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/build/spring-data-parent/3.4.3/spring-data-parent-3.4.3.pom (43 kB at 1.2 MB/s) +2026-04-06T14:01:16.7283776Z #19 38.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/build/spring-data-build/3.4.3/spring-data-build-3.4.3.pom +2026-04-06T14:01:16.7283974Z #19 38.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/build/spring-data-build/3.4.3/spring-data-build-3.4.3.pom (7.3 kB at 236 kB/s) +2026-04-06T14:01:16.8288434Z #19 38.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.20.4/testcontainers-bom-1.20.4.pom +2026-04-06T14:01:16.8289129Z #19 38.16 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.20.4/testcontainers-bom-1.20.4.pom (11 kB at 369 kB/s) +2026-04-06T14:01:16.8289380Z #19 38.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.9.0/kotlinx-coroutines-bom-1.9.0.pom +2026-04-06T14:01:16.8289563Z #19 38.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.9.0/kotlinx-coroutines-bom-1.9.0.pom (4.3 kB at 159 kB/s) +2026-04-06T14:01:16.8289744Z #19 38.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-commons/3.4.3/spring-data-commons-3.4.3.pom +2026-04-06T14:01:16.8289963Z #19 38.23 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-commons/3.4.3/spring-data-commons-3.4.3.pom (9.9 kB at 331 kB/s) +2026-04-06T14:01:16.8290174Z #19 38.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.2/slf4j-api-2.0.2.pom +2026-04-06T14:01:16.9408913Z #19 38.26 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.2/slf4j-api-2.0.2.pom (1.6 kB at 64 kB/s) +2026-04-06T14:01:16.9409515Z #19 38.26 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.2/slf4j-parent-2.0.2.pom +2026-04-06T14:01:16.9409721Z #19 38.29 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.2/slf4j-parent-2.0.2.pom (16 kB at 577 kB/s) +2026-04-06T14:01:16.9409914Z #19 38.29 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-orm/6.2.3/spring-orm-6.2.3.pom +2026-04-06T14:01:16.9410153Z #19 38.31 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-orm/6.2.3/spring-orm-6.2.3.pom (2.6 kB at 109 kB/s) +2026-04-06T14:01:16.9410359Z #19 38.31 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/2.0.0/jakarta.annotation-api-2.0.0.pom +2026-04-06T14:01:16.9410581Z #19 38.34 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/2.0.0/jakarta.annotation-api-2.0.0.pom (16 kB at 580 kB/s) +2026-04-06T14:01:17.0526806Z #19 38.34 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aspects/6.2.3/spring-aspects-6.2.3.pom +2026-04-06T14:01:17.0527739Z #19 38.37 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aspects/6.2.3/spring-aspects-6.2.3.pom (2.0 kB at 75 kB/s) +2026-04-06T14:01:17.0529641Z #19 38.38 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-data-jpa/3.4.3/spring-boot-starter-data-jpa-3.4.3.jar +2026-04-06T14:01:17.0530227Z #19 38.41 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-data-jpa/3.4.3/spring-boot-starter-data-jpa-3.4.3.jar (4.8 kB at 183 kB/s) +2026-04-06T14:01:17.0530465Z #19 38.41 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/3.4.3/spring-boot-starter-jdbc-3.4.3.jar +2026-04-06T14:01:17.0530981Z #19 38.41 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar +2026-04-06T14:01:17.0531200Z #19 38.41 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/6.2.3/spring-jdbc-6.2.3.jar +2026-04-06T14:01:17.0531598Z #19 38.41 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/orm/hibernate-core/6.6.8.Final/hibernate-core-6.6.8.Final.jar +2026-04-06T14:01:17.0531800Z #19 38.41 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.jar +2026-04-06T14:01:17.0531988Z #19 38.43 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/3.4.3/spring-boot-starter-jdbc-3.4.3.jar (4.8 kB at 199 kB/s) +2026-04-06T14:01:17.0532340Z #19 38.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.jar +2026-04-06T14:01:17.0532547Z #19 38.44 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.jar (165 kB at 5.7 MB/s) +2026-04-06T14:01:17.0532740Z #19 38.44 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.5.0.Final/jboss-logging-3.5.0.Final.jar +2026-04-06T14:01:17.0533071Z #19 38.45 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar (162 kB at 3.4 MB/s) +2026-04-06T14:01:17.0533247Z #19 38.45 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/common/hibernate-commons-annotations/7.0.3.Final/hibernate-commons-annotations-7.0.3.Final.jar +2026-04-06T14:01:17.1765193Z #19 38.46 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/6.2.3/spring-jdbc-6.2.3.jar (472 kB at 8.4 MB/s) +2026-04-06T14:01:17.1765924Z #19 38.46 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/smallrye/jandex/3.2.0/jandex-3.2.0.jar +2026-04-06T14:01:17.1766175Z #19 38.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.jar (29 kB at 461 kB/s) +2026-04-06T14:01:17.1766416Z #19 38.47 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.15.11/byte-buddy-1.15.11.jar +2026-04-06T14:01:17.1766677Z #19 38.48 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.5.0.Final/jboss-logging-3.5.0.Final.jar (63 kB at 948 kB/s) +2026-04-06T14:01:17.1766902Z #19 38.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/4.0.0/jakarta.xml.bind-api-4.0.0.jar +2026-04-06T14:01:17.1767123Z #19 38.50 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/common/hibernate-commons-annotations/7.0.3.Final/hibernate-commons-annotations-7.0.3.Final.jar (68 kB at 781 kB/s) +2026-04-06T14:01:17.1767343Z #19 38.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/2.1.0/jakarta.activation-api-2.1.0.jar +2026-04-06T14:01:17.1767522Z #19 38.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/smallrye/jandex/3.2.0/jandex-3.2.0.jar (375 kB at 3.6 MB/s) +2026-04-06T14:01:17.1767731Z #19 38.51 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-runtime/4.0.2/jaxb-runtime-4.0.2.jar +2026-04-06T14:01:17.1767922Z #19 38.52 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/4.0.0/jakarta.xml.bind-api-4.0.0.jar (127 kB at 1.1 MB/s) +2026-04-06T14:01:17.1768112Z #19 38.52 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-core/4.0.2/jaxb-core-4.0.2.jar +2026-04-06T14:01:17.1768282Z #19 38.55 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/2.1.0/jakarta.activation-api-2.1.0.jar (63 kB at 463 kB/s) +2026-04-06T14:01:17.1768480Z #19 38.55 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/angus/angus-activation/2.0.0/angus-activation-2.0.0.jar +2026-04-06T14:01:17.1768689Z #19 38.58 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-runtime/4.0.2/jaxb-runtime-4.0.2.jar (908 kB at 5.3 MB/s) +2026-04-06T14:01:17.1768898Z #19 38.58 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/txw2/4.0.2/txw2-4.0.2.jar +2026-04-06T14:01:17.2949261Z #19 38.58 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-core/4.0.2/jaxb-core-4.0.2.jar (139 kB at 797 kB/s) +2026-04-06T14:01:17.2949945Z #19 38.58 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons-runtime/4.1.1/istack-commons-runtime-4.1.1.jar +2026-04-06T14:01:17.2950252Z #19 38.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/angus/angus-activation/2.0.0/angus-activation-2.0.0.jar (27 kB at 143 kB/s) +2026-04-06T14:01:17.2950472Z #19 38.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.jar +2026-04-06T14:01:17.2950706Z #19 38.62 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons-runtime/4.1.1/istack-commons-runtime-4.1.1.jar (26 kB at 122 kB/s) +2026-04-06T14:01:17.2950913Z #19 38.62 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.jar +2026-04-06T14:01:17.2951092Z #19 38.63 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/txw2/4.0.2/txw2-4.0.2.jar (73 kB at 333 kB/s) +2026-04-06T14:01:17.2951282Z #19 38.63 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-jpa/3.4.3/spring-data-jpa-3.4.3.jar +2026-04-06T14:01:17.2951480Z #19 38.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.jar (11 kB at 45 kB/s) +2026-04-06T14:01:17.2951673Z #19 38.65 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-commons/3.4.3/spring-data-commons-3.4.3.jar +2026-04-06T14:01:17.2951883Z #19 38.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/orm/hibernate-core/6.6.8.Final/hibernate-core-6.6.8.Final.jar (12 MB at 49 MB/s) +2026-04-06T14:01:17.2952067Z #19 38.65 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-orm/6.2.3/spring-orm-6.2.3.jar +2026-04-06T14:01:17.2952262Z #19 38.66 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.jar (326 kB at 1.3 MB/s) +2026-04-06T14:01:17.2952437Z #19 38.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-tx/6.2.3/spring-tx-6.2.3.jar +2026-04-06T14:01:17.2952598Z #19 38.70 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-jpa/3.4.3/spring-data-jpa-3.4.3.jar (1.8 MB at 6.1 MB/s) +2026-04-06T14:01:17.4357945Z #19 38.70 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.2/slf4j-api-2.0.2.jar +2026-04-06T14:01:17.4358876Z #19 38.70 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-orm/6.2.3/spring-orm-6.2.3.jar (235 kB at 793 kB/s) +2026-04-06T14:01:17.4359129Z #19 38.70 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aspects/6.2.3/spring-aspects-6.2.3.jar +2026-04-06T14:01:17.4359388Z #19 38.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-tx/6.2.3/spring-tx-6.2.3.jar (285 kB at 951 kB/s) +2026-04-06T14:01:17.4359575Z #19 38.73 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-commons/3.4.3/spring-data-commons-3.4.3.jar (1.5 MB at 4.8 MB/s) +2026-04-06T14:01:17.4359781Z #19 38.73 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.2/slf4j-api-2.0.2.jar (61 kB at 192 kB/s) +2026-04-06T14:01:17.4360059Z #19 38.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aspects/6.2.3/spring-aspects-6.2.3.jar (50 kB at 153 kB/s) +2026-04-06T14:01:17.4360263Z #19 38.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.15.11/byte-buddy-1.15.11.jar (8.5 MB at 20 MB/s) +2026-04-06T14:01:17.5397176Z #19 38.85 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/postgresql/postgresql/42.7.5/postgresql-42.7.5.pom +2026-04-06T14:01:17.5397812Z #19 38.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/postgresql/postgresql/42.7.5/postgresql-42.7.5.pom (3.3 kB at 115 kB/s) +2026-04-06T14:01:17.5398020Z #19 38.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.48.3/checker-qual-3.48.3.pom +2026-04-06T14:01:17.5398225Z #19 38.91 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.48.3/checker-qual-3.48.3.pom (2.1 kB at 70 kB/s) +2026-04-06T14:01:17.5398418Z #19 38.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/waffle/waffle-jna/1.9.1/waffle-jna-1.9.1.pom +2026-04-06T14:01:17.5398599Z #19 38.94 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/waffle/waffle-jna/1.9.1/waffle-jna-1.9.1.pom (3.1 kB at 109 kB/s) +2026-04-06T14:01:17.6610374Z #19 38.94 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/waffle/waffle-parent/1.9.1/waffle-parent-1.9.1.pom +2026-04-06T14:01:17.6611279Z #19 38.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/waffle/waffle-parent/1.9.1/waffle-parent-1.9.1.pom (67 kB at 2.1 MB/s) +2026-04-06T14:01:17.6611533Z #19 38.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/4.5.1/jna-4.5.1.pom +2026-04-06T14:01:17.6611741Z #19 39.01 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/4.5.1/jna-4.5.1.pom (1.6 kB at 56 kB/s) +2026-04-06T14:01:17.6611944Z #19 39.01 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/4.5.1/jna-platform-4.5.1.pom +2026-04-06T14:01:17.6612111Z #19 39.04 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/4.5.1/jna-platform-4.5.1.pom (1.8 kB at 69 kB/s) +2026-04-06T14:01:17.6612304Z #19 39.04 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.pom +2026-04-06T14:01:17.6612467Z #19 39.06 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.pom (959 B at 38 kB/s) +2026-04-06T14:01:17.7621392Z #19 39.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.6.2/caffeine-2.6.2.pom +2026-04-06T14:01:17.7622980Z #19 39.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.6.2/caffeine-2.6.2.pom (5.6 kB at 208 kB/s) +2026-04-06T14:01:17.7623405Z #19 39.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/postgresql/postgresql/42.7.5/postgresql-42.7.5.jar +2026-04-06T14:01:17.7623934Z #19 39.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/postgresql/postgresql/42.7.5/postgresql-42.7.5.jar (1.1 MB at 29 MB/s) +2026-04-06T14:01:17.7624199Z #19 39.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.48.3/checker-qual-3.48.3.jar +2026-04-06T14:01:17.7624665Z #19 39.14 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/waffle/waffle-jna/1.9.1/waffle-jna-1.9.1.jar +2026-04-06T14:01:17.7624941Z #19 39.14 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/4.5.1/jna-4.5.1.jar +2026-04-06T14:01:17.7625243Z #19 39.14 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/4.5.1/jna-platform-4.5.1.jar +2026-04-06T14:01:17.7625481Z #19 39.14 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar +2026-04-06T14:01:17.7625673Z #19 39.16 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar (17 kB at 612 kB/s) +2026-04-06T14:01:17.7625868Z #19 39.16 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.6.2/caffeine-2.6.2.jar +2026-04-06T14:01:17.8680049Z #19 39.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.48.3/checker-qual-3.48.3.jar (239 kB at 7.7 MB/s) +2026-04-06T14:01:17.8681211Z #19 39.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/waffle/waffle-jna/1.9.1/waffle-jna-1.9.1.jar (68 kB at 1.8 MB/s) +2026-04-06T14:01:17.8681473Z #19 39.21 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/4.5.1/jna-platform-4.5.1.jar (2.3 MB at 32 MB/s) +2026-04-06T14:01:17.8681699Z #19 39.21 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/4.5.1/jna-4.5.1.jar (1.4 MB at 19 MB/s) +2026-04-06T14:01:17.8681904Z #19 39.22 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.6.2/caffeine-2.6.2.jar (660 kB at 8.5 MB/s) +2026-04-06T14:01:17.8682095Z #19 39.22 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/3.4.3/spring-boot-starter-web-3.4.3.pom +2026-04-06T14:01:17.8682327Z #19 39.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/3.4.3/spring-boot-starter-web-3.4.3.pom (2.9 kB at 127 kB/s) +2026-04-06T14:01:17.8682562Z #19 39.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/3.4.3/spring-boot-starter-json-3.4.3.pom +2026-04-06T14:01:17.8682779Z #19 39.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/3.4.3/spring-boot-starter-json-3.4.3.pom (3.1 kB at 140 kB/s) +2026-04-06T14:01:17.9733632Z #19 39.27 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-web/6.2.3/spring-web-6.2.3.pom +2026-04-06T14:01:17.9734397Z #19 39.30 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-web/6.2.3/spring-web-6.2.3.pom (2.4 kB at 96 kB/s) +2026-04-06T14:01:17.9735095Z #19 39.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.18.2/jackson-datatype-jdk8-2.18.2.pom +2026-04-06T14:01:17.9735624Z #19 39.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.18.2/jackson-datatype-jdk8-2.18.2.pom (2.6 kB at 118 kB/s) +2026-04-06T14:01:17.9735896Z #19 39.33 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.18.2/jackson-datatype-jsr310-2.18.2.pom +2026-04-06T14:01:17.9736105Z #19 39.35 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.18.2/jackson-datatype-jsr310-2.18.2.pom (4.9 kB at 223 kB/s) +2026-04-06T14:01:17.9736359Z #19 39.36 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/3.4.3/spring-boot-starter-tomcat-3.4.3.pom +2026-04-06T14:01:17.9736543Z #19 39.38 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/3.4.3/spring-boot-starter-tomcat-3.4.3.pom (3.1 kB at 164 kB/s) +2026-04-06T14:01:18.0756410Z #19 39.38 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/10.1.36/tomcat-embed-core-10.1.36.pom +2026-04-06T14:01:18.0757334Z #19 39.40 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/10.1.36/tomcat-embed-core-10.1.36.pom (1.7 kB at 72 kB/s) +2026-04-06T14:01:18.0757675Z #19 39.40 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.36/tomcat-embed-websocket-10.1.36.pom +2026-04-06T14:01:18.0758036Z #19 39.43 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.36/tomcat-embed-websocket-10.1.36.pom (1.7 kB at 79 kB/s) +2026-04-06T14:01:18.0758284Z #19 39.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/6.2.3/spring-webmvc-6.2.3.pom +2026-04-06T14:01:18.0758499Z #19 39.45 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/6.2.3/spring-webmvc-6.2.3.pom (3.0 kB at 134 kB/s) +2026-04-06T14:01:18.0758709Z #19 39.46 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/3.4.3/spring-boot-starter-web-3.4.3.jar +2026-04-06T14:01:18.0758993Z #19 39.48 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/3.4.3/spring-boot-starter-web-3.4.3.jar (4.8 kB at 240 kB/s) +2026-04-06T14:01:18.1949386Z #19 39.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/3.4.3/spring-boot-starter-json-3.4.3.jar +2026-04-06T14:01:18.1950015Z #19 39.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.18.2/jackson-datatype-jdk8-2.18.2.jar +2026-04-06T14:01:18.1950263Z #19 39.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.18.2/jackson-datatype-jsr310-2.18.2.jar +2026-04-06T14:01:18.1950480Z #19 39.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/10.1.36/tomcat-embed-core-10.1.36.jar +2026-04-06T14:01:18.1950690Z #19 39.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/3.4.3/spring-boot-starter-tomcat-3.4.3.jar +2026-04-06T14:01:18.1950894Z #19 39.50 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/3.4.3/spring-boot-starter-json-3.4.3.jar (4.7 kB at 237 kB/s) +2026-04-06T14:01:18.1951110Z #19 39.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.36/tomcat-embed-websocket-10.1.36.jar +2026-04-06T14:01:18.1951296Z #19 39.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.18.2/jackson-datatype-jdk8-2.18.2.jar (36 kB at 1.2 MB/s) +2026-04-06T14:01:18.1951503Z #19 39.51 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-web/6.2.3/spring-web-6.2.3.jar +2026-04-06T14:01:18.1951675Z #19 39.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.18.2/jackson-datatype-jsr310-2.18.2.jar (133 kB at 4.1 MB/s) +2026-04-06T14:01:18.1951866Z #19 39.51 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/6.2.3/spring-webmvc-6.2.3.jar +2026-04-06T14:01:18.1952042Z #19 39.51 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/3.4.3/spring-boot-starter-tomcat-3.4.3.jar (4.8 kB at 141 kB/s) +2026-04-06T14:01:18.1952246Z #19 39.54 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.36/tomcat-embed-websocket-10.1.36.jar (282 kB at 4.6 MB/s) +2026-04-06T14:01:18.1952453Z #19 39.57 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/6.2.3/spring-webmvc-6.2.3.jar (1.1 MB at 12 MB/s) +2026-04-06T14:01:18.1952622Z #19 39.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/10.1.36/tomcat-embed-core-10.1.36.jar (3.6 MB at 31 MB/s) +2026-04-06T14:01:18.2988504Z #19 39.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-web/6.2.3/spring-web-6.2.3.jar (2.1 MB at 18 MB/s) +2026-04-06T14:01:18.2989678Z #19 39.61 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1.pom +2026-04-06T14:01:18.2989923Z #19 39.63 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1.pom (14 kB at 660 kB/s) +2026-04-06T14:01:18.2990127Z #19 39.63 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.17.1/log4j-2.17.1.pom +2026-04-06T14:01:18.2990449Z #19 39.65 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.17.1/log4j-2.17.1.pom (69 kB at 3.0 MB/s) +2026-04-06T14:01:18.2990662Z #19 39.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/3/logging-parent-3.pom +2026-04-06T14:01:18.2990864Z #19 39.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/3/logging-parent-3.pom (3.1 kB at 165 kB/s) +2026-04-06T14:01:18.2991167Z #19 39.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-vfs/3.2.15.Final/jboss-vfs-3.2.15.Final.pom +2026-04-06T14:01:18.2991344Z #19 39.70 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-vfs/3.2.15.Final/jboss-vfs-3.2.15.Final.pom (7.1 kB at 354 kB/s) +2026-04-06T14:01:18.2991521Z #19 39.70 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/20/jboss-parent-20.pom +2026-04-06T14:01:18.4123367Z #19 39.72 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/20/jboss-parent-20.pom (34 kB at 1.7 MB/s) +2026-04-06T14:01:18.4124119Z #19 39.72 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.1.4.GA/jboss-logging-3.1.4.GA.pom +2026-04-06T14:01:18.4124325Z #19 39.74 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.1.4.GA/jboss-logging-3.1.4.GA.pom (5.0 kB at 263 kB/s) +2026-04-06T14:01:18.4124584Z #19 39.74 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/9/jboss-parent-9.pom +2026-04-06T14:01:18.4124758Z #19 39.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/9/jboss-parent-9.pom (29 kB at 1.4 MB/s) +2026-04-06T14:01:18.4124961Z #19 39.77 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/s3/2.25.26/s3-2.25.26.pom +2026-04-06T14:01:18.4125161Z #19 39.79 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/s3/2.25.26/s3-2.25.26.pom (8.6 kB at 373 kB/s) +2026-04-06T14:01:18.4125357Z #19 39.79 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/services/2.25.26/services-2.25.26.pom +2026-04-06T14:01:18.4125534Z #19 39.81 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/services/2.25.26/services-2.25.26.pom (23 kB at 1.2 MB/s) +2026-04-06T14:01:18.5297904Z #19 39.82 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-sdk-java-pom/2.25.26/aws-sdk-java-pom-2.25.26.pom +2026-04-06T14:01:18.5298633Z #19 39.84 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-sdk-java-pom/2.25.26/aws-sdk-java-pom-2.25.26.pom (80 kB at 3.8 MB/s) +2026-04-06T14:01:18.5298901Z #19 39.84 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/bom-internal/2.25.26/bom-internal-2.25.26.pom +2026-04-06T14:01:18.5299094Z #19 39.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/bom-internal/2.25.26/bom-internal-2.25.26.pom (21 kB at 1.0 MB/s) +2026-04-06T14:01:18.5299294Z #19 39.86 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-xml-protocol/2.25.26/aws-xml-protocol-2.25.26.pom +2026-04-06T14:01:18.5299527Z #19 39.89 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-xml-protocol/2.25.26/aws-xml-protocol-2.25.26.pom (4.0 kB at 182 kB/s) +2026-04-06T14:01:18.5299733Z #19 39.89 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/protocols/2.25.26/protocols-2.25.26.pom +2026-04-06T14:01:18.5299917Z #19 39.91 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/protocols/2.25.26/protocols-2.25.26.pom (1.6 kB at 78 kB/s) +2026-04-06T14:01:18.5300183Z #19 39.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/core/2.25.26/core-2.25.26.pom +2026-04-06T14:01:18.5300356Z #19 39.93 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/core/2.25.26/core-2.25.26.pom (2.5 kB at 106 kB/s) +2026-04-06T14:01:18.6492515Z #19 39.93 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-query-protocol/2.25.26/aws-query-protocol-2.25.26.pom +2026-04-06T14:01:18.6493914Z #19 39.96 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-query-protocol/2.25.26/aws-query-protocol-2.25.26.pom (3.6 kB at 152 kB/s) +2026-04-06T14:01:18.6494270Z #19 39.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/protocol-core/2.25.26/protocol-core-2.25.26.pom +2026-04-06T14:01:18.6494525Z #19 39.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/protocol-core/2.25.26/protocol-core-2.25.26.pom (3.2 kB at 161 kB/s) +2026-04-06T14:01:18.6494716Z #19 39.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/sdk-core/2.25.26/sdk-core-2.25.26.pom +2026-04-06T14:01:18.6494951Z #19 40.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/sdk-core/2.25.26/sdk-core-2.25.26.pom (12 kB at 611 kB/s) +2026-04-06T14:01:18.6495153Z #19 40.01 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/annotations/2.25.26/annotations-2.25.26.pom +2026-04-06T14:01:18.6495365Z #19 40.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/annotations/2.25.26/annotations-2.25.26.pom (1.7 kB at 84 kB/s) +2026-04-06T14:01:18.6495554Z #19 40.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-client-spi/2.25.26/http-client-spi-2.25.26.pom +2026-04-06T14:01:18.6495742Z #19 40.05 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-client-spi/2.25.26/http-client-spi-2.25.26.pom (4.3 kB at 197 kB/s) +2026-04-06T14:01:18.7650574Z #19 40.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/utils/2.25.26/utils-2.25.26.pom +2026-04-06T14:01:18.7652158Z #19 40.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/utils/2.25.26/utils-2.25.26.pom (5.1 kB at 254 kB/s) +2026-04-06T14:01:18.7652690Z #19 40.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom +2026-04-06T14:01:18.7652924Z #19 40.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom (1.1 kB at 57 kB/s) +2026-04-06T14:01:18.7653201Z #19 40.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/metrics-spi/2.25.26/metrics-spi-2.25.26.pom +2026-04-06T14:01:18.7653502Z #19 40.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/metrics-spi/2.25.26/metrics-spi-2.25.26.pom (3.7 kB at 184 kB/s) +2026-04-06T14:01:18.7653720Z #19 40.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/endpoints-spi/2.25.26/endpoints-spi-2.25.26.pom +2026-04-06T14:01:18.7653903Z #19 40.14 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/endpoints-spi/2.25.26/endpoints-spi-2.25.26.pom (2.6 kB at 131 kB/s) +2026-04-06T14:01:18.7654169Z #19 40.14 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-auth-spi/2.25.26/http-auth-spi-2.25.26.pom +2026-04-06T14:01:18.7654403Z #19 40.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-auth-spi/2.25.26/http-auth-spi-2.25.26.pom (3.7 kB at 160 kB/s) +2026-04-06T14:01:18.8717534Z #19 40.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/identity-spi/2.25.26/identity-spi-2.25.26.pom +2026-04-06T14:01:18.8718365Z #19 40.19 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/identity-spi/2.25.26/identity-spi-2.25.26.pom (3.0 kB at 152 kB/s) +2026-04-06T14:01:18.8718747Z #19 40.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-auth-aws/2.25.26/http-auth-aws-2.25.26.pom +2026-04-06T14:01:18.8719134Z #19 40.22 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-auth-aws/2.25.26/http-auth-aws-2.25.26.pom (5.4 kB at 244 kB/s) +2026-04-06T14:01:18.8719457Z #19 40.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/checksums-spi/2.25.26/checksums-spi-2.25.26.pom +2026-04-06T14:01:18.8719715Z #19 40.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/checksums-spi/2.25.26/checksums-spi-2.25.26.pom (2.2 kB at 103 kB/s) +2026-04-06T14:01:18.8720024Z #19 40.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/checksums/2.25.26/checksums-2.25.26.pom +2026-04-06T14:01:18.8720317Z #19 40.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/checksums/2.25.26/checksums-2.25.26.pom (2.5 kB at 115 kB/s) +2026-04-06T14:01:18.9942392Z #19 40.28 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/profiles/2.25.26/profiles-2.25.26.pom +2026-04-06T14:01:18.9943225Z #19 40.30 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/profiles/2.25.26/profiles-2.25.26.pom (2.9 kB at 146 kB/s) +2026-04-06T14:01:18.9943489Z #19 40.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-core/2.25.26/aws-core-2.25.26.pom +2026-04-06T14:01:18.9943990Z #19 40.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-core/2.25.26/aws-core-2.25.26.pom (8.4 kB at 400 kB/s) +2026-04-06T14:01:18.9944251Z #19 40.32 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/regions/2.25.26/regions-2.25.26.pom +2026-04-06T14:01:18.9944683Z #19 40.35 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/regions/2.25.26/regions-2.25.26.pom (5.6 kB at 268 kB/s) +2026-04-06T14:01:18.9944953Z #19 40.35 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/json-utils/2.25.26/json-utils-2.25.26.pom +2026-04-06T14:01:18.9945147Z #19 40.37 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/json-utils/2.25.26/json-utils-2.25.26.pom (3.5 kB at 159 kB/s) +2026-04-06T14:01:18.9945601Z #19 40.37 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/third-party-jackson-core/2.25.26/third-party-jackson-core-2.25.26.pom +2026-04-06T14:01:18.9945878Z #19 40.40 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/third-party-jackson-core/2.25.26/third-party-jackson-core-2.25.26.pom (4.5 kB at 194 kB/s) +2026-04-06T14:01:19.1725271Z #19 40.40 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/third-party/2.25.26/third-party-2.25.26.pom +2026-04-06T14:01:19.1725828Z #19 40.42 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/third-party/2.25.26/third-party-2.25.26.pom (2.5 kB at 112 kB/s) +2026-04-06T14:01:19.1726057Z #19 40.42 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/auth/2.25.26/auth-2.25.26.pom +2026-04-06T14:01:19.5506877Z #19 40.95 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/auth/2.25.26/auth-2.25.26.pom (7.6 kB at 14 kB/s) +2026-04-06T14:01:19.6512591Z #19 40.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-auth/2.25.26/http-auth-2.25.26.pom +2026-04-06T14:01:19.6513435Z #19 40.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-auth/2.25.26/http-auth-2.25.26.pom (3.3 kB at 142 kB/s) +2026-04-06T14:01:19.6513694Z #19 40.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.pom +2026-04-06T14:01:19.6513908Z #19 41.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.pom (6.1 kB at 289 kB/s) +2026-04-06T14:01:19.6514277Z #19 41.01 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/arns/2.25.26/arns-2.25.26.pom +2026-04-06T14:01:19.6514586Z #19 41.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/arns/2.25.26/arns-2.25.26.pom (3.0 kB at 142 kB/s) +2026-04-06T14:01:19.6515033Z #19 41.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/crt-core/2.25.26/crt-core-2.25.26.pom +2026-04-06T14:01:19.6515290Z #19 41.05 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/crt-core/2.25.26/crt-core-2.25.26.pom (3.7 kB at 183 kB/s) +2026-04-06T14:01:19.6515490Z #19 41.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/apache-client/2.25.26/apache-client-2.25.26.pom +2026-04-06T14:01:19.7666755Z #19 41.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/apache-client/2.25.26/apache-client-2.25.26.pom (4.1 kB at 215 kB/s) +2026-04-06T14:01:19.7668842Z #19 41.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-clients/2.25.26/http-clients-2.25.26.pom +2026-04-06T14:01:19.7669584Z #19 41.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-clients/2.25.26/http-clients-2.25.26.pom (1.8 kB at 85 kB/s) +2026-04-06T14:01:19.7669843Z #19 41.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom +2026-04-06T14:01:19.7670286Z #19 41.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 735 kB/s) +2026-04-06T14:01:19.7670504Z #19 41.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/netty-nio-client/2.25.26/netty-nio-client-2.25.26.pom +2026-04-06T14:01:19.7670892Z #19 41.14 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/netty-nio-client/2.25.26/netty-nio-client-2.25.26.pom (8.3 kB at 377 kB/s) +2026-04-06T14:01:19.7671139Z #19 41.15 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.108.Final/netty-codec-http-4.1.108.Final.pom +2026-04-06T14:01:19.7671382Z #19 41.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.108.Final/netty-codec-http-4.1.108.Final.pom (4.4 kB at 208 kB/s) +2026-04-06T14:01:19.8687488Z #19 41.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.108.Final/netty-parent-4.1.108.Final.pom +2026-04-06T14:01:19.8689809Z #19 41.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.108.Final/netty-parent-4.1.108.Final.pom (87 kB at 3.3 MB/s) +2026-04-06T14:01:19.8690158Z #19 41.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.108.Final/netty-common-4.1.108.Final.pom +2026-04-06T14:01:19.8690355Z #19 41.22 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.108.Final/netty-common-4.1.108.Final.pom (12 kB at 590 kB/s) +2026-04-06T14:01:19.8690834Z #19 41.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.108.Final/netty-buffer-4.1.108.Final.pom +2026-04-06T14:01:19.8691036Z #19 41.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.108.Final/netty-buffer-4.1.108.Final.pom (1.6 kB at 79 kB/s) +2026-04-06T14:01:19.8691360Z #19 41.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.108.Final/netty-transport-4.1.108.Final.pom +2026-04-06T14:01:19.8691575Z #19 41.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.108.Final/netty-transport-4.1.108.Final.pom (2.2 kB at 108 kB/s) +2026-04-06T14:01:19.9807409Z #19 41.27 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.108.Final/netty-resolver-4.1.108.Final.pom +2026-04-06T14:01:19.9809486Z #19 41.30 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.108.Final/netty-resolver-4.1.108.Final.pom (1.6 kB at 72 kB/s) +2026-04-06T14:01:19.9809934Z #19 41.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.108.Final/netty-codec-4.1.108.Final.pom +2026-04-06T14:01:19.9810212Z #19 41.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.108.Final/netty-codec-4.1.108.Final.pom (5.5 kB at 274 kB/s) +2026-04-06T14:01:19.9810447Z #19 41.32 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.108.Final/netty-handler-4.1.108.Final.pom +2026-04-06T14:01:19.9810661Z #19 41.34 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.108.Final/netty-handler-4.1.108.Final.pom (4.6 kB at 210 kB/s) +2026-04-06T14:01:19.9810860Z #19 41.35 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.108.Final/netty-transport-native-unix-common-4.1.108.Final.pom +2026-04-06T14:01:19.9811124Z #19 41.37 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.108.Final/netty-transport-native-unix-common-4.1.108.Final.pom (33 kB at 1.6 MB/s) +2026-04-06T14:01:19.9811319Z #19 41.38 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.108.Final/netty-codec-http2-4.1.108.Final.pom +2026-04-06T14:01:20.0969829Z #19 41.40 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.108.Final/netty-codec-http2-4.1.108.Final.pom (5.2 kB at 224 kB/s) +2026-04-06T14:01:20.0970991Z #19 41.41 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.108.Final/netty-transport-classes-epoll-4.1.108.Final.pom +2026-04-06T14:01:20.0972090Z #19 41.43 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.108.Final/netty-transport-classes-epoll-4.1.108.Final.pom (2.1 kB at 102 kB/s) +2026-04-06T14:01:20.0977082Z #19 41.43 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-storage/2.43.1/google-cloud-storage-2.43.1.pom +2026-04-06T14:01:20.0978424Z #19 41.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-storage/2.43.1/google-cloud-storage-2.43.1.pom (72 kB at 2.3 MB/s) +2026-04-06T14:01:20.0978884Z #19 41.47 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/33.3.0-jre/guava-33.3.0-jre.pom +2026-04-06T14:01:20.0980264Z #19 41.50 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/33.3.0-jre/guava-33.3.0-jre.pom (9.3 kB at 345 kB/s) +2026-04-06T14:01:20.2089583Z #19 41.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/33.3.0-jre/guava-parent-33.3.0-jre.pom +2026-04-06T14:01:20.2091097Z #19 41.52 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/33.3.0-jre/guava-parent-33.3.0-jre.pom (20 kB at 1.0 MB/s) +2026-04-06T14:01:20.2091577Z #19 41.52 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom +2026-04-06T14:01:20.2092186Z #19 41.54 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom (3.3 kB at 176 kB/s) +2026-04-06T14:01:20.2092483Z #19 41.55 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom +2026-04-06T14:01:20.2092913Z #19 41.56 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 536 kB/s) +2026-04-06T14:01:20.2093137Z #19 41.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom +2026-04-06T14:01:20.2093390Z #19 41.59 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 114 kB/s) +2026-04-06T14:01:20.2093673Z #19 41.59 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.32.0/error_prone_annotations-2.32.0.pom +2026-04-06T14:01:20.2093875Z #19 41.61 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.32.0/error_prone_annotations-2.32.0.pom (4.3 kB at 193 kB/s) +2026-04-06T14:01:20.3257173Z #19 41.61 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.32.0/error_prone_parent-2.32.0.pom +2026-04-06T14:01:20.3257799Z #19 41.64 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.32.0/error_prone_parent-2.32.0.pom (14 kB at 680 kB/s) +2026-04-06T14:01:20.3258095Z #19 41.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom +2026-04-06T14:01:20.3258290Z #19 41.66 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom (5.1 kB at 266 kB/s) +2026-04-06T14:01:20.3258484Z #19 41.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client/1.45.0/google-http-client-1.45.0.pom +2026-04-06T14:01:20.3258690Z #19 41.68 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client/1.45.0/google-http-client-1.45.0.pom (6.5 kB at 296 kB/s) +2026-04-06T14:01:20.3258861Z #19 41.68 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-parent/1.45.0/google-http-client-parent-1.45.0.pom +2026-04-06T14:01:20.3259059Z #19 41.70 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-parent/1.45.0/google-http-client-parent-1.45.0.pom (30 kB at 1.4 MB/s) +2026-04-06T14:01:20.3262892Z #19 41.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/native-image-shared-config/1.11.0/native-image-shared-config-1.11.0.pom +2026-04-06T14:01:20.3263409Z #19 41.73 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/native-image-shared-config/1.11.0/native-image-shared-config-1.11.0.pom (8.0 kB at 364 kB/s) +2026-04-06T14:01:20.4476432Z #19 41.73 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.68.0/grpc-context-1.68.0.pom +2026-04-06T14:01:20.4477143Z #19 41.75 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.68.0/grpc-context-1.68.0.pom (1.9 kB at 94 kB/s) +2026-04-06T14:01:20.4477421Z #19 41.75 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.pom +2026-04-06T14:01:20.4477685Z #19 41.77 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.pom (2.4 kB at 116 kB/s) +2026-04-06T14:01:20.4477904Z #19 41.78 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-jackson2/1.45.0/google-http-client-jackson2-1.45.0.pom +2026-04-06T14:01:20.4478169Z #19 41.79 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-jackson2/1.45.0/google-http-client-jackson2-1.45.0.pom (2.7 kB at 140 kB/s) +2026-04-06T14:01:20.4478417Z #19 41.80 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-gson/1.45.0/google-http-client-gson-1.45.0.pom +2026-04-06T14:01:20.4478602Z #19 41.82 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-gson/1.45.0/google-http-client-gson-1.45.0.pom (2.7 kB at 105 kB/s) +2026-04-06T14:01:20.4478801Z #19 41.83 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api-client/google-api-client/2.7.0/google-api-client-2.7.0.pom +2026-04-06T14:01:20.4479032Z #19 41.85 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api-client/google-api-client/2.7.0/google-api-client-2.7.0.pom (8.4 kB at 381 kB/s) +2026-04-06T14:01:20.5527565Z #19 41.85 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api-client/google-api-client-parent/2.7.0/google-api-client-parent-2.7.0.pom +2026-04-06T14:01:20.5528246Z #19 41.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api-client/google-api-client-parent/2.7.0/google-api-client-parent-2.7.0.pom (26 kB at 1.1 MB/s) +2026-04-06T14:01:20.5528550Z #19 41.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-bom/1.45.0/google-http-client-bom-1.45.0.pom +2026-04-06T14:01:20.5528762Z #19 41.91 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-bom/1.45.0/google-http-client-bom-1.45.0.pom (6.8 kB at 273 kB/s) +2026-04-06T14:01:20.5529081Z #19 41.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/oauth-client/google-oauth-client-bom/1.36.0/google-oauth-client-bom-1.36.0.pom +2026-04-06T14:01:20.5529501Z #19 41.93 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/oauth-client/google-oauth-client-bom/1.36.0/google-oauth-client-bom-1.36.0.pom (5.8 kB at 251 kB/s) +2026-04-06T14:01:20.5529767Z #19 41.93 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-bom/1.23.0/google-auth-library-bom-1.23.0.pom +2026-04-06T14:01:20.5530098Z #19 41.96 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-bom/1.23.0/google-auth-library-bom-1.23.0.pom (4.5 kB at 206 kB/s) +2026-04-06T14:01:20.6707419Z #19 41.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.pom +2026-04-06T14:01:20.6708120Z #19 41.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.pom (18 kB at 846 kB/s) +2026-04-06T14:01:20.6708465Z #19 41.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/71/commons-parent-71.pom +2026-04-06T14:01:20.6708675Z #19 42.01 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/71/commons-parent-71.pom (78 kB at 3.0 MB/s) +2026-04-06T14:01:20.6709145Z #19 42.01 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.11.0-M2/junit-bom-5.11.0-M2.pom +2026-04-06T14:01:20.6709421Z #19 42.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.11.0-M2/junit-bom-5.11.0-M2.pom (5.7 kB at 317 kB/s) +2026-04-06T14:01:20.6709674Z #19 42.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/oauth-client/google-oauth-client/1.36.0/google-oauth-client-1.36.0.pom +2026-04-06T14:01:20.6709915Z #19 42.05 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/oauth-client/google-oauth-client/1.36.0/google-oauth-client-1.36.0.pom (3.4 kB at 180 kB/s) +2026-04-06T14:01:20.6710151Z #19 42.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/oauth-client/google-oauth-client-parent/1.36.0/google-oauth-client-parent-1.36.0.pom +2026-04-06T14:01:20.6710404Z #19 42.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/oauth-client/google-oauth-client-parent/1.36.0/google-oauth-client-parent-1.36.0.pom (22 kB at 1.1 MB/s) +2026-04-06T14:01:20.7935074Z #19 42.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-bom/1.43.3/google-http-client-bom-1.43.3.pom +2026-04-06T14:01:20.7936003Z #19 42.09 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-bom/1.43.3/google-http-client-bom-1.43.3.pom (6.8 kB at 359 kB/s) +2026-04-06T14:01:20.7936307Z #19 42.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-apache-v2/1.45.0/google-http-client-apache-v2-1.45.0.pom +2026-04-06T14:01:20.7936611Z #19 42.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-apache-v2/1.45.0/google-http-client-apache-v2-1.45.0.pom (3.3 kB at 141 kB/s) +2026-04-06T14:01:20.7936846Z #19 42.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/apis/google-api-services-storage/v1-rev20240819-2.0.0/google-api-services-storage-v1-rev20240819-2.0.0.pom +2026-04-06T14:01:20.7937097Z #19 42.15 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/apis/google-api-services-storage/v1-rev20240819-2.0.0/google-api-services-storage-v1-rev20240819-2.0.0.pom (5.3 kB at 242 kB/s) +2026-04-06T14:01:20.7937347Z #19 42.15 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom +2026-04-06T14:01:20.7937576Z #19 42.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom (9.4 kB at 426 kB/s) +2026-04-06T14:01:20.7937778Z #19 42.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom +2026-04-06T14:01:20.7937994Z #19 42.19 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom (13 kB at 569 kB/s) +2026-04-06T14:01:20.8945972Z #19 42.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core/2.44.1/google-cloud-core-2.44.1.pom +2026-04-06T14:01:20.8948209Z #19 42.22 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core/2.44.1/google-cloud-core-2.44.1.pom (3.7 kB at 156 kB/s) +2026-04-06T14:01:20.8948481Z #19 42.22 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-parent/2.44.1/google-cloud-core-parent-2.44.1.pom +2026-04-06T14:01:20.8948766Z #19 42.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-parent/2.44.1/google-cloud-core-parent-2.44.1.pom (3.1 kB at 128 kB/s) +2026-04-06T14:01:20.8949134Z #19 42.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/gapic-generator-java-pom-parent/2.46.1/gapic-generator-java-pom-parent-2.46.1.pom +2026-04-06T14:01:20.8949367Z #19 42.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/gapic-generator-java-pom-parent/2.46.1/gapic-generator-java-pom-parent-2.46.1.pom (7.6 kB at 380 kB/s) +2026-04-06T14:01:20.8949584Z #19 42.27 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-shared-config/1.11.2/google-cloud-shared-config-1.11.2.pom +2026-04-06T14:01:20.8949767Z #19 42.29 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-shared-config/1.11.2/google-cloud-shared-config-1.11.2.pom (23 kB at 1.2 MB/s) +2026-04-06T14:01:20.8949953Z #19 42.30 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/native-image-shared-config/1.11.2/native-image-shared-config-1.11.2.pom +2026-04-06T14:01:21.0922355Z #19 42.32 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/native-image-shared-config/1.11.2/native-image-shared-config-1.11.2.pom (8.0 kB at 422 kB/s) +2026-04-06T14:01:21.0923183Z #19 42.32 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-shared-dependencies/3.36.1/google-cloud-shared-dependencies-3.36.1.pom +2026-04-06T14:01:21.0923413Z #19 42.34 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-shared-dependencies/3.36.1/google-cloud-shared-dependencies-3.36.1.pom (1.9 kB at 91 kB/s) +2026-04-06T14:01:21.0923652Z #19 42.34 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/first-party-dependencies/3.36.1/first-party-dependencies-3.36.1.pom +2026-04-06T14:01:21.3110076Z #19 42.56 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/first-party-dependencies/3.36.1/first-party-dependencies-3.36.1.pom +2026-04-06T14:01:21.5198267Z #19 42.92 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/first-party-dependencies/3.36.1/first-party-dependencies-3.36.1.pom +2026-04-06T14:01:21.6865253Z #19 43.09 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/first-party-dependencies/3.36.1/first-party-dependencies-3.36.1.pom +2026-04-06T14:01:22.0029458Z #19 43.41 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/first-party-dependencies/3.36.1/first-party-dependencies-3.36.1.pom (3.2 kB at 10 kB/s) +2026-04-06T14:01:22.1144423Z #19 43.41 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/api/gapic-generator-java-bom/2.46.1/gapic-generator-java-bom-2.46.1.pom +2026-04-06T14:01:22.1145122Z #19 43.52 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/api/gapic-generator-java-bom/2.46.1/gapic-generator-java-bom-2.46.1.pom +2026-04-06T14:01:22.2256930Z #19 43.63 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/api/gapic-generator-java-bom/2.46.1/gapic-generator-java-bom-2.46.1.pom +2026-04-06T14:01:22.3357692Z #19 43.74 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/api/gapic-generator-java-bom/2.46.1/gapic-generator-java-bom-2.46.1.pom +2026-04-06T14:01:22.4563003Z #19 43.86 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/api/gapic-generator-java-bom/2.46.1/gapic-generator-java-bom-2.46.1.pom (5.5 kB at 45 kB/s) +2026-04-06T14:01:22.5706859Z #19 43.86 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/auth/google-auth-library-bom/1.27.0/google-auth-library-bom-1.27.0.pom +2026-04-06T14:01:22.5707613Z #19 43.97 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/auth/google-auth-library-bom/1.27.0/google-auth-library-bom-1.27.0.pom +2026-04-06T14:01:22.6760718Z #19 44.08 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/auth/google-auth-library-bom/1.27.0/google-auth-library-bom-1.27.0.pom +2026-04-06T14:01:22.7804693Z #19 44.18 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/auth/google-auth-library-bom/1.27.0/google-auth-library-bom-1.27.0.pom +2026-04-06T14:01:22.9307898Z #19 44.33 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/auth/google-auth-library-bom/1.27.0/google-auth-library-bom-1.27.0.pom (4.5 kB at 30 kB/s) +2026-04-06T14:01:23.0429312Z #19 44.34 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/guava/guava-bom/33.3.0-jre/guava-bom-33.3.0-jre.pom +2026-04-06T14:01:23.0429938Z #19 44.45 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/guava/guava-bom/33.3.0-jre/guava-bom-33.3.0-jre.pom +2026-04-06T14:01:23.1577290Z #19 44.56 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/guava/guava-bom/33.3.0-jre/guava-bom-33.3.0-jre.pom +2026-04-06T14:01:23.2648624Z #19 44.67 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/guava/guava-bom/33.3.0-jre/guava-bom-33.3.0-jre.pom +2026-04-06T14:01:23.3920221Z #19 44.79 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/guava/guava-bom/33.3.0-jre/guava-bom-33.3.0-jre.pom (1.7 kB at 13 kB/s) +2026-04-06T14:01:23.5029333Z #19 44.80 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/protobuf/protobuf-bom/3.25.5/protobuf-bom-3.25.5.pom +2026-04-06T14:01:23.5030016Z #19 44.90 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/protobuf/protobuf-bom/3.25.5/protobuf-bom-3.25.5.pom +2026-04-06T14:01:23.6119007Z #19 45.01 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/protobuf/protobuf-bom/3.25.5/protobuf-bom-3.25.5.pom +2026-04-06T14:01:23.7187389Z #19 45.12 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-bom/3.25.5/protobuf-bom-3.25.5.pom +2026-04-06T14:01:23.8631129Z #19 45.27 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-bom/3.25.5/protobuf-bom-3.25.5.pom (3.7 kB at 26 kB/s) +2026-04-06T14:01:23.9739525Z #19 45.27 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/io/grpc/grpc-bom/1.68.0/grpc-bom-1.68.0.pom +2026-04-06T14:01:23.9740290Z #19 45.38 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/io/grpc/grpc-bom/1.68.0/grpc-bom-1.68.0.pom +2026-04-06T14:01:24.0886050Z #19 45.49 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/io/grpc/grpc-bom/1.68.0/grpc-bom-1.68.0.pom +2026-04-06T14:01:24.3309682Z #19 45.59 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/io/grpc/grpc-bom/1.68.0/grpc-bom-1.68.0.pom +2026-04-06T14:01:24.3310429Z #19 45.73 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/io/grpc/grpc-bom/1.68.0/grpc-bom-1.68.0.pom (6.5 kB at 44 kB/s) +2026-04-06T14:01:24.4412062Z #19 45.74 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/api/gax-bom/2.54.1/gax-bom-2.54.1.pom +2026-04-06T14:01:24.4412835Z #19 45.84 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/api/gax-bom/2.54.1/gax-bom-2.54.1.pom +2026-04-06T14:01:24.5517771Z #19 45.95 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/api/gax-bom/2.54.1/gax-bom-2.54.1.pom +2026-04-06T14:01:24.6555119Z #19 46.06 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/api/gax-bom/2.54.1/gax-bom-2.54.1.pom +2026-04-06T14:01:24.7799980Z #19 46.18 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/api/gax-bom/2.54.1/gax-bom-2.54.1.pom (4.3 kB at 34 kB/s) +2026-04-06T14:01:24.8908508Z #19 46.19 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-core-bom/2.44.1/google-cloud-core-bom-2.44.1.pom +2026-04-06T14:01:24.8910137Z #19 46.29 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-core-bom/2.44.1/google-cloud-core-bom-2.44.1.pom +2026-04-06T14:01:25.0009314Z #19 46.40 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-core-bom/2.44.1/google-cloud-core-bom-2.44.1.pom +2026-04-06T14:01:25.1062021Z #19 46.51 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-core-bom/2.44.1/google-cloud-core-bom-2.44.1.pom +2026-04-06T14:01:25.2530126Z #19 46.66 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-core-bom/2.44.1/google-cloud-core-bom-2.44.1.pom (1.6 kB at 11 kB/s) +2026-04-06T14:01:25.3643224Z #19 46.66 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/api-client/google-api-client-bom/2.7.0/google-api-client-bom-2.7.0.pom +2026-04-06T14:01:25.3643969Z #19 46.77 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/api-client/google-api-client-bom/2.7.0/google-api-client-bom-2.7.0.pom +2026-04-06T14:01:25.4757265Z #19 46.88 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/api-client/google-api-client-bom/2.7.0/google-api-client-bom-2.7.0.pom +2026-04-06T14:01:25.6066853Z #19 47.01 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/api-client/google-api-client-bom/2.7.0/google-api-client-bom-2.7.0.pom +2026-04-06T14:01:25.7332693Z #19 47.14 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/api-client/google-api-client-bom/2.7.0/google-api-client-bom-2.7.0.pom (6.8 kB at 53 kB/s) +2026-04-06T14:01:25.8432489Z #19 47.14 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/third-party-dependencies/3.36.1/third-party-dependencies-3.36.1.pom +2026-04-06T14:01:25.8434331Z #19 47.25 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/third-party-dependencies/3.36.1/third-party-dependencies-3.36.1.pom +2026-04-06T14:01:25.9577769Z #19 47.36 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/third-party-dependencies/3.36.1/third-party-dependencies-3.36.1.pom +2026-04-06T14:01:26.0604420Z #19 47.46 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/third-party-dependencies/3.36.1/third-party-dependencies-3.36.1.pom +2026-04-06T14:01:26.1896613Z #19 47.59 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/third-party-dependencies/3.36.1/third-party-dependencies-3.36.1.pom (9.5 kB at 75 kB/s) +2026-04-06T14:01:26.2978104Z #19 47.59 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/io/opentelemetry/opentelemetry-bom/1.42.1/opentelemetry-bom-1.42.1.pom +2026-04-06T14:01:26.2978861Z #19 47.70 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/io/opentelemetry/opentelemetry-bom/1.42.1/opentelemetry-bom-1.42.1.pom +2026-04-06T14:01:26.4083151Z #19 47.81 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/io/opentelemetry/opentelemetry-bom/1.42.1/opentelemetry-bom-1.42.1.pom +2026-04-06T14:01:26.5188297Z #19 47.92 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/io/opentelemetry/opentelemetry-bom/1.42.1/opentelemetry-bom-1.42.1.pom +2026-04-06T14:01:26.6431690Z #19 48.04 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/io/opentelemetry/opentelemetry-bom/1.42.1/opentelemetry-bom-1.42.1.pom (5.9 kB at 47 kB/s) +2026-04-06T14:01:26.7434148Z #19 48.05 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/auto/value/auto-value-annotations/1.11.0/auto-value-annotations-1.11.0.pom +2026-04-06T14:01:26.7434961Z #19 48.07 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/auto/value/auto-value-annotations/1.11.0/auto-value-annotations-1.11.0.pom (2.7 kB at 119 kB/s) +2026-04-06T14:01:26.7435311Z #19 48.07 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/auto/value/auto-value-parent/1.11.0/auto-value-parent-1.11.0.pom +2026-04-06T14:01:26.7435564Z #19 48.10 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/auto/value/auto-value-parent/1.11.0/auto-value-parent-1.11.0.pom (8.3 kB at 362 kB/s) +2026-04-06T14:01:26.7435830Z #19 48.10 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-http/2.44.1/google-cloud-core-http-2.44.1.pom +2026-04-06T14:01:26.7436112Z #19 48.12 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-http/2.44.1/google-cloud-core-http-2.44.1.pom (3.5 kB at 159 kB/s) +2026-04-06T14:01:26.7436364Z #19 48.12 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-appengine/1.45.0/google-http-client-appengine-1.45.0.pom +2026-04-06T14:01:26.7436573Z #19 48.15 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-appengine/1.45.0/google-http-client-appengine-1.45.0.pom (3.5 kB at 165 kB/s) +2026-04-06T14:01:26.8472362Z #19 48.15 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/gax-httpjson/2.54.1/gax-httpjson-2.54.1.pom +2026-04-06T14:01:26.8473036Z #19 48.17 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/gax-httpjson/2.54.1/gax-httpjson-2.54.1.pom (3.6 kB at 164 kB/s) +2026-04-06T14:01:26.8473418Z #19 48.17 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/gax-parent/2.54.1/gax-parent-2.54.1.pom +2026-04-06T14:01:26.8473633Z #19 48.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/gax-parent/2.54.1/gax-parent-2.54.1.pom (9.4 kB at 362 kB/s) +2026-04-06T14:01:26.8473848Z #19 48.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-grpc/2.44.1/google-cloud-core-grpc-2.44.1.pom +2026-04-06T14:01:26.8474076Z #19 48.22 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-grpc/2.44.1/google-cloud-core-grpc-2.44.1.pom (2.6 kB at 126 kB/s) +2026-04-06T14:01:26.8474353Z #19 48.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/gax/2.54.1/gax-2.54.1.pom +2026-04-06T14:01:26.8474568Z #19 48.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/gax/2.54.1/gax-2.54.1.pom (5.0 kB at 229 kB/s) +2026-04-06T14:01:26.9665910Z #19 48.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/gax-grpc/2.54.1/gax-grpc-2.54.1.pom +2026-04-06T14:01:26.9666649Z #19 48.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/gax-grpc/2.54.1/gax-grpc-2.54.1.pom (5.0 kB at 218 kB/s) +2026-04-06T14:01:26.9666910Z #19 48.28 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-inprocess/1.68.0/grpc-inprocess-1.68.0.pom +2026-04-06T14:01:26.9667151Z #19 48.30 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-inprocess/1.68.0/grpc-inprocess-1.68.0.pom (1.8 kB at 81 kB/s) +2026-04-06T14:01:26.9667356Z #19 48.31 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-alts/1.68.0/grpc-alts-1.68.0.pom +2026-04-06T14:01:26.9667546Z #19 48.33 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-alts/1.68.0/grpc-alts-1.68.0.pom (3.2 kB at 133 kB/s) +2026-04-06T14:01:26.9667721Z #19 48.34 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-grpclb/1.68.0/grpc-grpclb-1.68.0.pom +2026-04-06T14:01:26.9667888Z #19 48.37 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-grpclb/1.68.0/grpc-grpclb-1.68.0.pom (2.5 kB at 98 kB/s) +2026-04-06T14:01:27.0693771Z #19 48.37 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.pom +2026-04-06T14:01:27.0694465Z #19 48.39 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.pom (1.3 kB at 60 kB/s) +2026-04-06T14:01:27.0694727Z #19 48.40 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-auth/1.68.0/grpc-auth-1.68.0.pom +2026-04-06T14:01:27.0694914Z #19 48.42 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-auth/1.68.0/grpc-auth-1.68.0.pom (1.8 kB at 85 kB/s) +2026-04-06T14:01:27.0695135Z #19 48.42 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-credentials/1.27.0/google-auth-library-credentials-1.27.0.pom +2026-04-06T14:01:27.0695344Z #19 48.45 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-credentials/1.27.0/google-auth-library-credentials-1.27.0.pom (2.0 kB at 89 kB/s) +2026-04-06T14:01:27.0695546Z #19 48.45 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-parent/1.27.0/google-auth-library-parent-1.27.0.pom +2026-04-06T14:01:27.0695743Z #19 48.47 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-parent/1.27.0/google-auth-library-parent-1.27.0.pom (15 kB at 638 kB/s) +2026-04-06T14:01:27.1691931Z #19 48.48 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-oauth2-http/1.27.0/google-auth-library-oauth2-http-1.27.0.pom +2026-04-06T14:01:27.1692759Z #19 48.50 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-oauth2-http/1.27.0/google-auth-library-oauth2-http-1.27.0.pom (8.5 kB at 353 kB/s) +2026-04-06T14:01:27.1693053Z #19 48.50 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/api-common/2.37.1/api-common-2.37.1.pom +2026-04-06T14:01:27.1693259Z #19 48.53 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/api-common/2.37.1/api-common-2.37.1.pom (5.5 kB at 251 kB/s) +2026-04-06T14:01:27.1693444Z #19 48.53 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom +2026-04-06T14:01:27.1693641Z #19 48.55 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom (14 kB at 724 kB/s) +2026-04-06T14:01:27.1693858Z #19 48.55 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.pom +2026-04-06T14:01:27.1694040Z #19 48.57 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.pom (2.2 kB at 112 kB/s) +2026-04-06T14:01:27.2864832Z #19 48.57 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-iam-v1/1.40.1/proto-google-iam-v1-1.40.1.pom +2026-04-06T14:01:27.2866724Z #19 48.60 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-iam-v1/1.40.1/proto-google-iam-v1-1.40.1.pom (3.0 kB at 138 kB/s) +2026-04-06T14:01:27.2867048Z #19 48.60 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.pom +2026-04-06T14:01:27.2867287Z #19 48.62 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.pom (1.6 kB at 82 kB/s) +2026-04-06T14:01:27.2867518Z #19 48.62 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.25.5/protobuf-parent-3.25.5.pom +2026-04-06T14:01:27.2867694Z #19 48.64 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.25.5/protobuf-parent-3.25.5.pom (9.0 kB at 451 kB/s) +2026-04-06T14:01:27.2867874Z #19 48.64 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.pom +2026-04-06T14:01:27.2868066Z #19 48.66 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.pom (2.5 kB at 123 kB/s) +2026-04-06T14:01:27.2868247Z #19 48.66 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.68.0/grpc-core-1.68.0.pom +2026-04-06T14:01:27.2868421Z #19 48.69 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.68.0/grpc-core-1.68.0.pom (2.7 kB at 104 kB/s) +2026-04-06T14:01:27.4066720Z #19 48.69 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.pom +2026-04-06T14:01:27.4067481Z #19 48.71 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.pom (1.8 kB at 88 kB/s) +2026-04-06T14:01:27.4067745Z #19 48.71 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.pom +2026-04-06T14:01:27.4067998Z #19 48.73 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.pom (1.7 kB at 92 kB/s) +2026-04-06T14:01:27.4068240Z #19 48.73 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.24/animal-sniffer-parent-1.24.pom +2026-04-06T14:01:27.4068456Z #19 48.76 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.24/animal-sniffer-parent-1.24.pom (5.8 kB at 241 kB/s) +2026-04-06T14:01:27.4068665Z #19 48.76 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/84/mojo-parent-84.pom +2026-04-06T14:01:27.4068840Z #19 48.78 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/84/mojo-parent-84.pom (36 kB at 1.6 MB/s) +2026-04-06T14:01:27.4069615Z #19 48.79 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.pom +2026-04-06T14:01:27.4069830Z #19 48.81 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.pom (1.5 kB at 68 kB/s) +2026-04-06T14:01:27.5087125Z #19 48.81 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.68.0/grpc-protobuf-1.68.0.pom +2026-04-06T14:01:27.5088206Z #19 48.83 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.68.0/grpc-protobuf-1.68.0.pom (2.7 kB at 135 kB/s) +2026-04-06T14:01:27.5088436Z #19 48.83 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.68.0/grpc-protobuf-lite-1.68.0.pom +2026-04-06T14:01:27.5088622Z #19 48.86 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.68.0/grpc-protobuf-lite-1.68.0.pom (2.0 kB at 77 kB/s) +2026-04-06T14:01:27.5088852Z #19 48.86 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.45.1/proto-google-common-protos-2.45.1.pom +2026-04-06T14:01:27.5089044Z #19 48.88 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.45.1/proto-google-common-protos-2.45.1.pom (2.7 kB at 120 kB/s) +2026-04-06T14:01:27.5089260Z #19 48.88 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/threeten/threetenbp/1.7.0/threetenbp-1.7.0.pom +2026-04-06T14:01:27.5089431Z #19 48.91 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/threeten/threetenbp/1.7.0/threetenbp-1.7.0.pom (33 kB at 1.4 MB/s) +2026-04-06T14:01:27.5089618Z #19 48.91 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-cloud-storage-v2/2.43.1-beta/proto-google-cloud-storage-v2-2.43.1-beta.pom +2026-04-06T14:01:27.6269920Z #19 48.93 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-cloud-storage-v2/2.43.1-beta/proto-google-cloud-storage-v2-2.43.1-beta.pom (1.4 kB at 66 kB/s) +2026-04-06T14:01:27.6270700Z #19 48.93 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-storage-parent/2.43.1/google-cloud-storage-parent-2.43.1.pom +2026-04-06T14:01:27.6271032Z #19 48.96 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-storage-parent/2.43.1/google-cloud-storage-parent-2.43.1.pom (9.8 kB at 426 kB/s) +2026-04-06T14:01:27.6271285Z #19 48.96 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/sdk-platform-java-config/3.36.1/sdk-platform-java-config-3.36.1.pom +2026-04-06T14:01:27.6271514Z #19 48.98 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/sdk-platform-java-config/3.36.1/sdk-platform-java-config-3.36.1.pom (1.0 kB at 50 kB/s) +2026-04-06T14:01:27.6271731Z #19 48.98 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/grpc-google-cloud-storage-v2/2.43.1-beta/grpc-google-cloud-storage-v2-2.43.1-beta.pom +2026-04-06T14:01:27.6271948Z #19 49.00 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/grpc-google-cloud-storage-v2/2.43.1-beta/grpc-google-cloud-storage-v2-2.43.1-beta.pom (2.0 kB at 99 kB/s) +2026-04-06T14:01:27.6272156Z #19 49.01 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/gapic-google-cloud-storage-v2/2.43.1-beta/gapic-google-cloud-storage-v2-2.43.1-beta.pom +2026-04-06T14:01:27.6272384Z #19 49.03 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/gapic-google-cloud-storage-v2/2.43.1-beta/gapic-google-cloud-storage-v2-2.43.1-beta.pom (3.0 kB at 143 kB/s) +2026-04-06T14:01:27.7268777Z #19 49.03 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk/1.42.1/opentelemetry-sdk-1.42.1.pom +2026-04-06T14:01:27.7269657Z #19 49.06 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk/1.42.1/opentelemetry-sdk-1.42.1.pom (2.5 kB at 111 kB/s) +2026-04-06T14:01:27.7269949Z #19 49.06 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-trace/1.42.1/opentelemetry-sdk-trace-1.42.1.pom +2026-04-06T14:01:27.7270721Z #19 49.08 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-trace/1.42.1/opentelemetry-sdk-trace-1.42.1.pom (2.2 kB at 110 kB/s) +2026-04-06T14:01:27.7271662Z #19 49.08 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.42.1/opentelemetry-sdk-logs-1.42.1.pom +2026-04-06T14:01:27.7272161Z #19 49.11 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.42.1/opentelemetry-sdk-logs-1.42.1.pom (2.2 kB at 95 kB/s) +2026-04-06T14:01:27.7272416Z #19 49.11 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-opentelemetry/1.68.0/grpc-opentelemetry-1.68.0.pom +2026-04-06T14:01:27.7272587Z #19 49.13 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-opentelemetry/1.68.0/grpc-opentelemetry-1.68.0.pom (2.2 kB at 99 kB/s) +2026-04-06T14:01:27.7272884Z #19 49.13 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api/1.42.1/opentelemetry-api-1.42.1.pom +2026-04-06T14:01:27.8460863Z #19 49.15 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api/1.42.1/opentelemetry-api-1.42.1.pom (1.8 kB at 77 kB/s) +2026-04-06T14:01:27.8461982Z #19 49.15 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-context/1.42.1/opentelemetry-context-1.42.1.pom +2026-04-06T14:01:27.8462279Z #19 49.18 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-context/1.42.1/opentelemetry-context-1.42.1.pom (1.6 kB at 75 kB/s) +2026-04-06T14:01:27.8462545Z #19 49.18 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.42.1/opentelemetry-sdk-metrics-1.42.1.pom +2026-04-06T14:01:27.8462738Z #19 49.20 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.42.1/opentelemetry-sdk-metrics-1.42.1.pom (2.2 kB at 104 kB/s) +2026-04-06T14:01:27.8462932Z #19 49.20 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api-incubator/1.42.1-alpha/opentelemetry-api-incubator-1.42.1-alpha.pom +2026-04-06T14:01:27.8463144Z #19 49.22 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api-incubator/1.42.1-alpha/opentelemetry-api-incubator-1.42.1-alpha.pom (1.8 kB at 86 kB/s) +2026-04-06T14:01:27.8463409Z #19 49.23 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.42.1/opentelemetry-sdk-common-1.42.1.pom +2026-04-06T14:01:27.8463639Z #19 49.25 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.42.1/opentelemetry-sdk-common-1.42.1.pom (1.8 kB at 78 kB/s) +2026-04-06T14:01:27.9563709Z #19 49.25 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.42.1/opentelemetry-sdk-extension-autoconfigure-spi-1.42.1.pom +2026-04-06T14:01:27.9564415Z #19 49.27 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.42.1/opentelemetry-sdk-extension-autoconfigure-spi-1.42.1.pom (1.8 kB at 79 kB/s) +2026-04-06T14:01:27.9564679Z #19 49.28 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/semconv/opentelemetry-semconv/1.25.0-alpha/opentelemetry-semconv-1.25.0-alpha.pom +2026-04-06T14:01:27.9564877Z #19 49.30 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/semconv/opentelemetry-semconv/1.25.0-alpha/opentelemetry-semconv-1.25.0-alpha.pom (1.7 kB at 62 kB/s) +2026-04-06T14:01:27.9565081Z #19 49.31 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/opentelemetry/exporter-metrics/0.31.0/exporter-metrics-0.31.0.pom +2026-04-06T14:01:27.9565280Z #19 49.33 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/opentelemetry/exporter-metrics/0.31.0/exporter-metrics-0.31.0.pom (3.9 kB at 164 kB/s) +2026-04-06T14:01:27.9565474Z #19 49.34 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/libraries-bom/26.26.0/libraries-bom-26.26.0.pom +2026-04-06T14:01:27.9565761Z #19 49.36 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/libraries-bom/26.26.0/libraries-bom-26.26.0.pom (5.2 kB at 237 kB/s) +2026-04-06T14:01:28.0593374Z #19 49.36 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/first-party-dependencies/3.18.0/first-party-dependencies-3.18.0.pom +2026-04-06T14:01:28.0594049Z #19 49.46 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/first-party-dependencies/3.18.0/first-party-dependencies-3.18.0.pom (3.2 kB at 32 kB/s) +2026-04-06T14:01:28.2057868Z #19 49.46 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-shared-config/1.6.0/google-cloud-shared-config-1.6.0.pom +2026-04-06T14:01:28.2058604Z #19 49.50 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-shared-config/1.6.0/google-cloud-shared-config-1.6.0.pom (30 kB at 830 kB/s) +2026-04-06T14:01:28.2058918Z #19 49.50 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/api/gapic-generator-java-bom/2.28.0/gapic-generator-java-bom-2.28.0.pom +2026-04-06T14:01:28.2059156Z #19 49.54 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/api/gapic-generator-java-bom/2.28.0/gapic-generator-java-bom-2.28.0.pom (5.5 kB at 157 kB/s) +2026-04-06T14:01:28.2059422Z #19 49.54 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/api/gapic-generator-java-pom-parent/2.28.0/gapic-generator-java-pom-parent-2.28.0.pom +2026-04-06T14:01:28.2059668Z #19 49.61 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/api/gapic-generator-java-pom-parent/2.28.0/gapic-generator-java-pom-parent-2.28.0.pom (6.8 kB at 100 kB/s) +2026-04-06T14:01:28.3199590Z #19 49.62 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/auth/google-auth-library-bom/1.20.0/google-auth-library-bom-1.20.0.pom +2026-04-06T14:01:28.3200359Z #19 49.72 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/auth/google-auth-library-bom/1.20.0/google-auth-library-bom-1.20.0.pom +2026-04-06T14:01:28.4300127Z #19 49.83 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/auth/google-auth-library-bom/1.20.0/google-auth-library-bom-1.20.0.pom +2026-04-06T14:01:28.5387192Z #19 49.94 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/auth/google-auth-library-bom/1.20.0/google-auth-library-bom-1.20.0.pom +2026-04-06T14:01:28.6593000Z #19 50.06 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/auth/google-auth-library-bom/1.20.0/google-auth-library-bom-1.20.0.pom (4.5 kB at 38 kB/s) +2026-04-06T14:01:28.7681481Z #19 50.06 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/guava/guava-bom/32.1.2-jre/guava-bom-32.1.2-jre.pom +2026-04-06T14:01:28.7682029Z #19 50.17 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/guava/guava-bom/32.1.2-jre/guava-bom-32.1.2-jre.pom +2026-04-06T14:01:28.8776915Z #19 50.28 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/guava/guava-bom/32.1.2-jre/guava-bom-32.1.2-jre.pom +2026-04-06T14:01:28.9830850Z #19 50.38 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/guava/guava-bom/32.1.2-jre/guava-bom-32.1.2-jre.pom +2026-04-06T14:01:29.1353780Z #19 50.54 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/guava/guava-bom/32.1.2-jre/guava-bom-32.1.2-jre.pom (1.7 kB at 11 kB/s) +2026-04-06T14:01:29.2451063Z #19 50.54 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/protobuf/protobuf-bom/3.24.4/protobuf-bom-3.24.4.pom +2026-04-06T14:01:29.2451694Z #19 50.65 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/protobuf/protobuf-bom/3.24.4/protobuf-bom-3.24.4.pom +2026-04-06T14:01:29.3539536Z #19 50.76 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/protobuf/protobuf-bom/3.24.4/protobuf-bom-3.24.4.pom +2026-04-06T14:01:29.5819170Z #19 50.85 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-bom/3.24.4/protobuf-bom-3.24.4.pom +2026-04-06T14:01:29.5819794Z #19 50.98 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-bom/3.24.4/protobuf-bom-3.24.4.pom (3.7 kB at 28 kB/s) +2026-04-06T14:01:29.6912071Z #19 50.99 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/io/grpc/grpc-bom/1.58.0/grpc-bom-1.58.0.pom +2026-04-06T14:01:29.6950267Z #19 51.09 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/io/grpc/grpc-bom/1.58.0/grpc-bom-1.58.0.pom +2026-04-06T14:01:29.8020534Z #19 51.20 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/io/grpc/grpc-bom/1.58.0/grpc-bom-1.58.0.pom +2026-04-06T14:01:29.9038199Z #19 51.31 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/io/grpc/grpc-bom/1.58.0/grpc-bom-1.58.0.pom +2026-04-06T14:01:30.0295303Z #19 51.43 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/io/grpc/grpc-bom/1.58.0/grpc-bom-1.58.0.pom (6.1 kB at 49 kB/s) +2026-04-06T14:01:30.1370883Z #19 51.43 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/api/gax-bom/2.36.0/gax-bom-2.36.0.pom +2026-04-06T14:01:30.1371461Z #19 51.54 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/api/gax-bom/2.36.0/gax-bom-2.36.0.pom +2026-04-06T14:01:30.2490384Z #19 51.65 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/api/gax-bom/2.36.0/gax-bom-2.36.0.pom +2026-04-06T14:01:30.3925876Z #19 51.79 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/api/gax-bom/2.36.0/gax-bom-2.36.0.pom +2026-04-06T14:01:30.5149828Z #19 51.92 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/api/gax-bom/2.36.0/gax-bom-2.36.0.pom (4.3 kB at 35 kB/s) +2026-04-06T14:01:30.6446903Z #19 51.92 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-core-bom/2.26.0/google-cloud-core-bom-2.26.0.pom +2026-04-06T14:01:30.6447608Z #19 51.96 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-core-bom/2.26.0/google-cloud-core-bom-2.26.0.pom (1.6 kB at 41 kB/s) +2026-04-06T14:01:30.6447847Z #19 51.96 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/oauth-client/google-oauth-client-bom/1.34.1/google-oauth-client-bom-1.34.1.pom +2026-04-06T14:01:30.6448100Z #19 52.00 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/oauth-client/google-oauth-client-bom/1.34.1/google-oauth-client-bom-1.34.1.pom (5.8 kB at 141 kB/s) +2026-04-06T14:01:30.6448319Z #19 52.00 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/api-client/google-api-client-bom/2.2.0/google-api-client-bom-2.2.0.pom +2026-04-06T14:01:30.6448510Z #19 52.05 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/api-client/google-api-client-bom/2.2.0/google-api-client-bom-2.2.0.pom (6.8 kB at 158 kB/s) +2026-04-06T14:01:30.7685471Z #19 52.05 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-bom/0.207.0/google-cloud-bom-0.207.0.pom +2026-04-06T14:01:30.7686620Z #19 52.09 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-bom/0.207.0/google-cloud-bom-0.207.0.pom (12 kB at 292 kB/s) +2026-04-06T14:01:30.7686869Z #19 52.09 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/gapic-libraries-bom/1.23.0/gapic-libraries-bom-1.23.0.pom +2026-04-06T14:01:30.7687071Z #19 52.13 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/gapic-libraries-bom/1.23.0/gapic-libraries-bom-1.23.0.pom (48 kB at 1.2 MB/s) +2026-04-06T14:01:30.7687282Z #19 52.13 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-pom-parent/1.23.0/google-cloud-pom-parent-1.23.0.pom +2026-04-06T14:01:30.7687481Z #19 52.17 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-pom-parent/1.23.0/google-cloud-pom-parent-1.23.0.pom (3.8 kB at 106 kB/s) +2026-04-06T14:01:30.8811005Z #19 52.17 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-accessapproval-bom/2.30.0/google-cloud-accessapproval-bom-2.30.0.pom +2026-04-06T14:01:30.8811671Z #19 52.28 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-accessapproval-bom/2.30.0/google-cloud-accessapproval-bom-2.30.0.pom +2026-04-06T14:01:30.9966218Z #19 52.40 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-accessapproval-bom/2.30.0/google-cloud-accessapproval-bom-2.30.0.pom +2026-04-06T14:01:31.1350427Z #19 52.54 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-accessapproval-bom/2.30.0/google-cloud-accessapproval-bom-2.30.0.pom +2026-04-06T14:01:31.2666852Z #19 52.67 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-accessapproval-bom/2.30.0/google-cloud-accessapproval-bom-2.30.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:01:31.3833836Z #19 52.67 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-identity-accesscontextmanager-bom/1.30.0/google-identity-accesscontextmanager-bom-1.30.0.pom +2026-04-06T14:01:31.3834549Z #19 52.79 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-identity-accesscontextmanager-bom/1.30.0/google-identity-accesscontextmanager-bom-1.30.0.pom +2026-04-06T14:01:31.4952310Z #19 52.90 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-identity-accesscontextmanager-bom/1.30.0/google-identity-accesscontextmanager-bom-1.30.0.pom +2026-04-06T14:01:31.6009257Z #19 53.00 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-identity-accesscontextmanager-bom/1.30.0/google-identity-accesscontextmanager-bom-1.30.0.pom +2026-04-06T14:01:31.7256472Z #19 53.13 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-identity-accesscontextmanager-bom/1.30.0/google-identity-accesscontextmanager-bom-1.30.0.pom (2.2 kB at 18 kB/s) +2026-04-06T14:01:31.8362999Z #19 53.13 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-advisorynotifications-bom/0.18.0/google-cloud-advisorynotifications-bom-0.18.0.pom +2026-04-06T14:01:31.8363898Z #19 53.24 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-advisorynotifications-bom/0.18.0/google-cloud-advisorynotifications-bom-0.18.0.pom +2026-04-06T14:01:31.9451819Z #19 53.35 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-advisorynotifications-bom/0.18.0/google-cloud-advisorynotifications-bom-0.18.0.pom +2026-04-06T14:01:32.1933405Z #19 53.44 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-advisorynotifications-bom/0.18.0/google-cloud-advisorynotifications-bom-0.18.0.pom +2026-04-06T14:01:32.6379647Z #19 54.04 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-advisorynotifications-bom/0.18.0/google-cloud-advisorynotifications-bom-0.18.0.pom (1.9 kB at 3.2 kB/s) +2026-04-06T14:01:32.7474416Z #19 54.04 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-aiplatform-bom/3.30.0/google-cloud-aiplatform-bom-3.30.0.pom +2026-04-06T14:01:32.7475259Z #19 54.15 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-aiplatform-bom/3.30.0/google-cloud-aiplatform-bom-3.30.0.pom +2026-04-06T14:01:32.8589816Z #19 54.26 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-aiplatform-bom/3.30.0/google-cloud-aiplatform-bom-3.30.0.pom +2026-04-06T14:01:32.9657505Z #19 54.37 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-aiplatform-bom/3.30.0/google-cloud-aiplatform-bom-3.30.0.pom +2026-04-06T14:01:33.0880348Z #19 54.49 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-aiplatform-bom/3.30.0/google-cloud-aiplatform-bom-3.30.0.pom (2.3 kB at 19 kB/s) +2026-04-06T14:01:33.1993216Z #19 54.49 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-alloydb-connectors-bom/0.7.0/google-cloud-alloydb-connectors-bom-0.7.0.pom +2026-04-06T14:01:33.1993942Z #19 54.60 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-alloydb-connectors-bom/0.7.0/google-cloud-alloydb-connectors-bom-0.7.0.pom +2026-04-06T14:01:33.3127935Z #19 54.71 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-alloydb-connectors-bom/0.7.0/google-cloud-alloydb-connectors-bom-0.7.0.pom +2026-04-06T14:01:33.5551511Z #19 54.81 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-alloydb-connectors-bom/0.7.0/google-cloud-alloydb-connectors-bom-0.7.0.pom +2026-04-06T14:01:33.5653760Z #19 54.97 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-alloydb-connectors-bom/0.7.0/google-cloud-alloydb-connectors-bom-0.7.0.pom (2.1 kB at 13 kB/s) +2026-04-06T14:01:33.6800776Z #19 54.97 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-alloydb-bom/0.18.0/google-cloud-alloydb-bom-0.18.0.pom +2026-04-06T14:01:33.6801778Z #19 55.08 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-alloydb-bom/0.18.0/google-cloud-alloydb-bom-0.18.0.pom +2026-04-06T14:01:33.7904720Z #19 55.19 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-alloydb-bom/0.18.0/google-cloud-alloydb-bom-0.18.0.pom +2026-04-06T14:01:34.0123239Z #19 55.29 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-alloydb-bom/0.18.0/google-cloud-alloydb-bom-0.18.0.pom +2026-04-06T14:01:34.0123979Z #19 55.41 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-alloydb-bom/0.18.0/google-cloud-alloydb-bom-0.18.0.pom (2.8 kB at 23 kB/s) +2026-04-06T14:01:34.0124385Z #19 55.41 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/analytics/google-analytics-admin-bom/0.39.0/google-analytics-admin-bom-0.39.0.pom +2026-04-06T14:01:34.1209113Z #19 55.52 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/analytics/google-analytics-admin-bom/0.39.0/google-analytics-admin-bom-0.39.0.pom +2026-04-06T14:01:34.2327331Z #19 55.63 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/analytics/google-analytics-admin-bom/0.39.0/google-analytics-admin-bom-0.39.0.pom +2026-04-06T14:01:34.3476320Z #19 55.75 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/analytics/google-analytics-admin-bom/0.39.0/google-analytics-admin-bom-0.39.0.pom +2026-04-06T14:01:34.4910508Z #19 55.89 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/analytics/google-analytics-admin-bom/0.39.0/google-analytics-admin-bom-0.39.0.pom (2.3 kB at 17 kB/s) +2026-04-06T14:01:34.4912388Z #19 55.89 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/analytics/google-analytics-data-bom/0.40.0/google-analytics-data-bom-0.40.0.pom +2026-04-06T14:01:34.5983514Z #19 56.00 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/analytics/google-analytics-data-bom/0.40.0/google-analytics-data-bom-0.40.0.pom +2026-04-06T14:01:34.7127261Z #19 56.11 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/analytics/google-analytics-data-bom/0.40.0/google-analytics-data-bom-0.40.0.pom +2026-04-06T14:01:34.9467259Z #19 56.21 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/analytics/google-analytics-data-bom/0.40.0/google-analytics-data-bom-0.40.0.pom +2026-04-06T14:01:34.9468199Z #19 56.35 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/analytics/google-analytics-data-bom/0.40.0/google-analytics-data-bom-0.40.0.pom (2.3 kB at 17 kB/s) +2026-04-06T14:01:35.0574735Z #19 56.35 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-analyticshub-bom/0.26.0/google-cloud-analyticshub-bom-0.26.0.pom +2026-04-06T14:01:35.0575461Z #19 56.46 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-analyticshub-bom/0.26.0/google-cloud-analyticshub-bom-0.26.0.pom +2026-04-06T14:01:35.1674570Z #19 56.57 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-analyticshub-bom/0.26.0/google-cloud-analyticshub-bom-0.26.0.pom +2026-04-06T14:01:35.2753455Z #19 56.68 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-analyticshub-bom/0.26.0/google-cloud-analyticshub-bom-0.26.0.pom +2026-04-06T14:01:35.4021429Z #19 56.80 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-analyticshub-bom/0.26.0/google-cloud-analyticshub-bom-0.26.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:01:35.5164135Z #19 56.81 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-api-gateway-bom/2.29.0/google-cloud-api-gateway-bom-2.29.0.pom +2026-04-06T14:01:35.5164945Z #19 56.92 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-api-gateway-bom/2.29.0/google-cloud-api-gateway-bom-2.29.0.pom +2026-04-06T14:01:35.6307567Z #19 57.03 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-api-gateway-bom/2.29.0/google-cloud-api-gateway-bom-2.29.0.pom +2026-04-06T14:01:35.7424128Z #19 57.14 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-api-gateway-bom/2.29.0/google-cloud-api-gateway-bom-2.29.0.pom +2026-04-06T14:01:35.8845949Z #19 57.29 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-api-gateway-bom/2.29.0/google-cloud-api-gateway-bom-2.29.0.pom (1.8 kB at 13 kB/s) +2026-04-06T14:01:35.9979051Z #19 57.29 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-apigee-connect-bom/2.29.0/google-cloud-apigee-connect-bom-2.29.0.pom +2026-04-06T14:01:35.9979657Z #19 57.40 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-apigee-connect-bom/2.29.0/google-cloud-apigee-connect-bom-2.29.0.pom +2026-04-06T14:01:36.1270495Z #19 57.53 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-apigee-connect-bom/2.29.0/google-cloud-apigee-connect-bom-2.29.0.pom +2026-04-06T14:01:36.2350404Z #19 57.64 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-apigee-connect-bom/2.29.0/google-cloud-apigee-connect-bom-2.29.0.pom +2026-04-06T14:01:36.3614431Z #19 57.76 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-apigee-connect-bom/2.29.0/google-cloud-apigee-connect-bom-2.29.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:01:36.4754928Z #19 57.77 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-apigee-registry-bom/0.29.0/google-cloud-apigee-registry-bom-0.29.0.pom +2026-04-06T14:01:36.4755669Z #19 57.88 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-apigee-registry-bom/0.29.0/google-cloud-apigee-registry-bom-0.29.0.pom +2026-04-06T14:01:36.5854704Z #19 57.99 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-apigee-registry-bom/0.29.0/google-cloud-apigee-registry-bom-0.29.0.pom +2026-04-06T14:01:36.6879551Z #19 58.09 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-apigee-registry-bom/0.29.0/google-cloud-apigee-registry-bom-0.29.0.pom +2026-04-06T14:01:36.8299896Z #19 58.23 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-apigee-registry-bom/0.29.0/google-cloud-apigee-registry-bom-0.29.0.pom (1.8 kB at 13 kB/s) +2026-04-06T14:01:36.9399055Z #19 58.23 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-apikeys-bom/0.27.0/google-cloud-apikeys-bom-0.27.0.pom +2026-04-06T14:01:36.9399692Z #19 58.34 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-apikeys-bom/0.27.0/google-cloud-apikeys-bom-0.27.0.pom +2026-04-06T14:01:37.0527525Z #19 58.46 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-apikeys-bom/0.27.0/google-cloud-apikeys-bom-0.27.0.pom +2026-04-06T14:01:37.1633527Z #19 58.57 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-apikeys-bom/0.27.0/google-cloud-apikeys-bom-0.27.0.pom +2026-04-06T14:01:37.2928279Z #19 58.70 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-apikeys-bom/0.27.0/google-cloud-apikeys-bom-0.27.0.pom (1.8 kB at 13 kB/s) +2026-04-06T14:01:37.4018065Z #19 58.70 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-appengine-admin-bom/2.29.0/google-cloud-appengine-admin-bom-2.29.0.pom +2026-04-06T14:01:37.4018667Z #19 58.80 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-appengine-admin-bom/2.29.0/google-cloud-appengine-admin-bom-2.29.0.pom +2026-04-06T14:01:37.5137225Z #19 58.92 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-appengine-admin-bom/2.29.0/google-cloud-appengine-admin-bom-2.29.0.pom +2026-04-06T14:01:37.6242983Z #19 59.03 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-appengine-admin-bom/2.29.0/google-cloud-appengine-admin-bom-2.29.0.pom +2026-04-06T14:01:37.7661280Z #19 59.17 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-appengine-admin-bom/2.29.0/google-cloud-appengine-admin-bom-2.29.0.pom (1.8 kB at 13 kB/s) +2026-04-06T14:01:37.8785396Z #19 59.17 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/area120/google-area120-tables-bom/0.33.0/google-area120-tables-bom-0.33.0.pom +2026-04-06T14:01:37.8786013Z #19 59.28 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/area120/google-area120-tables-bom/0.33.0/google-area120-tables-bom-0.33.0.pom +2026-04-06T14:01:37.9900473Z #19 59.39 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/area120/google-area120-tables-bom/0.33.0/google-area120-tables-bom-0.33.0.pom +2026-04-06T14:01:38.1021016Z #19 59.50 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/area120/google-area120-tables-bom/0.33.0/google-area120-tables-bom-0.33.0.pom +2026-04-06T14:01:38.3276331Z #19 59.73 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/area120/google-area120-tables-bom/0.33.0/google-area120-tables-bom-0.33.0.pom (1.8 kB at 8.0 kB/s) +2026-04-06T14:01:38.4386726Z #19 59.73 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-artifact-registry-bom/1.28.0/google-cloud-artifact-registry-bom-1.28.0.pom +2026-04-06T14:01:38.4387486Z #19 59.84 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-artifact-registry-bom/1.28.0/google-cloud-artifact-registry-bom-1.28.0.pom +2026-04-06T14:01:38.5495578Z #19 59.95 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-artifact-registry-bom/1.28.0/google-cloud-artifact-registry-bom-1.28.0.pom +2026-04-06T14:01:38.6548817Z #19 60.06 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-artifact-registry-bom/1.28.0/google-cloud-artifact-registry-bom-1.28.0.pom +2026-04-06T14:01:38.7781841Z #19 60.18 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-artifact-registry-bom/1.28.0/google-cloud-artifact-registry-bom-1.28.0.pom (2.4 kB at 20 kB/s) +2026-04-06T14:01:38.8922955Z #19 60.18 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-asset-bom/3.33.0/google-cloud-asset-bom-3.33.0.pom +2026-04-06T14:01:38.8923770Z #19 60.29 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-asset-bom/3.33.0/google-cloud-asset-bom-3.33.0.pom +2026-04-06T14:01:39.0063133Z #19 60.41 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-asset-bom/3.33.0/google-cloud-asset-bom-3.33.0.pom +2026-04-06T14:01:39.1150079Z #19 60.52 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-asset-bom/3.33.0/google-cloud-asset-bom-3.33.0.pom +2026-04-06T14:01:39.2527696Z #19 60.66 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-asset-bom/3.33.0/google-cloud-asset-bom-3.33.0.pom (3.7 kB at 27 kB/s) +2026-04-06T14:01:39.3621835Z #19 60.66 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-assured-workloads-bom/2.29.0/google-cloud-assured-workloads-bom-2.29.0.pom +2026-04-06T14:01:39.3622499Z #19 60.76 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-assured-workloads-bom/2.29.0/google-cloud-assured-workloads-bom-2.29.0.pom +2026-04-06T14:01:39.4736361Z #19 60.88 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-assured-workloads-bom/2.29.0/google-cloud-assured-workloads-bom-2.29.0.pom +2026-04-06T14:01:39.5830494Z #19 60.98 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-assured-workloads-bom/2.29.0/google-cloud-assured-workloads-bom-2.29.0.pom +2026-04-06T14:01:39.7059977Z #19 61.11 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-assured-workloads-bom/2.29.0/google-cloud-assured-workloads-bom-2.29.0.pom (2.4 kB at 20 kB/s) +2026-04-06T14:01:39.8176772Z #19 61.11 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-automl-bom/2.29.0/google-cloud-automl-bom-2.29.0.pom +2026-04-06T14:01:39.8177359Z #19 61.22 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-automl-bom/2.29.0/google-cloud-automl-bom-2.29.0.pom +2026-04-06T14:01:39.9276063Z #19 61.33 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-automl-bom/2.29.0/google-cloud-automl-bom-2.29.0.pom +2026-04-06T14:01:40.0283111Z #19 61.43 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-automl-bom/2.29.0/google-cloud-automl-bom-2.29.0.pom +2026-04-06T14:01:40.1760510Z #19 61.58 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-automl-bom/2.29.0/google-cloud-automl-bom-2.29.0.pom (2.2 kB at 15 kB/s) +2026-04-06T14:01:40.2882282Z #19 61.58 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-bare-metal-solution-bom/0.29.0/google-cloud-bare-metal-solution-bom-0.29.0.pom +2026-04-06T14:01:40.2882969Z #19 61.69 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-bare-metal-solution-bom/0.29.0/google-cloud-bare-metal-solution-bom-0.29.0.pom +2026-04-06T14:01:40.4013649Z #19 61.80 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-bare-metal-solution-bom/0.29.0/google-cloud-bare-metal-solution-bom-0.29.0.pom +2026-04-06T14:01:40.5102222Z #19 61.91 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bare-metal-solution-bom/0.29.0/google-cloud-bare-metal-solution-bom-0.29.0.pom +2026-04-06T14:01:40.6346719Z #19 62.04 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bare-metal-solution-bom/0.29.0/google-cloud-bare-metal-solution-bom-0.29.0.pom (1.9 kB at 15 kB/s) +2026-04-06T14:01:40.7447734Z #19 62.04 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-batch-bom/0.29.0/google-cloud-batch-bom-0.29.0.pom +2026-04-06T14:01:40.7448809Z #19 62.15 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-batch-bom/0.29.0/google-cloud-batch-bom-0.29.0.pom +2026-04-06T14:01:40.8557524Z #19 62.26 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-batch-bom/0.29.0/google-cloud-batch-bom-0.29.0.pom +2026-04-06T14:01:40.9652526Z #19 62.37 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-batch-bom/0.29.0/google-cloud-batch-bom-0.29.0.pom +2026-04-06T14:01:41.1150894Z #19 62.52 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-batch-bom/0.29.0/google-cloud-batch-bom-0.29.0.pom (2.3 kB at 15 kB/s) +2026-04-06T14:01:41.2243972Z #19 62.52 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-beyondcorp-appconnections-bom/0.27.0/google-cloud-beyondcorp-appconnections-bom-0.27.0.pom +2026-04-06T14:01:41.2244805Z #19 62.63 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-beyondcorp-appconnections-bom/0.27.0/google-cloud-beyondcorp-appconnections-bom-0.27.0.pom +2026-04-06T14:01:41.3353729Z #19 62.74 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-beyondcorp-appconnections-bom/0.27.0/google-cloud-beyondcorp-appconnections-bom-0.27.0.pom +2026-04-06T14:01:41.4415985Z #19 62.84 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-beyondcorp-appconnections-bom/0.27.0/google-cloud-beyondcorp-appconnections-bom-0.27.0.pom +2026-04-06T14:01:41.5670259Z #19 62.97 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-beyondcorp-appconnections-bom/0.27.0/google-cloud-beyondcorp-appconnections-bom-0.27.0.pom (1.9 kB at 15 kB/s) +2026-04-06T14:01:41.6776953Z #19 62.97 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-beyondcorp-appconnectors-bom/0.27.0/google-cloud-beyondcorp-appconnectors-bom-0.27.0.pom +2026-04-06T14:01:41.6777791Z #19 63.08 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-beyondcorp-appconnectors-bom/0.27.0/google-cloud-beyondcorp-appconnectors-bom-0.27.0.pom +2026-04-06T14:01:41.7900727Z #19 63.19 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-beyondcorp-appconnectors-bom/0.27.0/google-cloud-beyondcorp-appconnectors-bom-0.27.0.pom +2026-04-06T14:01:41.8950860Z #19 63.30 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-beyondcorp-appconnectors-bom/0.27.0/google-cloud-beyondcorp-appconnectors-bom-0.27.0.pom +2026-04-06T14:01:42.0378929Z #19 63.44 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-beyondcorp-appconnectors-bom/0.27.0/google-cloud-beyondcorp-appconnectors-bom-0.27.0.pom (1.9 kB at 13 kB/s) +2026-04-06T14:01:42.1479274Z #19 63.44 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-beyondcorp-appgateways-bom/0.27.0/google-cloud-beyondcorp-appgateways-bom-0.27.0.pom +2026-04-06T14:01:42.1480385Z #19 63.55 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-beyondcorp-appgateways-bom/0.27.0/google-cloud-beyondcorp-appgateways-bom-0.27.0.pom +2026-04-06T14:01:42.2573829Z #19 63.66 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-beyondcorp-appgateways-bom/0.27.0/google-cloud-beyondcorp-appgateways-bom-0.27.0.pom +2026-04-06T14:01:42.3582275Z #19 63.76 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-beyondcorp-appgateways-bom/0.27.0/google-cloud-beyondcorp-appgateways-bom-0.27.0.pom +2026-04-06T14:01:42.4906429Z #19 63.89 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-beyondcorp-appgateways-bom/0.27.0/google-cloud-beyondcorp-appgateways-bom-0.27.0.pom (1.9 kB at 15 kB/s) +2026-04-06T14:01:42.6000271Z #19 63.89 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-beyondcorp-clientconnectorservices-bom/0.27.0/google-cloud-beyondcorp-clientconnectorservices-bom-0.27.0.pom +2026-04-06T14:01:42.6001192Z #19 64.00 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-beyondcorp-clientconnectorservices-bom/0.27.0/google-cloud-beyondcorp-clientconnectorservices-bom-0.27.0.pom +2026-04-06T14:01:42.7107802Z #19 64.11 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-beyondcorp-clientconnectorservices-bom/0.27.0/google-cloud-beyondcorp-clientconnectorservices-bom-0.27.0.pom +2026-04-06T14:01:42.9364996Z #19 64.20 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-beyondcorp-clientconnectorservices-bom/0.27.0/google-cloud-beyondcorp-clientconnectorservices-bom-0.27.0.pom +2026-04-06T14:01:42.9365940Z #19 64.34 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-beyondcorp-clientconnectorservices-bom/0.27.0/google-cloud-beyondcorp-clientconnectorservices-bom-0.27.0.pom (2.0 kB at 15 kB/s) +2026-04-06T14:01:43.0478905Z #19 64.34 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-beyondcorp-clientgateways-bom/0.27.0/google-cloud-beyondcorp-clientgateways-bom-0.27.0.pom +2026-04-06T14:01:43.0479729Z #19 64.45 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-beyondcorp-clientgateways-bom/0.27.0/google-cloud-beyondcorp-clientgateways-bom-0.27.0.pom +2026-04-06T14:01:43.1604062Z #19 64.56 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-beyondcorp-clientgateways-bom/0.27.0/google-cloud-beyondcorp-clientgateways-bom-0.27.0.pom +2026-04-06T14:01:43.2706607Z #19 64.67 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-beyondcorp-clientgateways-bom/0.27.0/google-cloud-beyondcorp-clientgateways-bom-0.27.0.pom +2026-04-06T14:01:43.3931355Z #19 64.80 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-beyondcorp-clientgateways-bom/0.27.0/google-cloud-beyondcorp-clientgateways-bom-0.27.0.pom (1.9 kB at 16 kB/s) +2026-04-06T14:01:43.5038645Z #19 64.80 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-biglake-bom/0.17.0/google-cloud-biglake-bom-0.17.0.pom +2026-04-06T14:01:43.5039545Z #19 64.91 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-biglake-bom/0.17.0/google-cloud-biglake-bom-0.17.0.pom +2026-04-06T14:01:43.6127720Z #19 65.01 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-biglake-bom/0.17.0/google-cloud-biglake-bom-0.17.0.pom +2026-04-06T14:01:43.8565853Z #19 65.11 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-biglake-bom/0.17.0/google-cloud-biglake-bom-0.17.0.pom +2026-04-06T14:01:43.8568106Z #19 65.26 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-biglake-bom/0.17.0/google-cloud-biglake-bom-0.17.0.pom (2.3 kB at 15 kB/s) +2026-04-06T14:01:43.9682674Z #19 65.26 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-bigqueryconnection-bom/2.31.0/google-cloud-bigqueryconnection-bom-2.31.0.pom +2026-04-06T14:01:43.9683333Z #19 65.37 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-bigqueryconnection-bom/2.31.0/google-cloud-bigqueryconnection-bom-2.31.0.pom +2026-04-06T14:01:44.0771506Z #19 65.48 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-bigqueryconnection-bom/2.31.0/google-cloud-bigqueryconnection-bom-2.31.0.pom +2026-04-06T14:01:44.1840807Z #19 65.59 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bigqueryconnection-bom/2.31.0/google-cloud-bigqueryconnection-bom-2.31.0.pom +2026-04-06T14:01:44.3170778Z #19 65.72 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bigqueryconnection-bom/2.31.0/google-cloud-bigqueryconnection-bom-2.31.0.pom (2.4 kB at 18 kB/s) +2026-04-06T14:01:44.4282572Z #19 65.72 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-bigquery-data-exchange-bom/2.24.0/google-cloud-bigquery-data-exchange-bom-2.24.0.pom +2026-04-06T14:01:44.4284531Z #19 65.83 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-bigquery-data-exchange-bom/2.24.0/google-cloud-bigquery-data-exchange-bom-2.24.0.pom +2026-04-06T14:01:44.5423301Z #19 65.94 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-bigquery-data-exchange-bom/2.24.0/google-cloud-bigquery-data-exchange-bom-2.24.0.pom +2026-04-06T14:01:44.6484766Z #19 66.05 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bigquery-data-exchange-bom/2.24.0/google-cloud-bigquery-data-exchange-bom-2.24.0.pom +2026-04-06T14:01:44.7723213Z #19 66.17 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bigquery-data-exchange-bom/2.24.0/google-cloud-bigquery-data-exchange-bom-2.24.0.pom (1.9 kB at 15 kB/s) +2026-04-06T14:01:44.8848095Z #19 66.18 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-bigquerydatapolicy-bom/0.26.0/google-cloud-bigquerydatapolicy-bom-0.26.0.pom +2026-04-06T14:01:44.8848920Z #19 66.29 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-bigquerydatapolicy-bom/0.26.0/google-cloud-bigquerydatapolicy-bom-0.26.0.pom +2026-04-06T14:01:44.9929315Z #19 66.40 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-bigquerydatapolicy-bom/0.26.0/google-cloud-bigquerydatapolicy-bom-0.26.0.pom +2026-04-06T14:01:45.0996342Z #19 66.50 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bigquerydatapolicy-bom/0.26.0/google-cloud-bigquerydatapolicy-bom-0.26.0.pom +2026-04-06T14:01:45.2219957Z #19 66.62 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bigquerydatapolicy-bom/0.26.0/google-cloud-bigquerydatapolicy-bom-0.26.0.pom (2.4 kB at 20 kB/s) +2026-04-06T14:01:45.3356043Z #19 66.63 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-bigquerydatatransfer-bom/2.29.0/google-cloud-bigquerydatatransfer-bom-2.29.0.pom +2026-04-06T14:01:45.3356750Z #19 66.74 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-bigquerydatatransfer-bom/2.29.0/google-cloud-bigquerydatatransfer-bom-2.29.0.pom +2026-04-06T14:01:45.4480243Z #19 66.85 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-bigquerydatatransfer-bom/2.29.0/google-cloud-bigquerydatatransfer-bom-2.29.0.pom +2026-04-06T14:01:45.5581773Z #19 66.96 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bigquerydatatransfer-bom/2.29.0/google-cloud-bigquerydatatransfer-bom-2.29.0.pom +2026-04-06T14:01:45.6835027Z #19 67.09 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bigquerydatatransfer-bom/2.29.0/google-cloud-bigquerydatatransfer-bom-2.29.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:01:45.7949769Z #19 67.09 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-bigquerymigration-bom/0.32.0/google-cloud-bigquerymigration-bom-0.32.0.pom +2026-04-06T14:01:45.7950804Z #19 67.20 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-bigquerymigration-bom/0.32.0/google-cloud-bigquerymigration-bom-0.32.0.pom +2026-04-06T14:01:45.9062924Z #19 67.31 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-bigquerymigration-bom/0.32.0/google-cloud-bigquerymigration-bom-0.32.0.pom +2026-04-06T14:01:46.0137499Z #19 67.42 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bigquerymigration-bom/0.32.0/google-cloud-bigquerymigration-bom-0.32.0.pom +2026-04-06T14:01:46.1397006Z #19 67.54 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bigquerymigration-bom/0.32.0/google-cloud-bigquerymigration-bom-0.32.0.pom (2.4 kB at 19 kB/s) +2026-04-06T14:01:46.2499337Z #19 67.54 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-bigqueryreservation-bom/2.30.0/google-cloud-bigqueryreservation-bom-2.30.0.pom +2026-04-06T14:01:46.2500977Z #19 67.65 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-bigqueryreservation-bom/2.30.0/google-cloud-bigqueryreservation-bom-2.30.0.pom +2026-04-06T14:01:46.3656642Z #19 67.77 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-bigqueryreservation-bom/2.30.0/google-cloud-bigqueryreservation-bom-2.30.0.pom +2026-04-06T14:01:46.4849388Z #19 67.89 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bigqueryreservation-bom/2.30.0/google-cloud-bigqueryreservation-bom-2.30.0.pom +2026-04-06T14:01:46.6033944Z #19 68.00 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-bigqueryreservation-bom/2.30.0/google-cloud-bigqueryreservation-bom-2.30.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:01:46.7121927Z #19 68.01 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-billingbudgets-bom/2.29.0/google-cloud-billingbudgets-bom-2.29.0.pom +2026-04-06T14:01:46.7122572Z #19 68.11 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-billingbudgets-bom/2.29.0/google-cloud-billingbudgets-bom-2.29.0.pom +2026-04-06T14:01:46.8235180Z #19 68.23 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-billingbudgets-bom/2.29.0/google-cloud-billingbudgets-bom-2.29.0.pom +2026-04-06T14:01:46.9329637Z #19 68.34 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-billingbudgets-bom/2.29.0/google-cloud-billingbudgets-bom-2.29.0.pom +2026-04-06T14:01:47.0554300Z #19 68.46 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-billingbudgets-bom/2.29.0/google-cloud-billingbudgets-bom-2.29.0.pom (2.3 kB at 19 kB/s) +2026-04-06T14:01:47.1720319Z #19 68.47 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-billing-bom/2.29.0/google-cloud-billing-bom-2.29.0.pom +2026-04-06T14:01:47.1721091Z #19 68.57 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-billing-bom/2.29.0/google-cloud-billing-bom-2.29.0.pom +2026-04-06T14:01:47.2838418Z #19 68.69 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-billing-bom/2.29.0/google-cloud-billing-bom-2.29.0.pom +2026-04-06T14:01:47.3889733Z #19 68.79 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-billing-bom/2.29.0/google-cloud-billing-bom-2.29.0.pom +2026-04-06T14:01:47.5360486Z #19 68.94 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-billing-bom/2.29.0/google-cloud-billing-bom-2.29.0.pom (1.7 kB at 12 kB/s) +2026-04-06T14:01:47.6461316Z #19 68.94 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-binary-authorization-bom/1.28.0/google-cloud-binary-authorization-bom-1.28.0.pom +2026-04-06T14:01:47.6461919Z #19 69.05 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-binary-authorization-bom/1.28.0/google-cloud-binary-authorization-bom-1.28.0.pom +2026-04-06T14:01:47.7572946Z #19 69.16 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-binary-authorization-bom/1.28.0/google-cloud-binary-authorization-bom-1.28.0.pom +2026-04-06T14:01:47.8631307Z #19 69.26 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-binary-authorization-bom/1.28.0/google-cloud-binary-authorization-bom-1.28.0.pom +2026-04-06T14:01:47.9897153Z #19 69.39 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-binary-authorization-bom/1.28.0/google-cloud-binary-authorization-bom-1.28.0.pom (2.4 kB at 19 kB/s) +2026-04-06T14:01:48.1010617Z #19 69.39 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-certificate-manager-bom/0.32.0/google-cloud-certificate-manager-bom-0.32.0.pom +2026-04-06T14:01:48.1011420Z #19 69.50 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-certificate-manager-bom/0.32.0/google-cloud-certificate-manager-bom-0.32.0.pom +2026-04-06T14:01:48.2124256Z #19 69.61 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-certificate-manager-bom/0.32.0/google-cloud-certificate-manager-bom-0.32.0.pom +2026-04-06T14:01:48.3153634Z #19 69.72 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-certificate-manager-bom/0.32.0/google-cloud-certificate-manager-bom-0.32.0.pom +2026-04-06T14:01:48.4655605Z #19 69.87 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-certificate-manager-bom/0.32.0/google-cloud-certificate-manager-bom-0.32.0.pom (1.9 kB at 13 kB/s) +2026-04-06T14:01:48.5746018Z #19 69.87 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-channel-bom/3.33.0/google-cloud-channel-bom-3.33.0.pom +2026-04-06T14:01:48.5746715Z #19 69.98 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-channel-bom/3.33.0/google-cloud-channel-bom-3.33.0.pom +2026-04-06T14:01:48.6837688Z #19 70.09 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-channel-bom/3.33.0/google-cloud-channel-bom-3.33.0.pom +2026-04-06T14:01:48.8003100Z #19 70.20 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-channel-bom/3.33.0/google-cloud-channel-bom-3.33.0.pom +2026-04-06T14:01:48.9314529Z #19 70.33 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-channel-bom/3.33.0/google-cloud-channel-bom-3.33.0.pom (1.8 kB at 13 kB/s) +2026-04-06T14:01:49.0415951Z #19 70.34 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-build-bom/3.31.0/google-cloud-build-bom-3.31.0.pom +2026-04-06T14:01:49.0416553Z #19 70.44 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-build-bom/3.31.0/google-cloud-build-bom-3.31.0.pom +2026-04-06T14:01:49.1513893Z #19 70.55 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-build-bom/3.31.0/google-cloud-build-bom-3.31.0.pom +2026-04-06T14:01:49.2579262Z #19 70.66 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-build-bom/3.31.0/google-cloud-build-bom-3.31.0.pom +2026-04-06T14:01:49.3803790Z #19 70.78 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-build-bom/3.31.0/google-cloud-build-bom-3.31.0.pom (2.1 kB at 18 kB/s) +2026-04-06T14:01:49.4930371Z #19 70.78 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-cloudcommerceconsumerprocurement-bom/0.27.0/google-cloud-cloudcommerceconsumerprocurement-bom-0.27.0.pom +2026-04-06T14:01:49.4930980Z #19 70.90 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-cloudcommerceconsumerprocurement-bom/0.27.0/google-cloud-cloudcommerceconsumerprocurement-bom-0.27.0.pom +2026-04-06T14:01:49.6030189Z #19 71.01 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-cloudcommerceconsumerprocurement-bom/0.27.0/google-cloud-cloudcommerceconsumerprocurement-bom-0.27.0.pom +2026-04-06T14:01:49.7035698Z #19 71.11 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-cloudcommerceconsumerprocurement-bom/0.27.0/google-cloud-cloudcommerceconsumerprocurement-bom-0.27.0.pom +2026-04-06T14:01:49.8544322Z #19 71.26 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-cloudcommerceconsumerprocurement-bom/0.27.0/google-cloud-cloudcommerceconsumerprocurement-bom-0.27.0.pom (2.6 kB at 17 kB/s) +2026-04-06T14:01:49.9637553Z #19 71.26 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-cloudsupport-bom/0.13.0/google-cloud-cloudsupport-bom-0.13.0.pom +2026-04-06T14:01:49.9638406Z #19 71.37 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-cloudsupport-bom/0.13.0/google-cloud-cloudsupport-bom-0.13.0.pom +2026-04-06T14:01:50.0735860Z #19 71.48 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-cloudsupport-bom/0.13.0/google-cloud-cloudsupport-bom-0.13.0.pom +2026-04-06T14:01:50.1748127Z #19 71.58 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-cloudsupport-bom/0.13.0/google-cloud-cloudsupport-bom-0.13.0.pom +2026-04-06T14:01:50.2989753Z #19 71.70 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-cloudsupport-bom/0.13.0/google-cloud-cloudsupport-bom-0.13.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:01:50.4078177Z #19 71.70 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-compute-bom/1.39.0/google-cloud-compute-bom-1.39.0.pom +2026-04-06T14:01:50.4078841Z #19 71.81 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-compute-bom/1.39.0/google-cloud-compute-bom-1.39.0.pom +2026-04-06T14:01:50.5177106Z #19 71.92 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-compute-bom/1.39.0/google-cloud-compute-bom-1.39.0.pom +2026-04-06T14:01:50.6249816Z #19 72.03 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-compute-bom/1.39.0/google-cloud-compute-bom-1.39.0.pom +2026-04-06T14:01:50.7474403Z #19 72.15 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-compute-bom/1.39.0/google-cloud-compute-bom-1.39.0.pom (1.4 kB at 12 kB/s) +2026-04-06T14:01:50.8575051Z #19 72.15 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-confidentialcomputing-bom/0.15.0/google-cloud-confidentialcomputing-bom-0.15.0.pom +2026-04-06T14:01:50.8575937Z #19 72.26 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-confidentialcomputing-bom/0.15.0/google-cloud-confidentialcomputing-bom-0.15.0.pom +2026-04-06T14:01:50.9701613Z #19 72.37 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-confidentialcomputing-bom/0.15.0/google-cloud-confidentialcomputing-bom-0.15.0.pom +2026-04-06T14:01:51.0735750Z #19 72.48 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-confidentialcomputing-bom/0.15.0/google-cloud-confidentialcomputing-bom-0.15.0.pom +2026-04-06T14:01:51.2207475Z #19 72.62 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-confidentialcomputing-bom/0.15.0/google-cloud-confidentialcomputing-bom-0.15.0.pom (2.5 kB at 17 kB/s) +2026-04-06T14:01:51.3307817Z #19 72.63 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-contact-center-insights-bom/2.29.0/google-cloud-contact-center-insights-bom-2.29.0.pom +2026-04-06T14:01:51.3308623Z #19 72.73 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-contact-center-insights-bom/2.29.0/google-cloud-contact-center-insights-bom-2.29.0.pom +2026-04-06T14:01:51.4418420Z #19 72.84 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-contact-center-insights-bom/2.29.0/google-cloud-contact-center-insights-bom-2.29.0.pom +2026-04-06T14:01:51.5538712Z #19 72.96 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-contact-center-insights-bom/2.29.0/google-cloud-contact-center-insights-bom-2.29.0.pom +2026-04-06T14:01:51.6872704Z #19 73.09 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-contact-center-insights-bom/2.29.0/google-cloud-contact-center-insights-bom-2.29.0.pom (1.9 kB at 14 kB/s) +2026-04-06T14:01:51.7992327Z #19 73.09 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-containeranalysis-bom/2.30.0/google-cloud-containeranalysis-bom-2.30.0.pom +2026-04-06T14:01:51.7993100Z #19 73.20 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-containeranalysis-bom/2.30.0/google-cloud-containeranalysis-bom-2.30.0.pom +2026-04-06T14:01:51.9125191Z #19 73.31 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-containeranalysis-bom/2.30.0/google-cloud-containeranalysis-bom-2.30.0.pom +2026-04-06T14:01:52.0203445Z #19 73.42 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-containeranalysis-bom/2.30.0/google-cloud-containeranalysis-bom-2.30.0.pom +2026-04-06T14:01:52.1550129Z #19 73.56 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-containeranalysis-bom/2.30.0/google-cloud-containeranalysis-bom-2.30.0.pom (2.3 kB at 17 kB/s) +2026-04-06T14:01:52.2772905Z #19 73.56 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-container-bom/2.32.0/google-cloud-container-bom-2.32.0.pom +2026-04-06T14:01:52.2773705Z #19 73.68 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-container-bom/2.32.0/google-cloud-container-bom-2.32.0.pom +2026-04-06T14:01:52.3867856Z #19 73.79 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-container-bom/2.32.0/google-cloud-container-bom-2.32.0.pom +2026-04-06T14:01:52.4949100Z #19 73.90 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-container-bom/2.32.0/google-cloud-container-bom-2.32.0.pom +2026-04-06T14:01:52.6230821Z #19 74.02 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-container-bom/2.32.0/google-cloud-container-bom-2.32.0.pom (2.2 kB at 18 kB/s) +2026-04-06T14:01:52.7348544Z #19 74.03 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-contentwarehouse-bom/0.25.0/google-cloud-contentwarehouse-bom-0.25.0.pom +2026-04-06T14:01:52.7349469Z #19 74.14 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-contentwarehouse-bom/0.25.0/google-cloud-contentwarehouse-bom-0.25.0.pom +2026-04-06T14:01:52.8459051Z #19 74.25 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-contentwarehouse-bom/0.25.0/google-cloud-contentwarehouse-bom-0.25.0.pom +2026-04-06T14:01:53.0728161Z #19 74.35 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-contentwarehouse-bom/0.25.0/google-cloud-contentwarehouse-bom-0.25.0.pom +2026-04-06T14:01:53.0729171Z #19 74.47 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-contentwarehouse-bom/0.25.0/google-cloud-contentwarehouse-bom-0.25.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:01:53.1861849Z #19 74.48 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-datacatalog-bom/1.35.0/google-cloud-datacatalog-bom-1.35.0.pom +2026-04-06T14:01:53.1862638Z #19 74.59 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-datacatalog-bom/1.35.0/google-cloud-datacatalog-bom-1.35.0.pom +2026-04-06T14:01:53.3016257Z #19 74.70 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-datacatalog-bom/1.35.0/google-cloud-datacatalog-bom-1.35.0.pom +2026-04-06T14:01:53.4084725Z #19 74.81 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-datacatalog-bom/1.35.0/google-cloud-datacatalog-bom-1.35.0.pom +2026-04-06T14:01:53.5358199Z #19 74.94 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-datacatalog-bom/1.35.0/google-cloud-datacatalog-bom-1.35.0.pom (2.3 kB at 18 kB/s) +2026-04-06T14:01:53.6480192Z #19 74.94 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-dataflow-bom/0.33.0/google-cloud-dataflow-bom-0.33.0.pom +2026-04-06T14:01:53.6483206Z #19 75.05 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-dataflow-bom/0.33.0/google-cloud-dataflow-bom-0.33.0.pom +2026-04-06T14:01:53.7572329Z #19 75.16 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-dataflow-bom/0.33.0/google-cloud-dataflow-bom-0.33.0.pom +2026-04-06T14:01:53.8596896Z #19 75.26 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dataflow-bom/0.33.0/google-cloud-dataflow-bom-0.33.0.pom +2026-04-06T14:01:54.0115136Z #19 75.41 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dataflow-bom/0.33.0/google-cloud-dataflow-bom-0.33.0.pom (1.8 kB at 12 kB/s) +2026-04-06T14:01:54.1248726Z #19 75.42 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-dataform-bom/0.28.0/google-cloud-dataform-bom-0.28.0.pom +2026-04-06T14:01:54.1251104Z #19 75.53 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-dataform-bom/0.28.0/google-cloud-dataform-bom-0.28.0.pom +2026-04-06T14:01:54.2434604Z #19 75.65 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-dataform-bom/0.28.0/google-cloud-dataform-bom-0.28.0.pom +2026-04-06T14:01:54.3518463Z #19 75.75 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dataform-bom/0.28.0/google-cloud-dataform-bom-0.28.0.pom +2026-04-06T14:01:54.4844405Z #19 75.89 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dataform-bom/0.28.0/google-cloud-dataform-bom-0.28.0.pom (2.3 kB at 18 kB/s) +2026-04-06T14:01:54.5937551Z #19 75.89 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-data-fusion-bom/1.29.0/google-cloud-data-fusion-bom-1.29.0.pom +2026-04-06T14:01:54.5938246Z #19 76.00 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-data-fusion-bom/1.29.0/google-cloud-data-fusion-bom-1.29.0.pom +2026-04-06T14:01:54.7054943Z #19 76.11 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-data-fusion-bom/1.29.0/google-cloud-data-fusion-bom-1.29.0.pom +2026-04-06T14:01:54.8174316Z #19 76.22 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-data-fusion-bom/1.29.0/google-cloud-data-fusion-bom-1.29.0.pom +2026-04-06T14:01:54.9429839Z #19 76.34 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-data-fusion-bom/1.29.0/google-cloud-data-fusion-bom-1.29.0.pom (2.3 kB at 19 kB/s) +2026-04-06T14:01:55.0528959Z #19 76.35 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-datalabeling-bom/0.149.0/google-cloud-datalabeling-bom-0.149.0.pom +2026-04-06T14:01:55.0529621Z #19 76.46 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-datalabeling-bom/0.149.0/google-cloud-datalabeling-bom-0.149.0.pom +2026-04-06T14:01:55.1624891Z #19 76.56 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-datalabeling-bom/0.149.0/google-cloud-datalabeling-bom-0.149.0.pom +2026-04-06T14:01:55.2839648Z #19 76.69 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-datalabeling-bom/0.149.0/google-cloud-datalabeling-bom-0.149.0.pom +2026-04-06T14:01:55.4064585Z #19 76.81 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-datalabeling-bom/0.149.0/google-cloud-datalabeling-bom-0.149.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:01:55.5161668Z #19 76.81 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-datalineage-bom/0.21.0/google-cloud-datalineage-bom-0.21.0.pom +2026-04-06T14:01:55.5162300Z #19 76.92 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-datalineage-bom/0.21.0/google-cloud-datalineage-bom-0.21.0.pom +2026-04-06T14:01:55.6300081Z #19 77.03 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-datalineage-bom/0.21.0/google-cloud-datalineage-bom-0.21.0.pom +2026-04-06T14:01:55.7353927Z #19 77.14 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-datalineage-bom/0.21.0/google-cloud-datalineage-bom-0.21.0.pom +2026-04-06T14:01:55.8578493Z #19 77.26 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-datalineage-bom/0.21.0/google-cloud-datalineage-bom-0.21.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:01:55.9680263Z #19 77.26 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-dataplex-bom/1.27.0/google-cloud-dataplex-bom-1.27.0.pom +2026-04-06T14:01:55.9680882Z #19 77.37 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-dataplex-bom/1.27.0/google-cloud-dataplex-bom-1.27.0.pom +2026-04-06T14:01:56.0798475Z #19 77.48 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-dataplex-bom/1.27.0/google-cloud-dataplex-bom-1.27.0.pom +2026-04-06T14:01:56.3275167Z #19 77.58 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dataplex-bom/1.27.0/google-cloud-dataplex-bom-1.27.0.pom +2026-04-06T14:01:56.3346492Z #19 77.73 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dataplex-bom/1.27.0/google-cloud-dataplex-bom-1.27.0.pom (1.8 kB at 11 kB/s) +2026-04-06T14:01:56.4469263Z #19 77.74 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-dataproc-bom/4.26.0/google-cloud-dataproc-bom-4.26.0.pom +2026-04-06T14:01:56.4470417Z #19 77.85 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-dataproc-bom/4.26.0/google-cloud-dataproc-bom-4.26.0.pom +2026-04-06T14:01:56.6029539Z #19 78.01 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-dataproc-bom/4.26.0/google-cloud-dataproc-bom-4.26.0.pom +2026-04-06T14:01:56.7110557Z #19 78.11 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dataproc-bom/4.26.0/google-cloud-dataproc-bom-4.26.0.pom +2026-04-06T14:01:56.8388605Z #19 78.24 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dataproc-bom/4.26.0/google-cloud-dataproc-bom-4.26.0.pom (1.7 kB at 13 kB/s) +2026-04-06T14:01:56.9519095Z #19 78.24 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-dataproc-metastore-bom/2.30.0/google-cloud-dataproc-metastore-bom-2.30.0.pom +2026-04-06T14:01:56.9519745Z #19 78.35 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-dataproc-metastore-bom/2.30.0/google-cloud-dataproc-metastore-bom-2.30.0.pom +2026-04-06T14:01:57.0613161Z #19 78.46 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-dataproc-metastore-bom/2.30.0/google-cloud-dataproc-metastore-bom-2.30.0.pom +2026-04-06T14:01:57.1729672Z #19 78.58 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dataproc-metastore-bom/2.30.0/google-cloud-dataproc-metastore-bom-2.30.0.pom +2026-04-06T14:01:57.2973863Z #19 78.70 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dataproc-metastore-bom/2.30.0/google-cloud-dataproc-metastore-bom-2.30.0.pom (3.0 kB at 24 kB/s) +2026-04-06T14:01:57.4073470Z #19 78.70 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-datastream-bom/1.28.0/google-cloud-datastream-bom-1.28.0.pom +2026-04-06T14:01:57.4074108Z #19 78.81 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-datastream-bom/1.28.0/google-cloud-datastream-bom-1.28.0.pom +2026-04-06T14:01:57.5172515Z #19 78.92 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-datastream-bom/1.28.0/google-cloud-datastream-bom-1.28.0.pom +2026-04-06T14:01:57.6242838Z #19 79.03 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-datastream-bom/1.28.0/google-cloud-datastream-bom-1.28.0.pom +2026-04-06T14:01:57.7523323Z #19 79.15 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-datastream-bom/1.28.0/google-cloud-datastream-bom-1.28.0.pom (2.3 kB at 18 kB/s) +2026-04-06T14:01:57.8619043Z #19 79.16 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-debugger-client-bom/1.29.0/google-cloud-debugger-client-bom-1.29.0.pom +2026-04-06T14:01:57.8619600Z #19 79.26 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-debugger-client-bom/1.29.0/google-cloud-debugger-client-bom-1.29.0.pom +2026-04-06T14:01:57.9719959Z #19 79.37 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-debugger-client-bom/1.29.0/google-cloud-debugger-client-bom-1.29.0.pom +2026-04-06T14:01:58.1885462Z #19 79.46 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-debugger-client-bom/1.29.0/google-cloud-debugger-client-bom-1.29.0.pom +2026-04-06T14:01:58.1886855Z #19 79.59 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-debugger-client-bom/1.29.0/google-cloud-debugger-client-bom-1.29.0.pom (2.1 kB at 17 kB/s) +2026-04-06T14:01:58.3006203Z #19 79.59 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-deploy-bom/1.27.0/google-cloud-deploy-bom-1.27.0.pom +2026-04-06T14:01:58.3006944Z #19 79.70 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-deploy-bom/1.27.0/google-cloud-deploy-bom-1.27.0.pom +2026-04-06T14:01:58.4123819Z #19 79.81 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-deploy-bom/1.27.0/google-cloud-deploy-bom-1.27.0.pom +2026-04-06T14:01:58.5159087Z #19 79.92 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-deploy-bom/1.27.0/google-cloud-deploy-bom-1.27.0.pom +2026-04-06T14:01:58.6574522Z #19 80.06 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-deploy-bom/1.27.0/google-cloud-deploy-bom-1.27.0.pom (1.8 kB at 12 kB/s) +2026-04-06T14:01:58.7685106Z #19 80.06 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-dialogflow-cx-bom/0.40.0/google-cloud-dialogflow-cx-bom-0.40.0.pom +2026-04-06T14:01:58.7685667Z #19 80.17 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-dialogflow-cx-bom/0.40.0/google-cloud-dialogflow-cx-bom-0.40.0.pom +2026-04-06T14:01:58.8796726Z #19 80.28 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-dialogflow-cx-bom/0.40.0/google-cloud-dialogflow-cx-bom-0.40.0.pom +2026-04-06T14:01:59.1037184Z #19 80.38 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dialogflow-cx-bom/0.40.0/google-cloud-dialogflow-cx-bom-0.40.0.pom +2026-04-06T14:01:59.1038210Z #19 80.51 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dialogflow-cx-bom/0.40.0/google-cloud-dialogflow-cx-bom-0.40.0.pom (2.3 kB at 18 kB/s) +2026-04-06T14:01:59.2180751Z #19 80.51 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-dialogflow-bom/4.35.0/google-cloud-dialogflow-bom-4.35.0.pom +2026-04-06T14:01:59.2181471Z #19 80.62 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-dialogflow-bom/4.35.0/google-cloud-dialogflow-bom-4.35.0.pom +2026-04-06T14:01:59.3295918Z #19 80.73 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-dialogflow-bom/4.35.0/google-cloud-dialogflow-bom-4.35.0.pom +2026-04-06T14:01:59.4301997Z #19 80.83 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dialogflow-bom/4.35.0/google-cloud-dialogflow-bom-4.35.0.pom +2026-04-06T14:01:59.5557736Z #19 80.96 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dialogflow-bom/4.35.0/google-cloud-dialogflow-bom-4.35.0.pom (2.2 kB at 18 kB/s) +2026-04-06T14:01:59.6694017Z #19 80.96 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-discoveryengine-bom/0.25.0/google-cloud-discoveryengine-bom-0.25.0.pom +2026-04-06T14:01:59.6694873Z #19 81.07 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-discoveryengine-bom/0.25.0/google-cloud-discoveryengine-bom-0.25.0.pom +2026-04-06T14:01:59.7817531Z #19 81.18 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-discoveryengine-bom/0.25.0/google-cloud-discoveryengine-bom-0.25.0.pom +2026-04-06T14:01:59.8910184Z #19 81.29 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-discoveryengine-bom/0.25.0/google-cloud-discoveryengine-bom-0.25.0.pom +2026-04-06T14:02:00.0149664Z #19 81.42 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-discoveryengine-bom/0.25.0/google-cloud-discoveryengine-bom-0.25.0.pom (2.9 kB at 24 kB/s) +2026-04-06T14:02:00.1265947Z #19 81.42 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-distributedcloudedge-bom/0.26.0/google-cloud-distributedcloudedge-bom-0.26.0.pom +2026-04-06T14:02:00.1266657Z #19 81.53 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-distributedcloudedge-bom/0.26.0/google-cloud-distributedcloudedge-bom-0.26.0.pom +2026-04-06T14:02:00.2354230Z #19 81.64 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-distributedcloudedge-bom/0.26.0/google-cloud-distributedcloudedge-bom-0.26.0.pom +2026-04-06T14:02:00.3398608Z #19 81.74 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-distributedcloudedge-bom/0.26.0/google-cloud-distributedcloudedge-bom-0.26.0.pom +2026-04-06T14:02:00.4850604Z #19 81.89 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-distributedcloudedge-bom/0.26.0/google-cloud-distributedcloudedge-bom-0.26.0.pom (1.9 kB at 13 kB/s) +2026-04-06T14:02:00.5974272Z #19 81.89 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-dlp-bom/3.33.0/google-cloud-dlp-bom-3.33.0.pom +2026-04-06T14:02:00.5976922Z #19 82.00 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-dlp-bom/3.33.0/google-cloud-dlp-bom-3.33.0.pom +2026-04-06T14:02:00.7078499Z #19 82.11 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-dlp-bom/3.33.0/google-cloud-dlp-bom-3.33.0.pom +2026-04-06T14:02:00.8142718Z #19 82.22 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dlp-bom/3.33.0/google-cloud-dlp-bom-3.33.0.pom +2026-04-06T14:02:00.9395907Z #19 82.34 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dlp-bom/3.33.0/google-cloud-dlp-bom-3.33.0.pom (1.6 kB at 13 kB/s) +2026-04-06T14:02:01.0535501Z #19 82.35 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-dms-bom/2.28.0/google-cloud-dms-bom-2.28.0.pom +2026-04-06T14:02:01.0536336Z #19 82.46 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-dms-bom/2.28.0/google-cloud-dms-bom-2.28.0.pom +2026-04-06T14:02:01.1673703Z #19 82.57 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-dms-bom/2.28.0/google-cloud-dms-bom-2.28.0.pom +2026-04-06T14:02:01.2728573Z #19 82.68 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dms-bom/2.28.0/google-cloud-dms-bom-2.28.0.pom +2026-04-06T14:02:01.4086601Z #19 82.81 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-dms-bom/2.28.0/google-cloud-dms-bom-2.28.0.pom (1.8 kB at 13 kB/s) +2026-04-06T14:02:01.5206537Z #19 82.81 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-document-ai-bom/2.33.0/google-cloud-document-ai-bom-2.33.0.pom +2026-04-06T14:02:01.5207166Z #19 82.92 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-document-ai-bom/2.33.0/google-cloud-document-ai-bom-2.33.0.pom +2026-04-06T14:02:01.6315748Z #19 83.03 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-document-ai-bom/2.33.0/google-cloud-document-ai-bom-2.33.0.pom +2026-04-06T14:02:01.7316948Z #19 83.13 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-document-ai-bom/2.33.0/google-cloud-document-ai-bom-2.33.0.pom +2026-04-06T14:02:01.8561249Z #19 83.26 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-document-ai-bom/2.33.0/google-cloud-document-ai-bom-2.33.0.pom (3.3 kB at 26 kB/s) +2026-04-06T14:02:01.9668095Z #19 83.26 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-domains-bom/1.26.0/google-cloud-domains-bom-1.26.0.pom +2026-04-06T14:02:01.9668706Z #19 83.37 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-domains-bom/1.26.0/google-cloud-domains-bom-1.26.0.pom +2026-04-06T14:02:02.0775582Z #19 83.48 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-domains-bom/1.26.0/google-cloud-domains-bom-1.26.0.pom +2026-04-06T14:02:02.1856337Z #19 83.59 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-domains-bom/1.26.0/google-cloud-domains-bom-1.26.0.pom +2026-04-06T14:02:02.3278872Z #19 83.73 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-domains-bom/1.26.0/google-cloud-domains-bom-1.26.0.pom (2.8 kB at 20 kB/s) +2026-04-06T14:02:02.4396235Z #19 83.73 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-enterpriseknowledgegraph-bom/0.25.0/google-cloud-enterpriseknowledgegraph-bom-0.25.0.pom +2026-04-06T14:02:02.4396974Z #19 83.84 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-enterpriseknowledgegraph-bom/0.25.0/google-cloud-enterpriseknowledgegraph-bom-0.25.0.pom +2026-04-06T14:02:02.5511737Z #19 83.95 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-enterpriseknowledgegraph-bom/0.25.0/google-cloud-enterpriseknowledgegraph-bom-0.25.0.pom +2026-04-06T14:02:02.6766056Z #19 84.08 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-enterpriseknowledgegraph-bom/0.25.0/google-cloud-enterpriseknowledgegraph-bom-0.25.0.pom +2026-04-06T14:02:02.8039478Z #19 84.21 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-enterpriseknowledgegraph-bom/0.25.0/google-cloud-enterpriseknowledgegraph-bom-0.25.0.pom (1.9 kB at 15 kB/s) +2026-04-06T14:02:02.9161627Z #19 84.21 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-errorreporting-bom/0.150.0-beta/google-cloud-errorreporting-bom-0.150.0-beta.pom +2026-04-06T14:02:02.9163156Z #19 84.32 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-errorreporting-bom/0.150.0-beta/google-cloud-errorreporting-bom-0.150.0-beta.pom +2026-04-06T14:02:03.0252608Z #19 84.43 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-errorreporting-bom/0.150.0-beta/google-cloud-errorreporting-bom-0.150.0-beta.pom +2026-04-06T14:02:03.1331024Z #19 84.54 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-errorreporting-bom/0.150.0-beta/google-cloud-errorreporting-bom-0.150.0-beta.pom +2026-04-06T14:02:03.2544354Z #19 84.65 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-errorreporting-bom/0.150.0-beta/google-cloud-errorreporting-bom-0.150.0-beta.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:03.3644735Z #19 84.66 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-essential-contacts-bom/2.29.0/google-cloud-essential-contacts-bom-2.29.0.pom +2026-04-06T14:02:03.3645345Z #19 84.77 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-essential-contacts-bom/2.29.0/google-cloud-essential-contacts-bom-2.29.0.pom +2026-04-06T14:02:03.4754487Z #19 84.88 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-essential-contacts-bom/2.29.0/google-cloud-essential-contacts-bom-2.29.0.pom +2026-04-06T14:02:03.5802190Z #19 84.98 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-essential-contacts-bom/2.29.0/google-cloud-essential-contacts-bom-2.29.0.pom +2026-04-06T14:02:03.7044201Z #19 85.11 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-essential-contacts-bom/2.29.0/google-cloud-essential-contacts-bom-2.29.0.pom (1.9 kB at 15 kB/s) +2026-04-06T14:02:03.8161060Z #19 85.11 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-eventarc-bom/1.29.0/google-cloud-eventarc-bom-1.29.0.pom +2026-04-06T14:02:03.8161792Z #19 85.22 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-eventarc-bom/1.29.0/google-cloud-eventarc-bom-1.29.0.pom +2026-04-06T14:02:03.9245378Z #19 85.33 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-eventarc-bom/1.29.0/google-cloud-eventarc-bom-1.29.0.pom +2026-04-06T14:02:04.1731293Z #19 85.58 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-eventarc-bom/1.29.0/google-cloud-eventarc-bom-1.29.0.pom +2026-04-06T14:02:04.2977230Z #19 85.70 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-eventarc-bom/1.29.0/google-cloud-eventarc-bom-1.29.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:02:04.4068655Z #19 85.70 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-eventarc-publishing-bom/0.29.0/google-cloud-eventarc-publishing-bom-0.29.0.pom +2026-04-06T14:02:04.4069538Z #19 85.81 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-eventarc-publishing-bom/0.29.0/google-cloud-eventarc-publishing-bom-0.29.0.pom +2026-04-06T14:02:04.5164089Z #19 85.92 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-eventarc-publishing-bom/0.29.0/google-cloud-eventarc-publishing-bom-0.29.0.pom +2026-04-06T14:02:04.6182428Z #19 86.02 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-eventarc-publishing-bom/0.29.0/google-cloud-eventarc-publishing-bom-0.29.0.pom +2026-04-06T14:02:04.7458132Z #19 86.15 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-eventarc-publishing-bom/0.29.0/google-cloud-eventarc-publishing-bom-0.29.0.pom (1.9 kB at 15 kB/s) +2026-04-06T14:02:04.7458776Z #19 86.15 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-filestore-bom/1.30.0/google-cloud-filestore-bom-1.30.0.pom +2026-04-06T14:02:04.8500608Z #19 86.25 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-filestore-bom/1.30.0/google-cloud-filestore-bom-1.30.0.pom +2026-04-06T14:02:04.9579194Z #19 86.36 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-filestore-bom/1.30.0/google-cloud-filestore-bom-1.30.0.pom +2026-04-06T14:02:05.0810989Z #19 86.48 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-filestore-bom/1.30.0/google-cloud-filestore-bom-1.30.0.pom +2026-04-06T14:02:05.1985142Z #19 86.60 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-filestore-bom/1.30.0/google-cloud-filestore-bom-1.30.0.pom (2.3 kB at 19 kB/s) +2026-04-06T14:02:05.3103872Z #19 86.60 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-functions-bom/2.31.0/google-cloud-functions-bom-2.31.0.pom +2026-04-06T14:02:05.3104485Z #19 86.71 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-functions-bom/2.31.0/google-cloud-functions-bom-2.31.0.pom +2026-04-06T14:02:05.4195187Z #19 86.82 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-functions-bom/2.31.0/google-cloud-functions-bom-2.31.0.pom +2026-04-06T14:02:05.5253414Z #19 86.93 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-functions-bom/2.31.0/google-cloud-functions-bom-2.31.0.pom +2026-04-06T14:02:05.6539296Z #19 87.06 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-functions-bom/2.31.0/google-cloud-functions-bom-2.31.0.pom (3.3 kB at 26 kB/s) +2026-04-06T14:02:05.7648619Z #19 87.06 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-gke-backup-bom/0.28.0/google-cloud-gke-backup-bom-0.28.0.pom +2026-04-06T14:02:05.7649705Z #19 87.17 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-gke-backup-bom/0.28.0/google-cloud-gke-backup-bom-0.28.0.pom +2026-04-06T14:02:05.8767006Z #19 87.28 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-gke-backup-bom/0.28.0/google-cloud-gke-backup-bom-0.28.0.pom +2026-04-06T14:02:06.0928352Z #19 87.37 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-gke-backup-bom/0.28.0/google-cloud-gke-backup-bom-0.28.0.pom +2026-04-06T14:02:06.0935301Z #19 87.50 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-gke-backup-bom/0.28.0/google-cloud-gke-backup-bom-0.28.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:06.2081028Z #19 87.50 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-gke-connect-gateway-bom/0.30.0/google-cloud-gke-connect-gateway-bom-0.30.0.pom +2026-04-06T14:02:06.2081741Z #19 87.61 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-gke-connect-gateway-bom/0.30.0/google-cloud-gke-connect-gateway-bom-0.30.0.pom +2026-04-06T14:02:06.3185861Z #19 87.72 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-gke-connect-gateway-bom/0.30.0/google-cloud-gke-connect-gateway-bom-0.30.0.pom +2026-04-06T14:02:06.4291767Z #19 87.83 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-gke-connect-gateway-bom/0.30.0/google-cloud-gke-connect-gateway-bom-0.30.0.pom +2026-04-06T14:02:06.5558748Z #19 87.96 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-gke-connect-gateway-bom/0.30.0/google-cloud-gke-connect-gateway-bom-0.30.0.pom (1.9 kB at 15 kB/s) +2026-04-06T14:02:06.6668526Z #19 87.96 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-gkehub-bom/1.29.0/google-cloud-gkehub-bom-1.29.0.pom +2026-04-06T14:02:06.6669283Z #19 88.07 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-gkehub-bom/1.29.0/google-cloud-gkehub-bom-1.29.0.pom +2026-04-06T14:02:06.7753272Z #19 88.18 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-gkehub-bom/1.29.0/google-cloud-gkehub-bom-1.29.0.pom +2026-04-06T14:02:06.8788855Z #19 88.28 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-gkehub-bom/1.29.0/google-cloud-gkehub-bom-1.29.0.pom +2026-04-06T14:02:07.0060461Z #19 88.41 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-gkehub-bom/1.29.0/google-cloud-gkehub-bom-1.29.0.pom (3.8 kB at 30 kB/s) +2026-04-06T14:02:07.1199049Z #19 88.41 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-gke-multi-cloud-bom/0.28.0/google-cloud-gke-multi-cloud-bom-0.28.0.pom +2026-04-06T14:02:07.1199723Z #19 88.52 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-gke-multi-cloud-bom/0.28.0/google-cloud-gke-multi-cloud-bom-0.28.0.pom +2026-04-06T14:02:07.2319265Z #19 88.63 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-gke-multi-cloud-bom/0.28.0/google-cloud-gke-multi-cloud-bom-0.28.0.pom +2026-04-06T14:02:07.3321456Z #19 88.73 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-gke-multi-cloud-bom/0.28.0/google-cloud-gke-multi-cloud-bom-0.28.0.pom +2026-04-06T14:02:07.4576760Z #19 88.86 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-gke-multi-cloud-bom/0.28.0/google-cloud-gke-multi-cloud-bom-0.28.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:07.5711577Z #19 88.86 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-gsuite-addons-bom/2.29.0/google-cloud-gsuite-addons-bom-2.29.0.pom +2026-04-06T14:02:07.5712320Z #19 88.97 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-gsuite-addons-bom/2.29.0/google-cloud-gsuite-addons-bom-2.29.0.pom +2026-04-06T14:02:07.7116708Z #19 89.11 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-gsuite-addons-bom/2.29.0/google-cloud-gsuite-addons-bom-2.29.0.pom +2026-04-06T14:02:07.8186732Z #19 89.22 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-gsuite-addons-bom/2.29.0/google-cloud-gsuite-addons-bom-2.29.0.pom +2026-04-06T14:02:07.9465447Z #19 89.35 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-gsuite-addons-bom/2.29.0/google-cloud-gsuite-addons-bom-2.29.0.pom (2.1 kB at 16 kB/s) +2026-04-06T14:02:08.0570996Z #19 89.35 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-iam-admin-bom/3.24.0/google-iam-admin-bom-3.24.0.pom +2026-04-06T14:02:08.0571634Z #19 89.46 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-iam-admin-bom/3.24.0/google-iam-admin-bom-3.24.0.pom +2026-04-06T14:02:08.1683617Z #19 89.57 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-iam-admin-bom/3.24.0/google-iam-admin-bom-3.24.0.pom +2026-04-06T14:02:08.2716397Z #19 89.67 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-iam-admin-bom/3.24.0/google-iam-admin-bom-3.24.0.pom +2026-04-06T14:02:08.4017582Z #19 89.80 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-iam-admin-bom/3.24.0/google-iam-admin-bom-3.24.0.pom (1.7 kB at 13 kB/s) +2026-04-06T14:02:08.5117983Z #19 89.81 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-iamcredentials-bom/2.29.0/google-cloud-iamcredentials-bom-2.29.0.pom +2026-04-06T14:02:08.5118692Z #19 89.91 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-iamcredentials-bom/2.29.0/google-cloud-iamcredentials-bom-2.29.0.pom +2026-04-06T14:02:08.6221011Z #19 90.02 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-iamcredentials-bom/2.29.0/google-cloud-iamcredentials-bom-2.29.0.pom +2026-04-06T14:02:08.7261039Z #19 90.13 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-iamcredentials-bom/2.29.0/google-cloud-iamcredentials-bom-2.29.0.pom +2026-04-06T14:02:08.8508108Z #19 90.25 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-iamcredentials-bom/2.29.0/google-cloud-iamcredentials-bom-2.29.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:02:08.9592606Z #19 90.26 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-iam-policy-bom/1.27.0/google-iam-policy-bom-1.27.0.pom +2026-04-06T14:02:08.9593242Z #19 90.36 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-iam-policy-bom/1.27.0/google-iam-policy-bom-1.27.0.pom +2026-04-06T14:02:09.0694077Z #19 90.47 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-iam-policy-bom/1.27.0/google-iam-policy-bom-1.27.0.pom +2026-04-06T14:02:09.1720315Z #19 90.57 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-iam-policy-bom/1.27.0/google-iam-policy-bom-1.27.0.pom +2026-04-06T14:02:09.2936633Z #19 90.70 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-iam-policy-bom/1.27.0/google-iam-policy-bom-1.27.0.pom (1.3 kB at 10 kB/s) +2026-04-06T14:02:09.4050076Z #19 90.70 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-ids-bom/1.28.0/google-cloud-ids-bom-1.28.0.pom +2026-04-06T14:02:09.4051035Z #19 90.81 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-ids-bom/1.28.0/google-cloud-ids-bom-1.28.0.pom +2026-04-06T14:02:09.5157953Z #19 90.92 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-ids-bom/1.28.0/google-cloud-ids-bom-1.28.0.pom +2026-04-06T14:02:09.6163440Z #19 91.02 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-ids-bom/1.28.0/google-cloud-ids-bom-1.28.0.pom +2026-04-06T14:02:09.7392931Z #19 91.14 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-ids-bom/1.28.0/google-cloud-ids-bom-1.28.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:02:09.8485848Z #19 91.14 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-infra-manager-bom/0.6.0/google-cloud-infra-manager-bom-0.6.0.pom +2026-04-06T14:02:09.8486494Z #19 91.25 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-infra-manager-bom/0.6.0/google-cloud-infra-manager-bom-0.6.0.pom +2026-04-06T14:02:09.9606576Z #19 91.36 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-infra-manager-bom/0.6.0/google-cloud-infra-manager-bom-0.6.0.pom +2026-04-06T14:02:10.0625294Z #19 91.46 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-infra-manager-bom/0.6.0/google-cloud-infra-manager-bom-0.6.0.pom +2026-04-06T14:02:10.1850726Z #19 91.59 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-infra-manager-bom/0.6.0/google-cloud-infra-manager-bom-0.6.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:10.2964204Z #19 91.59 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-iot-bom/2.29.0/google-cloud-iot-bom-2.29.0.pom +2026-04-06T14:02:10.2964809Z #19 91.70 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-iot-bom/2.29.0/google-cloud-iot-bom-2.29.0.pom +2026-04-06T14:02:10.6379426Z #19 92.04 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-iot-bom/2.29.0/google-cloud-iot-bom-2.29.0.pom +2026-04-06T14:02:10.7495319Z #19 92.15 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-iot-bom/2.29.0/google-cloud-iot-bom-2.29.0.pom +2026-04-06T14:02:10.8726731Z #19 92.27 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-iot-bom/2.29.0/google-cloud-iot-bom-2.29.0.pom (1.6 kB at 13 kB/s) +2026-04-06T14:02:10.9833072Z #19 92.28 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-kms-bom/2.32.0/google-cloud-kms-bom-2.32.0.pom +2026-04-06T14:02:10.9833704Z #19 92.39 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-kms-bom/2.32.0/google-cloud-kms-bom-2.32.0.pom +2026-04-06T14:02:11.0919253Z #19 92.49 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-kms-bom/2.32.0/google-cloud-kms-bom-2.32.0.pom +2026-04-06T14:02:11.2068066Z #19 92.61 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-kms-bom/2.32.0/google-cloud-kms-bom-2.32.0.pom +2026-04-06T14:02:11.3301767Z #19 92.73 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-kms-bom/2.32.0/google-cloud-kms-bom-2.32.0.pom (1.6 kB at 13 kB/s) +2026-04-06T14:02:11.4407903Z #19 92.73 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-kmsinventory-bom/0.18.0/google-cloud-kmsinventory-bom-0.18.0.pom +2026-04-06T14:02:11.4408618Z #19 92.84 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-kmsinventory-bom/0.18.0/google-cloud-kmsinventory-bom-0.18.0.pom +2026-04-06T14:02:11.5522231Z #19 92.95 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-kmsinventory-bom/0.18.0/google-cloud-kmsinventory-bom-0.18.0.pom +2026-04-06T14:02:11.6578919Z #19 93.06 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-kmsinventory-bom/0.18.0/google-cloud-kmsinventory-bom-0.18.0.pom +2026-04-06T14:02:11.8041175Z #19 93.21 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-kmsinventory-bom/0.18.0/google-cloud-kmsinventory-bom-0.18.0.pom (1.8 kB at 12 kB/s) +2026-04-06T14:02:11.9192953Z #19 93.21 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-language-bom/2.30.0/google-cloud-language-bom-2.30.0.pom +2026-04-06T14:02:11.9193745Z #19 93.32 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-language-bom/2.30.0/google-cloud-language-bom-2.30.0.pom +2026-04-06T14:02:12.0262495Z #19 93.43 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-language-bom/2.30.0/google-cloud-language-bom-2.30.0.pom +2026-04-06T14:02:12.1355611Z #19 93.54 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-language-bom/2.30.0/google-cloud-language-bom-2.30.0.pom +2026-04-06T14:02:12.2580565Z #19 93.66 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-language-bom/2.30.0/google-cloud-language-bom-2.30.0.pom (2.7 kB at 22 kB/s) +2026-04-06T14:02:12.3713638Z #19 93.66 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-life-sciences-bom/0.31.0/google-cloud-life-sciences-bom-0.31.0.pom +2026-04-06T14:02:12.3715678Z #19 93.77 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-life-sciences-bom/0.31.0/google-cloud-life-sciences-bom-0.31.0.pom +2026-04-06T14:02:12.4795088Z #19 93.88 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-life-sciences-bom/0.31.0/google-cloud-life-sciences-bom-0.31.0.pom +2026-04-06T14:02:12.5844947Z #19 93.99 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-life-sciences-bom/0.31.0/google-cloud-life-sciences-bom-0.31.0.pom +2026-04-06T14:02:12.7052895Z #19 94.11 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-life-sciences-bom/0.31.0/google-cloud-life-sciences-bom-0.31.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:12.8153382Z #19 94.11 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-managed-identities-bom/1.27.0/google-cloud-managed-identities-bom-1.27.0.pom +2026-04-06T14:02:12.8154021Z #19 94.22 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-managed-identities-bom/1.27.0/google-cloud-managed-identities-bom-1.27.0.pom +2026-04-06T14:02:12.9233441Z #19 94.33 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-managed-identities-bom/1.27.0/google-cloud-managed-identities-bom-1.27.0.pom +2026-04-06T14:02:13.0256311Z #19 94.43 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-managed-identities-bom/1.27.0/google-cloud-managed-identities-bom-1.27.0.pom +2026-04-06T14:02:13.1749740Z #19 94.58 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-managed-identities-bom/1.27.0/google-cloud-managed-identities-bom-1.27.0.pom (1.9 kB at 13 kB/s) +2026-04-06T14:02:13.2856016Z #19 94.58 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-mediatranslation-bom/0.35.0/google-cloud-mediatranslation-bom-0.35.0.pom +2026-04-06T14:02:13.2856719Z #19 94.69 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-mediatranslation-bom/0.35.0/google-cloud-mediatranslation-bom-0.35.0.pom +2026-04-06T14:02:13.3946711Z #19 94.80 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-mediatranslation-bom/0.35.0/google-cloud-mediatranslation-bom-0.35.0.pom +2026-04-06T14:02:13.4987791Z #19 94.90 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-mediatranslation-bom/0.35.0/google-cloud-mediatranslation-bom-0.35.0.pom +2026-04-06T14:02:13.6280088Z #19 95.03 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-mediatranslation-bom/0.35.0/google-cloud-mediatranslation-bom-0.35.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:02:13.7400153Z #19 95.03 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-memcache-bom/2.29.0/google-cloud-memcache-bom-2.29.0.pom +2026-04-06T14:02:13.7400723Z #19 95.14 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-memcache-bom/2.29.0/google-cloud-memcache-bom-2.29.0.pom +2026-04-06T14:02:13.8507026Z #19 95.25 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-memcache-bom/2.29.0/google-cloud-memcache-bom-2.29.0.pom +2026-04-06T14:02:13.9572184Z #19 95.36 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-memcache-bom/2.29.0/google-cloud-memcache-bom-2.29.0.pom +2026-04-06T14:02:14.0977290Z #19 95.50 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-memcache-bom/2.29.0/google-cloud-memcache-bom-2.29.0.pom (2.3 kB at 16 kB/s) +2026-04-06T14:02:14.2078722Z #19 95.50 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-migrationcenter-bom/0.11.0/google-cloud-migrationcenter-bom-0.11.0.pom +2026-04-06T14:02:14.2079346Z #19 95.61 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-migrationcenter-bom/0.11.0/google-cloud-migrationcenter-bom-0.11.0.pom +2026-04-06T14:02:14.3157581Z #19 95.72 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-migrationcenter-bom/0.11.0/google-cloud-migrationcenter-bom-0.11.0.pom +2026-04-06T14:02:14.5498831Z #19 95.81 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-migrationcenter-bom/0.11.0/google-cloud-migrationcenter-bom-0.11.0.pom +2026-04-06T14:02:14.5499558Z #19 95.95 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-migrationcenter-bom/0.11.0/google-cloud-migrationcenter-bom-0.11.0.pom (1.8 kB at 13 kB/s) +2026-04-06T14:02:14.6595278Z #19 95.95 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-monitoring-dashboard-bom/2.31.0/google-cloud-monitoring-dashboard-bom-2.31.0.pom +2026-04-06T14:02:14.6596320Z #19 96.06 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-monitoring-dashboard-bom/2.31.0/google-cloud-monitoring-dashboard-bom-2.31.0.pom +2026-04-06T14:02:14.7677414Z #19 96.17 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-monitoring-dashboard-bom/2.31.0/google-cloud-monitoring-dashboard-bom-2.31.0.pom +2026-04-06T14:02:15.0164684Z #19 96.27 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-monitoring-dashboard-bom/2.31.0/google-cloud-monitoring-dashboard-bom-2.31.0.pom +2026-04-06T14:02:15.0288390Z #19 96.43 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-monitoring-dashboard-bom/2.31.0/google-cloud-monitoring-dashboard-bom-2.31.0.pom (1.8 kB at 11 kB/s) +2026-04-06T14:02:15.1431189Z #19 96.43 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-monitoring-bom/3.30.0/google-cloud-monitoring-bom-3.30.0.pom +2026-04-06T14:02:15.1469685Z #19 96.54 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-monitoring-bom/3.30.0/google-cloud-monitoring-bom-3.30.0.pom +2026-04-06T14:02:15.2529221Z #19 96.66 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-monitoring-bom/3.30.0/google-cloud-monitoring-bom-3.30.0.pom +2026-04-06T14:02:15.3590595Z #19 96.76 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-monitoring-bom/3.30.0/google-cloud-monitoring-bom-3.30.0.pom +2026-04-06T14:02:15.4864737Z #19 96.89 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-monitoring-bom/3.30.0/google-cloud-monitoring-bom-3.30.0.pom (1.7 kB at 14 kB/s) +2026-04-06T14:02:15.5965907Z #19 96.89 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-monitoring-metricsscope-bom/0.23.0/google-cloud-monitoring-metricsscope-bom-0.23.0.pom +2026-04-06T14:02:15.5966748Z #19 97.00 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-monitoring-metricsscope-bom/0.23.0/google-cloud-monitoring-metricsscope-bom-0.23.0.pom +2026-04-06T14:02:15.7063017Z #19 97.11 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-monitoring-metricsscope-bom/0.23.0/google-cloud-monitoring-metricsscope-bom-0.23.0.pom +2026-04-06T14:02:15.8073959Z #19 97.21 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-monitoring-metricsscope-bom/0.23.0/google-cloud-monitoring-metricsscope-bom-0.23.0.pom +2026-04-06T14:02:15.9319953Z #19 97.33 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-monitoring-metricsscope-bom/0.23.0/google-cloud-monitoring-metricsscope-bom-0.23.0.pom (1.9 kB at 15 kB/s) +2026-04-06T14:02:16.0448365Z #19 97.34 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-netapp-bom/0.8.0/google-cloud-netapp-bom-0.8.0.pom +2026-04-06T14:02:16.0448977Z #19 97.45 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-netapp-bom/0.8.0/google-cloud-netapp-bom-0.8.0.pom +2026-04-06T14:02:16.1532705Z #19 97.56 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-netapp-bom/0.8.0/google-cloud-netapp-bom-0.8.0.pom +2026-04-06T14:02:16.2635238Z #19 97.67 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-netapp-bom/0.8.0/google-cloud-netapp-bom-0.8.0.pom +2026-04-06T14:02:16.3868606Z #19 97.79 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-netapp-bom/0.8.0/google-cloud-netapp-bom-0.8.0.pom (1.7 kB at 14 kB/s) +2026-04-06T14:02:16.4992020Z #19 97.79 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-networkconnectivity-bom/1.28.0/google-cloud-networkconnectivity-bom-1.28.0.pom +2026-04-06T14:02:16.4992676Z #19 97.90 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-networkconnectivity-bom/1.28.0/google-cloud-networkconnectivity-bom-1.28.0.pom +2026-04-06T14:02:16.6101615Z #19 98.01 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-networkconnectivity-bom/1.28.0/google-cloud-networkconnectivity-bom-1.28.0.pom +2026-04-06T14:02:16.7149486Z #19 98.12 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-networkconnectivity-bom/1.28.0/google-cloud-networkconnectivity-bom-1.28.0.pom +2026-04-06T14:02:16.8380445Z #19 98.24 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-networkconnectivity-bom/1.28.0/google-cloud-networkconnectivity-bom-1.28.0.pom (2.4 kB at 20 kB/s) +2026-04-06T14:02:16.9507606Z #19 98.24 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-network-management-bom/1.30.0/google-cloud-network-management-bom-1.30.0.pom +2026-04-06T14:02:16.9508266Z #19 98.35 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-network-management-bom/1.30.0/google-cloud-network-management-bom-1.30.0.pom +2026-04-06T14:02:17.0618624Z #19 98.46 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-network-management-bom/1.30.0/google-cloud-network-management-bom-1.30.0.pom +2026-04-06T14:02:17.1706363Z #19 98.57 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-network-management-bom/1.30.0/google-cloud-network-management-bom-1.30.0.pom +2026-04-06T14:02:17.2983647Z #19 98.70 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-network-management-bom/1.30.0/google-cloud-network-management-bom-1.30.0.pom (2.4 kB at 19 kB/s) +2026-04-06T14:02:17.4061679Z #19 98.70 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-network-security-bom/0.32.0/google-cloud-network-security-bom-0.32.0.pom +2026-04-06T14:02:17.4062399Z #19 98.81 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-network-security-bom/0.32.0/google-cloud-network-security-bom-0.32.0.pom +2026-04-06T14:02:17.5169910Z #19 98.92 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-network-security-bom/0.32.0/google-cloud-network-security-bom-0.32.0.pom +2026-04-06T14:02:17.7050061Z #19 99.11 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-network-security-bom/0.32.0/google-cloud-network-security-bom-0.32.0.pom +2026-04-06T14:02:17.8265599Z #19 99.23 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-network-security-bom/0.32.0/google-cloud-network-security-bom-0.32.0.pom (2.4 kB at 20 kB/s) +2026-04-06T14:02:17.9388022Z #19 99.23 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-notebooks-bom/1.27.0/google-cloud-notebooks-bom-1.27.0.pom +2026-04-06T14:02:17.9388720Z #19 99.34 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-notebooks-bom/1.27.0/google-cloud-notebooks-bom-1.27.0.pom +2026-04-06T14:02:18.0485663Z #19 99.45 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-notebooks-bom/1.27.0/google-cloud-notebooks-bom-1.27.0.pom +2026-04-06T14:02:18.1822634Z #19 99.58 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-notebooks-bom/1.27.0/google-cloud-notebooks-bom-1.27.0.pom +2026-04-06T14:02:18.3080731Z #19 99.71 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-notebooks-bom/1.27.0/google-cloud-notebooks-bom-1.27.0.pom (2.8 kB at 22 kB/s) +2026-04-06T14:02:18.4191126Z #19 99.71 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-optimization-bom/1.27.0/google-cloud-optimization-bom-1.27.0.pom +2026-04-06T14:02:18.4191997Z #19 99.82 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-optimization-bom/1.27.0/google-cloud-optimization-bom-1.27.0.pom +2026-04-06T14:02:18.5305090Z #19 99.93 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-optimization-bom/1.27.0/google-cloud-optimization-bom-1.27.0.pom +2026-04-06T14:02:18.7469943Z #19 100.0 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-optimization-bom/1.27.0/google-cloud-optimization-bom-1.27.0.pom +2026-04-06T14:02:18.7471697Z #19 100.1 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-optimization-bom/1.27.0/google-cloud-optimization-bom-1.27.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:18.8570483Z #19 100.2 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-orchestration-airflow-bom/1.29.0/google-cloud-orchestration-airflow-bom-1.29.0.pom +2026-04-06T14:02:18.8572961Z #19 100.3 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-orchestration-airflow-bom/1.29.0/google-cloud-orchestration-airflow-bom-1.29.0.pom +2026-04-06T14:02:18.9664792Z #19 100.4 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-orchestration-airflow-bom/1.29.0/google-cloud-orchestration-airflow-bom-1.29.0.pom +2026-04-06T14:02:19.0745354Z #19 100.5 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-orchestration-airflow-bom/1.29.0/google-cloud-orchestration-airflow-bom-1.29.0.pom +2026-04-06T14:02:19.1969679Z #19 100.6 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-orchestration-airflow-bom/1.29.0/google-cloud-orchestration-airflow-bom-1.29.0.pom (2.4 kB at 20 kB/s) +2026-04-06T14:02:19.3073012Z #19 100.6 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-orgpolicy-bom/2.29.0/google-cloud-orgpolicy-bom-2.29.0.pom +2026-04-06T14:02:19.3073819Z #19 100.7 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-orgpolicy-bom/2.29.0/google-cloud-orgpolicy-bom-2.29.0.pom +2026-04-06T14:02:19.4160931Z #19 100.8 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-orgpolicy-bom/2.29.0/google-cloud-orgpolicy-bom-2.29.0.pom +2026-04-06T14:02:19.5244022Z #19 100.9 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-orgpolicy-bom/2.29.0/google-cloud-orgpolicy-bom-2.29.0.pom +2026-04-06T14:02:19.6449941Z #19 101.0 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-orgpolicy-bom/2.29.0/google-cloud-orgpolicy-bom-2.29.0.pom (2.0 kB at 17 kB/s) +2026-04-06T14:02:19.7575715Z #19 101.1 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-os-config-bom/2.31.0/google-cloud-os-config-bom-2.31.0.pom +2026-04-06T14:02:19.7576346Z #19 101.2 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-os-config-bom/2.31.0/google-cloud-os-config-bom-2.31.0.pom +2026-04-06T14:02:19.8669635Z #19 101.3 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-os-config-bom/2.31.0/google-cloud-os-config-bom-2.31.0.pom +2026-04-06T14:02:19.9753990Z #19 101.4 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-os-config-bom/2.31.0/google-cloud-os-config-bom-2.31.0.pom +2026-04-06T14:02:20.0990089Z #19 101.5 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-os-config-bom/2.31.0/google-cloud-os-config-bom-2.31.0.pom (2.7 kB at 22 kB/s) +2026-04-06T14:02:20.2146881Z #19 101.5 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-os-login-bom/2.28.0/google-cloud-os-login-bom-2.28.0.pom +2026-04-06T14:02:20.2147535Z #19 101.6 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-os-login-bom/2.28.0/google-cloud-os-login-bom-2.28.0.pom +2026-04-06T14:02:20.3252917Z #19 101.7 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-os-login-bom/2.28.0/google-cloud-os-login-bom-2.28.0.pom +2026-04-06T14:02:20.5658310Z #19 101.8 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-os-login-bom/2.28.0/google-cloud-os-login-bom-2.28.0.pom +2026-04-06T14:02:20.5658999Z #19 102.0 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-os-login-bom/2.28.0/google-cloud-os-login-bom-2.28.0.pom (1.7 kB at 12 kB/s) +2026-04-06T14:02:20.6753584Z #19 102.0 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-phishingprotection-bom/0.60.0/google-cloud-phishingprotection-bom-0.60.0.pom +2026-04-06T14:02:20.6754184Z #19 102.1 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-phishingprotection-bom/0.60.0/google-cloud-phishingprotection-bom-0.60.0.pom +2026-04-06T14:02:20.7862967Z #19 102.2 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-phishingprotection-bom/0.60.0/google-cloud-phishingprotection-bom-0.60.0.pom +2026-04-06T14:02:20.8986856Z #19 102.3 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-phishingprotection-bom/0.60.0/google-cloud-phishingprotection-bom-0.60.0.pom +2026-04-06T14:02:21.0217618Z #19 102.4 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-phishingprotection-bom/0.60.0/google-cloud-phishingprotection-bom-0.60.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:21.1318386Z #19 102.4 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-policysimulator-bom/0.8.0/google-cloud-policysimulator-bom-0.8.0.pom +2026-04-06T14:02:21.1320661Z #19 102.5 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-policysimulator-bom/0.8.0/google-cloud-policysimulator-bom-0.8.0.pom +2026-04-06T14:02:21.2424795Z #19 102.6 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-policysimulator-bom/0.8.0/google-cloud-policysimulator-bom-0.8.0.pom +2026-04-06T14:02:21.4598896Z #19 102.7 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-policysimulator-bom/0.8.0/google-cloud-policysimulator-bom-0.8.0.pom +2026-04-06T14:02:21.4599672Z #19 102.9 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-policysimulator-bom/0.8.0/google-cloud-policysimulator-bom-0.8.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:21.5686569Z #19 102.9 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-policy-troubleshooter-bom/1.28.0/google-cloud-policy-troubleshooter-bom-1.28.0.pom +2026-04-06T14:02:21.5687130Z #19 103.0 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-policy-troubleshooter-bom/1.28.0/google-cloud-policy-troubleshooter-bom-1.28.0.pom +2026-04-06T14:02:21.6801257Z #19 103.1 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-policy-troubleshooter-bom/1.28.0/google-cloud-policy-troubleshooter-bom-1.28.0.pom +2026-04-06T14:02:21.7925222Z #19 103.2 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-policy-troubleshooter-bom/1.28.0/google-cloud-policy-troubleshooter-bom-1.28.0.pom +2026-04-06T14:02:21.9122605Z #19 103.3 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-policy-troubleshooter-bom/1.28.0/google-cloud-policy-troubleshooter-bom-1.28.0.pom (2.5 kB at 20 kB/s) +2026-04-06T14:02:22.0234509Z #19 103.3 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-private-catalog-bom/0.31.0/google-cloud-private-catalog-bom-0.31.0.pom +2026-04-06T14:02:22.0235678Z #19 103.4 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-private-catalog-bom/0.31.0/google-cloud-private-catalog-bom-0.31.0.pom +2026-04-06T14:02:22.1343640Z #19 103.5 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-private-catalog-bom/0.31.0/google-cloud-private-catalog-bom-0.31.0.pom +2026-04-06T14:02:22.2390361Z #19 103.6 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-private-catalog-bom/0.31.0/google-cloud-private-catalog-bom-0.31.0.pom +2026-04-06T14:02:22.3710366Z #19 103.8 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-private-catalog-bom/0.31.0/google-cloud-private-catalog-bom-0.31.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:02:22.4813470Z #19 103.8 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-profiler-bom/2.29.0/google-cloud-profiler-bom-2.29.0.pom +2026-04-06T14:02:22.4814933Z #19 103.9 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-profiler-bom/2.29.0/google-cloud-profiler-bom-2.29.0.pom +2026-04-06T14:02:22.5904764Z #19 104.0 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-profiler-bom/2.29.0/google-cloud-profiler-bom-2.29.0.pom +2026-04-06T14:02:22.6995061Z #19 104.1 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-profiler-bom/2.29.0/google-cloud-profiler-bom-2.29.0.pom +2026-04-06T14:02:22.8319403Z #19 104.2 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-profiler-bom/2.29.0/google-cloud-profiler-bom-2.29.0.pom (1.8 kB at 13 kB/s) +2026-04-06T14:02:22.9427208Z #19 104.2 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-publicca-bom/0.26.0/google-cloud-publicca-bom-0.26.0.pom +2026-04-06T14:02:22.9428102Z #19 104.3 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-publicca-bom/0.26.0/google-cloud-publicca-bom-0.26.0.pom +2026-04-06T14:02:23.0557601Z #19 104.5 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-publicca-bom/0.26.0/google-cloud-publicca-bom-0.26.0.pom +2026-04-06T14:02:23.1611066Z #19 104.6 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-publicca-bom/0.26.0/google-cloud-publicca-bom-0.26.0.pom +2026-04-06T14:02:23.2931645Z #19 104.7 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-publicca-bom/0.26.0/google-cloud-publicca-bom-0.26.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:02:23.4043361Z #19 104.7 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-rapidmigrationassessment-bom/0.12.0/google-cloud-rapidmigrationassessment-bom-0.12.0.pom +2026-04-06T14:02:23.4044173Z #19 104.8 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-rapidmigrationassessment-bom/0.12.0/google-cloud-rapidmigrationassessment-bom-0.12.0.pom +2026-04-06T14:02:23.5144964Z #19 104.9 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-rapidmigrationassessment-bom/0.12.0/google-cloud-rapidmigrationassessment-bom-0.12.0.pom +2026-04-06T14:02:23.6191211Z #19 105.0 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-rapidmigrationassessment-bom/0.12.0/google-cloud-rapidmigrationassessment-bom-0.12.0.pom +2026-04-06T14:02:23.7450776Z #19 105.1 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-rapidmigrationassessment-bom/0.12.0/google-cloud-rapidmigrationassessment-bom-0.12.0.pom (1.9 kB at 15 kB/s) +2026-04-06T14:02:23.8541526Z #19 105.1 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-recaptchaenterprise-bom/3.26.0/google-cloud-recaptchaenterprise-bom-3.26.0.pom +2026-04-06T14:02:23.8542226Z #19 105.3 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-recaptchaenterprise-bom/3.26.0/google-cloud-recaptchaenterprise-bom-3.26.0.pom +2026-04-06T14:02:23.9630555Z #19 105.4 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-recaptchaenterprise-bom/3.26.0/google-cloud-recaptchaenterprise-bom-3.26.0.pom +2026-04-06T14:02:24.0953167Z #19 105.5 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-recaptchaenterprise-bom/3.26.0/google-cloud-recaptchaenterprise-bom-3.26.0.pom +2026-04-06T14:02:24.2453821Z #19 105.6 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-recaptchaenterprise-bom/3.26.0/google-cloud-recaptchaenterprise-bom-3.26.0.pom (2.4 kB at 16 kB/s) +2026-04-06T14:02:24.3581154Z #19 105.7 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-recommendations-ai-bom/0.36.0/google-cloud-recommendations-ai-bom-0.36.0.pom +2026-04-06T14:02:24.3581797Z #19 105.8 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-recommendations-ai-bom/0.36.0/google-cloud-recommendations-ai-bom-0.36.0.pom +2026-04-06T14:02:24.4706363Z #19 105.9 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-recommendations-ai-bom/0.36.0/google-cloud-recommendations-ai-bom-0.36.0.pom +2026-04-06T14:02:24.5775341Z #19 106.0 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-recommendations-ai-bom/0.36.0/google-cloud-recommendations-ai-bom-0.36.0.pom +2026-04-06T14:02:24.7006216Z #19 106.1 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-recommendations-ai-bom/0.36.0/google-cloud-recommendations-ai-bom-0.36.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:24.8111749Z #19 106.1 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-recommender-bom/2.31.0/google-cloud-recommender-bom-2.31.0.pom +2026-04-06T14:02:24.8112506Z #19 106.2 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-recommender-bom/2.31.0/google-cloud-recommender-bom-2.31.0.pom +2026-04-06T14:02:24.9219089Z #19 106.3 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-recommender-bom/2.31.0/google-cloud-recommender-bom-2.31.0.pom +2026-04-06T14:02:25.0258383Z #19 106.4 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-recommender-bom/2.31.0/google-cloud-recommender-bom-2.31.0.pom +2026-04-06T14:02:25.1771606Z #19 106.6 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-recommender-bom/2.31.0/google-cloud-recommender-bom-2.31.0.pom (2.3 kB at 15 kB/s) +2026-04-06T14:02:25.2883630Z #19 106.6 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-redis-cluster-bom/0.1.0/google-cloud-redis-cluster-bom-0.1.0.pom +2026-04-06T14:02:25.2884270Z #19 106.7 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-redis-cluster-bom/0.1.0/google-cloud-redis-cluster-bom-0.1.0.pom +2026-04-06T14:02:25.4031187Z #19 106.8 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-redis-cluster-bom/0.1.0/google-cloud-redis-cluster-bom-0.1.0.pom +2026-04-06T14:02:25.5030574Z #19 106.9 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-redis-cluster-bom/0.1.0/google-cloud-redis-cluster-bom-0.1.0.pom +2026-04-06T14:02:25.6470653Z #19 107.0 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-redis-cluster-bom/0.1.0/google-cloud-redis-cluster-bom-0.1.0.pom (2.4 kB at 17 kB/s) +2026-04-06T14:02:25.7590243Z #19 107.1 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-redis-bom/2.32.0/google-cloud-redis-bom-2.32.0.pom +2026-04-06T14:02:25.7590796Z #19 107.2 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-redis-bom/2.32.0/google-cloud-redis-bom-2.32.0.pom +2026-04-06T14:02:25.8755066Z #19 107.3 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-redis-bom/2.32.0/google-cloud-redis-bom-2.32.0.pom +2026-04-06T14:02:25.9804556Z #19 107.4 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-redis-bom/2.32.0/google-cloud-redis-bom-2.32.0.pom +2026-04-06T14:02:26.1134989Z #19 107.5 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-redis-bom/2.32.0/google-cloud-redis-bom-2.32.0.pom (2.2 kB at 16 kB/s) +2026-04-06T14:02:26.2219051Z #19 107.5 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-resourcemanager-bom/1.31.0/google-cloud-resourcemanager-bom-1.31.0.pom +2026-04-06T14:02:26.2222163Z #19 107.6 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-resourcemanager-bom/1.31.0/google-cloud-resourcemanager-bom-1.31.0.pom +2026-04-06T14:02:26.3300399Z #19 107.7 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-resourcemanager-bom/1.31.0/google-cloud-resourcemanager-bom-1.31.0.pom +2026-04-06T14:02:26.4312279Z #19 107.8 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-resourcemanager-bom/1.31.0/google-cloud-resourcemanager-bom-1.31.0.pom +2026-04-06T14:02:26.5538588Z #19 108.0 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-resourcemanager-bom/1.31.0/google-cloud-resourcemanager-bom-1.31.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:26.6654638Z #19 108.0 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-resource-settings-bom/1.29.0/google-cloud-resource-settings-bom-1.29.0.pom +2026-04-06T14:02:26.6655255Z #19 108.1 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-resource-settings-bom/1.29.0/google-cloud-resource-settings-bom-1.29.0.pom +2026-04-06T14:02:26.7752960Z #19 108.2 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-resource-settings-bom/1.29.0/google-cloud-resource-settings-bom-1.29.0.pom +2026-04-06T14:02:26.8767967Z #19 108.3 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-resource-settings-bom/1.29.0/google-cloud-resource-settings-bom-1.29.0.pom +2026-04-06T14:02:27.0031127Z #19 108.4 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-resource-settings-bom/1.29.0/google-cloud-resource-settings-bom-1.29.0.pom (1.9 kB at 15 kB/s) +2026-04-06T14:02:27.1125928Z #19 108.4 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-retail-bom/2.31.0/google-cloud-retail-bom-2.31.0.pom +2026-04-06T14:02:27.1126565Z #19 108.5 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-retail-bom/2.31.0/google-cloud-retail-bom-2.31.0.pom +2026-04-06T14:02:27.2248695Z #19 108.6 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-retail-bom/2.31.0/google-cloud-retail-bom-2.31.0.pom +2026-04-06T14:02:27.3314656Z #19 108.7 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-retail-bom/2.31.0/google-cloud-retail-bom-2.31.0.pom +2026-04-06T14:02:27.4672345Z #19 108.9 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-retail-bom/2.31.0/google-cloud-retail-bom-2.31.0.pom (2.8 kB at 20 kB/s) +2026-04-06T14:02:27.5770938Z #19 108.9 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-run-bom/0.29.0/google-cloud-run-bom-0.29.0.pom +2026-04-06T14:02:27.5771624Z #19 109.0 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-run-bom/0.29.0/google-cloud-run-bom-0.29.0.pom +2026-04-06T14:02:27.6899179Z #19 109.1 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-run-bom/0.29.0/google-cloud-run-bom-0.29.0.pom +2026-04-06T14:02:27.7956629Z #19 109.2 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-run-bom/0.29.0/google-cloud-run-bom-0.29.0.pom +2026-04-06T14:02:27.9249915Z #19 109.3 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-run-bom/0.29.0/google-cloud-run-bom-0.29.0.pom (1.7 kB at 13 kB/s) +2026-04-06T14:02:28.0338123Z #19 109.3 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-scheduler-bom/2.29.0/google-cloud-scheduler-bom-2.29.0.pom +2026-04-06T14:02:28.0338776Z #19 109.4 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-scheduler-bom/2.29.0/google-cloud-scheduler-bom-2.29.0.pom +2026-04-06T14:02:28.1419434Z #19 109.5 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-scheduler-bom/2.29.0/google-cloud-scheduler-bom-2.29.0.pom +2026-04-06T14:02:28.2424576Z #19 109.6 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-scheduler-bom/2.29.0/google-cloud-scheduler-bom-2.29.0.pom +2026-04-06T14:02:28.3895654Z #19 109.8 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-scheduler-bom/2.29.0/google-cloud-scheduler-bom-2.29.0.pom (2.2 kB at 15 kB/s) +2026-04-06T14:02:28.5069336Z #19 109.8 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-secretmanager-bom/2.29.0/google-cloud-secretmanager-bom-2.29.0.pom +2026-04-06T14:02:28.5069945Z #19 109.9 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-secretmanager-bom/2.29.0/google-cloud-secretmanager-bom-2.29.0.pom +2026-04-06T14:02:28.6181711Z #19 110.0 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-secretmanager-bom/2.29.0/google-cloud-secretmanager-bom-2.29.0.pom +2026-04-06T14:02:28.8368140Z #19 110.1 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-secretmanager-bom/2.29.0/google-cloud-secretmanager-bom-2.29.0.pom +2026-04-06T14:02:28.8368935Z #19 110.2 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-secretmanager-bom/2.29.0/google-cloud-secretmanager-bom-2.29.0.pom (2.3 kB at 19 kB/s) +2026-04-06T14:02:28.9456024Z #19 110.2 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-securitycenter-bom/2.37.0/google-cloud-securitycenter-bom-2.37.0.pom +2026-04-06T14:02:28.9456595Z #19 110.3 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-securitycenter-bom/2.37.0/google-cloud-securitycenter-bom-2.37.0.pom +2026-04-06T14:02:29.0562312Z #19 110.5 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-securitycenter-bom/2.37.0/google-cloud-securitycenter-bom-2.37.0.pom +2026-04-06T14:02:29.1637501Z #19 110.6 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-securitycenter-bom/2.37.0/google-cloud-securitycenter-bom-2.37.0.pom +2026-04-06T14:02:29.2874979Z #19 110.7 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-securitycenter-bom/2.37.0/google-cloud-securitycenter-bom-2.37.0.pom (2.9 kB at 23 kB/s) +2026-04-06T14:02:29.3981003Z #19 110.7 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-securitycenter-settings-bom/0.32.0/google-cloud-securitycenter-settings-bom-0.32.0.pom +2026-04-06T14:02:29.3981554Z #19 110.8 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-securitycenter-settings-bom/0.32.0/google-cloud-securitycenter-settings-bom-0.32.0.pom +2026-04-06T14:02:29.5093830Z #19 110.9 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-securitycenter-settings-bom/0.32.0/google-cloud-securitycenter-settings-bom-0.32.0.pom +2026-04-06T14:02:29.6179650Z #19 111.0 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-securitycenter-settings-bom/0.32.0/google-cloud-securitycenter-settings-bom-0.32.0.pom +2026-04-06T14:02:29.7572922Z #19 111.2 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-securitycenter-settings-bom/0.32.0/google-cloud-securitycenter-settings-bom-0.32.0.pom (1.9 kB at 13 kB/s) +2026-04-06T14:02:29.8667641Z #19 111.2 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-security-private-ca-bom/2.31.0/google-cloud-security-private-ca-bom-2.31.0.pom +2026-04-06T14:02:29.8668511Z #19 111.3 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-security-private-ca-bom/2.31.0/google-cloud-security-private-ca-bom-2.31.0.pom +2026-04-06T14:02:29.9766382Z #19 111.4 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-security-private-ca-bom/2.31.0/google-cloud-security-private-ca-bom-2.31.0.pom +2026-04-06T14:02:30.2115569Z #19 111.5 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-security-private-ca-bom/2.31.0/google-cloud-security-private-ca-bom-2.31.0.pom +2026-04-06T14:02:30.2116552Z #19 111.6 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-security-private-ca-bom/2.31.0/google-cloud-security-private-ca-bom-2.31.0.pom (2.4 kB at 18 kB/s) +2026-04-06T14:02:30.3210188Z #19 111.6 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-service-control-bom/1.29.0/google-cloud-service-control-bom-1.29.0.pom +2026-04-06T14:02:30.3210979Z #19 111.7 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-service-control-bom/1.29.0/google-cloud-service-control-bom-1.29.0.pom +2026-04-06T14:02:30.4316840Z #19 111.8 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-service-control-bom/1.29.0/google-cloud-service-control-bom-1.29.0.pom +2026-04-06T14:02:30.5320116Z #19 111.9 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-service-control-bom/1.29.0/google-cloud-service-control-bom-1.29.0.pom +2026-04-06T14:02:30.6516822Z #19 112.1 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-service-control-bom/1.29.0/google-cloud-service-control-bom-1.29.0.pom (2.4 kB at 20 kB/s) +2026-04-06T14:02:30.7620268Z #19 112.1 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-servicedirectory-bom/2.30.0/google-cloud-servicedirectory-bom-2.30.0.pom +2026-04-06T14:02:30.7621023Z #19 112.2 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-servicedirectory-bom/2.30.0/google-cloud-servicedirectory-bom-2.30.0.pom +2026-04-06T14:02:30.8716605Z #19 112.3 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-servicedirectory-bom/2.30.0/google-cloud-servicedirectory-bom-2.30.0.pom +2026-04-06T14:02:30.9791407Z #19 112.4 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-servicedirectory-bom/2.30.0/google-cloud-servicedirectory-bom-2.30.0.pom +2026-04-06T14:02:31.1247444Z #19 112.5 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-servicedirectory-bom/2.30.0/google-cloud-servicedirectory-bom-2.30.0.pom (2.3 kB at 16 kB/s) +2026-04-06T14:02:31.2367304Z #19 112.5 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-service-management-bom/3.27.0/google-cloud-service-management-bom-3.27.0.pom +2026-04-06T14:02:31.2367944Z #19 112.6 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-service-management-bom/3.27.0/google-cloud-service-management-bom-3.27.0.pom +2026-04-06T14:02:31.3453275Z #19 112.7 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-service-management-bom/3.27.0/google-cloud-service-management-bom-3.27.0.pom +2026-04-06T14:02:31.5751054Z #19 112.8 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-service-management-bom/3.27.0/google-cloud-service-management-bom-3.27.0.pom +2026-04-06T14:02:31.5751803Z #19 113.0 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-service-management-bom/3.27.0/google-cloud-service-management-bom-3.27.0.pom (1.9 kB at 14 kB/s) +2026-04-06T14:02:31.6876190Z #19 113.0 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-service-usage-bom/2.29.0/google-cloud-service-usage-bom-2.29.0.pom +2026-04-06T14:02:31.6876837Z #19 113.1 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-service-usage-bom/2.29.0/google-cloud-service-usage-bom-2.29.0.pom +2026-04-06T14:02:31.8225402Z #19 113.2 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-service-usage-bom/2.29.0/google-cloud-service-usage-bom-2.29.0.pom +2026-04-06T14:02:31.9274035Z #19 113.3 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-service-usage-bom/2.29.0/google-cloud-service-usage-bom-2.29.0.pom +2026-04-06T14:02:32.0461705Z #19 113.4 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-service-usage-bom/2.29.0/google-cloud-service-usage-bom-2.29.0.pom (2.3 kB at 20 kB/s) +2026-04-06T14:02:32.1556537Z #19 113.5 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-shell-bom/2.28.0/google-cloud-shell-bom-2.28.0.pom +2026-04-06T14:02:32.1557143Z #19 113.6 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-shell-bom/2.28.0/google-cloud-shell-bom-2.28.0.pom +2026-04-06T14:02:32.2678680Z #19 113.7 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-shell-bom/2.28.0/google-cloud-shell-bom-2.28.0.pom +2026-04-06T14:02:32.3711553Z #19 113.8 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-shell-bom/2.28.0/google-cloud-shell-bom-2.28.0.pom +2026-04-06T14:02:32.5185239Z #19 113.9 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-shell-bom/2.28.0/google-cloud-shell-bom-2.28.0.pom (1.7 kB at 12 kB/s) +2026-04-06T14:02:32.6285567Z #19 113.9 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-speech-bom/4.24.0/google-cloud-speech-bom-4.24.0.pom +2026-04-06T14:02:32.6286247Z #19 114.0 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-speech-bom/4.24.0/google-cloud-speech-bom-4.24.0.pom +2026-04-06T14:02:32.7413775Z #19 114.1 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-speech-bom/4.24.0/google-cloud-speech-bom-4.24.0.pom +2026-04-06T14:02:32.8459609Z #19 114.2 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-speech-bom/4.24.0/google-cloud-speech-bom-4.24.0.pom +2026-04-06T14:02:32.9724740Z #19 114.4 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-speech-bom/4.24.0/google-cloud-speech-bom-4.24.0.pom (3.2 kB at 25 kB/s) +2026-04-06T14:02:33.0851470Z #19 114.4 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-storageinsights-bom/0.14.0/google-cloud-storageinsights-bom-0.14.0.pom +2026-04-06T14:02:33.0852096Z #19 114.5 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-storageinsights-bom/0.14.0/google-cloud-storageinsights-bom-0.14.0.pom +2026-04-06T14:02:33.1962837Z #19 114.6 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-storageinsights-bom/0.14.0/google-cloud-storageinsights-bom-0.14.0.pom +2026-04-06T14:02:33.3100663Z #19 114.7 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-storageinsights-bom/0.14.0/google-cloud-storageinsights-bom-0.14.0.pom +2026-04-06T14:02:33.4311642Z #19 114.8 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-storageinsights-bom/0.14.0/google-cloud-storageinsights-bom-0.14.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:33.5400300Z #19 114.8 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-storage-transfer-bom/1.29.0/google-cloud-storage-transfer-bom-1.29.0.pom +2026-04-06T14:02:33.5401302Z #19 114.9 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-storage-transfer-bom/1.29.0/google-cloud-storage-transfer-bom-1.29.0.pom +2026-04-06T14:02:33.6492960Z #19 115.1 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-storage-transfer-bom/1.29.0/google-cloud-storage-transfer-bom-1.29.0.pom +2026-04-06T14:02:33.7565461Z #19 115.2 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-storage-transfer-bom/1.29.0/google-cloud-storage-transfer-bom-1.29.0.pom +2026-04-06T14:02:33.8863630Z #19 115.3 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-storage-transfer-bom/1.29.0/google-cloud-storage-transfer-bom-1.29.0.pom (1.9 kB at 14 kB/s) +2026-04-06T14:02:33.9941097Z #19 115.3 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-talent-bom/2.30.0/google-cloud-talent-bom-2.30.0.pom +2026-04-06T14:02:33.9942123Z #19 115.4 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-talent-bom/2.30.0/google-cloud-talent-bom-2.30.0.pom +2026-04-06T14:02:34.1048460Z #19 115.5 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-talent-bom/2.30.0/google-cloud-talent-bom-2.30.0.pom +2026-04-06T14:02:34.2057861Z #19 115.6 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-talent-bom/2.30.0/google-cloud-talent-bom-2.30.0.pom +2026-04-06T14:02:34.3319772Z #19 115.7 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-talent-bom/2.30.0/google-cloud-talent-bom-2.30.0.pom (2.2 kB at 17 kB/s) +2026-04-06T14:02:34.4432240Z #19 115.7 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-tasks-bom/2.29.0/google-cloud-tasks-bom-2.29.0.pom +2026-04-06T14:02:34.4432900Z #19 115.8 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-tasks-bom/2.29.0/google-cloud-tasks-bom-2.29.0.pom +2026-04-06T14:02:34.5509105Z #19 116.0 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-tasks-bom/2.29.0/google-cloud-tasks-bom-2.29.0.pom +2026-04-06T14:02:34.7969820Z #19 116.1 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-tasks-bom/2.29.0/google-cloud-tasks-bom-2.29.0.pom +2026-04-06T14:02:34.7970515Z #19 116.2 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-tasks-bom/2.29.0/google-cloud-tasks-bom-2.29.0.pom (2.7 kB at 18 kB/s) +2026-04-06T14:02:34.9380347Z #19 116.2 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-texttospeech-bom/2.30.0/google-cloud-texttospeech-bom-2.30.0.pom +2026-04-06T14:02:34.9381069Z #19 116.3 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-texttospeech-bom/2.30.0/google-cloud-texttospeech-bom-2.30.0.pom +2026-04-06T14:02:35.0480882Z #19 116.5 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-texttospeech-bom/2.30.0/google-cloud-texttospeech-bom-2.30.0.pom +2026-04-06T14:02:35.1583952Z #19 116.6 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-texttospeech-bom/2.30.0/google-cloud-texttospeech-bom-2.30.0.pom +2026-04-06T14:02:35.2819613Z #19 116.7 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-texttospeech-bom/2.30.0/google-cloud-texttospeech-bom-2.30.0.pom (2.3 kB at 18 kB/s) +2026-04-06T14:02:35.3939364Z #19 116.7 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-tpu-bom/2.30.0/google-cloud-tpu-bom-2.30.0.pom +2026-04-06T14:02:35.3940043Z #19 116.8 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-tpu-bom/2.30.0/google-cloud-tpu-bom-2.30.0.pom +2026-04-06T14:02:35.5031868Z #19 116.9 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-tpu-bom/2.30.0/google-cloud-tpu-bom-2.30.0.pom +2026-04-06T14:02:35.6033154Z #19 117.0 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-tpu-bom/2.30.0/google-cloud-tpu-bom-2.30.0.pom +2026-04-06T14:02:35.7258272Z #19 117.1 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-tpu-bom/2.30.0/google-cloud-tpu-bom-2.30.0.pom (2.7 kB at 22 kB/s) +2026-04-06T14:02:35.8341046Z #19 117.1 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-trace-bom/2.29.0/google-cloud-trace-bom-2.29.0.pom +2026-04-06T14:02:35.8341783Z #19 117.2 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-trace-bom/2.29.0/google-cloud-trace-bom-2.29.0.pom +2026-04-06T14:02:35.9456501Z #19 117.3 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-trace-bom/2.29.0/google-cloud-trace-bom-2.29.0.pom +2026-04-06T14:02:36.0538238Z #19 117.5 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-trace-bom/2.29.0/google-cloud-trace-bom-2.29.0.pom +2026-04-06T14:02:36.1737805Z #19 117.6 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-trace-bom/2.29.0/google-cloud-trace-bom-2.29.0.pom (2.2 kB at 18 kB/s) +2026-04-06T14:02:36.2827136Z #19 117.6 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-translate-bom/2.29.0/google-cloud-translate-bom-2.29.0.pom +2026-04-06T14:02:36.2827698Z #19 117.7 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-translate-bom/2.29.0/google-cloud-translate-bom-2.29.0.pom +2026-04-06T14:02:36.3922629Z #19 117.8 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-translate-bom/2.29.0/google-cloud-translate-bom-2.29.0.pom +2026-04-06T14:02:36.6185691Z #19 117.9 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-translate-bom/2.29.0/google-cloud-translate-bom-2.29.0.pom +2026-04-06T14:02:36.6186379Z #19 118.0 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-translate-bom/2.29.0/google-cloud-translate-bom-2.29.0.pom (2.2 kB at 17 kB/s) +2026-04-06T14:02:36.7299512Z #19 118.0 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-video-intelligence-bom/2.28.0/google-cloud-video-intelligence-bom-2.28.0.pom +2026-04-06T14:02:36.7300082Z #19 118.1 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-video-intelligence-bom/2.28.0/google-cloud-video-intelligence-bom-2.28.0.pom +2026-04-06T14:02:36.8387909Z #19 118.2 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-video-intelligence-bom/2.28.0/google-cloud-video-intelligence-bom-2.28.0.pom +2026-04-06T14:02:37.0631898Z #19 118.3 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-video-intelligence-bom/2.28.0/google-cloud-video-intelligence-bom-2.28.0.pom +2026-04-06T14:02:37.0632619Z #19 118.5 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-video-intelligence-bom/2.28.0/google-cloud-video-intelligence-bom-2.28.0.pom (4.1 kB at 32 kB/s) +2026-04-06T14:02:37.1739774Z #19 118.5 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-live-stream-bom/0.31.0/google-cloud-live-stream-bom-0.31.0.pom +2026-04-06T14:02:37.1741957Z #19 118.6 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-live-stream-bom/0.31.0/google-cloud-live-stream-bom-0.31.0.pom +2026-04-06T14:02:37.2831785Z #19 118.7 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-live-stream-bom/0.31.0/google-cloud-live-stream-bom-0.31.0.pom +2026-04-06T14:02:37.4791445Z #19 118.9 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-live-stream-bom/0.31.0/google-cloud-live-stream-bom-0.31.0.pom +2026-04-06T14:02:37.5995672Z #19 119.0 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-live-stream-bom/0.31.0/google-cloud-live-stream-bom-0.31.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:37.7118465Z #19 119.0 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-video-stitcher-bom/0.29.0/google-cloud-video-stitcher-bom-0.29.0.pom +2026-04-06T14:02:37.7119065Z #19 119.1 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-video-stitcher-bom/0.29.0/google-cloud-video-stitcher-bom-0.29.0.pom +2026-04-06T14:02:37.8209806Z #19 119.2 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-video-stitcher-bom/0.29.0/google-cloud-video-stitcher-bom-0.29.0.pom +2026-04-06T14:02:38.0412425Z #19 119.3 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-video-stitcher-bom/0.29.0/google-cloud-video-stitcher-bom-0.29.0.pom +2026-04-06T14:02:38.0413178Z #19 119.4 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-video-stitcher-bom/0.29.0/google-cloud-video-stitcher-bom-0.29.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:38.1500706Z #19 119.4 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-video-transcoder-bom/1.28.0/google-cloud-video-transcoder-bom-1.28.0.pom +2026-04-06T14:02:38.1501671Z #19 119.6 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-video-transcoder-bom/1.28.0/google-cloud-video-transcoder-bom-1.28.0.pom +2026-04-06T14:02:38.2590011Z #19 119.7 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-video-transcoder-bom/1.28.0/google-cloud-video-transcoder-bom-1.28.0.pom +2026-04-06T14:02:38.3637148Z #19 119.8 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-video-transcoder-bom/1.28.0/google-cloud-video-transcoder-bom-1.28.0.pom +2026-04-06T14:02:38.4944828Z #19 119.9 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-video-transcoder-bom/1.28.0/google-cloud-video-transcoder-bom-1.28.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:02:38.6075511Z #19 119.9 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-vision-bom/3.27.0/google-cloud-vision-bom-3.27.0.pom +2026-04-06T14:02:38.6076073Z #19 120.0 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-vision-bom/3.27.0/google-cloud-vision-bom-3.27.0.pom +2026-04-06T14:02:38.7190758Z #19 120.1 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-vision-bom/3.27.0/google-cloud-vision-bom-3.27.0.pom +2026-04-06T14:02:38.9399997Z #19 120.2 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-vision-bom/3.27.0/google-cloud-vision-bom-3.27.0.pom +2026-04-06T14:02:38.9400804Z #19 120.3 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-vision-bom/3.27.0/google-cloud-vision-bom-3.27.0.pom (3.8 kB at 31 kB/s) +2026-04-06T14:02:39.0489684Z #19 120.3 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-vmmigration-bom/1.29.0/google-cloud-vmmigration-bom-1.29.0.pom +2026-04-06T14:02:39.0490386Z #19 120.5 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-vmmigration-bom/1.29.0/google-cloud-vmmigration-bom-1.29.0.pom +2026-04-06T14:02:39.1626911Z #19 120.6 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-vmmigration-bom/1.29.0/google-cloud-vmmigration-bom-1.29.0.pom +2026-04-06T14:02:39.2727677Z #19 120.7 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-vmmigration-bom/1.29.0/google-cloud-vmmigration-bom-1.29.0.pom +2026-04-06T14:02:39.4016305Z #19 120.8 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-vmmigration-bom/1.29.0/google-cloud-vmmigration-bom-1.29.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:02:39.5114608Z #19 120.8 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-vmwareengine-bom/0.23.0/google-cloud-vmwareengine-bom-0.23.0.pom +2026-04-06T14:02:39.5115336Z #19 120.9 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-vmwareengine-bom/0.23.0/google-cloud-vmwareengine-bom-0.23.0.pom +2026-04-06T14:02:39.6218882Z #19 121.0 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-vmwareengine-bom/0.23.0/google-cloud-vmwareengine-bom-0.23.0.pom +2026-04-06T14:02:39.7394744Z #19 121.1 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-vmwareengine-bom/0.23.0/google-cloud-vmwareengine-bom-0.23.0.pom +2026-04-06T14:02:39.8626425Z #19 121.3 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-vmwareengine-bom/0.23.0/google-cloud-vmwareengine-bom-0.23.0.pom (1.8 kB at 15 kB/s) +2026-04-06T14:02:39.9773605Z #19 121.3 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-vpcaccess-bom/2.30.0/google-cloud-vpcaccess-bom-2.30.0.pom +2026-04-06T14:02:39.9774337Z #19 121.4 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-vpcaccess-bom/2.30.0/google-cloud-vpcaccess-bom-2.30.0.pom +2026-04-06T14:02:40.0878091Z #19 121.5 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-vpcaccess-bom/2.30.0/google-cloud-vpcaccess-bom-2.30.0.pom +2026-04-06T14:02:40.1893351Z #19 121.6 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-vpcaccess-bom/2.30.0/google-cloud-vpcaccess-bom-2.30.0.pom +2026-04-06T14:02:40.3156741Z #19 121.7 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-vpcaccess-bom/2.30.0/google-cloud-vpcaccess-bom-2.30.0.pom (1.8 kB at 14 kB/s) +2026-04-06T14:02:40.4258934Z #19 121.7 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-webrisk-bom/2.28.0/google-cloud-webrisk-bom-2.28.0.pom +2026-04-06T14:02:40.4266395Z #19 121.8 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-webrisk-bom/2.28.0/google-cloud-webrisk-bom-2.28.0.pom +2026-04-06T14:02:40.5363676Z #19 121.9 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-webrisk-bom/2.28.0/google-cloud-webrisk-bom-2.28.0.pom +2026-04-06T14:02:40.6466819Z #19 122.0 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-webrisk-bom/2.28.0/google-cloud-webrisk-bom-2.28.0.pom +2026-04-06T14:02:40.7757477Z #19 122.2 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-webrisk-bom/2.28.0/google-cloud-webrisk-bom-2.28.0.pom (2.2 kB at 17 kB/s) +2026-04-06T14:02:40.8885741Z #19 122.2 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-websecurityscanner-bom/2.29.0/google-cloud-websecurityscanner-bom-2.29.0.pom +2026-04-06T14:02:40.8886549Z #19 122.3 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-websecurityscanner-bom/2.29.0/google-cloud-websecurityscanner-bom-2.29.0.pom +2026-04-06T14:02:40.9972141Z #19 122.4 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-websecurityscanner-bom/2.29.0/google-cloud-websecurityscanner-bom-2.29.0.pom +2026-04-06T14:02:41.1132550Z #19 122.5 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-websecurityscanner-bom/2.29.0/google-cloud-websecurityscanner-bom-2.29.0.pom +2026-04-06T14:02:41.2449266Z #19 122.6 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-websecurityscanner-bom/2.29.0/google-cloud-websecurityscanner-bom-2.29.0.pom (2.9 kB at 22 kB/s) +2026-04-06T14:02:41.3571276Z #19 122.7 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-workflow-executions-bom/2.29.0/google-cloud-workflow-executions-bom-2.29.0.pom +2026-04-06T14:02:41.3572021Z #19 122.8 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-workflow-executions-bom/2.29.0/google-cloud-workflow-executions-bom-2.29.0.pom +2026-04-06T14:02:41.4672375Z #19 122.9 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-workflow-executions-bom/2.29.0/google-cloud-workflow-executions-bom-2.29.0.pom +2026-04-06T14:02:41.5763439Z #19 123.0 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-workflow-executions-bom/2.29.0/google-cloud-workflow-executions-bom-2.29.0.pom +2026-04-06T14:02:41.7057598Z #19 123.1 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-workflow-executions-bom/2.29.0/google-cloud-workflow-executions-bom-2.29.0.pom (2.4 kB at 19 kB/s) +2026-04-06T14:02:41.8196421Z #19 123.1 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-workflows-bom/2.29.0/google-cloud-workflows-bom-2.29.0.pom +2026-04-06T14:02:41.8197507Z #19 123.2 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-workflows-bom/2.29.0/google-cloud-workflows-bom-2.29.0.pom +2026-04-06T14:02:41.9360333Z #19 123.3 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-workflows-bom/2.29.0/google-cloud-workflows-bom-2.29.0.pom +2026-04-06T14:02:42.0445216Z #19 123.4 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-workflows-bom/2.29.0/google-cloud-workflows-bom-2.29.0.pom +2026-04-06T14:02:42.1738675Z #19 123.6 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-workflows-bom/2.29.0/google-cloud-workflows-bom-2.29.0.pom (2.3 kB at 18 kB/s) +2026-04-06T14:02:42.2832724Z #19 123.6 [INFO] Downloading from repo.gradle.org: https://repo.gradle.org/gradle/libs-releases-local/com/google/cloud/google-cloud-workstations-bom/0.17.0/google-cloud-workstations-bom-0.17.0.pom +2026-04-06T14:02:42.2833835Z #19 123.7 [INFO] Downloading from redshift: https://s3.amazonaws.com/redshift-maven-repository/release/com/google/cloud/google-cloud-workstations-bom/0.17.0/google-cloud-workstations-bom-0.17.0.pom +2026-04-06T14:02:42.3940228Z #19 123.8 [INFO] Downloading from flyway-community-db-support: https://maven.pkg.github.com/flyway/flyway-community-db-support/com/google/cloud/google-cloud-workstations-bom/0.17.0/google-cloud-workstations-bom-0.17.0.pom +2026-04-06T14:02:42.5233555Z #19 123.9 [INFO] Downloading from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-workstations-bom/0.17.0/google-cloud-workstations-bom-0.17.0.pom +2026-04-06T14:02:42.6524956Z #19 124.1 [INFO] Downloaded from google-maven-central-copy: https://maven-central.storage-download.googleapis.com/maven2/com/google/cloud/google-cloud-workstations-bom/0.17.0/google-cloud-workstations-bom-0.17.0.pom (2.3 kB at 18 kB/s) +2026-04-06T14:02:42.7749881Z #19 124.1 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-bigquerystorage-bom/2.44.1/google-cloud-bigquerystorage-bom-2.44.1.pom +2026-04-06T14:02:42.7750564Z #19 124.1 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-bigquerystorage-bom/2.44.1/google-cloud-bigquerystorage-bom-2.44.1.pom (4.4 kB at 116 kB/s) +2026-04-06T14:02:42.7750842Z #19 124.1 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-bigtable-bom/2.29.0/google-cloud-bigtable-bom-2.29.0.pom +2026-04-06T14:02:42.7751145Z #19 124.1 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-bigtable-bom/2.29.0/google-cloud-bigtable-bom-2.29.0.pom (4.8 kB at 138 kB/s) +2026-04-06T14:02:42.7751364Z #19 124.1 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-datastore-bom/2.17.4/google-cloud-datastore-bom-2.17.4.pom +2026-04-06T14:02:42.7751551Z #19 124.2 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-datastore-bom/2.17.4/google-cloud-datastore-bom-2.17.4.pom (3.0 kB at 88 kB/s) +2026-04-06T14:02:42.8903682Z #19 124.2 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-firestore-bom/3.15.2/google-cloud-firestore-bom-3.15.2.pom +2026-04-06T14:02:42.8904375Z #19 124.2 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-firestore-bom/3.15.2/google-cloud-firestore-bom-3.15.2.pom (3.8 kB at 111 kB/s) +2026-04-06T14:02:42.8904774Z #19 124.2 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-logging-bom/3.15.12/google-cloud-logging-bom-3.15.12.pom +2026-04-06T14:02:42.8905015Z #19 124.3 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-logging-bom/3.15.12/google-cloud-logging-bom-3.15.12.pom (2.7 kB at 73 kB/s) +2026-04-06T14:02:42.8905234Z #19 124.3 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-pubsub-bom/1.125.8/google-cloud-pubsub-bom-1.125.8.pom +2026-04-06T14:02:42.8905476Z #19 124.3 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-pubsub-bom/1.125.8/google-cloud-pubsub-bom-1.125.8.pom (2.7 kB at 75 kB/s) +2026-04-06T14:02:43.0073368Z #19 124.3 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-pubsublite-bom/1.12.17/google-cloud-pubsublite-bom-1.12.17.pom +2026-04-06T14:02:43.0093613Z #19 124.3 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-pubsublite-bom/1.12.17/google-cloud-pubsublite-bom-1.12.17.pom (2.7 kB at 78 kB/s) +2026-04-06T14:02:43.0093999Z #19 124.3 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-spanner-bom/6.52.1/google-cloud-spanner-bom-6.52.1.pom +2026-04-06T14:02:43.0094225Z #19 124.4 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-spanner-bom/6.52.1/google-cloud-spanner-bom-6.52.1.pom (4.9 kB at 132 kB/s) +2026-04-06T14:02:43.0094428Z #19 124.4 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-shared-config/1.5.8/google-cloud-shared-config-1.5.8.pom +2026-04-06T14:02:43.0094682Z #19 124.4 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-shared-config/1.5.8/google-cloud-shared-config-1.5.8.pom (30 kB at 823 kB/s) +2026-04-06T14:02:43.1233958Z #19 124.4 [INFO] Downloading from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-storage-bom/2.29.0/google-cloud-storage-bom-2.29.0.pom +2026-04-06T14:02:43.1234571Z #19 124.4 [INFO] Downloaded from maven-central: https://repo1.maven.org/maven2/com/google/cloud/google-cloud-storage-bom/2.29.0/google-cloud-storage-bom-2.29.0.pom (3.6 kB at 103 kB/s) +2026-04-06T14:02:43.1234848Z #19 124.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-bom/1.33.0/opentelemetry-bom-1.33.0.pom +2026-04-06T14:02:43.1235112Z #19 124.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-bom/1.33.0/opentelemetry-bom-1.33.0.pom (7.0 kB at 303 kB/s) +2026-04-06T14:02:43.1235412Z #19 124.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-monitoring/3.31.0/google-cloud-monitoring-3.31.0.pom +2026-04-06T14:02:43.1235653Z #19 124.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-monitoring/3.31.0/google-cloud-monitoring-3.31.0.pom (36 kB at 1.5 MB/s) +2026-04-06T14:02:43.1235880Z #19 124.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-cloud-monitoring-v3/3.31.0/proto-google-cloud-monitoring-v3-3.31.0.pom +2026-04-06T14:02:43.1236078Z #19 124.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-cloud-monitoring-v3/3.31.0/proto-google-cloud-monitoring-v3-3.31.0.pom (7.1 kB at 321 kB/s) +2026-04-06T14:02:43.2444514Z #19 124.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opencensus/opencensus-proto/0.2.0/opencensus-proto-0.2.0.pom +2026-04-06T14:02:43.2445843Z #19 124.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opencensus/opencensus-proto/0.2.0/opencensus-proto-0.2.0.pom (1.9 kB at 92 kB/s) +2026-04-06T14:02:43.2446757Z #19 124.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/opentelemetry/shared-resourcemapping/0.32.0/shared-resourcemapping-0.32.0.pom +2026-04-06T14:02:43.2447453Z #19 124.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/opentelemetry/shared-resourcemapping/0.32.0/shared-resourcemapping-0.32.0.pom (1.5 kB at 65 kB/s) +2026-04-06T14:02:43.2447991Z #19 124.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/contrib/opentelemetry-gcp-resources/1.37.0-alpha/opentelemetry-gcp-resources-1.37.0-alpha.pom +2026-04-06T14:02:43.2448313Z #19 124.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/contrib/opentelemetry-gcp-resources/1.37.0-alpha/opentelemetry-gcp-resources-1.37.0-alpha.pom (2.7 kB at 134 kB/s) +2026-04-06T14:02:43.2448798Z #19 124.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/opentelemetry/detector-resources-support/0.32.0/detector-resources-support-0.32.0.pom +2026-04-06T14:02:43.2449026Z #19 124.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/opentelemetry/detector-resources-support/0.32.0/detector-resources-support-0.32.0.pom (1.8 kB at 92 kB/s) +2026-04-06T14:02:43.2449395Z #19 124.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.47.0/checker-qual-3.47.0.pom +2026-04-06T14:02:43.2449632Z #19 124.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.47.0/checker-qual-3.47.0.pom (2.1 kB at 78 kB/s) +2026-04-06T14:02:43.3450493Z #19 124.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.68.0/grpc-api-1.68.0.pom +2026-04-06T14:02:43.3451195Z #19 124.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.68.0/grpc-api-1.68.0.pom (1.8 kB at 69 kB/s) +2026-04-06T14:02:43.3451443Z #19 124.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.68.0/grpc-netty-shaded-1.68.0.pom +2026-04-06T14:02:43.3451656Z #19 124.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.68.0/grpc-netty-shaded-1.68.0.pom (2.3 kB at 106 kB/s) +2026-04-06T14:02:43.3451947Z #19 124.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-util/1.68.0/grpc-util-1.68.0.pom +2026-04-06T14:02:43.3452179Z #19 124.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-util/1.68.0/grpc-util-1.68.0.pom (2.0 kB at 89 kB/s) +2026-04-06T14:02:43.3452381Z #19 124.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.68.0/grpc-stub-1.68.0.pom +2026-04-06T14:02:43.3452577Z #19 124.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.68.0/grpc-stub-1.68.0.pom (1.8 kB at 78 kB/s) +2026-04-06T14:02:43.4627672Z #19 124.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-googleapis/1.68.0/grpc-googleapis-1.68.0.pom +2026-04-06T14:02:43.4628499Z #19 124.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-googleapis/1.68.0/grpc-googleapis-1.68.0.pom (2.1 kB at 96 kB/s) +2026-04-06T14:02:43.4628799Z #19 124.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-xds/1.68.0/grpc-xds-1.68.0.pom +2026-04-06T14:02:43.4630663Z #19 124.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-xds/1.68.0/grpc-xds-1.68.0.pom (3.5 kB at 168 kB/s) +2026-04-06T14:02:43.4631369Z #19 124.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-services/1.68.0/grpc-services-1.68.0.pom +2026-04-06T14:02:43.4631771Z #19 124.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-services/1.68.0/grpc-services-1.68.0.pom (2.7 kB at 141 kB/s) +2026-04-06T14:02:43.4632039Z #19 124.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.7/re2j-1.7.pom +2026-04-06T14:02:43.4632236Z #19 124.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.7/re2j-1.7.pom (933 B at 44 kB/s) +2026-04-06T14:02:43.4632525Z #19 124.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-rls/1.68.0/grpc-rls-1.68.0.pom +2026-04-06T14:02:43.4632710Z #19 124.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-rls/1.68.0/grpc-rls-1.68.0.pom (2.3 kB at 106 kB/s) +2026-04-06T14:02:43.5653875Z #19 124.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-jdbc/2.0.2/aws-secretsmanager-jdbc-2.0.2.pom +2026-04-06T14:02:43.5654647Z #19 124.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-jdbc/2.0.2/aws-secretsmanager-jdbc-2.0.2.pom (8.1 kB at 352 kB/s) +2026-04-06T14:02:43.5654967Z #19 124.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-caching-java/2.0.0/aws-secretsmanager-caching-java-2.0.0.pom +2026-04-06T14:02:43.5655241Z #19 124.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-caching-java/2.0.0/aws-secretsmanager-caching-java-2.0.0.pom (7.7 kB at 365 kB/s) +2026-04-06T14:02:43.5655486Z #19 124.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/secretsmanager/2.20.93/secretsmanager-2.20.93.pom +2026-04-06T14:02:43.5655716Z #19 124.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/secretsmanager/2.20.93/secretsmanager-2.20.93.pom (2.4 kB at 116 kB/s) +2026-04-06T14:02:43.5655957Z #19 124.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/services/2.20.93/services-2.20.93.pom +2026-04-06T14:02:43.5656150Z #19 125.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/services/2.20.93/services-2.20.93.pom (22 kB at 981 kB/s) +2026-04-06T14:02:43.5656333Z #19 125.0 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-sdk-java-pom/2.20.93/aws-sdk-java-pom-2.20.93.pom +2026-04-06T14:02:43.6683555Z #19 125.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-sdk-java-pom/2.20.93/aws-sdk-java-pom-2.20.93.pom (77 kB at 3.7 MB/s) +2026-04-06T14:02:43.6684426Z #19 125.0 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/bom-internal/2.20.93/bom-internal-2.20.93.pom +2026-04-06T14:02:43.6684688Z #19 125.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/bom-internal/2.20.93/bom-internal-2.20.93.pom (20 kB at 1.0 MB/s) +2026-04-06T14:02:43.6684935Z #19 125.0 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-json-protocol/2.20.93/aws-json-protocol-2.20.93.pom +2026-04-06T14:02:43.6685168Z #19 125.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-json-protocol/2.20.93/aws-json-protocol-2.20.93.pom (4.4 kB at 209 kB/s) +2026-04-06T14:02:43.6685403Z #19 125.0 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/protocols/2.20.93/protocols-2.20.93.pom +2026-04-06T14:02:43.6685604Z #19 125.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/protocols/2.20.93/protocols-2.20.93.pom (1.6 kB at 58 kB/s) +2026-04-06T14:02:43.7798056Z #19 125.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/core/2.20.93/core-2.20.93.pom +2026-04-06T14:02:43.7800007Z #19 125.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/core/2.20.93/core-2.20.93.pom (2.2 kB at 111 kB/s) +2026-04-06T14:02:43.7800491Z #19 125.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-core/2.20.93/aws-core-2.20.93.pom +2026-04-06T14:02:43.7800762Z #19 125.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-core/2.20.93/aws-core-2.20.93.pom (7.4 kB at 370 kB/s) +2026-04-06T14:02:43.7801100Z #19 125.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/annotations/2.20.93/annotations-2.20.93.pom +2026-04-06T14:02:43.7801289Z #19 125.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/annotations/2.20.93/annotations-2.20.93.pom (1.7 kB at 84 kB/s) +2026-04-06T14:02:43.7801488Z #19 125.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/regions/2.20.93/regions-2.20.93.pom +2026-04-06T14:02:43.7801743Z #19 125.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/regions/2.20.93/regions-2.20.93.pom (5.5 kB at 273 kB/s) +2026-04-06T14:02:43.7802000Z #19 125.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/utils/2.20.93/utils-2.20.93.pom +2026-04-06T14:02:43.7802172Z #19 125.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/utils/2.20.93/utils-2.20.93.pom (4.9 kB at 258 kB/s) +2026-04-06T14:02:43.8944078Z #19 125.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.pom +2026-04-06T14:02:43.8944807Z #19 125.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.pom (1.2 kB at 58 kB/s) +2026-04-06T14:02:43.8945146Z #19 125.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/sdk-core/2.20.93/sdk-core-2.20.93.pom +2026-04-06T14:02:43.8946397Z #19 125.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/sdk-core/2.20.93/sdk-core-2.20.93.pom (11 kB at 577 kB/s) +2026-04-06T14:02:43.8946697Z #19 125.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-client-spi/2.20.93/http-client-spi-2.20.93.pom +2026-04-06T14:02:43.8946894Z #19 125.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-client-spi/2.20.93/http-client-spi-2.20.93.pom (3.8 kB at 191 kB/s) +2026-04-06T14:02:43.8947105Z #19 125.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/metrics-spi/2.20.93/metrics-spi-2.20.93.pom +2026-04-06T14:02:43.8947305Z #19 125.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/metrics-spi/2.20.93/metrics-spi-2.20.93.pom (3.7 kB at 193 kB/s) +2026-04-06T14:02:43.8947509Z #19 125.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/endpoints-spi/2.20.93/endpoints-spi-2.20.93.pom +2026-04-06T14:02:43.8947685Z #19 125.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/endpoints-spi/2.20.93/endpoints-spi-2.20.93.pom (2.5 kB at 111 kB/s) +2026-04-06T14:02:44.0071748Z #19 125.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/profiles/2.20.93/profiles-2.20.93.pom +2026-04-06T14:02:44.0073787Z #19 125.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/profiles/2.20.93/profiles-2.20.93.pom (2.9 kB at 146 kB/s) +2026-04-06T14:02:44.0075506Z #19 125.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/json-utils/2.20.93/json-utils-2.20.93.pom +2026-04-06T14:02:44.0076161Z #19 125.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/json-utils/2.20.93/json-utils-2.20.93.pom (3.5 kB at 174 kB/s) +2026-04-06T14:02:44.0076443Z #19 125.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/third-party-jackson-core/2.20.93/third-party-jackson-core-2.20.93.pom +2026-04-06T14:02:44.0076800Z #19 125.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/third-party-jackson-core/2.20.93/third-party-jackson-core-2.20.93.pom (4.4 kB at 220 kB/s) +2026-04-06T14:02:44.0077109Z #19 125.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/third-party/2.20.93/third-party-2.20.93.pom +2026-04-06T14:02:44.0077326Z #19 125.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/third-party/2.20.93/third-party-2.20.93.pom (2.4 kB at 127 kB/s) +2026-04-06T14:02:44.0077549Z #19 125.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/auth/2.20.93/auth-2.20.93.pom +2026-04-06T14:02:44.0077782Z #19 125.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/auth/2.20.93/auth-2.20.93.pom (6.4 kB at 307 kB/s) +2026-04-06T14:02:44.1202148Z #19 125.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/protocol-core/2.20.93/protocol-core-2.20.93.pom +2026-04-06T14:02:44.1202883Z #19 125.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/protocol-core/2.20.93/protocol-core-2.20.93.pom (3.2 kB at 170 kB/s) +2026-04-06T14:02:44.1204043Z #19 125.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/apache-client/2.20.93/apache-client-2.20.93.pom +2026-04-06T14:02:44.1204343Z #19 125.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/apache-client/2.20.93/apache-client-2.20.93.pom (4.1 kB at 204 kB/s) +2026-04-06T14:02:44.1204702Z #19 125.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-clients/2.20.93/http-clients-2.20.93.pom +2026-04-06T14:02:44.1204900Z #19 125.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-clients/2.20.93/http-clients-2.20.93.pom (1.8 kB at 89 kB/s) +2026-04-06T14:02:44.1205113Z #19 125.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/netty-nio-client/2.20.93/netty-nio-client-2.20.93.pom +2026-04-06T14:02:44.1205316Z #19 125.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/netty-nio-client/2.20.93/netty-nio-client-2.20.93.pom (8.3 kB at 345 kB/s) +2026-04-06T14:02:44.1205506Z #19 125.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.pom +2026-04-06T14:02:44.1205696Z #19 125.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.pom (3.9 kB at 204 kB/s) +2026-04-06T14:02:44.2204202Z #19 125.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.86.Final/netty-parent-4.1.86.Final.pom +2026-04-06T14:02:44.2229689Z #19 125.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.86.Final/netty-parent-4.1.86.Final.pom (80 kB at 3.5 MB/s) +2026-04-06T14:02:44.2230266Z #19 125.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.pom +2026-04-06T14:02:44.2230461Z #19 125.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.pom (12 kB at 514 kB/s) +2026-04-06T14:02:44.2230711Z #19 125.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.pom +2026-04-06T14:02:44.2230897Z #19 125.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.pom (1.6 kB at 79 kB/s) +2026-04-06T14:02:44.2231066Z #19 125.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.pom +2026-04-06T14:02:44.2231253Z #19 125.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.pom (2.2 kB at 108 kB/s) +2026-04-06T14:02:44.2231446Z #19 125.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.pom +2026-04-06T14:02:44.3214557Z #19 125.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.pom (1.6 kB at 63 kB/s) +2026-04-06T14:02:44.3215135Z #19 125.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.pom +2026-04-06T14:02:44.3215347Z #19 125.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.pom (5.0 kB at 248 kB/s) +2026-04-06T14:02:44.3215592Z #19 125.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.pom +2026-04-06T14:02:44.3215797Z #19 125.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.pom (4.5 kB at 235 kB/s) +2026-04-06T14:02:44.3215996Z #19 125.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.pom +2026-04-06T14:02:44.3216210Z #19 125.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.pom (29 kB at 1.4 MB/s) +2026-04-06T14:02:44.3216423Z #19 125.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.pom +2026-04-06T14:02:44.4231565Z #19 125.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.pom (4.1 kB at 153 kB/s) +2026-04-06T14:02:44.4232244Z #19 125.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.86.Final/netty-transport-classes-epoll-4.1.86.Final.pom +2026-04-06T14:02:44.4232465Z #19 125.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.86.Final/netty-transport-classes-epoll-4.1.86.Final.pom (2.1 kB at 107 kB/s) +2026-04-06T14:02:44.4232705Z #19 125.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/spotbugs/spotbugs-annotations/4.7.3/spotbugs-annotations-4.7.3.pom +2026-04-06T14:02:44.4232890Z #19 125.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/spotbugs/spotbugs-annotations/4.7.3/spotbugs-annotations-4.7.3.pom (3.5 kB at 165 kB/s) +2026-04-06T14:02:44.4233114Z #19 125.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/jdbc/ojdbc8/19.6.0.0/ojdbc8-19.6.0.0.pom +2026-04-06T14:02:44.5363979Z #19 125.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/jdbc/ojdbc8/19.6.0.0/ojdbc8-19.6.0.0.pom (3.3 kB at 139 kB/s) +2026-04-06T14:02:44.5364694Z #19 125.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/jdbc/ucp/19.6.0.0/ucp-19.6.0.0.pom +2026-04-06T14:02:44.5364931Z #19 125.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/jdbc/ucp/19.6.0.0/ucp-19.6.0.0.pom (1.3 kB at 65 kB/s) +2026-04-06T14:02:44.5365119Z #19 125.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/security/oraclepki/19.6.0.0/oraclepki-19.6.0.0.pom +2026-04-06T14:02:44.5365377Z #19 125.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/security/oraclepki/19.6.0.0/oraclepki-19.6.0.0.pom (1.3 kB at 66 kB/s) +2026-04-06T14:02:44.5365575Z #19 125.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/security/osdt_cert/19.6.0.0/osdt_cert-19.6.0.0.pom +2026-04-06T14:02:44.5365794Z #19 125.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/security/osdt_cert/19.6.0.0/osdt_cert-19.6.0.0.pom (1.3 kB at 63 kB/s) +2026-04-06T14:02:44.5365991Z #19 125.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/security/osdt_core/19.6.0.0/osdt_core-19.6.0.0.pom +2026-04-06T14:02:44.5366169Z #19 125.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/security/osdt_core/19.6.0.0/osdt_core-19.6.0.0.pom (1.3 kB at 66 kB/s) +2026-04-06T14:02:44.5366366Z #19 125.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/ha/simplefan/19.6.0.0/simplefan-19.6.0.0.pom +2026-04-06T14:02:44.6382565Z #19 125.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/ha/simplefan/19.6.0.0/simplefan-19.6.0.0.pom (1.5 kB at 77 kB/s) +2026-04-06T14:02:44.6383199Z #19 125.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/ha/ons/19.6.0.0/ons-19.6.0.0.pom +2026-04-06T14:02:44.6383462Z #19 126.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/ha/ons/19.6.0.0/ons-19.6.0.0.pom (1.3 kB at 57 kB/s) +2026-04-06T14:02:44.6383703Z #19 126.0 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom +2026-04-06T14:02:44.6383902Z #19 126.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom (21 kB at 1.1 MB/s) +2026-04-06T14:02:44.6384082Z #19 126.0 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom +2026-04-06T14:02:44.6384258Z #19 126.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom (82 kB at 3.4 MB/s) +2026-04-06T14:02:44.6384459Z #19 126.0 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1.jar +2026-04-06T14:02:44.7443953Z #19 126.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.17.1/log4j-api-2.17.1.jar (302 kB at 11 MB/s) +2026-04-06T14:02:44.7444716Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-vfs/3.2.15.Final/jboss-vfs-3.2.15.Final.jar +2026-04-06T14:02:44.7444947Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.1.4.GA/jboss-logging-3.1.4.GA.jar +2026-04-06T14:02:44.7445127Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/s3/2.25.26/s3-2.25.26.jar +2026-04-06T14:02:44.7445317Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-xml-protocol/2.25.26/aws-xml-protocol-2.25.26.jar +2026-04-06T14:02:44.7445546Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-query-protocol/2.25.26/aws-query-protocol-2.25.26.jar +2026-04-06T14:02:44.7447277Z #19 126.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-vfs/3.2.15.Final/jboss-vfs-3.2.15.Final.jar (145 kB at 6.3 MB/s) +2026-04-06T14:02:44.7447590Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/protocol-core/2.25.26/protocol-core-2.25.26.jar +2026-04-06T14:02:44.7448052Z #19 126.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-xml-protocol/2.25.26/aws-xml-protocol-2.25.26.jar (101 kB at 4.0 MB/s) +2026-04-06T14:02:44.7448320Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/arns/2.25.26/arns-2.25.26.jar +2026-04-06T14:02:44.7448622Z #19 126.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-query-protocol/2.25.26/aws-query-protocol-2.25.26.jar (68 kB at 2.5 MB/s) +2026-04-06T14:02:44.7448878Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/profiles/2.25.26/profiles-2.25.26.jar +2026-04-06T14:02:44.7449073Z #19 126.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.1.4.GA/jboss-logging-3.1.4.GA.jar (57 kB at 1.1 MB/s) +2026-04-06T14:02:44.7449244Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/crt-core/2.25.26/crt-core-2.25.26.jar +2026-04-06T14:02:44.7449568Z #19 126.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/protocol-core/2.25.26/protocol-core-2.25.26.jar (35 kB at 651 kB/s) +2026-04-06T14:02:44.7449758Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-auth/2.25.26/http-auth-2.25.26.jar +2026-04-06T14:02:44.7449936Z #19 126.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/arns/2.25.26/arns-2.25.26.jar (16 kB at 259 kB/s) +2026-04-06T14:02:44.7450378Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/identity-spi/2.25.26/identity-spi-2.25.26.jar +2026-04-06T14:02:44.7450601Z #19 126.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/profiles/2.25.26/profiles-2.25.26.jar (49 kB at 739 kB/s) +2026-04-06T14:02:44.7450866Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-auth-spi/2.25.26/http-auth-spi-2.25.26.jar +2026-04-06T14:02:44.7451049Z #19 126.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/s3/2.25.26/s3-2.25.26.jar (3.6 MB at 46 MB/s) +2026-04-06T14:02:44.8509250Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar +2026-04-06T14:02:44.8509913Z #19 126.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-auth/2.25.26/http-auth-2.25.26.jar (17 kB at 224 kB/s) +2026-04-06T14:02:44.8510232Z #19 126.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-auth-aws/2.25.26/http-auth-aws-2.25.26.jar +2026-04-06T14:02:44.8510450Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/crt-core/2.25.26/crt-core-2.25.26.jar (18 kB at 219 kB/s) +2026-04-06T14:02:44.8510662Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/checksums/2.25.26/checksums-2.25.26.jar +2026-04-06T14:02:44.8510855Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/identity-spi/2.25.26/identity-spi-2.25.26.jar (30 kB at 367 kB/s) +2026-04-06T14:02:44.8511112Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/checksums-spi/2.25.26/checksums-spi-2.25.26.jar +2026-04-06T14:02:44.8511311Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-auth-spi/2.25.26/http-auth-spi-2.25.26.jar (44 kB at 473 kB/s) +2026-04-06T14:02:44.8511503Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/sdk-core/2.25.26/sdk-core-2.25.26.jar +2026-04-06T14:02:44.8511676Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-auth-aws/2.25.26/http-auth-aws-2.25.26.jar (211 kB at 2.1 MB/s) +2026-04-06T14:02:44.8511863Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/auth/2.25.26/auth-2.25.26.jar +2026-04-06T14:02:44.8512039Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar (12 kB at 113 kB/s) +2026-04-06T14:02:44.8512237Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar +2026-04-06T14:02:44.8512407Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/checksums-spi/2.25.26/checksums-spi-2.25.26.jar (8.0 kB at 77 kB/s) +2026-04-06T14:02:44.8512588Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-client-spi/2.25.26/http-client-spi-2.25.26.jar +2026-04-06T14:02:44.8512783Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/checksums/2.25.26/checksums-2.25.26.jar (9.3 kB at 86 kB/s) +2026-04-06T14:02:44.8512971Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/regions/2.25.26/regions-2.25.26.jar +2026-04-06T14:02:44.8513147Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/auth/2.25.26/auth-2.25.26.jar (231 kB at 1.8 MB/s) +2026-04-06T14:02:44.8513320Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/annotations/2.25.26/annotations-2.25.26.jar +2026-04-06T14:02:44.8513505Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/http-client-spi/2.25.26/http-client-spi-2.25.26.jar (84 kB at 647 kB/s) +2026-04-06T14:02:44.8513709Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/utils/2.25.26/utils-2.25.26.jar +2026-04-06T14:02:44.8513888Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/sdk-core/2.25.26/sdk-core-2.25.26.jar (897 kB at 6.4 MB/s) +2026-04-06T14:02:44.8514092Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-core/2.25.26/aws-core-2.25.26.jar +2026-04-06T14:02:44.8514267Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar (30 kB at 214 kB/s) +2026-04-06T14:02:44.8514444Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/metrics-spi/2.25.26/metrics-spi-2.25.26.jar +2026-04-06T14:02:44.8514615Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/annotations/2.25.26/annotations-2.25.26.jar (14 kB at 94 kB/s) +2026-04-06T14:02:44.8514925Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/json-utils/2.25.26/json-utils-2.25.26.jar +2026-04-06T14:02:44.8515099Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/regions/2.25.26/regions-2.25.26.jar (859 kB at 5.8 MB/s) +2026-04-06T14:02:44.8515271Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/third-party-jackson-core/2.25.26/third-party-jackson-core-2.25.26.jar +2026-04-06T14:02:44.8515457Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/utils/2.25.26/utils-2.25.26.jar (218 kB at 1.4 MB/s) +2026-04-06T14:02:44.8515650Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/endpoints-spi/2.25.26/endpoints-spi-2.25.26.jar +2026-04-06T14:02:44.8515826Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/json-utils/2.25.26/json-utils-2.25.26.jar (31 kB at 185 kB/s) +2026-04-06T14:02:44.8515999Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/apache-client/2.25.26/apache-client-2.25.26.jar +2026-04-06T14:02:44.8516192Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-core/2.25.26/aws-core-2.25.26.jar (162 kB at 950 kB/s) +2026-04-06T14:02:44.8516424Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar +2026-04-06T14:02:44.8516625Z #19 126.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/metrics-spi/2.25.26/metrics-spi-2.25.26.jar (27 kB at 160 kB/s) +2026-04-06T14:02:44.8516796Z #19 126.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/netty-nio-client/2.25.26/netty-nio-client-2.25.26.jar +2026-04-06T14:02:44.8516984Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/third-party-jackson-core/2.25.26/third-party-jackson-core-2.25.26.jar (535 kB at 2.9 MB/s) +2026-04-06T14:02:44.9542135Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.108.Final/netty-codec-http-4.1.108.Final.jar +2026-04-06T14:02:44.9542853Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/endpoints-spi/2.25.26/endpoints-spi-2.25.26.jar (13 kB at 72 kB/s) +2026-04-06T14:02:44.9543251Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.108.Final/netty-codec-http2-4.1.108.Final.jar +2026-04-06T14:02:44.9543475Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/apache-client/2.25.26/apache-client-2.25.26.jar (75 kB at 400 kB/s) +2026-04-06T14:02:44.9543684Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.108.Final/netty-codec-4.1.108.Final.jar +2026-04-06T14:02:44.9543890Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar (329 kB at 1.7 MB/s) +2026-04-06T14:02:44.9544106Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.108.Final/netty-transport-4.1.108.Final.jar +2026-04-06T14:02:44.9544296Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/netty-nio-client/2.25.26/netty-nio-client-2.25.26.jar (288 kB at 1.4 MB/s) +2026-04-06T14:02:44.9544511Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.108.Final/netty-common-4.1.108.Final.jar +2026-04-06T14:02:44.9544700Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.108.Final/netty-codec-http2-4.1.108.Final.jar (490 kB at 2.2 MB/s) +2026-04-06T14:02:44.9544903Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.108.Final/netty-buffer-4.1.108.Final.jar +2026-04-06T14:02:44.9545096Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.108.Final/netty-codec-4.1.108.Final.jar (351 kB at 1.6 MB/s) +2026-04-06T14:02:44.9545302Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.108.Final/netty-handler-4.1.108.Final.jar +2026-04-06T14:02:44.9545486Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.108.Final/netty-codec-http-4.1.108.Final.jar (668 kB at 2.9 MB/s) +2026-04-06T14:02:44.9545681Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.108.Final/netty-transport-native-unix-common-4.1.108.Final.jar +2026-04-06T14:02:44.9545881Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.108.Final/netty-transport-4.1.108.Final.jar (497 kB at 2.1 MB/s) +2026-04-06T14:02:44.9546077Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.108.Final/netty-transport-classes-epoll-4.1.108.Final.jar +2026-04-06T14:02:44.9546278Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.108.Final/netty-common-4.1.108.Final.jar (661 kB at 2.7 MB/s) +2026-04-06T14:02:44.9546751Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.108.Final/netty-resolver-4.1.108.Final.jar +2026-04-06T14:02:44.9546989Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.108.Final/netty-buffer-4.1.108.Final.jar (308 kB at 1.2 MB/s) +2026-04-06T14:02:44.9547546Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-storage/2.43.1/google-cloud-storage-2.43.1.jar +2026-04-06T14:02:44.9547774Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.108.Final/netty-handler-4.1.108.Final.jar (569 kB at 2.3 MB/s) +2026-04-06T14:02:44.9547998Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/33.3.0-jre/guava-33.3.0-jre.jar +2026-04-06T14:02:44.9548210Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.108.Final/netty-transport-native-unix-common-4.1.108.Final.jar (44 kB at 173 kB/s) +2026-04-06T14:02:44.9548407Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.jar +2026-04-06T14:02:44.9548621Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.108.Final/netty-transport-classes-epoll-4.1.108.Final.jar (147 kB at 565 kB/s) +2026-04-06T14:02:44.9548826Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar +2026-04-06T14:02:44.9551282Z #19 126.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.108.Final/netty-resolver-4.1.108.Final.jar (38 kB at 141 kB/s) +2026-04-06T14:02:44.9551575Z #19 126.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.32.0/error_prone_annotations-2.32.0.jar +2026-04-06T14:02:44.9551745Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.jar (4.7 kB at 17 kB/s) +2026-04-06T14:02:44.9551961Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.jar +2026-04-06T14:02:45.0594987Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (2.2 kB at 7.6 kB/s) +2026-04-06T14:02:45.0605778Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client/1.45.0/google-http-client-1.45.0.jar +2026-04-06T14:02:45.0606080Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.32.0/error_prone_annotations-2.32.0.jar (19 kB at 65 kB/s) +2026-04-06T14:02:45.0606428Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.68.0/grpc-context-1.68.0.jar +2026-04-06T14:02:45.0606600Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-storage/2.43.1/google-cloud-storage-2.43.1.jar (1.1 MB at 3.5 MB/s) +2026-04-06T14:02:45.0606812Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar +2026-04-06T14:02:45.0607010Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.jar (12 kB at 39 kB/s) +2026-04-06T14:02:45.0607188Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-jackson2/1.45.0/google-http-client-jackson2-1.45.0.jar +2026-04-06T14:02:45.0607472Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client/1.45.0/google-http-client-1.45.0.jar (296 kB at 904 kB/s) +2026-04-06T14:02:45.0607664Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-gson/1.45.0/google-http-client-gson-1.45.0.jar +2026-04-06T14:02:45.0607843Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/33.3.0-jre/guava-33.3.0-jre.jar (3.1 MB at 9.4 MB/s) +2026-04-06T14:02:45.0608032Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.68.0/grpc-context-1.68.0.jar (293 B at 887 B/s) +2026-04-06T14:02:45.0608206Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api-client/google-api-client/2.7.0/google-api-client-2.7.0.jar +2026-04-06T14:02:45.0608396Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar +2026-04-06T14:02:45.0608597Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar (23 kB at 69 kB/s) +2026-04-06T14:02:45.0608805Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/oauth-client/google-oauth-client/1.36.0/google-oauth-client-1.36.0.jar +2026-04-06T14:02:45.0608993Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar (373 kB at 1.1 MB/s) +2026-04-06T14:02:45.0609175Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-apache-v2/1.45.0/google-http-client-apache-v2-1.45.0.jar +2026-04-06T14:02:45.0609395Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-gson/1.45.0/google-http-client-gson-1.45.0.jar (13 kB at 36 kB/s) +2026-04-06T14:02:45.0609576Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/apis/google-api-services-storage/v1-rev20240819-2.0.0/google-api-services-storage-v1-rev20240819-2.0.0.jar +2026-04-06T14:02:45.0609779Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-jackson2/1.45.0/google-http-client-jackson2-1.45.0.jar (9.7 kB at 27 kB/s) +2026-04-06T14:02:45.0609969Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar +2026-04-06T14:02:45.0610153Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/oauth-client/google-oauth-client/1.36.0/google-oauth-client-1.36.0.jar (82 kB at 226 kB/s) +2026-04-06T14:02:45.0610342Z #19 126.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api-client/google-api-client/2.7.0/google-api-client-2.7.0.jar (302 kB at 836 kB/s) +2026-04-06T14:02:45.0610521Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/auto/value/auto-value-annotations/1.11.0/auto-value-annotations-1.11.0.jar +2026-04-06T14:02:45.0610710Z #19 126.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core/2.44.1/google-cloud-core-2.44.1.jar +2026-04-06T14:02:45.0610905Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-apache-v2/1.45.0/google-http-client-apache-v2-1.45.0.jar (12 kB at 31 kB/s) +2026-04-06T14:02:45.0611105Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-http/2.44.1/google-cloud-core-http-2.44.1.jar +2026-04-06T14:02:45.0611280Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/apis/google-api-services-storage/v1-rev20240819-2.0.0/google-api-services-storage-v1-rev20240819-2.0.0.jar (249 kB at 653 kB/s) +2026-04-06T14:02:45.0611496Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-appengine/1.45.0/google-http-client-appengine-1.45.0.jar +2026-04-06T14:02:45.0611697Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/auto/value/auto-value-annotations/1.11.0/auto-value-annotations-1.11.0.jar (7.5 kB at 19 kB/s) +2026-04-06T14:02:45.0611891Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/gax-httpjson/2.54.1/gax-httpjson-2.54.1.jar +2026-04-06T14:02:45.1665474Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar (283 kB at 723 kB/s) +2026-04-06T14:02:45.1666168Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-grpc/2.44.1/google-cloud-core-grpc-2.44.1.jar +2026-04-06T14:02:45.1666519Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core/2.44.1/google-cloud-core-2.44.1.jar (139 kB at 355 kB/s) +2026-04-06T14:02:45.1666813Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/gax/2.54.1/gax-2.54.1.jar +2026-04-06T14:02:45.1667028Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-appengine/1.45.0/google-http-client-appengine-1.45.0.jar (19 kB at 46 kB/s) +2026-04-06T14:02:45.1667256Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/gax-grpc/2.54.1/gax-grpc-2.54.1.jar +2026-04-06T14:02:45.1667480Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-http/2.44.1/google-cloud-core-http-2.44.1.jar (16 kB at 39 kB/s) +2026-04-06T14:02:45.1667721Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-inprocess/1.68.0/grpc-inprocess-1.68.0.jar +2026-04-06T14:02:45.1667918Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/gax-httpjson/2.54.1/gax-httpjson-2.54.1.jar (161 kB at 388 kB/s) +2026-04-06T14:02:45.1668123Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-alts/1.68.0/grpc-alts-1.68.0.jar +2026-04-06T14:02:45.1668298Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-grpc/2.44.1/google-cloud-core-grpc-2.44.1.jar (17 kB at 40 kB/s) +2026-04-06T14:02:45.1668531Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-grpclb/1.68.0/grpc-grpclb-1.68.0.jar +2026-04-06T14:02:45.1668726Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/gax/2.54.1/gax-2.54.1.jar (413 kB at 972 kB/s) +2026-04-06T14:02:45.1669302Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar +2026-04-06T14:02:45.1669591Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/gax-grpc/2.54.1/gax-grpc-2.54.1.jar (148 kB at 346 kB/s) +2026-04-06T14:02:45.1669836Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-auth/1.68.0/grpc-auth-1.68.0.jar +2026-04-06T14:02:45.1670066Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-inprocess/1.68.0/grpc-inprocess-1.68.0.jar (39 kB at 92 kB/s) +2026-04-06T14:02:45.1670245Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-credentials/1.27.0/google-auth-library-credentials-1.27.0.jar +2026-04-06T14:02:45.1670508Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-alts/1.68.0/grpc-alts-1.68.0.jar (320 kB at 722 kB/s) +2026-04-06T14:02:45.1670772Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-oauth2-http/1.27.0/google-auth-library-oauth2-http-1.27.0.jar +2026-04-06T14:02:45.1671003Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-grpclb/1.68.0/grpc-grpclb-1.68.0.jar (177 kB at 398 kB/s) +2026-04-06T14:02:45.1671186Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/api-common/2.37.1/api-common-2.37.1.jar +2026-04-06T14:02:45.1671382Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-auth/1.68.0/grpc-auth-1.68.0.jar (15 kB at 33 kB/s) +2026-04-06T14:02:45.1671578Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar +2026-04-06T14:02:45.1671767Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-credentials/1.27.0/google-auth-library-credentials-1.27.0.jar (7.4 kB at 16 kB/s) +2026-04-06T14:02:45.1671996Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar +2026-04-06T14:02:45.1672178Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/api-common/2.37.1/api-common-2.37.1.jar (50 kB at 108 kB/s) +2026-04-06T14:02:45.1672382Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-iam-v1/1.40.1/proto-google-iam-v1-1.40.1.jar +2026-04-06T14:02:45.1672596Z #19 126.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar (27 kB at 56 kB/s) +2026-04-06T14:02:45.1672808Z #19 126.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.jar +2026-04-06T14:02:45.1673032Z #19 126.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-oauth2-http/1.27.0/google-auth-library-oauth2-http-1.27.0.jar (276 kB at 578 kB/s) +2026-04-06T14:02:45.1673252Z #19 126.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.jar +2026-04-06T14:02:45.1673433Z #19 126.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar (355 kB at 719 kB/s) +2026-04-06T14:02:45.1673624Z #19 126.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.68.0/grpc-core-1.68.0.jar +2026-04-06T14:02:45.2686676Z #19 126.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-iam-v1/1.40.1/proto-google-iam-v1-1.40.1.jar (174 kB at 346 kB/s) +2026-04-06T14:02:45.2687424Z #19 126.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar +2026-04-06T14:02:45.2687708Z #19 126.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.jar (73 kB at 141 kB/s) +2026-04-06T14:02:45.2687929Z #19 126.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.jar +2026-04-06T14:02:45.2688135Z #19 126.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar (4.5 MB at 8.5 MB/s) +2026-04-06T14:02:45.2688343Z #19 126.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.jar +2026-04-06T14:02:45.2688529Z #19 126.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.68.0/grpc-core-1.68.0.jar (641 kB at 1.2 MB/s) +2026-04-06T14:02:45.2688704Z #19 126.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.68.0/grpc-protobuf-1.68.0.jar +2026-04-06T14:02:45.2688903Z #19 126.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar (3.1 kB at 5.7 kB/s) +2026-04-06T14:02:45.2689149Z #19 126.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.68.0/grpc-protobuf-lite-1.68.0.jar +2026-04-06T14:02:45.2689341Z #19 126.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.jar (3.1 kB at 5.7 kB/s) +2026-04-06T14:02:45.2689534Z #19 126.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.45.1/proto-google-common-protos-2.45.1.jar +2026-04-06T14:02:45.2689700Z #19 126.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.jar (1.9 MB at 3.4 MB/s) +2026-04-06T14:02:45.2689871Z #19 126.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/threeten/threetenbp/1.7.0/threetenbp-1.7.0.jar +2026-04-06T14:02:45.2690066Z #19 126.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.jar (7.0 kB at 12 kB/s) +2026-04-06T14:02:45.2690249Z #19 126.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-cloud-storage-v2/2.43.1-beta/proto-google-cloud-storage-v2-2.43.1-beta.jar +2026-04-06T14:02:45.2690433Z #19 126.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.68.0/grpc-protobuf-lite-1.68.0.jar (7.9 kB at 14 kB/s) +2026-04-06T14:02:45.2690729Z #19 126.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/grpc-google-cloud-storage-v2/2.43.1-beta/grpc-google-cloud-storage-v2-2.43.1-beta.jar +2026-04-06T14:02:45.2690941Z #19 126.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.68.0/grpc-protobuf-1.68.0.jar (5.3 kB at 9.4 kB/s) +2026-04-06T14:02:45.2691127Z #19 126.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/gapic-google-cloud-storage-v2/2.43.1-beta/gapic-google-cloud-storage-v2-2.43.1-beta.jar +2026-04-06T14:02:45.2691321Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/grpc-google-cloud-storage-v2/2.43.1-beta/grpc-google-cloud-storage-v2-2.43.1-beta.jar (32 kB at 55 kB/s) +2026-04-06T14:02:45.2691539Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk/1.42.1/opentelemetry-sdk-1.42.1.jar +2026-04-06T14:02:45.2691709Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/threeten/threetenbp/1.7.0/threetenbp-1.7.0.jar (515 kB at 862 kB/s) +2026-04-06T14:02:45.2691884Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-trace/1.42.1/opentelemetry-sdk-trace-1.42.1.jar +2026-04-06T14:02:45.3745213Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/gapic-google-cloud-storage-v2/2.43.1-beta/gapic-google-cloud-storage-v2-2.43.1-beta.jar (73 kB at 121 kB/s) +2026-04-06T14:02:45.3745819Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.42.1/opentelemetry-sdk-logs-1.42.1.jar +2026-04-06T14:02:45.3746156Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-cloud-storage-v2/2.43.1-beta/proto-google-cloud-storage-v2-2.43.1-beta.jar (1.0 MB at 1.7 MB/s) +2026-04-06T14:02:45.3746366Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-opentelemetry/1.68.0/grpc-opentelemetry-1.68.0.jar +2026-04-06T14:02:45.3746573Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk/1.42.1/opentelemetry-sdk-1.42.1.jar (6.8 kB at 11 kB/s) +2026-04-06T14:02:45.3746757Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api/1.42.1/opentelemetry-api-1.42.1.jar +2026-04-06T14:02:45.3746936Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-trace/1.42.1/opentelemetry-sdk-trace-1.42.1.jar (130 kB at 207 kB/s) +2026-04-06T14:02:45.3747140Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-context/1.42.1/opentelemetry-context-1.42.1.jar +2026-04-06T14:02:45.3747322Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.45.1/proto-google-common-protos-2.45.1.jar (2.7 MB at 4.2 MB/s) +2026-04-06T14:02:45.3747534Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.42.1/opentelemetry-sdk-metrics-1.42.1.jar +2026-04-06T14:02:45.3747720Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.42.1/opentelemetry-sdk-logs-1.42.1.jar (54 kB at 85 kB/s) +2026-04-06T14:02:45.3747895Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api-incubator/1.42.1-alpha/opentelemetry-api-incubator-1.42.1-alpha.jar +2026-04-06T14:02:45.3748074Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api/1.42.1/opentelemetry-api-1.42.1.jar (157 kB at 246 kB/s) +2026-04-06T14:02:45.3748258Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.42.1/opentelemetry-sdk-common-1.42.1.jar +2026-04-06T14:02:45.3748450Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-opentelemetry/1.68.0/grpc-opentelemetry-1.68.0.jar (65 kB at 101 kB/s) +2026-04-06T14:02:45.3748664Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.42.1/opentelemetry-sdk-extension-autoconfigure-spi-1.42.1.jar +2026-04-06T14:02:45.3748862Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-context/1.42.1/opentelemetry-context-1.42.1.jar (47 kB at 73 kB/s) +2026-04-06T14:02:45.3749296Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/semconv/opentelemetry-semconv/1.25.0-alpha/opentelemetry-semconv-1.25.0-alpha.jar +2026-04-06T14:02:45.3749553Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api-incubator/1.42.1-alpha/opentelemetry-api-incubator-1.42.1-alpha.jar (64 kB at 97 kB/s) +2026-04-06T14:02:45.3749768Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/opentelemetry/exporter-metrics/0.31.0/exporter-metrics-0.31.0.jar +2026-04-06T14:02:45.3750132Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.42.1/opentelemetry-sdk-common-1.42.1.jar (55 kB at 82 kB/s) +2026-04-06T14:02:45.3750350Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-monitoring/3.31.0/google-cloud-monitoring-3.31.0.jar +2026-04-06T14:02:45.3750550Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.42.1/opentelemetry-sdk-metrics-1.42.1.jar (310 kB at 466 kB/s) +2026-04-06T14:02:45.3750772Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-cloud-monitoring-v3/3.31.0/proto-google-cloud-monitoring-v3-3.31.0.jar +2026-04-06T14:02:45.3750964Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/semconv/opentelemetry-semconv/1.25.0-alpha/opentelemetry-semconv-1.25.0-alpha.jar (75 kB at 111 kB/s) +2026-04-06T14:02:45.3751167Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opencensus/opencensus-proto/0.2.0/opencensus-proto-0.2.0.jar +2026-04-06T14:02:45.3751374Z #19 126.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.42.1/opentelemetry-sdk-extension-autoconfigure-spi-1.42.1.jar (19 kB at 29 kB/s) +2026-04-06T14:02:45.3751582Z #19 126.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/opentelemetry/shared-resourcemapping/0.32.0/shared-resourcemapping-0.32.0.jar +2026-04-06T14:02:45.3751805Z #19 126.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-monitoring/3.31.0/google-cloud-monitoring-3.31.0.jar (258 kB at 377 kB/s) +2026-04-06T14:02:45.3751986Z #19 126.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/contrib/opentelemetry-gcp-resources/1.37.0-alpha/opentelemetry-gcp-resources-1.37.0-alpha.jar +2026-04-06T14:02:45.3752176Z #19 126.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/opentelemetry/exporter-metrics/0.31.0/exporter-metrics-0.31.0.jar (40 kB at 58 kB/s) +2026-04-06T14:02:45.3752395Z #19 126.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/cloud/opentelemetry/detector-resources-support/0.32.0/detector-resources-support-0.32.0.jar +2026-04-06T14:02:45.3752589Z #19 126.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/opentelemetry/shared-resourcemapping/0.32.0/shared-resourcemapping-0.32.0.jar (75 kB at 107 kB/s) +2026-04-06T14:02:45.3752786Z #19 126.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.47.0/checker-qual-3.47.0.jar +2026-04-06T14:02:45.4878058Z #19 126.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/contrib/opentelemetry-gcp-resources/1.37.0-alpha/opentelemetry-gcp-resources-1.37.0-alpha.jar (8.3 kB at 12 kB/s) +2026-04-06T14:02:45.4878980Z #19 126.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.68.0/grpc-api-1.68.0.jar +2026-04-06T14:02:45.4879191Z #19 126.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opencensus/opencensus-proto/0.2.0/opencensus-proto-0.2.0.jar (750 kB at 1.1 MB/s) +2026-04-06T14:02:45.4879422Z #19 126.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.68.0/grpc-netty-shaded-1.68.0.jar +2026-04-06T14:02:45.4879619Z #19 126.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/cloud/opentelemetry/detector-resources-support/0.32.0/detector-resources-support-0.32.0.jar (18 kB at 25 kB/s) +2026-04-06T14:02:45.4879852Z #19 126.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-util/1.68.0/grpc-util-1.68.0.jar +2026-04-06T14:02:45.4880072Z #19 126.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.68.0/grpc-api-1.68.0.jar (316 kB at 431 kB/s) +2026-04-06T14:02:45.4880336Z #19 126.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.68.0/grpc-stub-1.68.0.jar +2026-04-06T14:02:45.4880557Z #19 126.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-cloud-monitoring-v3/3.31.0/proto-google-cloud-monitoring-v3-3.31.0.jar (1.9 MB at 2.6 MB/s) +2026-04-06T14:02:45.4883985Z #19 126.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-googleapis/1.68.0/grpc-googleapis-1.68.0.jar +2026-04-06T14:02:45.4884434Z #19 126.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.47.0/checker-qual-3.47.0.jar (236 kB at 319 kB/s) +2026-04-06T14:02:45.4884796Z #19 126.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-xds/1.68.0/grpc-xds-1.68.0.jar +2026-04-06T14:02:45.4885055Z #19 126.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-util/1.68.0/grpc-util-1.68.0.jar (102 kB at 137 kB/s) +2026-04-06T14:02:45.4885296Z #19 126.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-services/1.68.0/grpc-services-1.68.0.jar +2026-04-06T14:02:45.4885507Z #19 126.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.68.0/grpc-stub-1.68.0.jar (52 kB at 70 kB/s) +2026-04-06T14:02:45.4885702Z #19 126.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.7/re2j-1.7.jar +2026-04-06T14:02:45.4885988Z #19 126.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-googleapis/1.68.0/grpc-googleapis-1.68.0.jar (15 kB at 20 kB/s) +2026-04-06T14:02:45.4886208Z #19 126.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-rls/1.68.0/grpc-rls-1.68.0.jar +2026-04-06T14:02:45.4886380Z #19 126.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.7/re2j-1.7.jar (114 kB at 147 kB/s) +2026-04-06T14:02:45.4886575Z #19 126.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-jdbc/2.0.2/aws-secretsmanager-jdbc-2.0.2.jar +2026-04-06T14:02:45.4886918Z #19 126.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-services/1.68.0/grpc-services-1.68.0.jar (941 kB at 1.2 MB/s) +2026-04-06T14:02:45.4887320Z #19 126.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-caching-java/2.0.0/aws-secretsmanager-caching-java-2.0.0.jar +2026-04-06T14:02:45.4888360Z #19 126.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-jdbc/2.0.2/aws-secretsmanager-jdbc-2.0.2.jar (27 kB at 33 kB/s) +2026-04-06T14:02:45.6328496Z #19 126.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/secretsmanager/2.20.93/secretsmanager-2.20.93.jar +2026-04-06T14:02:45.6329324Z #19 126.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-rls/1.68.0/grpc-rls-1.68.0.jar (253 kB at 309 kB/s) +2026-04-06T14:02:45.6329661Z #19 126.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-json-protocol/2.20.93/aws-json-protocol-2.20.93.jar +2026-04-06T14:02:45.6329923Z #19 126.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-caching-java/2.0.0/aws-secretsmanager-caching-java-2.0.0.jar (17 kB at 20 kB/s) +2026-04-06T14:02:45.6330191Z #19 126.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/spotbugs/spotbugs-annotations/4.7.3/spotbugs-annotations-4.7.3.jar +2026-04-06T14:02:45.6330727Z #19 126.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/secretsmanager/2.20.93/secretsmanager-2.20.93.jar (733 kB at 846 kB/s) +2026-04-06T14:02:45.6331030Z #19 126.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/jdbc/ojdbc8/19.6.0.0/ojdbc8-19.6.0.0.jar +2026-04-06T14:02:45.6332075Z #19 126.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/software/amazon/awssdk/aws-json-protocol/2.20.93/aws-json-protocol-2.20.93.jar (115 kB at 131 kB/s) +2026-04-06T14:02:45.6332588Z #19 126.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/jdbc/ucp/19.6.0.0/ucp-19.6.0.0.jar +2026-04-06T14:02:45.6332796Z #19 127.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/spotbugs/spotbugs-annotations/4.7.3/spotbugs-annotations-4.7.3.jar (15 kB at 17 kB/s) +2026-04-06T14:02:45.6332983Z #19 127.0 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/security/oraclepki/19.6.0.0/oraclepki-19.6.0.0.jar +2026-04-06T14:02:45.7346578Z #19 127.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/security/oraclepki/19.6.0.0/oraclepki-19.6.0.0.jar (311 kB at 324 kB/s) +2026-04-06T14:02:45.7347256Z #19 127.0 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/security/osdt_cert/19.6.0.0/osdt_cert-19.6.0.0.jar +2026-04-06T14:02:45.7347617Z #19 127.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/jdbc/ucp/19.6.0.0/ucp-19.6.0.0.jar (1.7 MB at 1.7 MB/s) +2026-04-06T14:02:45.7347825Z #19 127.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/security/osdt_core/19.6.0.0/osdt_core-19.6.0.0.jar +2026-04-06T14:02:45.7348034Z #19 127.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/security/osdt_cert/19.6.0.0/osdt_cert-19.6.0.0.jar (210 kB at 208 kB/s) +2026-04-06T14:02:45.7348302Z #19 127.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/ha/simplefan/19.6.0.0/simplefan-19.6.0.0.jar +2026-04-06T14:02:45.7348529Z #19 127.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/security/osdt_core/19.6.0.0/osdt_core-19.6.0.0.jar (312 kB at 296 kB/s) +2026-04-06T14:02:45.7348735Z #19 127.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/oracle/database/ha/ons/19.6.0.0/ons-19.6.0.0.jar +2026-04-06T14:02:45.7352365Z #19 127.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/ha/simplefan/19.6.0.0/simplefan-19.6.0.0.jar (32 kB at 30 kB/s) +2026-04-06T14:02:45.7352858Z #19 127.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar +2026-04-06T14:02:45.8362071Z #19 127.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.68.0/grpc-netty-shaded-1.68.0.jar (9.8 MB at 9.0 MB/s) +2026-04-06T14:02:45.8362728Z #19 127.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/jdbc/ojdbc8/19.6.0.0/ojdbc8-19.6.0.0.jar (4.4 MB at 4.0 MB/s) +2026-04-06T14:02:45.8362957Z #19 127.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar (238 kB at 216 kB/s) +2026-04-06T14:02:45.8363142Z #19 127.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/oracle/database/ha/ons/19.6.0.0/ons-19.6.0.0.jar (156 kB at 141 kB/s) +2026-04-06T14:02:45.8363350Z #19 127.2 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-xds/1.68.0/grpc-xds-1.68.0.jar (9.7 MB at 8.7 MB/s) +2026-04-06T14:02:45.8363533Z #19 127.2 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/3.4.3/spring-boot-starter-actuator-3.4.3.pom +2026-04-06T14:02:45.9638007Z #19 127.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/3.4.3/spring-boot-starter-actuator-3.4.3.pom (2.8 kB at 99 kB/s) +2026-04-06T14:02:45.9638756Z #19 127.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/3.4.3/spring-boot-actuator-autoconfigure-3.4.3.pom +2026-04-06T14:02:45.9639024Z #19 127.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/3.4.3/spring-boot-actuator-autoconfigure-3.4.3.pom (2.9 kB at 100 kB/s) +2026-04-06T14:02:45.9639329Z #19 127.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/3.4.3/spring-boot-actuator-3.4.3.pom +2026-04-06T14:02:45.9639635Z #19 127.3 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/3.4.3/spring-boot-actuator-3.4.3.pom (2.0 kB at 76 kB/s) +2026-04-06T14:02:45.9639903Z #19 127.3 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-jakarta9/1.14.4/micrometer-jakarta9-1.14.4.pom +2026-04-06T14:02:45.9640220Z #19 127.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-jakarta9/1.14.4/micrometer-jakarta9-1.14.4.pom (3.8 kB at 114 kB/s) +2026-04-06T14:02:46.0652303Z #19 127.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.14.4/micrometer-core-1.14.4.pom +2026-04-06T14:02:46.0652905Z #19 127.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.14.4/micrometer-core-1.14.4.pom (11 kB at 395 kB/s) +2026-04-06T14:02:46.0653263Z #19 127.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.pom +2026-04-06T14:02:46.0653473Z #19 127.4 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.pom (13 kB at 422 kB/s) +2026-04-06T14:02:46.0653681Z #19 127.4 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom +2026-04-06T14:02:46.0653882Z #19 127.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom (7.2 kB at 259 kB/s) +2026-04-06T14:02:46.1664526Z #19 127.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/3.4.3/spring-boot-starter-actuator-3.4.3.jar +2026-04-06T14:02:46.1665310Z #19 127.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/3.4.3/spring-boot-starter-actuator-3.4.3.jar (4.8 kB at 185 kB/s) +2026-04-06T14:02:46.1665636Z #19 127.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/3.4.3/spring-boot-actuator-autoconfigure-3.4.3.jar +2026-04-06T14:02:46.1665865Z #19 127.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/3.4.3/spring-boot-actuator-3.4.3.jar +2026-04-06T14:02:46.1666091Z #19 127.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-jakarta9/1.14.4/micrometer-jakarta9-1.14.4.jar +2026-04-06T14:02:46.1666279Z #19 127.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.14.4/micrometer-core-1.14.4.jar +2026-04-06T14:02:46.1666455Z #19 127.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar +2026-04-06T14:02:46.1666638Z #19 127.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar (177 kB at 5.9 MB/s) +2026-04-06T14:02:46.1666823Z #19 127.5 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar +2026-04-06T14:02:46.1667027Z #19 127.5 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/3.4.3/spring-boot-actuator-3.4.3.jar (698 kB at 17 MB/s) +2026-04-06T14:02:46.1667216Z #19 127.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/3.4.3/spring-boot-actuator-autoconfigure-3.4.3.jar (824 kB at 15 MB/s) +2026-04-06T14:02:46.1667413Z #19 127.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.14.4/micrometer-core-1.14.4.jar (875 kB at 16 MB/s) +2026-04-06T14:02:46.1667615Z #19 127.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar (30 kB at 532 kB/s) +2026-04-06T14:02:46.1667822Z #19 127.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-jakarta9/1.14.4/micrometer-jakarta9-1.14.4.jar (33 kB at 512 kB/s) +2026-04-06T14:02:46.1668013Z #19 127.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-test/6.4.3/spring-security-test-6.4.3.pom +2026-04-06T14:02:46.2768533Z #19 127.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-test/6.4.3/spring-security-test-6.4.3.pom (2.7 kB at 99 kB/s) +2026-04-06T14:02:46.2769209Z #19 127.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-core/6.4.3/spring-security-core-6.4.3.pom +2026-04-06T14:02:46.2769418Z #19 127.6 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-core/6.4.3/spring-security-core-6.4.3.pom (3.2 kB at 124 kB/s) +2026-04-06T14:02:46.2769633Z #19 127.6 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-crypto/6.4.3/spring-security-crypto-6.4.3.pom +2026-04-06T14:02:46.2769822Z #19 127.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-crypto/6.4.3/spring-security-crypto-6.4.3.pom (1.9 kB at 78 kB/s) +2026-04-06T14:02:46.2770002Z #19 127.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-web/6.4.3/spring-security-web-6.4.3.pom +2026-04-06T14:02:46.2770177Z #19 127.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-web/6.4.3/spring-security-web-6.4.3.pom (3.2 kB at 119 kB/s) +2026-04-06T14:02:46.3784965Z #19 127.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-test/6.4.3/spring-security-test-6.4.3.jar +2026-04-06T14:02:46.3785792Z #19 127.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-test/6.4.3/spring-security-test-6.4.3.jar (132 kB at 5.1 MB/s) +2026-04-06T14:02:46.3786059Z #19 127.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-core/6.4.3/spring-security-core-6.4.3.jar +2026-04-06T14:02:46.3786248Z #19 127.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-crypto/6.4.3/spring-security-crypto-6.4.3.jar +2026-04-06T14:02:46.3786422Z #19 127.7 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-web/6.4.3/spring-security-web-6.4.3.jar +2026-04-06T14:02:46.3786614Z #19 127.7 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-crypto/6.4.3/spring-security-crypto-6.4.3.jar (101 kB at 4.2 MB/s) +2026-04-06T14:02:46.3786825Z #19 127.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-core/6.4.3/spring-security-core-6.4.3.jar (610 kB at 14 MB/s) +2026-04-06T14:02:46.3787017Z #19 127.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-web/6.4.3/spring-security-web-6.4.3.jar (997 kB at 22 MB/s) +2026-04-06T14:02:46.3787189Z #19 127.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-oauth2-resource-server/3.4.3/spring-boot-starter-oauth2-resource-server-3.4.3.pom +2026-04-06T14:02:46.3787393Z #19 127.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-oauth2-resource-server/3.4.3/spring-boot-starter-oauth2-resource-server-3.4.3.pom (3.0 kB at 142 kB/s) +2026-04-06T14:02:46.4920138Z #19 127.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-config/6.4.3/spring-security-config-6.4.3.pom +2026-04-06T14:02:46.4920743Z #19 127.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-config/6.4.3/spring-security-config-6.4.3.pom (2.8 kB at 142 kB/s) +2026-04-06T14:02:46.4920956Z #19 127.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-resource-server/6.4.3/spring-security-oauth2-resource-server-6.4.3.pom +2026-04-06T14:02:46.4921158Z #19 127.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-resource-server/6.4.3/spring-security-oauth2-resource-server-6.4.3.pom (2.7 kB at 136 kB/s) +2026-04-06T14:02:46.4921364Z #19 127.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-core/6.4.3/spring-security-oauth2-core-6.4.3.pom +2026-04-06T14:02:46.4921678Z #19 127.8 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-core/6.4.3/spring-security-oauth2-core-6.4.3.pom (2.5 kB at 118 kB/s) +2026-04-06T14:02:46.4921870Z #19 127.8 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-jose/6.4.3/spring-security-oauth2-jose-6.4.3.pom +2026-04-06T14:02:46.4922106Z #19 127.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-jose/6.4.3/spring-security-oauth2-jose-6.4.3.pom (2.7 kB at 117 kB/s) +2026-04-06T14:02:46.4922304Z #19 127.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom +2026-04-06T14:02:46.4922502Z #19 127.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.pom (13 kB at 625 kB/s) +2026-04-06T14:02:46.5966744Z #19 127.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom +2026-04-06T14:02:46.5967387Z #19 127.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom (5.4 kB at 247 kB/s) +2026-04-06T14:02:46.5967627Z #19 127.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-oauth2-resource-server/3.4.3/spring-boot-starter-oauth2-resource-server-3.4.3.jar +2026-04-06T14:02:46.5967914Z #19 127.9 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-oauth2-resource-server/3.4.3/spring-boot-starter-oauth2-resource-server-3.4.3.jar (4.8 kB at 265 kB/s) +2026-04-06T14:02:46.5968206Z #19 127.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-config/6.4.3/spring-security-config-6.4.3.jar +2026-04-06T14:02:46.5968464Z #19 127.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-resource-server/6.4.3/spring-security-oauth2-resource-server-6.4.3.jar +2026-04-06T14:02:46.5968666Z #19 127.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-core/6.4.3/spring-security-oauth2-core-6.4.3.jar +2026-04-06T14:02:46.5968984Z #19 127.9 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-jose/6.4.3/spring-security-oauth2-jose-6.4.3.jar +2026-04-06T14:02:46.5969181Z #19 128.0 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.jar +2026-04-06T14:02:46.5969379Z #19 128.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-resource-server/6.4.3/spring-security-oauth2-resource-server-6.4.3.jar (107 kB at 4.3 MB/s) +2026-04-06T14:02:46.5969587Z #19 128.0 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar +2026-04-06T14:02:46.5969778Z #19 128.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-core/6.4.3/spring-security-oauth2-core-6.4.3.jar (106 kB at 2.6 MB/s) +2026-04-06T14:02:46.5969961Z #19 128.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-jose/6.4.3/spring-security-oauth2-jose-6.4.3.jar (102 kB at 2.4 MB/s) +2026-04-06T14:02:46.5970173Z #19 128.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar (4.7 kB at 91 kB/s) +2026-04-06T14:02:46.8322179Z #19 128.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.37.3/nimbus-jose-jwt-9.37.3.jar (779 kB at 14 MB/s) +2026-04-06T14:02:46.8323053Z #19 128.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-config/6.4.3/spring-security-config-6.4.3.jar (2.0 MB at 32 MB/s) +2026-04-06T14:02:46.8323405Z #19 128.0 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-security/3.4.3/spring-boot-starter-security-3.4.3.pom +2026-04-06T14:02:46.8323750Z #19 128.0 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-security/3.4.3/spring-boot-starter-security-3.4.3.pom (2.7 kB at 133 kB/s) +2026-04-06T14:02:46.8324024Z #19 128.1 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-security/3.4.3/spring-boot-starter-security-3.4.3.jar +2026-04-06T14:02:46.8324212Z #19 128.1 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-security/3.4.3/spring-boot-starter-security-3.4.3.jar (4.7 kB at 263 kB/s) +2026-04-06T14:02:46.8324473Z #19 128.1 [INFO] Resolved plugin: jetty-servlet-9.4.46.v20220331.jar +2026-04-06T14:02:46.8324694Z #19 128.1 [INFO] Resolved plugin: spring-boot-loader-tools-3.4.3.jar +2026-04-06T14:02:46.8324886Z #19 128.1 [INFO] Resolved plugin: micrometer-observation-1.14.4.jar +2026-04-06T14:02:46.8325134Z #19 128.1 [INFO] Resolved plugin: asm-9.7.jar +2026-04-06T14:02:46.8325338Z #19 128.1 [INFO] Resolved plugin: doxia-module-twiki-1.11.1.jar +2026-04-06T14:02:46.8325500Z #19 128.1 [INFO] Resolved plugin: jdependency-2.8.0.jar +2026-04-06T14:02:46.8325669Z #19 128.1 [INFO] Resolved plugin: velocity-tools-2.0.jar +2026-04-06T14:02:46.8325866Z #19 128.1 [INFO] Resolved plugin: plexus-java-1.3.0.jar +2026-04-06T14:02:46.8326017Z #19 128.1 [INFO] Resolved plugin: jackson-module-parameter-names-2.18.2.jar +2026-04-06T14:02:46.8326181Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-gfm-tasklist-0.42.14.jar +2026-04-06T14:02:46.8326345Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-admonition-0.42.14.jar +2026-04-06T14:02:46.8326508Z #19 128.1 [INFO] Resolved plugin: jna-5.13.0.jar +2026-04-06T14:02:46.8326654Z #19 128.1 [INFO] Resolved plugin: maven-core-3.2.5.jar +2026-04-06T14:02:46.8326823Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-footnotes-0.42.14.jar +2026-04-06T14:02:46.8326978Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-gfm-strikethrough-0.42.14.jar +2026-04-06T14:02:46.8327162Z #19 128.1 [INFO] Resolved plugin: spring-core-6.2.3.jar +2026-04-06T14:02:46.8327324Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-media-tags-0.42.14.jar +2026-04-06T14:02:46.8327501Z #19 128.1 [INFO] Resolved plugin: doxia-module-xhtml-1.11.1.jar +2026-04-06T14:02:46.8327683Z #19 128.1 [INFO] Resolved plugin: flexmark-util-0.42.14.jar +2026-04-06T14:02:46.8327837Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-anchorlink-0.42.14.jar +2026-04-06T14:02:46.8328002Z #19 128.1 [INFO] Resolved plugin: asm-9.6.jar +2026-04-06T14:02:46.8328154Z #19 128.1 [INFO] Resolved plugin: aether-api-1.0.0.v20140518.jar +2026-04-06T14:02:46.8328308Z #19 128.1 [INFO] Resolved plugin: autolink-0.6.0.jar +2026-04-06T14:02:46.8328462Z #19 128.1 [INFO] Resolved plugin: maven-filtering-3.3.1.jar +2026-04-06T14:02:46.8328602Z #19 128.1 [INFO] Resolved plugin: maven-surefire-plugin-3.5.2.jar +2026-04-06T14:02:46.8328744Z #19 128.1 [INFO] Resolved plugin: surefire-extensions-api-3.5.2.jar +2026-04-06T14:02:46.8328930Z #19 128.1 [INFO] Resolved plugin: surefire-api-3.5.2.jar +2026-04-06T14:02:46.8329099Z #19 128.1 [INFO] Resolved plugin: maven-archiver-3.6.2.jar +2026-04-06T14:02:46.8329249Z #19 128.1 [INFO] Resolved plugin: doxia-skin-model-1.11.1.jar +2026-04-06T14:02:46.8329407Z #19 128.1 [INFO] Resolved plugin: dom4j-1.1.jar +2026-04-06T14:02:46.8329558Z #19 128.1 [INFO] Resolved plugin: plexus-compiler-api-2.15.0.jar +2026-04-06T14:02:46.8329718Z #19 128.1 [INFO] Resolved plugin: commons-io-2.16.1.jar +2026-04-06T14:02:46.8329902Z #19 128.1 [INFO] Resolved plugin: flexmark-youtrack-converter-0.42.14.jar +2026-04-06T14:02:46.8330094Z #19 128.1 [INFO] Resolved plugin: tomlj-1.0.0.jar +2026-04-06T14:02:46.8330238Z #19 128.1 [INFO] Resolved plugin: httpclient-4.5.13.jar +2026-04-06T14:02:46.8330397Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-toc-0.42.14.jar +2026-04-06T14:02:46.8330594Z #19 128.1 [INFO] Resolved plugin: qdox-2.0.3.jar +2026-04-06T14:02:46.8330746Z #19 128.1 [INFO] Resolved plugin: maven-resolver-util-1.9.18.jar +2026-04-06T14:02:46.8330890Z #19 128.1 [INFO] Resolved plugin: jetty-http-9.4.46.v20220331.jar +2026-04-06T14:02:46.8331112Z #19 128.1 [INFO] Resolved plugin: httpcore5-5.3.3.jar +2026-04-06T14:02:46.8331277Z #19 128.1 [INFO] Resolved plugin: flexmark-jira-converter-0.42.14.jar +2026-04-06T14:02:46.8331447Z #19 128.1 [INFO] Resolved plugin: micrometer-commons-1.14.4.jar +2026-04-06T14:02:46.8331593Z #19 128.1 [INFO] Resolved plugin: maven-reporting-api-3.1.1.jar +2026-04-06T14:02:46.8331748Z #19 128.1 [INFO] Resolved plugin: maven-plugin-api-3.2.5.jar +2026-04-06T14:02:46.8331898Z #19 128.1 [INFO] Resolved plugin: sisu-guice-3.2.3-no_aop.jar +2026-04-06T14:02:46.8332127Z #19 128.1 [INFO] Resolved plugin: spring-context-6.2.3.jar +2026-04-06T14:02:46.8332283Z #19 128.1 [INFO] Resolved plugin: spring-boot-maven-plugin-3.4.3.jar +2026-04-06T14:02:46.8332440Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-attributes-0.42.14.jar +2026-04-06T14:02:46.8332620Z #19 128.1 [INFO] Resolved plugin: commons-lang3-3.8.1.jar +2026-04-06T14:02:46.8332785Z #19 128.1 [INFO] Resolved plugin: maven-aether-provider-3.2.5.jar +2026-04-06T14:02:46.8332929Z #19 128.1 [INFO] Resolved plugin: aether-util-1.0.0.v20140518.jar +2026-04-06T14:02:46.8333075Z #19 128.1 [INFO] Resolved plugin: jetty-security-9.4.46.v20220331.jar +2026-04-06T14:02:46.8333218Z #19 128.1 [INFO] Resolved plugin: maven-common-artifact-filters-3.4.0.jar +2026-04-06T14:02:46.8333365Z #19 128.1 [INFO] Resolved plugin: maven-compiler-plugin-3.13.0.jar +2026-04-06T14:02:46.8333537Z #19 128.1 [INFO] Resolved plugin: org.eclipse.sisu.plexus-0.3.5.jar +2026-04-06T14:02:46.8333694Z #19 128.1 [INFO] Resolved plugin: jackson-annotations-2.18.2.jar +2026-04-06T14:02:46.8333857Z #19 128.1 [INFO] Resolved plugin: doxia-core-1.11.1.jar +2026-04-06T14:02:46.8333999Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-ins-0.42.14.jar +2026-04-06T14:02:46.8334171Z #19 128.1 [INFO] Resolved plugin: google-collections-1.0.jar +2026-04-06T14:02:46.8334339Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-emoji-0.42.14.jar +2026-04-06T14:02:46.8334478Z #19 128.1 [INFO] Resolved plugin: maven-resolver-api-1.4.1.jar +2026-04-06T14:02:46.8334646Z #19 128.1 [INFO] Resolved plugin: doxia-integration-tools-1.11.1.jar +2026-04-06T14:02:46.8334802Z #19 128.1 [INFO] Resolved plugin: plexus-compiler-manager-2.15.0.jar +2026-04-06T14:02:46.8334957Z #19 128.1 [INFO] Resolved plugin: maven-repository-metadata-3.2.5.jar +2026-04-06T14:02:46.8335103Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-jekyll-front-matter-0.42.14.jar +2026-04-06T14:02:46.8335256Z #19 128.1 [INFO] Resolved plugin: doxia-decoration-model-1.11.1.jar +2026-04-06T14:02:46.8335393Z #19 128.1 [INFO] Resolved plugin: flexmark-all-0.42.14.jar +2026-04-06T14:02:46.8335923Z #19 128.1 [INFO] Resolved plugin: maven-shared-incremental-1.1.jar +2026-04-06T14:02:46.8336145Z #19 128.1 [INFO] Resolved plugin: file-management-3.1.0.jar +2026-04-06T14:02:46.8336286Z #19 128.1 [INFO] Resolved plugin: commons-compress-1.26.1.jar +2026-04-06T14:02:46.8336420Z #19 128.1 [INFO] Resolved plugin: jetty-webapp-9.4.46.v20220331.jar +2026-04-06T14:02:46.8336575Z #19 128.1 [INFO] Resolved plugin: plexus-io-3.2.0.jar +2026-04-06T14:02:46.8336706Z #19 128.1 [INFO] Resolved plugin: xbean-reflect-3.7.jar +2026-04-06T14:02:46.8336862Z #19 128.1 [INFO] Resolved plugin: maven-reporting-exec-1.6.0.jar +2026-04-06T14:02:46.8336996Z #19 128.1 [INFO] Resolved plugin: doxia-sink-api-1.11.1.jar +2026-04-06T14:02:46.8337135Z #19 128.1 [INFO] Resolved plugin: jetty-xml-9.4.46.v20220331.jar +2026-04-06T14:02:46.8337288Z #19 128.1 [INFO] Resolved plugin: plexus-xml-3.0.0.jar +2026-04-06T14:02:46.8337455Z #19 128.1 [INFO] Resolved plugin: plexus-velocity-1.2.jar +2026-04-06T14:02:46.8337597Z #19 128.1 [INFO] Resolved plugin: plexus-container-***-2.1.0.jar +2026-04-06T14:02:46.8337776Z #19 128.1 [INFO] Resolved plugin: commons-codec-1.11.jar +2026-04-06T14:02:46.8337914Z #19 128.1 [INFO] Resolved plugin: snappy-0.4.jar +2026-04-06T14:02:46.8338058Z #19 128.1 [INFO] Resolved plugin: jsr305-3.0.2.jar +2026-04-06T14:02:46.8338218Z #19 128.1 [INFO] Resolved plugin: maven-deploy-plugin-3.1.3.jar +2026-04-06T14:02:46.8338360Z #19 128.1 [INFO] Resolved plugin: plexus-build-api-0.0.7.jar +2026-04-06T14:02:46.8338500Z #19 128.1 [INFO] Resolved plugin: spring-aop-6.2.3.jar +2026-04-06T14:02:46.8338630Z #19 128.1 [INFO] Resolved plugin: asm-9.5.jar +2026-04-06T14:02:46.8338760Z #19 128.1 [INFO] Resolved plugin: maven-dependency-tree-3.2.1.jar +2026-04-06T14:02:46.8338911Z #19 128.1 [INFO] Resolved plugin: doxia-module-fml-1.11.1.jar +2026-04-06T14:02:46.8339042Z #19 128.1 [INFO] Resolved plugin: commons-digester-1.8.jar +2026-04-06T14:02:46.8339177Z #19 128.1 [INFO] Resolved plugin: jetty-server-9.4.46.v20220331.jar +2026-04-06T14:02:46.8339321Z #19 128.1 [INFO] Resolved plugin: maven-shared-utils-3.4.2.jar +2026-04-06T14:02:46.8339468Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-abbreviation-0.42.14.jar +2026-04-06T14:02:46.8339629Z #19 128.1 [INFO] Resolved plugin: spring-jcl-6.2.3.jar +2026-04-06T14:02:46.8339759Z #19 128.1 [INFO] Resolved plugin: maven-archiver-3.5.2.jar +2026-04-06T14:02:46.8339895Z #19 128.1 [INFO] Resolved plugin: zstd-jni-1.5.5-11.jar +2026-04-06T14:02:46.8340028Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-definition-0.42.14.jar +2026-04-06T14:02:46.8340177Z #19 128.1 [INFO] Resolved plugin: spring-expression-6.2.3.jar +2026-04-06T14:02:46.8340318Z #19 128.1 [INFO] Resolved plugin: doxia-logging-api-1.11.1.jar +2026-04-06T14:02:46.8340479Z #19 128.1 [INFO] Resolved plugin: plexus-xml-3.0.1.jar +2026-04-06T14:02:46.8340622Z #19 128.1 [INFO] Resolved plugin: maven-install-plugin-3.1.3.jar +2026-04-06T14:02:46.8340757Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-yaml-front-matter-0.42.14.jar +2026-04-06T14:02:46.8340928Z #19 128.1 [INFO] Resolved plugin: maven-shade-plugin-3.5.0.jar +2026-04-06T14:02:46.8341067Z #19 128.1 [INFO] Resolved plugin: maven-site-plugin-3.12.1.jar +2026-04-06T14:02:46.8341204Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-superscript-0.42.14.jar +2026-04-06T14:02:46.8341346Z #19 128.1 [INFO] Resolved plugin: commons-collections-3.2.2.jar +2026-04-06T14:02:46.8341510Z #19 128.1 [INFO] Resolved plugin: doxia-module-markdown-1.11.1.jar +2026-04-06T14:02:46.8341655Z #19 128.1 [INFO] Resolved plugin: qdox-2.1.0.jar +2026-04-06T14:02:46.8341790Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-xwiki-macros-0.42.14.jar +2026-04-06T14:02:46.8341932Z #19 128.1 [INFO] Resolved plugin: commons-compress-1.20.jar +2026-04-06T14:02:46.8342065Z #19 128.1 [INFO] Resolved plugin: maven-resources-plugin-3.3.1.jar +2026-04-06T14:02:46.8342216Z #19 128.1 [INFO] Resolved plugin: maven-resolver-api-1.9.18.jar +2026-04-06T14:02:46.8342357Z #19 128.1 [INFO] Resolved plugin: velocity-1.7.jar +2026-04-06T14:02:46.8342492Z #19 128.1 [INFO] Resolved plugin: plexus-utils-3.5.1.jar +2026-04-06T14:02:46.8342633Z #19 128.1 [INFO] Resolved plugin: jackson-databind-2.18.2.jar +2026-04-06T14:02:46.8342772Z #19 128.1 [INFO] Resolved plugin: aopalliance-1.0.jar +2026-04-06T14:02:46.8342949Z #19 128.1 [INFO] Resolved plugin: aether-spi-1.0.0.v20140518.jar +2026-04-06T14:02:46.8343088Z #19 128.1 [INFO] Resolved plugin: surefire-logger-api-3.5.2.jar +2026-04-06T14:02:46.8343228Z #19 128.1 [INFO] Resolved plugin: plexus-interpolation-1.26.jar +2026-04-06T14:02:46.8343368Z #19 128.1 [INFO] Resolved plugin: maven-settings-builder-3.2.5.jar +2026-04-06T14:02:46.8343517Z #19 128.1 [INFO] Resolved plugin: httpcore-4.4.14.jar +2026-04-06T14:02:46.8343656Z #19 128.1 [INFO] Resolved plugin: commons-lang3-3.12.0.jar +2026-04-06T14:02:46.8343792Z #19 128.1 [INFO] Resolved plugin: maven-artifact-3.2.5.jar +2026-04-06T14:02:46.8343953Z #19 128.1 [INFO] Resolved plugin: plexus-compiler-javac-2.15.0.jar +2026-04-06T14:02:46.8344096Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-enumerated-reference-0.42.14.jar +2026-04-06T14:02:46.8344259Z #19 128.1 [INFO] Resolved plugin: plexus-component-annotations-2.1.1.jar +2026-04-06T14:02:46.8344416Z #19 128.1 [INFO] Resolved plugin: surefire-shared-utils-3.5.2.jar +2026-04-06T14:02:46.8344570Z #19 128.1 [INFO] Resolved plugin: commons-logging-1.2.jar +2026-04-06T14:02:46.8344701Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-escaped-character-0.42.14.jar +2026-04-06T14:02:46.8344850Z #19 128.1 [INFO] Resolved plugin: plexus-java-1.2.0.jar +2026-04-06T14:02:46.8344997Z #19 128.1 [INFO] Resolved plugin: plexus-cipher-1.4.jar +2026-04-06T14:02:46.8345133Z #19 128.1 [INFO] Resolved plugin: flexmark-0.42.14.jar +2026-04-06T14:02:46.8345272Z #19 128.1 [INFO] Resolved plugin: plexus-utils-3.4.2.jar +2026-04-06T14:02:46.8345421Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-aside-0.42.14.jar +2026-04-06T14:02:46.8345579Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-wikilink-0.42.14.jar +2026-04-06T14:02:46.8345726Z #19 128.1 [INFO] Resolved plugin: org.eclipse.sisu.inject-0.3.5.jar +2026-04-06T14:02:46.8345860Z #19 128.1 [INFO] Resolved plugin: plexus-io-3.4.2.jar +2026-04-06T14:02:46.8345996Z #19 128.1 [INFO] Resolved plugin: surefire-extensions-spi-3.5.2.jar +2026-04-06T14:02:46.8346144Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-gfm-tables-0.42.14.jar +2026-04-06T14:02:46.8346299Z #19 128.1 [INFO] Resolved plugin: antlr4-runtime-4.7.2.jar +2026-04-06T14:02:46.8346437Z #19 128.1 [INFO] Resolved plugin: spring-boot-buildpack-platform-3.4.3.jar +2026-04-06T14:02:46.8346582Z #19 128.1 [INFO] Resolved plugin: plexus-interpolation-1.27.jar +2026-04-06T14:02:46.8346733Z #19 128.1 [INFO] Resolved plugin: commons-io-2.11.0.jar +2026-04-06T14:02:46.8346875Z #19 128.1 [INFO] Resolved plugin: jetty-io-9.4.46.v20220331.jar +2026-04-06T14:02:46.8347035Z #19 128.1 [INFO] Resolved plugin: httpclient5-5.4.2.jar +2026-04-06T14:02:46.8347176Z #19 128.1 [INFO] Resolved plugin: cdi-api-1.2.jar +2026-04-06T14:02:46.8347313Z #19 128.1 [INFO] Resolved plugin: commons-chain-1.1.jar +2026-04-06T14:02:46.8347445Z #19 128.1 [INFO] Resolved plugin: commons-codec-1.16.1.jar +2026-04-06T14:02:46.8347598Z #19 128.1 [INFO] Resolved plugin: flexmark-html-parser-0.42.14.jar +2026-04-06T14:02:46.8347767Z #19 128.1 [INFO] Resolved plugin: asm-tree-9.5.jar +2026-04-06T14:02:46.8347928Z #19 128.1 [INFO] Resolved plugin: javax.inject-1.jar +2026-04-06T14:02:46.8348075Z #19 128.1 [INFO] Resolved plugin: maven-shared-utils-3.3.4.jar +2026-04-06T14:02:46.8348241Z #19 128.1 [INFO] Resolved plugin: javax.servlet-api-3.1.0.jar +2026-04-06T14:02:46.8348416Z #19 128.1 [INFO] Resolved plugin: jetty-util-ajax-9.4.46.v20220331.jar +2026-04-06T14:02:46.8348583Z #19 128.1 [INFO] Resolved plugin: commons-io-2.13.0.jar +2026-04-06T14:02:46.8348726Z #19 128.1 [INFO] Resolved plugin: maven-settings-3.2.5.jar +2026-04-06T14:02:46.8348876Z #19 128.1 [INFO] Resolved plugin: jna-platform-5.13.0.jar +2026-04-06T14:02:46.8349639Z #19 128.1 [INFO] Resolved plugin: jsoup-1.10.2.jar +2026-04-06T14:02:46.8349816Z #19 128.1 [INFO] Resolved plugin: oro-2.0.8.jar +2026-04-06T14:02:46.8349956Z #19 128.1 [INFO] Resolved plugin: surefire-booter-3.5.2.jar +2026-04-06T14:02:46.8350110Z #19 128.1 [INFO] Resolved plugin: maven-common-artifact-filters-3.3.2.jar +2026-04-06T14:02:46.8350270Z #19 128.1 [INFO] Resolved plugin: xz-1.9.jar +2026-04-06T14:02:46.8350446Z #19 128.1 [INFO] Resolved plugin: aether-impl-1.0.0.v20140518.jar +2026-04-06T14:02:46.8350650Z #19 128.1 [INFO] Resolved plugin: commons-text-1.3.jar +2026-04-06T14:02:46.8350800Z #19 128.1 [INFO] Resolved plugin: plexus-utils-4.0.0.jar +2026-04-06T14:02:46.8350944Z #19 128.1 [INFO] Resolved plugin: httpcore5-h2-5.3.3.jar +2026-04-06T14:02:46.8351074Z #19 128.1 [INFO] Resolved plugin: commons-lang-2.4.jar +2026-04-06T14:02:46.8351238Z #19 128.1 [INFO] Resolved plugin: slf4j-api-1.7.36.jar +2026-04-06T14:02:46.8351395Z #19 128.1 [INFO] Resolved plugin: maven-resolver-util-1.4.1.jar +2026-04-06T14:02:46.8351561Z #19 128.1 [INFO] Resolved plugin: doxia-module-apt-1.11.1.jar +2026-04-06T14:02:46.8351719Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-gfm-issues-0.42.14.jar +2026-04-06T14:02:46.8351870Z #19 128.1 [INFO] Resolved plugin: jetty-util-9.4.46.v20220331.jar +2026-04-06T14:02:46.8352031Z #19 128.1 [INFO] Resolved plugin: maven-model-builder-3.2.5.jar +2026-04-06T14:02:46.8352174Z #19 128.1 [INFO] Resolved plugin: maven-jar-plugin-3.4.2.jar +2026-04-06T14:02:46.8352338Z #19 128.1 [INFO] Resolved plugin: plexus-archiver-4.2.7.jar +2026-04-06T14:02:46.8352536Z #19 128.1 [INFO] Resolved plugin: commons-io-2.6.jar +2026-04-06T14:02:46.8352724Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-youtube-embedded-0.42.14.jar +2026-04-06T14:02:46.8352883Z #19 128.1 [INFO] Resolved plugin: flexmark-formatter-0.42.14.jar +2026-04-06T14:02:46.8353020Z #19 128.1 [INFO] Resolved plugin: maven-model-3.2.5.jar +2026-04-06T14:02:46.8353178Z #19 128.1 [INFO] Resolved plugin: spring-beans-6.2.3.jar +2026-04-06T14:02:46.8353323Z #19 128.1 [INFO] Resolved plugin: jdom2-2.0.6.1.jar +2026-04-06T14:02:46.8353517Z #19 128.1 [INFO] Resolved plugin: plexus-utils-4.0.1.jar +2026-04-06T14:02:46.8353688Z #19 128.1 [INFO] Resolved plugin: flexmark-profile-pegdown-0.42.14.jar +2026-04-06T14:02:46.8353851Z #19 128.1 [INFO] Resolved plugin: doxia-module-docbook-simple-1.11.1.jar +2026-04-06T14:02:46.8354016Z #19 128.1 [INFO] Resolved plugin: commons-compress-1.25.0.jar +2026-04-06T14:02:46.8354155Z #19 128.1 [INFO] Resolved plugin: guava-16.0.1.jar +2026-04-06T14:02:46.8354310Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-typographic-0.42.14.jar +2026-04-06T14:02:46.8354467Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-autolink-0.42.14.jar +2026-04-06T14:02:46.8354617Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-jekyll-tag-0.42.14.jar +2026-04-06T14:02:46.8354768Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-gitlab-0.42.14.jar +2026-04-06T14:02:46.8355083Z #19 128.1 [INFO] Resolved plugin: doxia-module-xdoc-1.11.1.jar +2026-04-06T14:02:46.8355264Z #19 128.1 [INFO] Resolved plugin: doxia-site-renderer-1.11.1.jar +2026-04-06T14:02:46.8355400Z #19 128.1 [INFO] Resolved plugin: commons-beanutils-1.7.0.jar +2026-04-06T14:02:46.8355538Z #19 128.1 [INFO] Resolved plugin: maven-surefire-common-3.5.2.jar +2026-04-06T14:02:46.8355685Z #19 128.1 [INFO] Resolved plugin: commons-lang3-3.14.0.jar +2026-04-06T14:02:46.8355837Z #19 128.1 [INFO] Resolved plugin: plexus-classworlds-2.5.2.jar +2026-04-06T14:02:46.8356004Z #19 128.1 [INFO] Resolved plugin: doxia-module-confluence-1.11.1.jar +2026-04-06T14:02:46.8356169Z #19 128.1 [INFO] Resolved plugin: doxia-module-xhtml5-1.11.1.jar +2026-04-06T14:02:46.8356385Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-tables-0.42.14.jar +2026-04-06T14:02:46.8356561Z #19 128.1 [INFO] Resolved plugin: javax.annotation-api-1.2.jar +2026-04-06T14:02:46.8356744Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-macros-0.42.14.jar +2026-04-06T14:02:46.8356904Z #19 128.1 [INFO] Resolved plugin: plexus-sec-dispatcher-1.3.jar +2026-04-06T14:02:46.8357047Z #19 128.1 [INFO] Resolved plugin: commons-collections4-4.4.jar +2026-04-06T14:02:46.8357208Z #19 128.1 [INFO] Resolved plugin: plexus-i18n-1.0-beta-10.jar +2026-04-06T14:02:46.8357395Z #19 128.1 [INFO] Resolved plugin: jackson-core-2.18.2.jar +2026-04-06T14:02:46.8357591Z #19 128.1 [INFO] Resolved plugin: flexmark-ext-gfm-users-0.42.14.jar +2026-04-06T14:02:46.8357787Z #19 128.1 [INFO] Resolved plugin: maven-clean-plugin-3.4.1.jar +2026-04-06T14:02:46.8357966Z #19 128.1 [INFO] Resolved plugin: plexus-archiver-4.9.2.jar +2026-04-06T14:02:46.8358151Z #19 128.1 [INFO] Resolved plugin: asm-commons-9.5.jar +2026-04-06T14:02:46.8358348Z #19 128.1 [INFO] Resolved dependency: google-cloud-core-grpc-2.44.1.jar +2026-04-06T14:02:46.8358638Z #19 128.1 [INFO] Resolved dependency: jackson-databind-2.10.3.jar +2026-04-06T14:02:46.8358817Z #19 128.1 [INFO] Resolved dependency: micrometer-observation-1.14.4.jar +2026-04-06T14:02:46.8358995Z #19 128.1 [INFO] Resolved dependency: spring-tx-6.2.3.jar +2026-04-06T14:02:46.8359146Z #19 128.1 [INFO] Resolved dependency: json-smart-2.5.2.jar +2026-04-06T14:02:46.8359380Z #19 128.1 [INFO] Resolved dependency: spring-boot-starter-validation-3.4.3.jar +2026-04-06T14:02:46.8359561Z #19 128.1 [INFO] Resolved dependency: docker-java-api-3.4.1.jar +2026-04-06T14:02:46.8359740Z #19 128.1 [INFO] Resolved dependency: log4j-to-slf4j-2.24.3.jar +2026-04-06T14:02:46.8359919Z #19 128.1 [INFO] Resolved dependency: grpc-auth-1.68.0.jar +2026-04-06T14:02:46.8360097Z #19 128.1 [INFO] Resolved dependency: opentelemetry-sdk-trace-1.42.1.jar +2026-04-06T14:02:46.8360284Z #19 128.1 [INFO] Resolved dependency: regions-2.25.26.jar +2026-04-06T14:02:46.8360438Z #19 128.1 [INFO] Resolved dependency: jackson-module-parameter-names-2.18.2.jar +2026-04-06T14:02:46.8360618Z #19 128.1 [INFO] Resolved dependency: jackson-datatype-jsr310-2.15.2.jar +2026-04-06T14:02:46.8360791Z #19 128.1 [INFO] Resolved dependency: tomcat-embed-el-10.1.36.jar +2026-04-06T14:02:46.8361032Z #19 128.1 [INFO] Resolved dependency: utils-2.25.26.jar +2026-04-06T14:02:46.8361286Z #19 128.1 [INFO] Resolved dependency: jna-5.13.0.jar +2026-04-06T14:02:46.8361467Z #19 128.1 [INFO] Resolved dependency: byte-buddy-agent-1.15.4.jar +2026-04-06T14:02:46.8361677Z #19 128.1 [INFO] Resolved dependency: grpc-googleapis-1.68.0.jar +2026-04-06T14:02:46.8361827Z #19 128.1 [INFO] Resolved dependency: accessors-smart-2.5.2.jar +2026-04-06T14:02:46.8362017Z #19 128.1 [INFO] Resolved dependency: jakarta.activation-api-2.1.0.jar +2026-04-06T14:02:46.8362174Z #19 128.1 [INFO] Resolved dependency: spring-core-6.2.3.jar +2026-04-06T14:02:46.8362319Z #19 128.1 [INFO] Resolved dependency: netty-resolver-4.1.108.Final.jar +2026-04-06T14:02:46.8362485Z #19 128.1 [INFO] Resolved dependency: gax-httpjson-2.54.1.jar +2026-04-06T14:02:46.8362728Z #19 128.1 [INFO] Resolved dependency: third-party-jackson-core-2.25.26.jar +2026-04-06T14:02:46.8362944Z #19 128.1 [INFO] Resolved dependency: postgresql-1.21.4.jar +2026-04-06T14:02:46.8363098Z #19 128.1 [INFO] Resolved dependency: sdk-core-2.25.26.jar +2026-04-06T14:02:46.8363235Z #19 128.1 [INFO] Resolved dependency: checker-qual-3.47.0.jar +2026-04-06T14:02:46.8363408Z #19 128.1 [INFO] Resolved dependency: http-auth-2.25.26.jar +2026-04-06T14:02:46.8363589Z #19 128.1 [INFO] Resolved dependency: grpc-context-1.68.0.jar +2026-04-06T14:02:46.8363740Z #19 128.1 [INFO] Resolved dependency: jandex-3.2.0.jar +2026-04-06T14:02:46.8363895Z #19 128.1 [INFO] Resolved dependency: spring-web-6.2.3.jar +2026-04-06T14:02:46.8364069Z #19 128.1 [INFO] Resolved dependency: netty-common-4.1.108.Final.jar +2026-04-06T14:02:46.8364227Z #19 128.1 [INFO] Resolved dependency: auto-value-annotations-1.11.0.jar +2026-04-06T14:02:46.8364482Z #19 128.1 [INFO] Resolved dependency: grpc-protobuf-lite-1.68.0.jar +2026-04-06T14:02:46.8364705Z #19 128.1 [INFO] Resolved dependency: jakarta.transaction-api-2.0.1.jar +2026-04-06T14:02:46.8364875Z #19 128.1 [INFO] Resolved dependency: google-api-client-2.7.0.jar +2026-04-06T14:02:46.8365023Z #19 128.1 [INFO] Resolved dependency: error_prone_annotations-2.32.0.jar +2026-04-06T14:02:46.8365196Z #19 128.1 [INFO] Resolved dependency: docker-java-core-3.4.1.jar +2026-04-06T14:02:46.8365355Z #19 128.1 [INFO] Resolved dependency: opentelemetry-api-incubator-1.42.1-alpha.jar +2026-04-06T14:02:46.8365516Z #19 128.1 [INFO] Resolved dependency: angus-activation-2.0.0.jar +2026-04-06T14:02:46.8365682Z #19 128.1 [INFO] Resolved dependency: netty-handler-4.1.108.Final.jar +2026-04-06T14:02:46.8365828Z #19 128.1 [INFO] Resolved dependency: ucp-19.6.0.0.jar +2026-04-06T14:02:46.8365987Z #19 128.1 [INFO] Resolved dependency: docker-java-transport-3.4.2.jar +2026-04-06T14:02:46.8366165Z #19 128.1 [INFO] Resolved dependency: guava-19.0.jar +2026-04-06T14:02:46.8366335Z #19 128.1 [INFO] Resolved dependency: httpclient-4.5.13.jar +2026-04-06T14:02:46.8366507Z #19 128.1 [INFO] Resolved dependency: annotations-17.0.0.jar +2026-04-06T14:02:46.8366646Z #19 128.1 [INFO] Resolved dependency: google-auth-library-credentials-1.27.0.jar +2026-04-06T14:02:46.8366819Z #19 128.1 [INFO] Resolved dependency: tomcat-embed-core-10.1.36.jar +2026-04-06T14:02:46.8366977Z #19 128.1 [INFO] Resolved dependency: jackson-core-2.15.2.jar +2026-04-06T14:02:46.8367119Z #19 128.1 [INFO] Resolved dependency: logback-classic-1.5.16.jar +2026-04-06T14:02:46.8367298Z #19 128.1 [INFO] Resolved dependency: spring-boot-actuator-3.4.3.jar +2026-04-06T14:02:46.8367501Z #19 128.1 [INFO] Resolved dependency: bcutil-jdk18on-1.76.jar +2026-04-06T14:02:46.8367697Z #19 128.1 [INFO] Resolved dependency: xmlunit-core-2.10.0.jar +2026-04-06T14:02:46.8367849Z #19 128.1 [INFO] Resolved dependency: docker-java-transport-zerodep-3.4.1.jar +2026-04-06T14:02:46.8368002Z #19 128.1 [INFO] Resolved dependency: simplefan-19.6.0.0.jar +2026-04-06T14:02:46.8368135Z #19 128.1 [INFO] Resolved dependency: micrometer-commons-1.14.4.jar +2026-04-06T14:02:46.8368283Z #19 128.1 [INFO] Resolved dependency: osdt_cert-19.6.0.0.jar +2026-04-06T14:02:46.8368414Z #19 128.1 [INFO] Resolved dependency: spring-aspects-6.2.3.jar +2026-04-06T14:02:46.8368575Z #19 128.1 [INFO] Resolved dependency: commons-codec-1.17.1.jar +2026-04-06T14:02:46.8368716Z #19 128.1 [INFO] Resolved dependency: spring-context-6.2.3.jar +2026-04-06T14:02:46.8368870Z #19 128.1 [INFO] Resolved dependency: docker-java-transport-3.4.1.jar +2026-04-06T14:02:46.8369017Z #19 128.1 [INFO] Resolved dependency: json-utils-2.25.26.jar +2026-04-06T14:02:46.8369155Z #19 128.1 [INFO] Resolved dependency: netty-codec-4.1.108.Final.jar +2026-04-06T14:02:46.8369295Z #19 128.1 [INFO] Resolved dependency: grpc-google-cloud-storage-v2-2.43.1-beta.jar +2026-04-06T14:02:46.8369468Z #19 128.1 [INFO] Resolved dependency: spring-data-commons-3.4.3.jar +2026-04-06T14:02:46.8369645Z #19 128.1 [INFO] Resolved dependency: spring-boot-starter-3.4.3.jar +2026-04-06T14:02:46.8369827Z #19 128.1 [INFO] Resolved dependency: spring-security-web-6.4.3.jar +2026-04-06T14:02:46.8369971Z #19 128.1 [INFO] Resolved dependency: slf4j-api-2.0.11.jar +2026-04-06T14:02:46.8370107Z #19 128.1 [INFO] Resolved dependency: opentelemetry-sdk-common-1.42.1.jar +2026-04-06T14:02:46.8370291Z #19 128.1 [INFO] Resolved dependency: docker-java-transport-zerodep-3.4.2.jar +2026-04-06T14:02:46.8370573Z #19 128.1 [INFO] Resolved dependency: checksums-spi-2.25.26.jar +2026-04-06T14:02:46.8370748Z #19 128.1 [INFO] Resolved dependency: aws-core-2.25.26.jar +2026-04-06T14:02:46.8370904Z #19 128.1 [INFO] Resolved dependency: netty-codec-http-4.1.108.Final.jar +2026-04-06T14:02:46.8371053Z #19 128.1 [INFO] Resolved dependency: spring-boot-test-autoconfigure-3.4.3.jar +2026-04-06T14:02:46.8371214Z #19 128.1 [INFO] Resolved dependency: grpc-stub-1.68.0.jar +2026-04-06T14:02:46.8371365Z #19 128.1 [INFO] Resolved dependency: jakarta.xml.bind-api-4.0.0.jar +2026-04-06T14:02:46.8371518Z #19 128.1 [INFO] Resolved dependency: google-cloud-monitoring-3.31.0.jar +2026-04-06T14:02:46.8371660Z #19 128.1 [INFO] Resolved dependency: grpc-opentelemetry-1.68.0.jar +2026-04-06T14:02:46.8371822Z #19 128.1 [INFO] Resolved dependency: oraclepki-19.6.0.0.jar +2026-04-06T14:02:46.8372001Z #19 128.1 [INFO] Resolved dependency: grpc-xds-1.68.0.jar +2026-04-06T14:02:46.8372144Z #19 128.1 [INFO] Resolved dependency: jackson-annotations-2.18.2.jar +2026-04-06T14:02:46.8372298Z #19 128.1 [INFO] Resolved dependency: junit-jupiter-api-5.11.4.jar +2026-04-06T14:02:46.8372442Z #19 128.1 [INFO] Resolved dependency: identity-spi-2.25.26.jar +2026-04-06T14:02:46.8372609Z #19 128.1 [INFO] Resolved dependency: HikariCP-5.1.0.jar +2026-04-06T14:02:46.8372754Z #19 128.1 [INFO] Resolved dependency: netty-transport-native-unix-common-4.1.108.Final.jar +2026-04-06T14:02:46.8372907Z #19 128.1 [INFO] Resolved dependency: junit-jupiter-engine-5.11.4.jar +2026-04-06T14:02:46.8373060Z #19 128.1 [INFO] Resolved dependency: slf4j-api-2.0.2.jar +2026-04-06T14:02:46.8373241Z #19 128.1 [INFO] Resolved dependency: listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar +2026-04-06T14:02:46.8373427Z #19 128.1 [INFO] Resolved dependency: httpcore5-5.0.2.jar +2026-04-06T14:02:46.8373606Z #19 128.1 [INFO] Resolved dependency: arns-2.25.26.jar +2026-04-06T14:02:46.8373735Z #19 128.1 [INFO] Resolved dependency: clickhouse-client-0.7.1.jar +2026-04-06T14:02:46.8373882Z #19 128.1 [INFO] Resolved dependency: aws-xml-protocol-2.25.26.jar +2026-04-06T14:02:46.8374017Z #19 128.1 [INFO] Resolved dependency: spring-boot-starter-test-3.4.3.jar +2026-04-06T14:02:46.8374187Z #19 128.1 [INFO] Resolved dependency: opentelemetry-sdk-metrics-1.42.1.jar +2026-04-06T14:02:46.8374364Z #19 128.1 [INFO] Resolved dependency: google-http-client-1.45.0.jar +2026-04-06T14:02:46.8374508Z #19 128.1 [INFO] Resolved dependency: antlr4-runtime-4.13.0.jar +2026-04-06T14:02:46.8374666Z #19 128.1 [INFO] Resolved dependency: micrometer-core-1.14.4.jar +2026-04-06T14:02:46.8374831Z #19 128.1 [INFO] Resolved dependency: commons-compress-1.24.0.jar +2026-04-06T14:02:46.8375020Z #19 128.1 [INFO] Resolved dependency: grpc-rls-1.68.0.jar +2026-04-06T14:02:46.8375155Z #19 128.1 [INFO] Resolved dependency: spring-boot-starter-web-3.4.3.jar +2026-04-06T14:02:46.8375302Z #19 128.1 [INFO] Resolved dependency: snakeyaml-2.3.jar +2026-04-06T14:02:46.8375439Z #19 128.1 [INFO] Resolved dependency: asm-9.7.1.jar +2026-04-06T14:02:46.8375571Z #19 128.1 [INFO] Resolved dependency: threetenbp-1.7.0.jar +2026-04-06T14:02:46.8375739Z #19 128.1 [INFO] Resolved dependency: ojdbc8-19.6.0.0.jar +2026-04-06T14:02:46.8375892Z #19 128.1 [INFO] Resolved dependency: hibernate-core-6.6.8.Final.jar +2026-04-06T14:02:46.8376045Z #19 128.1 [INFO] Resolved dependency: junit-4.13.2.jar +2026-04-06T14:02:46.8376177Z #19 128.1 [INFO] Resolved dependency: assertj-core-3.26.3.jar +2026-04-06T14:02:46.8376322Z #19 128.1 [INFO] Resolved dependency: jdbc-1.21.4.jar +2026-04-06T14:02:46.8376470Z #19 128.1 [INFO] Resolved dependency: gax-grpc-2.54.1.jar +2026-04-06T14:02:46.8376606Z #19 128.1 [INFO] Resolved dependency: google-cloud-core-http-2.44.1.jar +2026-04-06T14:02:46.8376767Z #19 128.1 [INFO] Resolved dependency: micrometer-jakarta9-1.14.4.jar +2026-04-06T14:02:46.8376911Z #19 128.1 [INFO] Resolved dependency: slf4j-api-1.7.30.jar +2026-04-06T14:02:46.8377059Z #19 128.1 [INFO] Resolved dependency: database-commons-1.21.4.jar +2026-04-06T14:02:46.8377224Z #19 128.1 [INFO] Resolved dependency: junit-jupiter-params-5.11.4.jar +2026-04-06T14:02:46.8377368Z #19 128.1 [INFO] Resolved dependency: spring-security-core-6.4.3.jar +2026-04-06T14:02:46.8377509Z #19 128.1 [INFO] Resolved dependency: spring-boot-starter-oauth2-resource-server-3.4.3.jar +2026-04-06T14:02:46.8377663Z #19 128.1 [INFO] Resolved dependency: http-auth-aws-2.25.26.jar +2026-04-06T14:02:46.8377815Z #19 128.1 [INFO] Resolved dependency: netty-transport-4.1.108.Final.jar +2026-04-06T14:02:46.8378591Z #19 128.1 [INFO] Resolved dependency: grpc-grpclb-1.68.0.jar +2026-04-06T14:02:46.8378871Z #19 128.1 [INFO] Resolved dependency: perfmark-api-0.27.0.jar +2026-04-06T14:02:46.8379028Z #19 128.1 [INFO] Resolved dependency: ons-19.6.0.0.jar +2026-04-06T14:02:46.8379172Z #19 128.1 [INFO] Resolved dependency: spring-security-config-6.4.3.jar +2026-04-06T14:02:46.8379340Z #19 128.1 [INFO] Resolved dependency: jcip-annotations-1.0-1.jar +2026-04-06T14:02:46.8379479Z #19 128.1 [INFO] Resolved dependency: jsr305-3.0.2.jar +2026-04-06T14:02:46.8379640Z #19 128.1 [INFO] Resolved dependency: spring-aop-6.2.3.jar +2026-04-06T14:02:46.8379789Z #19 128.1 [INFO] Resolved dependency: commons-compress-1.21.jar +2026-04-06T14:02:46.8379932Z #19 128.1 [INFO] Resolved dependency: jakarta.xml.bind-api-4.0.2.jar +2026-04-06T14:02:46.8380092Z #19 128.1 [INFO] Resolved dependency: httpclient5-5.0.3.jar +2026-04-06T14:02:46.8380229Z #19 128.1 [INFO] Resolved dependency: protocol-core-2.25.26.jar +2026-04-06T14:02:46.8380363Z #19 128.1 [INFO] Resolved dependency: spring-boot-starter-actuator-3.4.3.jar +2026-04-06T14:02:46.8380518Z #19 128.1 [INFO] Resolved dependency: spring-jcl-6.2.3.jar +2026-04-06T14:02:46.8380673Z #19 128.1 [INFO] Resolved dependency: netty-transport-classes-epoll-4.1.108.Final.jar +2026-04-06T14:02:46.8380820Z #19 128.1 [INFO] Resolved dependency: jackson-dataformat-toml-2.15.2.jar +2026-04-06T14:02:46.8380987Z #19 128.1 [INFO] Resolved dependency: opentelemetry-gcp-resources-1.37.0-alpha.jar +2026-04-06T14:02:46.8381137Z #19 128.1 [INFO] Resolved dependency: jakarta.annotation-api-2.1.1.jar +2026-04-06T14:02:46.8381297Z #19 128.1 [INFO] Resolved dependency: aws-secretsmanager-jdbc-2.0.2.jar +2026-04-06T14:02:46.8381444Z #19 128.1 [INFO] Resolved dependency: secretsmanager-2.20.93.jar +2026-04-06T14:02:46.8381582Z #19 128.1 [INFO] Resolved dependency: checker-qual-3.48.3.jar +2026-04-06T14:02:46.8381746Z #19 128.1 [INFO] Resolved dependency: aws-secretsmanager-caching-java-2.0.0.jar +2026-04-06T14:02:46.8381908Z #19 128.1 [INFO] Resolved dependency: spring-expression-6.2.3.jar +2026-04-06T14:02:46.8382067Z #19 128.1 [INFO] Resolved dependency: spotbugs-annotations-4.7.3.jar +2026-04-06T14:02:46.8382206Z #19 128.1 [INFO] Resolved dependency: nimbus-jose-jwt-9.37.3.jar +2026-04-06T14:02:46.8382347Z #19 128.1 [INFO] Resolved dependency: http-auth-spi-2.25.26.jar +2026-04-06T14:02:46.8382501Z #19 128.1 [INFO] Resolved dependency: jna-platform-4.5.1.jar +2026-04-06T14:02:46.8382682Z #19 128.1 [INFO] Resolved dependency: endpoints-spi-2.25.26.jar +2026-04-06T14:02:46.8382848Z #19 128.1 [INFO] Resolved dependency: eventstream-1.0.1.jar +2026-04-06T14:02:46.8382996Z #19 128.1 [INFO] Resolved dependency: gson-2.10.1.jar +2026-04-06T14:02:46.8383137Z #19 128.1 [INFO] Resolved dependency: spring-boot-test-3.4.3.jar +2026-04-06T14:02:46.8383276Z #19 128.1 [INFO] Resolved dependency: opentelemetry-sdk-logs-1.42.1.jar +2026-04-06T14:02:46.8383434Z #19 128.1 [INFO] Resolved dependency: spring-security-crypto-6.4.3.jar +2026-04-06T14:02:46.8383592Z #19 128.1 [INFO] Resolved dependency: spring-jdbc-6.2.3.jar +2026-04-06T14:02:46.8383745Z #19 128.1 [INFO] Resolved dependency: google-http-client-apache-v2-1.45.0.jar +2026-04-06T14:02:46.8383921Z #19 128.1 [INFO] Resolved dependency: json-path-2.9.0.jar +2026-04-06T14:02:46.8384076Z #19 128.1 [INFO] Resolved dependency: hibernate-commons-annotations-7.0.3.Final.jar +2026-04-06T14:02:46.8384290Z #19 128.1 [INFO] Resolved dependency: jackson-databind-2.15.2.jar +2026-04-06T14:02:46.8384464Z #19 128.1 [INFO] Resolved dependency: jackson-core-2.10.3.jar +2026-04-06T14:02:46.8384621Z #19 128.1 [INFO] Resolved dependency: protobuf-java-3.25.5.jar +2026-04-06T14:02:46.8384795Z #19 128.1 [INFO] Resolved dependency: commons-codec-1.13.jar +2026-04-06T14:02:46.8384930Z #19 128.1 [INFO] Resolved dependency: slf4j-api-1.7.25.jar +2026-04-06T14:02:46.8385082Z #19 128.1 [INFO] Resolved dependency: byte-buddy-1.15.11.jar +2026-04-06T14:02:46.8385222Z #19 128.1 [INFO] Resolved dependency: detector-resources-support-0.32.0.jar +2026-04-06T14:02:46.8385381Z #19 128.1 [INFO] Resolved dependency: flyway-core-10.20.1.jar +2026-04-06T14:02:46.8385575Z #19 128.1 [INFO] Resolved dependency: httpcore5-h2-5.0.2.jar +2026-04-06T14:02:46.8385831Z #19 128.1 [INFO] Resolved dependency: hibernate-validator-8.0.2.Final.jar +2026-04-06T14:02:46.8386044Z #19 128.1 [INFO] Resolved dependency: reactive-streams-1.0.4.jar +2026-04-06T14:02:46.8386191Z #19 128.1 [INFO] Resolved dependency: junit-jupiter-5.11.4.jar +2026-04-06T14:02:46.8386325Z #19 128.1 [INFO] Resolved dependency: google-http-client-appengine-1.45.0.jar +2026-04-06T14:02:46.8386611Z #19 128.1 [INFO] Resolved dependency: testcontainers-1.21.4.jar +2026-04-06T14:02:46.8386864Z #19 128.1 [INFO] Resolved dependency: jackson-databind-2.18.2.jar +2026-04-06T14:02:46.8387062Z #19 128.1 [INFO] Resolved dependency: grpc-alts-1.68.0.jar +2026-04-06T14:02:46.8387274Z #19 128.1 [INFO] Resolved dependency: crt-core-2.25.26.jar +2026-04-06T14:02:46.8387430Z #19 128.1 [INFO] Resolved dependency: animal-sniffer-annotations-1.24.jar +2026-04-06T14:02:46.8387642Z #19 128.1 [INFO] Resolved dependency: bcprov-jdk18on-1.76.jar +2026-04-06T14:02:46.8387933Z #19 128.1 [INFO] Resolved dependency: clickhouse-http-client-0.7.1.jar +2026-04-06T14:02:46.8388077Z #19 128.1 [INFO] Resolved dependency: jul-to-slf4j-2.0.16.jar +2026-04-06T14:02:46.8388214Z #19 128.1 [INFO] Resolved dependency: s3-2.25.26.jar +2026-04-06T14:02:46.8388361Z #19 128.1 [INFO] Resolved dependency: opencensus-proto-0.2.0.jar +2026-04-06T14:02:46.8388504Z #19 128.1 [INFO] Resolved dependency: spring-boot-starter-json-3.4.3.jar +2026-04-06T14:02:46.8388648Z #19 128.1 [INFO] Resolved dependency: opentelemetry-context-1.42.1.jar +2026-04-06T14:02:46.8388802Z #19 128.1 [INFO] Resolved dependency: jaxb-core-4.0.2.jar +2026-04-06T14:02:46.8389421Z #19 128.1 [INFO] Resolved dependency: proto-google-cloud-monitoring-v3-3.31.0.jar +2026-04-06T14:02:46.8389611Z #19 128.1 [INFO] Resolved dependency: grpc-protobuf-1.68.0.jar +2026-04-06T14:02:46.8389804Z #19 128.1 [INFO] Resolved dependency: commons-lang3-3.12.0.jar +2026-04-06T14:02:46.8389972Z #19 128.1 [INFO] Resolved dependency: netty-codec-http2-4.1.108.Final.jar +2026-04-06T14:02:46.8390127Z #19 128.1 [INFO] Resolved dependency: spring-boot-testcontainers-3.4.3.jar +2026-04-06T14:02:46.8390269Z #19 128.1 [INFO] Resolved dependency: api-common-2.37.1.jar +2026-04-06T14:02:46.8390474Z #19 128.1 [INFO] Resolved dependency: javax.annotation-api-1.3.2.jar +2026-04-06T14:02:46.8390778Z #19 128.1 [INFO] Resolved dependency: opentelemetry-sdk-extension-autoconfigure-spi-1.42.1.jar +2026-04-06T14:02:46.8390991Z #19 128.1 [INFO] Resolved dependency: spring-security-test-6.4.3.jar +2026-04-06T14:02:46.8391210Z #19 128.1 [INFO] Resolved dependency: grpc-core-1.68.0.jar +2026-04-06T14:02:46.8391386Z #19 128.1 [INFO] Resolved dependency: proto-google-common-protos-2.45.1.jar +2026-04-06T14:02:46.8391540Z #19 128.1 [INFO] Resolved dependency: httpcore5-5.2.1.jar +2026-04-06T14:02:46.8391681Z #19 128.1 [INFO] Resolved dependency: opentest4j-1.3.0.jar +2026-04-06T14:02:46.8391827Z #19 128.1 [INFO] Resolved dependency: commons-logging-1.2.jar +2026-04-06T14:02:46.8391964Z #19 128.1 [INFO] Resolved dependency: opencensus-contrib-http-util-0.31.1.jar +2026-04-06T14:02:46.8392121Z #19 128.1 [INFO] Resolved dependency: httpcore-4.4.13.jar +2026-04-06T14:02:46.8392278Z #19 128.1 [INFO] Resolved dependency: commons-text-1.10.0.jar +2026-04-06T14:02:46.8392413Z #19 128.1 [INFO] Resolved dependency: jna-4.5.1.jar +2026-04-06T14:02:46.8392563Z #19 128.1 [INFO] Resolved dependency: duct-tape-1.0.8.jar +2026-04-06T14:02:46.8392701Z #19 128.1 [INFO] Resolved dependency: google-cloud-storage-2.43.1.jar +2026-04-06T14:02:46.8392851Z #19 128.1 [INFO] Resolved dependency: conscrypt-openjdk-uber-2.5.2.jar +2026-04-06T14:02:46.8393022Z #19 128.1 [INFO] Resolved dependency: failureaccess-1.0.2.jar +2026-04-06T14:02:46.8393165Z #19 128.1 [INFO] Resolved dependency: spring-boot-starter-tomcat-3.4.3.jar +2026-04-06T14:02:46.8393334Z #19 128.1 [INFO] Resolved dependency: gapic-google-cloud-storage-v2-2.43.1-beta.jar +2026-04-06T14:02:46.8393505Z #19 128.1 [INFO] Resolved dependency: httpclient5-5.2.1.jar +2026-04-06T14:02:46.8393645Z #19 128.1 [INFO] Resolved dependency: opentelemetry-sdk-1.42.1.jar +2026-04-06T14:02:46.8393786Z #19 128.1 [INFO] Resolved dependency: spring-test-6.2.3.jar +2026-04-06T14:02:46.8393920Z #19 128.1 [INFO] Resolved dependency: opentelemetry-api-1.42.1.jar +2026-04-06T14:02:46.8394079Z #19 128.1 [INFO] Resolved dependency: apache-client-2.25.26.jar +2026-04-06T14:02:46.8394236Z #19 128.1 [INFO] Resolved dependency: google-http-client-gson-1.45.0.jar +2026-04-06T14:02:46.8394382Z #19 128.1 [INFO] Resolved dependency: annotations-2.25.26.jar +2026-04-06T14:02:46.8394538Z #19 128.1 [INFO] Resolved dependency: j2objc-annotations-3.0.0.jar +2026-04-06T14:02:46.8394687Z #19 128.1 [INFO] Resolved dependency: aws-query-protocol-2.25.26.jar +2026-04-06T14:02:46.8394840Z #19 128.1 [INFO] Resolved dependency: clickhouse-data-0.7.1.jar +2026-04-06T14:02:46.8394988Z #19 128.1 [INFO] Resolved dependency: spring-security-oauth2-resource-server-6.4.3.jar +2026-04-06T14:02:46.8395154Z #19 128.1 [INFO] Resolved dependency: txw2-4.0.2.jar +2026-04-06T14:02:46.8395301Z #19 128.1 [INFO] Resolved dependency: HdrHistogram-2.2.2.jar +2026-04-06T14:02:46.8395431Z #19 128.1 [INFO] Resolved dependency: waffle-jna-1.9.1.jar +2026-04-06T14:02:46.8395578Z #19 128.1 [INFO] Resolved dependency: hamcrest-2.2.jar +2026-04-06T14:02:46.8395724Z #19 128.1 [INFO] Resolved dependency: istack-commons-runtime-4.1.1.jar +2026-04-06T14:02:46.8395873Z #19 128.1 [INFO] Resolved dependency: annotations-4.1.1.4.jar +2026-04-06T14:02:46.8396008Z #19 128.1 [INFO] Resolved dependency: jboss-logging-3.5.0.Final.jar +2026-04-06T14:02:46.8396152Z #19 128.1 [INFO] Resolved dependency: commons-io-2.13.0.jar +2026-04-06T14:02:46.8396280Z #19 128.1 [INFO] Resolved dependency: jackson-datatype-jdk8-2.18.2.jar +2026-04-06T14:02:46.8396440Z #19 128.1 [INFO] Resolved dependency: log4j-api-2.24.3.jar +2026-04-06T14:02:46.8396577Z #19 128.1 [INFO] Resolved dependency: spring-data-jpa-3.4.3.jar +2026-04-06T14:02:46.8396711Z #19 128.1 [INFO] Resolved dependency: classmate-1.5.1.jar +2026-04-06T14:02:46.8396849Z #19 128.1 [INFO] Resolved dependency: spring-boot-starter-jdbc-3.4.3.jar +2026-04-06T14:02:46.8396994Z #19 128.1 [INFO] Resolved dependency: google-oauth-client-1.36.0.jar +2026-04-06T14:02:46.8397145Z #19 128.1 [INFO] Resolved dependency: jackson-annotations-2.10.3.jar +2026-04-06T14:02:46.8397281Z #19 128.1 [INFO] Resolved dependency: proto-google-cloud-storage-v2-2.43.1-beta.jar +2026-04-06T14:02:46.8397430Z #19 128.1 [INFO] Resolved dependency: jboss-logging-3.4.3.Final.jar +2026-04-06T14:02:46.8397566Z #19 128.1 [INFO] Resolved dependency: aspectjweaver-1.9.22.1.jar +2026-04-06T14:02:46.8397727Z #19 128.1 [INFO] Resolved dependency: shared-resourcemapping-0.32.0.jar +2026-04-06T14:02:46.8397875Z #19 128.1 [INFO] Resolved dependency: bcpkix-jdk18on-1.76.jar +2026-04-06T14:02:46.8398009Z #19 128.1 [INFO] Resolved dependency: tomcat-embed-websocket-10.1.36.jar +2026-04-06T14:02:46.8398159Z #19 128.1 [INFO] Resolved dependency: gax-2.54.1.jar +2026-04-06T14:02:46.8398325Z #19 128.1 [INFO] Resolved dependency: objenesis-3.3.jar +2026-04-06T14:02:46.8398471Z #19 128.1 [INFO] Resolved dependency: slf4j-api-1.7.36.jar +2026-04-06T14:02:46.8398607Z #19 128.1 [INFO] Resolved dependency: spring-boot-starter-security-3.4.3.jar +2026-04-06T14:02:46.8398754Z #19 128.1 [INFO] Resolved dependency: postgresql-42.7.5.jar +2026-04-06T14:02:46.8398892Z #19 128.1 [INFO] Resolved dependency: grpc-api-1.68.0.jar +2026-04-06T14:02:46.8399028Z #19 128.1 [INFO] Resolved dependency: metrics-spi-2.25.26.jar +2026-04-06T14:02:46.8399179Z #19 128.1 [INFO] Resolved dependency: clickhouse-jdbc-0.7.1-all.jar +2026-04-06T14:02:46.8399317Z #19 128.1 [INFO] Resolved dependency: docker-java-transport-httpclient5-3.4.1.jar +2026-04-06T14:02:46.8399456Z #19 128.1 [INFO] Resolved dependency: profiles-2.25.26.jar +2026-04-06T14:02:46.8399592Z #19 128.1 [INFO] Resolved dependency: jcl-over-slf4j-1.7.25.jar +2026-04-06T14:02:46.8399733Z #19 128.1 [INFO] Resolved dependency: google-http-client-jackson2-1.45.0.jar +2026-04-06T14:02:46.8399892Z #19 128.1 [INFO] Resolved dependency: spring-boot-starter-data-jpa-3.4.3.jar +2026-04-06T14:02:46.8400035Z #19 128.1 [INFO] Resolved dependency: opentelemetry-semconv-1.25.0-alpha.jar +2026-04-06T14:02:46.8400179Z #19 128.1 [INFO] Resolved dependency: caffeine-2.6.2.jar +2026-04-06T14:02:46.8400333Z #19 128.1 [INFO] Resolved dependency: hamcrest-core-1.3.jar +2026-04-06T14:02:46.8400482Z #19 128.1 [INFO] Resolved dependency: byte-buddy-1.14.18.jar +2026-04-06T14:02:46.8400622Z #19 128.1 [INFO] Resolved dependency: spring-orm-6.2.3.jar +2026-04-06T14:02:46.8400757Z #19 128.1 [INFO] Resolved dependency: spring-security-oauth2-jose-6.4.3.jar +2026-04-06T14:02:46.8400902Z #19 128.1 [INFO] Resolved dependency: spring-beans-6.2.3.jar +2026-04-06T14:02:46.8401076Z #19 128.1 [INFO] Resolved dependency: jboss-logging-3.1.4.GA.jar +2026-04-06T14:02:46.8401218Z #19 128.1 [INFO] Resolved dependency: jakarta.persistence-api-3.1.0.jar +2026-04-06T14:02:46.8401362Z #19 128.1 [INFO] Resolved dependency: jboss-vfs-3.2.15.Final.jar +2026-04-06T14:02:46.8401503Z #19 128.1 [INFO] Resolved dependency: jakarta.activation-api-2.1.3.jar +2026-04-06T14:02:46.8401655Z #19 128.1 [INFO] Resolved dependency: grpc-inprocess-1.68.0.jar +2026-04-06T14:02:46.8401806Z #19 128.1 [INFO] Resolved dependency: httpcore5-h2-5.2.jar +2026-04-06T14:02:46.8401952Z #19 128.1 [INFO] Resolved dependency: jsonassert-1.5.3.jar +2026-04-06T14:02:46.8402084Z #19 128.1 [INFO] Resolved dependency: jackson-datatype-jsr310-2.18.2.jar +2026-04-06T14:02:46.8402237Z #19 128.1 [INFO] Resolved dependency: osdt_core-19.6.0.0.jar +2026-04-06T14:02:46.8402371Z #19 128.1 [INFO] Resolved dependency: spring-boot-3.4.3.jar +2026-04-06T14:02:46.8402511Z #19 128.1 [INFO] Resolved dependency: http-client-spi-2.25.26.jar +2026-04-06T14:02:46.8402658Z #19 128.1 [INFO] Resolved dependency: spring-webmvc-6.2.3.jar +2026-04-06T14:02:46.8402810Z #19 128.1 [INFO] Resolved dependency: jakarta.validation-api-3.0.2.jar +2026-04-06T14:02:46.8402978Z #19 128.1 [INFO] Resolved dependency: spring-security-oauth2-core-6.4.3.jar +2026-04-06T14:02:46.8403138Z #19 128.1 [INFO] Resolved dependency: mockito-core-5.14.2.jar +2026-04-06T14:02:46.8403304Z #19 128.1 [INFO] Resolved dependency: spring-boot-autoconfigure-3.4.3.jar +2026-04-06T14:02:46.8403454Z #19 128.1 [INFO] Resolved dependency: slf4j-api-2.0.7.jar +2026-04-06T14:02:46.8403595Z #19 128.1 [INFO] Resolved dependency: junit-platform-commons-1.11.4.jar +2026-04-06T14:02:46.8403737Z #19 128.1 [INFO] Resolved dependency: testcontainers-1.20.5.jar +2026-04-06T14:02:46.8403892Z #19 128.1 [INFO] Resolved dependency: netty-nio-client-2.25.26.jar +2026-04-06T14:02:46.8404049Z #19 128.1 [INFO] Resolved dependency: junit-platform-engine-1.11.4.jar +2026-04-06T14:02:46.8404194Z #19 128.1 [INFO] Resolved dependency: mockito-junit-jupiter-5.14.2.jar +2026-04-06T14:02:46.8404335Z #19 128.1 [INFO] Resolved dependency: google-auth-library-oauth2-http-1.27.0.jar +2026-04-06T14:02:46.8404491Z #19 128.1 [INFO] Resolved dependency: proto-google-iam-v1-1.40.1.jar +2026-04-06T14:02:46.8404645Z #19 128.1 [INFO] Resolved dependency: slf4j-api-2.0.16.jar +2026-04-06T14:02:46.8404781Z #19 128.1 [INFO] Resolved dependency: guava-33.3.0-jre.jar +2026-04-06T14:02:46.8404919Z #19 128.1 [INFO] Resolved dependency: jackson-annotations-2.15.2.jar +2026-04-06T14:02:46.8405064Z #19 128.1 [INFO] Resolved dependency: awaitility-4.2.2.jar +2026-04-06T14:02:46.8405203Z #19 128.1 [INFO] Resolved dependency: jaxb-runtime-4.0.2.jar +2026-04-06T14:02:46.8405374Z #19 128.1 [INFO] Resolved dependency: grpc-util-1.68.0.jar +2026-04-06T14:02:46.8405520Z #19 128.1 [INFO] Resolved dependency: grpc-services-1.68.0.jar +2026-04-06T14:02:46.8405654Z #19 128.1 [INFO] Resolved dependency: jakarta.inject-api-2.0.1.jar +2026-04-06T14:02:46.8405801Z #19 128.1 [INFO] Resolved dependency: exporter-metrics-0.31.0.jar +2026-04-06T14:02:46.8405949Z #19 128.1 [INFO] Resolved dependency: log4j-api-2.17.1.jar +2026-04-06T14:02:46.8406090Z #19 128.1 [INFO] Resolved dependency: opencensus-api-0.31.1.jar +2026-04-06T14:02:46.8406223Z #19 128.1 [INFO] Resolved dependency: grpc-netty-shaded-1.68.0.jar +2026-04-06T14:02:46.8406367Z #19 128.1 [INFO] Resolved dependency: docker-java-api-3.4.2.jar +2026-04-06T14:02:46.8406506Z #19 128.1 [INFO] Resolved dependency: auth-2.25.26.jar +2026-04-06T14:02:46.8406658Z #19 128.1 [INFO] Resolved dependency: checksums-2.25.26.jar +2026-04-06T14:02:46.8406794Z #19 128.1 [INFO] Resolved dependency: jackson-core-2.18.2.jar +2026-04-06T14:02:46.8406945Z #19 128.1 [INFO] Resolved dependency: spring-boot-starter-logging-3.4.3.jar +2026-04-06T14:02:46.8407093Z #19 128.1 [INFO] Resolved dependency: apiguardian-api-1.1.2.jar +2026-04-06T14:02:46.8407237Z #19 128.1 [INFO] Resolved dependency: LatencyUtils-2.0.3.jar +2026-04-06T14:02:46.8407382Z #19 128.1 [INFO] Resolved dependency: netty-buffer-4.1.108.Final.jar +2026-04-06T14:02:46.8407531Z #19 128.1 [INFO] Resolved dependency: spring-boot-actuator-autoconfigure-3.4.3.jar +2026-04-06T14:02:46.8407696Z #19 128.1 [INFO] Resolved dependency: google-api-services-storage-v1-rev20240819-2.0.0.jar +2026-04-06T14:02:46.8407850Z #19 128.1 [INFO] Resolved dependency: logback-core-1.5.16.jar +2026-04-06T14:02:46.8408012Z #19 128.1 [INFO] Resolved dependency: google-cloud-core-2.44.1.jar +2026-04-06T14:02:46.8408156Z #19 128.1 [INFO] Resolved dependency: re2j-1.7.jar +2026-04-06T14:02:46.8408309Z #19 128.1 [INFO] Resolved dependency: android-json-0.0.20131108.vaadin1.jar +2026-04-06T14:02:46.8408474Z #19 128.1 [INFO] Resolved dependency: flyway-database-postgresql-10.20.1.jar +2026-04-06T14:02:46.8408624Z #19 128.1 [INFO] Resolved dependency: spring-boot-starter-aop-3.4.3.jar +2026-04-06T14:02:46.8408772Z #19 128.1 [INFO] Resolved dependency: protobuf-java-util-3.25.5.jar +2026-04-06T14:02:46.8408920Z #19 128.1 [INFO] Resolved dependency: aws-json-protocol-2.20.93.jar +2026-04-06T14:02:46.8409067Z #19 128.1 [INFO] ------------------------------------------------------------------------ +2026-04-06T14:02:46.8409205Z #19 128.1 [INFO] BUILD SUCCESS +2026-04-06T14:02:46.8409333Z #19 128.1 [INFO] ------------------------------------------------------------------------ +2026-04-06T14:02:46.8409484Z #19 128.1 [INFO] Total time: 02:04 min +2026-04-06T14:02:46.8409612Z #19 128.1 [INFO] Finished at: 2026-04-06T14:02:46Z +2026-04-06T14:02:46.8409748Z #19 128.1 [INFO] ------------------------------------------------------------------------ +2026-04-06T14:02:46.9268686Z #19 DONE 128.3s +2026-04-06T14:02:47.0825290Z +2026-04-06T14:02:47.0825927Z #23 [build 6/8] COPY src/ src/ +2026-04-06T14:02:47.0983469Z #23 DONE 0.2s +2026-04-06T14:02:47.2106113Z +2026-04-06T14:02:47.2106677Z #24 [build 7/8] COPY --from=frontend /ui/dist/ src/main/resources/static/ +2026-04-06T14:02:47.2106979Z #24 DONE 0.1s +2026-04-06T14:02:47.3671778Z +2026-04-06T14:02:47.3672502Z #25 [build 8/8] RUN ./mvnw package -DskipTests -B +2026-04-06T14:02:49.1864873Z #25 1.971 [INFO] Scanning for projects... +2026-04-06T14:02:49.6822290Z #25 2.466 [INFO] +2026-04-06T14:02:49.8345093Z #25 2.466 [INFO] -----------------< net.siegeln.cameleer:cameleer-saas >----------------- +2026-04-06T14:02:49.8345794Z #25 2.467 [INFO] Building Cameleer SaaS Platform 0.1.0-SNAPSHOT +2026-04-06T14:02:49.8345996Z #25 2.468 [INFO] from pom.xml +2026-04-06T14:02:49.8346220Z #25 2.468 [INFO] --------------------------------[ jar ]--------------------------------- +2026-04-06T14:02:50.4329216Z #25 3.217 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.pom +2026-04-06T14:02:50.9717656Z #25 3.756 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.pom (18 kB at 34 kB/s) +2026-04-06T14:02:51.0742019Z #25 3.777 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/logging/logging-parent/1.0.3.Final/logging-parent-1.0.3.Final.pom +2026-04-06T14:02:51.0742785Z #25 3.806 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/logging/logging-parent/1.0.3.Final/logging-parent-1.0.3.Final.pom (5.7 kB at 189 kB/s) +2026-04-06T14:02:51.0743156Z #25 3.810 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/42/jboss-parent-42.pom +2026-04-06T14:02:51.0743403Z #25 3.857 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/42/jboss-parent-42.pom (76 kB at 1.6 MB/s) +2026-04-06T14:02:51.1873696Z #25 3.889 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.7.0/classmate-1.7.0.pom +2026-04-06T14:02:51.1874460Z #25 3.932 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.7.0/classmate-1.7.0.pom (7.0 kB at 164 kB/s) +2026-04-06T14:02:51.1874771Z #25 3.936 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/56/oss-parent-56.pom +2026-04-06T14:02:51.1875023Z #25 3.971 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/56/oss-parent-56.pom (24 kB at 673 kB/s) +2026-04-06T14:02:51.3058018Z #25 3.994 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom +2026-04-06T14:02:51.3058613Z #25 4.035 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom (11 kB at 271 kB/s) +2026-04-06T14:02:51.3058835Z #25 4.039 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom +2026-04-06T14:02:51.4277994Z #25 4.089 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom (1.2 kB at 23 kB/s) +2026-04-06T14:02:51.4278656Z #25 4.094 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom +2026-04-06T14:02:51.4278896Z #25 4.128 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom (35 kB at 1.0 MB/s) +2026-04-06T14:02:51.4279089Z #25 4.134 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom +2026-04-06T14:02:51.4279283Z #25 4.168 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom (3.5 kB at 102 kB/s) +2026-04-06T14:02:51.4279487Z #25 4.176 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom +2026-04-06T14:02:51.5552750Z #25 4.211 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom (3.7 kB at 107 kB/s) +2026-04-06T14:02:51.5553681Z #25 4.219 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom +2026-04-06T14:02:51.5554097Z #25 4.260 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom (4.0 kB at 97 kB/s) +2026-04-06T14:02:51.5554387Z #25 4.264 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom +2026-04-06T14:02:51.5555328Z #25 4.299 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom (21 kB at 597 kB/s) +2026-04-06T14:02:51.5555569Z #25 4.306 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom +2026-04-06T14:02:51.5555757Z #25 4.338 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom (1.8 kB at 54 kB/s) +2026-04-06T14:02:51.6738480Z #25 4.343 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom +2026-04-06T14:02:51.6739208Z #25 4.376 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom (1.2 kB at 35 kB/s) +2026-04-06T14:02:51.6739657Z #25 4.383 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom +2026-04-06T14:02:51.6739848Z #25 4.418 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom (1.6 kB at 46 kB/s) +2026-04-06T14:02:51.6740071Z #25 4.423 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom +2026-04-06T14:02:51.6740273Z #25 4.458 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom (26 kB at 752 kB/s) +2026-04-06T14:02:51.7738662Z #25 4.514 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.18.2/jackson-dataformat-toml-2.18.2.pom +2026-04-06T14:02:51.7739386Z #25 4.558 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.18.2/jackson-dataformat-toml-2.18.2.pom (3.5 kB at 77 kB/s) +2026-04-06T14:02:51.9642714Z #25 4.562 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.18.2/jackson-dataformats-text-2.18.2.pom +2026-04-06T14:02:51.9643624Z #25 4.594 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.18.2/jackson-dataformats-text-2.18.2.pom (3.7 kB at 119 kB/s) +2026-04-06T14:02:52.0630595Z #25 4.846 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.15.11/byte-buddy-agent-1.15.11.pom +2026-04-06T14:02:52.1854612Z #25 4.894 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.15.11/byte-buddy-agent-1.15.11.pom (12 kB at 244 kB/s) +2026-04-06T14:02:52.1855797Z #25 4.932 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom +2026-04-06T14:02:52.1856102Z #25 4.969 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom (1.4 kB at 37 kB/s) +2026-04-06T14:02:52.3332505Z #25 5.117 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.jar +2026-04-06T14:02:52.4756973Z #25 5.153 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.6.1.Final/jboss-logging-3.6.1.Final.jar (62 kB at 1.8 MB/s) +2026-04-06T14:02:52.4757818Z #25 5.155 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.7.0/classmate-1.7.0.jar +2026-04-06T14:02:52.4758076Z #25 5.156 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.jar +2026-04-06T14:02:52.4758299Z #25 5.158 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.jar +2026-04-06T14:02:52.4758505Z #25 5.159 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.jar +2026-04-06T14:02:52.4758770Z #25 5.161 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.jar +2026-04-06T14:02:52.7072444Z #25 5.258 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.jar (920 kB at 8.9 MB/s) +2026-04-06T14:02:52.7073327Z #25 5.260 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.jar +2026-04-06T14:02:52.7073699Z #25 5.269 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.jar (73 kB at 666 kB/s) +2026-04-06T14:02:52.7073951Z #25 5.271 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.18.2/jackson-dataformat-toml-2.18.2.jar +2026-04-06T14:02:52.7074239Z #25 5.273 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.jar (139 kB at 1.2 MB/s) +2026-04-06T14:02:52.7074470Z #25 5.273 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.jar (27 kB at 231 kB/s) +2026-04-06T14:02:52.7074707Z #25 5.273 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.jar +2026-04-06T14:02:52.7074904Z #25 5.273 [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.15.11/byte-buddy-agent-1.15.11.jar +2026-04-06T14:02:52.7075143Z #25 5.284 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.7.0/classmate-1.7.0.jar (69 kB at 530 kB/s) +2026-04-06T14:02:52.7075384Z #25 5.295 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.jar (26 kB at 191 kB/s) +2026-04-06T14:02:52.7075623Z #25 5.300 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.jar (1.5 kB at 11 kB/s) +2026-04-06T14:02:52.7075841Z #25 5.314 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.18.2/jackson-dataformat-toml-2.18.2.jar (56 kB at 367 kB/s) +2026-04-06T14:02:52.7076097Z #25 5.323 [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.15.11/byte-buddy-agent-1.15.11.jar (365 kB at 2.3 MB/s) +2026-04-06T14:02:52.7076333Z #25 5.338 [INFO] +2026-04-06T14:02:52.7076490Z #25 5.339 [INFO] --- resources:3.3.1:resources (***-resources) @ cameleer-saas --- +2026-04-06T14:02:52.7815217Z #25 5.565 [INFO] Copying 4 resources from src/main/resources to target/classes +2026-04-06T14:02:52.9787955Z #25 5.603 [INFO] Copying 13 resources from src/main/resources to target/classes +2026-04-06T14:02:52.9788735Z #25 5.610 [INFO] +2026-04-06T14:02:52.9789182Z #25 5.611 [INFO] --- compiler:3.13.0:compile (***-compile) @ cameleer-saas --- +2026-04-06T14:02:53.0314483Z #25 5.815 [INFO] Recompiling the module because of changed source code. +2026-04-06T14:02:53.1923242Z #25 5.826 [INFO] Compiling 73 source files with javac [debug parameters release 21] to target/classes +2026-04-06T14:02:56.8516525Z #25 9.635 [INFO] /build/src/main/java/net/siegeln/cameleer/saas/config/SecurityConfig.java: /build/src/main/java/net/siegeln/cameleer/saas/config/SecurityConfig.java uses or overrides a deprecated API. +2026-04-06T14:02:57.0414319Z #25 9.636 [INFO] /build/src/main/java/net/siegeln/cameleer/saas/config/SecurityConfig.java: Recompile with -Xlint:deprecation for details. +2026-04-06T14:02:57.0415115Z #25 9.636 [INFO] +2026-04-06T14:02:57.0415369Z #25 9.637 [INFO] --- resources:3.3.1:testResources (***-testResources) @ cameleer-saas --- +2026-04-06T14:02:57.0415593Z #25 9.647 [INFO] Copying 1 resource from src/test/resources to target/test-classes +2026-04-06T14:02:57.0415810Z #25 9.651 [INFO] +2026-04-06T14:02:57.0415966Z #25 9.651 [INFO] --- compiler:3.13.0:testCompile (***-testCompile) @ cameleer-saas --- +2026-04-06T14:02:57.0416161Z #25 9.673 [INFO] Recompiling the module because of changed dependency. +2026-04-06T14:02:57.0416398Z #25 9.674 [INFO] Compiling 19 source files with javac [debug parameters release 21] to target/test-classes +2026-04-06T14:02:58.8065126Z #25 11.59 [INFO] +2026-04-06T14:02:58.9575265Z #25 11.59 [INFO] --- surefire:3.5.2:test (***-test) @ cameleer-saas --- +2026-04-06T14:02:58.9944462Z #25 11.78 [INFO] Tests are skipped. +2026-04-06T14:02:59.1455837Z #25 11.78 [INFO] +2026-04-06T14:02:59.1456418Z #25 11.78 [INFO] --- jar:3.4.2:jar (***-jar) @ cameleer-saas --- +2026-04-06T14:02:59.4869775Z #25 12.27 [INFO] Building jar: /build/target/cameleer-saas-0.1.0-SNAPSHOT.jar +2026-04-06T14:02:59.6246612Z #25 12.41 [INFO] +2026-04-06T14:02:59.7748134Z #25 12.41 [INFO] --- spring-boot:3.4.3:repackage (repackage) @ cameleer-saas --- +2026-04-06T14:03:00.3936957Z #25 13.18 [INFO] Replacing main artifact /build/target/cameleer-saas-0.1.0-SNAPSHOT.jar with repackaged archive, adding nested dependencies in BOOT-INF/. +2026-04-06T14:03:00.3937619Z #25 13.18 [INFO] The original artifact has been renamed to /build/target/cameleer-saas-0.1.0-SNAPSHOT.jar.original +2026-04-06T14:03:00.5546788Z #25 13.18 [INFO] ------------------------------------------------------------------------ +2026-04-06T14:03:00.5547295Z #25 13.18 [INFO] BUILD SUCCESS +2026-04-06T14:03:00.5547522Z #25 13.18 [INFO] ------------------------------------------------------------------------ +2026-04-06T14:03:00.5547678Z #25 13.19 [INFO] Total time: 11.255 s +2026-04-06T14:03:00.5547836Z #25 13.19 [INFO] Finished at: 2026-04-06T14:03:00Z +2026-04-06T14:03:00.5547984Z #25 13.19 [INFO] ------------------------------------------------------------------------ +2026-04-06T14:03:00.6595888Z #25 DONE 13.4s +2026-04-06T14:03:00.9985693Z +2026-04-06T14:03:00.9986720Z #26 [stage-2 4/4] COPY --from=build /build/target/*.jar app.jar +2026-04-06T14:03:01.3631036Z #26 DONE 0.4s +2026-04-06T14:03:01.5262789Z +2026-04-06T14:03:01.5263306Z #27 exporting to image +2026-04-06T14:03:01.5263479Z #27 exporting layers +2026-04-06T14:03:05.1893624Z #27 exporting layers 3.8s done +2026-04-06T14:03:05.2973644Z #27 exporting manifest sha256:c5a21d76ca40569c50bf56d3ccdfda7749cbc3f1c93cfb0460acb3bb5ecaaadf 0.0s done +2026-04-06T14:03:05.2974517Z #27 exporting config sha256:1b91f0bd2f085286053de8ad80ad49405de1a88052a486253fc473a0ce27f5db 0.0s done +2026-04-06T14:03:05.2974794Z #27 pushing layers +2026-04-06T14:03:05.4498488Z #27 ... +2026-04-06T14:03:05.4498936Z +2026-04-06T14:03:05.4499146Z #28 [auth] *:: cameleer/cameleer-saas:pull,push token for gitea.siegeln.net +2026-04-06T14:03:05.4499378Z #28 DONE 0.0s +2026-04-06T14:03:05.5976121Z +2026-04-06T14:03:05.5976599Z #27 exporting to image +2026-04-06T14:03:06.3186272Z #27 pushing layers 1.1s done +2026-04-06T14:03:06.3187840Z #27 pushing manifest for gitea.siegeln.net/cameleer/cameleer-saas:82163144e7f6bd927824c2fd2deef3b0ae5bf2fd@sha256:c5a21d76ca40569c50bf56d3ccdfda7749cbc3f1c93cfb0460acb3bb5ecaaadf +2026-04-06T14:03:06.4398100Z #27 pushing layers 0.0s done +2026-04-06T14:03:06.4399643Z #27 pushing manifest for gitea.siegeln.net/cameleer/cameleer-saas:82163144e7f6bd927824c2fd2deef3b0ae5bf2fd@sha256:c5a21d76ca40569c50bf56d3ccdfda7749cbc3f1c93cfb0460acb3bb5ecaaadf 0.0s done +2026-04-06T14:03:06.4400112Z #27 pushing manifest for gitea.siegeln.net/cameleer/cameleer-saas:latest@sha256:c5a21d76ca40569c50bf56d3ccdfda7749cbc3f1c93cfb0460acb3bb5ecaaadf 0.0s done +2026-04-06T14:03:06.4400359Z #27 DONE 5.1s +2026-04-06T14:03:06.5669688Z +2026-04-06T14:03:06.5670644Z 1 warning found (use docker --debug to expand): +2026-04-06T14:03:06.5671282Z  - SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "REGISTRY_TOKEN") (line 5) +2026-04-06T14:03:07.0256317Z #0 building with "cibuilder" instance using docker-container driver +2026-04-06T14:03:07.0257036Z +2026-04-06T14:03:07.0257883Z #1 [internal] load build definition from Dockerfile +2026-04-06T14:03:07.0258253Z #1 transferring dockerfile: 406B done +2026-04-06T14:03:07.0258426Z #1 DONE 0.1s +2026-04-06T14:03:07.0258567Z +2026-04-06T14:03:07.0258687Z #2 [internal] load metadata for docker.io/library/node:22-alpine +2026-04-06T14:03:07.2799920Z #2 DONE 0.4s +2026-04-06T14:03:07.2800658Z +2026-04-06T14:03:07.2801036Z #3 [internal] load metadata for ghcr.io/***-io/***:latest +2026-04-06T14:03:09.6821772Z #3 DONE 2.8s +2026-04-06T14:03:09.7973857Z +2026-04-06T14:03:09.7976871Z #4 [internal] load .dockerignore +2026-04-06T14:03:09.7977400Z #4 transferring context: 2B done +2026-04-06T14:03:09.7977579Z #4 DONE 0.1s +2026-04-06T14:03:09.7977720Z +2026-04-06T14:03:09.7979128Z #5 [internal] load build context +2026-04-06T14:03:09.7979449Z #5 DONE 0.0s +2026-04-06T14:03:09.7979674Z +2026-04-06T14:03:09.7979901Z #6 [build 1/6] FROM docker.io/library/node:22-alpine@sha256:4d64b49e6c891c8fc821007cb1cdc6c0db7773110ac2c34bf2e6960adef62ed3 +2026-04-06T14:03:09.7980165Z #6 resolve docker.io/library/node:22-alpine@sha256:4d64b49e6c891c8fc821007cb1cdc6c0db7773110ac2c34bf2e6960adef62ed3 0.0s done +2026-04-06T14:03:09.7980371Z #6 DONE 0.1s +2026-04-06T14:03:09.7980544Z +2026-04-06T14:03:09.7980663Z #7 [stage-1 1/2] FROM ghcr.io/***-io/***:latest@sha256:aa4c428b70d9dd8eac23b6eeb3826a02d5fe0283b5dd774589b9b9760e0c6e9f +2026-04-06T14:03:09.7980938Z #7 resolve ghcr.io/***-io/***:latest@sha256:aa4c428b70d9dd8eac23b6eeb3826a02d5fe0283b5dd774589b9b9760e0c6e9f +2026-04-06T14:03:10.0216482Z #7 resolve ghcr.io/***-io/***:latest@sha256:aa4c428b70d9dd8eac23b6eeb3826a02d5fe0283b5dd774589b9b9760e0c6e9f 0.1s done +2026-04-06T14:03:10.0217138Z #7 CACHED +2026-04-06T14:03:10.0217363Z +2026-04-06T14:03:10.0217483Z #8 [build 2/6] WORKDIR /ui +2026-04-06T14:03:10.0217618Z #8 CACHED +2026-04-06T14:03:10.0217739Z +2026-04-06T14:03:10.0217867Z #5 [internal] load build context +2026-04-06T14:03:10.0218259Z #5 transferring context: 82.04kB done +2026-04-06T14:03:10.0218440Z #5 DONE 0.1s +2026-04-06T14:03:10.0218562Z +2026-04-06T14:03:10.0218688Z #9 [build 3/6] COPY package.json package-lock.json .npmrc ./ +2026-04-06T14:03:10.1433865Z #9 DONE 0.3s +2026-04-06T14:03:10.2993531Z +2026-04-06T14:03:10.2993989Z #10 [build 4/6] RUN echo "//gitea.siegeln.net/api/packages/cameleer/npm/:_authToken=***" >> .npmrc && npm ci +2026-04-06T14:03:14.2703818Z #10 4.121 +2026-04-06T14:03:14.2704521Z #10 4.121 added 75 packages, and audited 76 packages in 4s +2026-04-06T14:03:14.2708321Z #10 4.121 +2026-04-06T14:03:14.2708732Z #10 4.121 10 packages are looking for funding +2026-04-06T14:03:14.2710081Z #10 4.121 run `npm fund` for details +2026-04-06T14:03:14.2711111Z #10 4.121 +2026-04-06T14:03:14.2711323Z #10 4.121 found 0 vulnerabilities +2026-04-06T14:03:14.4216294Z #10 4.122 npm notice +2026-04-06T14:03:14.4216778Z #10 4.122 npm notice New major version of npm available! 10.9.7 -> 11.12.1 +2026-04-06T14:03:14.4216970Z #10 4.122 npm notice Changelog: https://github.com/npm/cli/releases/tag/v11.12.1 +2026-04-06T14:03:14.4217209Z #10 4.122 npm notice To update run: npm install -g npm@11.12.1 +2026-04-06T14:03:14.4217361Z #10 4.122 npm notice +2026-04-06T14:03:14.7065544Z #10 DONE 4.6s +2026-04-06T14:03:14.8613013Z +2026-04-06T14:03:14.8613870Z #11 [build 5/6] COPY . . +2026-04-06T14:03:14.8614154Z #11 DONE 0.1s +2026-04-06T14:03:15.0175680Z +2026-04-06T14:03:15.0176301Z #12 [build 6/6] RUN npm run build +2026-04-06T14:03:15.1692894Z #12 0.302 +2026-04-06T14:03:15.1693465Z #12 0.302 > cameleer-sign-in@0.1.0 build +2026-04-06T14:03:15.1693720Z #12 0.302 > tsc -b && vite build +2026-04-06T14:03:15.1693866Z #12 0.302 +2026-04-06T14:03:17.4223839Z #12 2.555 vite v6.4.1 building for production... +2026-04-06T14:03:17.6615054Z #12 2.644 transforming... +2026-04-06T14:03:19.2427936Z #12 4.374 ✓ 45 modules transformed. +2026-04-06T14:03:19.5064054Z #12 4.639 rendering chunks... +2026-04-06T14:03:19.6267186Z #12 4.649 computing gzip size... +2026-04-06T14:03:19.6267756Z #12 4.660 dist/index.html 0.47 kB │ gzip: 0.31 kB +2026-04-06T14:03:19.6268017Z #12 4.660 dist/assets/index-om7ZZBIl.css 110.49 kB │ gzip: 18.03 kB +2026-04-06T14:03:19.6268184Z #12 4.660 dist/assets/index-BYivmmOr.js 222.02 kB │ gzip: 68.90 kB +2026-04-06T14:03:19.6268351Z #12 4.662 ✓ built in 2.07s +2026-04-06T14:03:19.6268478Z #12 DONE 4.8s +2026-04-06T14:03:19.7453767Z +2026-04-06T14:03:19.7454741Z #13 [stage-1 2/2] COPY --from=build /ui/dist/ /etc/***/packages/experience/dist/ +2026-04-06T14:03:19.9197070Z #13 DONE 0.2s +2026-04-06T14:03:20.0847994Z +2026-04-06T14:03:20.0848478Z #14 exporting to image +2026-04-06T14:03:20.0848639Z #14 exporting layers +2026-04-06T14:03:20.1396413Z #14 exporting layers 0.2s done +2026-04-06T14:03:20.2396966Z #14 exporting manifest sha256:4537de774d55dab9245cabd786a68e4750543c0f8ca8435772d3d5755e7c45ec 0.0s done +2026-04-06T14:03:20.2398445Z #14 exporting config sha256:e86b293d43f51ad9ba880778860c993043e9f6c3b9badf54d73f571f610a64ba 0.0s done +2026-04-06T14:03:20.2398695Z #14 pushing layers +2026-04-06T14:03:20.3900552Z #14 ... +2026-04-06T14:03:20.3901076Z +2026-04-06T14:03:20.3901225Z #15 [auth] *:: cameleer/cameleer-***:pull,push token for gitea.siegeln.net +2026-04-06T14:03:20.3901439Z #15 DONE 0.0s +2026-04-06T14:03:20.5028468Z +2026-04-06T14:03:20.5029252Z #14 exporting to image +2026-04-06T14:03:20.5029441Z #14 pushing layers 0.3s done +2026-04-06T14:03:20.5029606Z #14 pushing manifest for gitea.siegeln.net/cameleer/cameleer-***:82163144e7f6bd927824c2fd2deef3b0ae5bf2fd@sha256:4537de774d55dab9245cabd786a68e4750543c0f8ca8435772d3d5755e7c45ec +2026-04-06T14:03:20.6100028Z #14 pushing layers 0.1s done +2026-04-06T14:03:20.6100595Z #14 pushing manifest for gitea.siegeln.net/cameleer/cameleer-***:82163144e7f6bd927824c2fd2deef3b0ae5bf2fd@sha256:4537de774d55dab9245cabd786a68e4750543c0f8ca8435772d3d5755e7c45ec 0.0s done +2026-04-06T14:03:20.6100886Z #14 pushing manifest for gitea.siegeln.net/cameleer/cameleer-***:latest@sha256:4537de774d55dab9245cabd786a68e4750543c0f8ca8435772d3d5755e7c45ec +2026-04-06T14:03:20.8019400Z #14 pushing manifest for gitea.siegeln.net/cameleer/cameleer-***:latest@sha256:4537de774d55dab9245cabd786a68e4750543c0f8ca8435772d3d5755e7c45ec 0.0s done +2026-04-06T14:03:20.8020040Z #14 DONE 0.7s +2026-04-06T14:03:20.8415372Z +2026-04-06T14:03:20.8416164Z 1 warning found (use docker --debug to expand): +2026-04-06T14:03:20.8416417Z  - SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "REGISTRY_TOKEN") (line 2) +2026-04-06T14:03:20.8638167Z Cleaning up container for job docker +2026-04-06T14:03:21.0823721Z Removed container: 99f113be2a3c1381abc30fc0e045f78a0ae73922a543219f18636b64cd5651b7 +2026-04-06T14:03:21.0838653Z 🐳 docker volume rm GITEA-ACTIONS-TASK-4078_WORKFLOW-CI_JOB-docker +2026-04-06T14:03:21.1018420Z 🐳 docker volume rm GITEA-ACTIONS-TASK-4078_WORKFLOW-CI_JOB-docker-env +2026-04-06T14:03:21.1068438Z 🏁 Job succeeded diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 4c729ad..3e3a361 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -26,8 +26,8 @@ services: SPRING_WEB_RESOURCES_STATIC_LOCATIONS: file:/app/static/,classpath:/static/ CAMELEER_SAAS_PROVISIONING_PUBLICHOST: ${PUBLIC_HOST:-localhost} CAMELEER_SAAS_PROVISIONING_PUBLICPROTOCOL: ${PUBLIC_PROTOCOL:-https} - CAMELEER_SAAS_PROVISIONING_SERVERIMAGE: gitea.siegeln.net/cameleer/cameleer3-server:${VERSION:-latest} - CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE: gitea.siegeln.net/cameleer/cameleer3-server-ui:${VERSION:-latest} + CAMELEER_SAAS_PROVISIONING_SERVERIMAGE: gitea.siegeln.net/cameleer/cameleer-server:${VERSION:-latest} + CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE: gitea.siegeln.net/cameleer/cameleer-server-ui:${VERSION:-latest} CAMELEER_SAAS_PROVISIONING_NETWORKNAME: cameleer-saas_cameleer CAMELEER_SAAS_PROVISIONING_TRAEFIKNETWORK: cameleer-traefik diff --git a/docker/cameleer-postgres/init-databases.sh b/docker/cameleer-postgres/init-databases.sh index 51829de..f50d0af 100644 --- a/docker/cameleer-postgres/init-databases.sh +++ b/docker/cameleer-postgres/init-databases.sh @@ -3,7 +3,7 @@ set -e psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL CREATE DATABASE logto; - CREATE DATABASE cameleer3; + CREATE DATABASE cameleer; GRANT ALL PRIVILEGES ON DATABASE logto TO $POSTGRES_USER; - GRANT ALL PRIVILEGES ON DATABASE cameleer3 TO $POSTGRES_USER; + GRANT ALL PRIVILEGES ON DATABASE cameleer TO $POSTGRES_USER; EOSQL diff --git a/docker/logto-bootstrap.sh b/docker/logto-bootstrap.sh index 9e04051..375ffb6 100644 --- a/docker/logto-bootstrap.sh +++ b/docker/logto-bootstrap.sh @@ -4,7 +4,7 @@ set -e # Cameleer SaaS — Bootstrap Script # Creates Logto apps, users, organizations, roles. # Seeds cameleer_saas DB with tenant, environment, license. -# Configures cameleer3-server OIDC. +# Configures cameleer-server OIDC. # Idempotent: checks existence before creating. LOGTO_ENDPOINT="${LOGTO_ENDPOINT:-http://cameleer-logto:3001}" @@ -174,7 +174,7 @@ else log "Created SPA app: $SPA_ID" fi -# --- Traditional Web App (for cameleer3-server OIDC) --- +# --- Traditional Web App (for cameleer-server OIDC) --- TRAD_ID=$(echo "$EXISTING_APPS" | jq -r ".[] | select(.name == \"$TRAD_APP_NAME\" and .type == \"Traditional\") | .id") TRAD_SECRET="" if [ -n "$TRAD_ID" ]; then diff --git a/docker/runtime-base/Dockerfile b/docker/runtime-base/Dockerfile index b9fcf88..b5148d6 100644 --- a/docker/runtime-base/Dockerfile +++ b/docker/runtime-base/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /app # Agent JAR and log appender JAR are copied during CI build from Gitea Maven registry COPY agent.jar /app/agent.jar -COPY cameleer3-log-appender.jar /app/cameleer3-log-appender.jar +COPY cameleer-log-appender.jar /app/cameleer-log-appender.jar ENTRYPOINT exec java \ -Dcameleer.export.type=${CAMELEER_EXPORT_TYPE:-HTTP} \ diff --git a/docs/architecture.md b/docs/architecture.md index 60b0cef..b76b452 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -15,12 +15,12 @@ infrastructure themselves. The system comprises three components: -**Cameleer Agent** (`cameleer3` repo) -- A Java agent using ByteBuddy for +**Cameleer Agent** (`cameleer` repo) -- A Java agent using ByteBuddy for zero-code bytecode instrumentation. Captures route executions, processor traces, payloads, metrics, and route graph topology. Deployed as a `-javaagent` JAR alongside the customer's application. -**Cameleer Server** (`cameleer3-server` repo) -- A Spring Boot observability +**Cameleer Server** (`cameleer-server` repo) -- A Spring Boot observability backend. Receives telemetry from agents via HTTP, pushes configuration and commands to agents via SSE. Stores data in PostgreSQL and ClickHouse. Provides a React SPA dashboard for direct observability access. JWT auth with Ed25519 @@ -50,7 +50,7 @@ logging. Serves a React SPA that wraps the full user experience. | | /interaction) | v v v v +--------------+ +--------------+ +-----------+ +------------------+ - | cameleer-saas| | cameleer-saas| | Logto | | cameleer3-server | + | cameleer-saas| | cameleer-saas| | Logto | | cameleer-server | | (API) | | (SPA) | | | | | | :8080 | | :8080 | | :3001 | | :8081 | +--------------+ +--------------+ +-----------+ +------------------+ @@ -80,14 +80,14 @@ logging. Serves a React SPA that wraps the full user experience. | logto | `ghcr.io/logto-io/logto:latest` | 3001 | cameleer | OIDC identity provider | | logto-bootstrap | `postgres:16-alpine` (ephemeral) | -- | cameleer | One-shot bootstrap script | | cameleer-saas | `gitea.siegeln.net/cameleer/cameleer-saas` | 8080 | cameleer | SaaS API + SPA serving | -| cameleer3-server | `gitea.siegeln.net/cameleer/cameleer3-server`| 8081 | cameleer | Observability backend | +| cameleer-server | `gitea.siegeln.net/cameleer/cameleer-server`| 8081 | cameleer | Observability backend | | clickhouse | `clickhouse/clickhouse-server:latest` | 8123 | cameleer | Time-series telemetry storage | ### Docker Network All services share a single Docker bridge network named `cameleer`. Customer app containers are also attached to this network so agents can reach the -cameleer3-server. +cameleer-server. ### Volumes @@ -105,7 +105,7 @@ The shared PostgreSQL instance hosts three databases: - `cameleer_saas` -- SaaS platform tables (tenants, environments, apps, etc.) - `logto` -- Logto identity provider data -- `cameleer3` -- cameleer3-server operational data +- `cameleer` -- cameleer-server operational data The `docker/init-databases.sh` init script creates all three during first start. @@ -128,9 +128,9 @@ The `docker/init-databases.sh` init script creates all three during first start. |--------------------|-----------------|------------------|----------------------|--------------------------------| | Logto user JWT | Logto | ES384 (asymmetric)| Any service via JWKS | SaaS UI users, server users | | Logto M2M JWT | Logto | ES384 (asymmetric)| Any service via JWKS | SaaS platform -> server calls | -| Server internal JWT| cameleer3-server| HS256 (symmetric) | Issuing server only | Agents (after registration) | -| API key (opaque) | SaaS platform | N/A (SHA-256 hash)| cameleer3-server | Agent initial registration | -| Ed25519 signature | cameleer3-server| EdDSA | Agent | Server -> agent command signing| +| Server internal JWT| cameleer-server| HS256 (symmetric) | Issuing server only | Agents (after registration) | +| API key (opaque) | SaaS platform | N/A (SHA-256 hash)| cameleer-server | Agent initial registration | +| Ed25519 signature | cameleer-server| EdDSA | Agent | Server -> agent command signing| ### 3.3 Scope Model @@ -183,7 +183,7 @@ the bootstrap script (`docker/logto-bootstrap.sh`): 4. `organization_id` claim in JWT resolves to internal tenant ID via `TenantIsolationInterceptor`. -**SaaS platform -> cameleer3-server API (M2M):** +**SaaS platform -> cameleer-server API (M2M):** 1. SaaS platform obtains Logto M2M token (`client_credentials` grant) via `LogtoManagementClient`. @@ -191,7 +191,7 @@ the bootstrap script (`docker/logto-bootstrap.sh`): 3. Server validates via Logto JWKS (OIDC resource server support). 4. Server grants ADMIN role to valid M2M tokens. -**Agent -> cameleer3-server:** +**Agent -> cameleer-server:** 1. Agent reads `CAMELEER_SERVER_SECURITY_BOOTSTRAPTOKEN` environment variable (API key). 2. Calls `POST /api/v1/agents/register` with the key as Bearer token. @@ -458,9 +458,9 @@ Defined in `AuditAction.java`: ### 5.1 Server-Per-Tenant -Each tenant gets a dedicated cameleer3-server instance. The SaaS platform +Each tenant gets a dedicated cameleer-server instance. The SaaS platform provisions and manages these servers. In the current Docker Compose topology, a -single shared cameleer3-server is used for the default tenant. Production +single shared cameleer-server is used for the default tenant. Production deployments will run per-tenant servers as separate containers or K8s pods. ### 5.2 Customer App Deployment Flow @@ -495,7 +495,7 @@ The deployment lifecycle is managed by `DeploymentService`: |-----------------------------|----------------------------------------| | `CAMELEER_SERVER_SECURITY_BOOTSTRAPTOKEN` | API key for agent registration | | `CAMELEER_EXPORT_TYPE` | `HTTP` | - | `CAMELEER_SERVER_RUNTIME_SERVERURL` | cameleer3-server internal URL | + | `CAMELEER_SERVER_RUNTIME_SERVERURL` | cameleer-server internal URL | | `CAMELEER_APPLICATION_ID` | App slug | | `CAMELEER_ENVIRONMENT_ID` | Environment slug | | `CAMELEER_DISPLAY_NAME` | `{tenant}-{env}-{app}` | @@ -524,14 +524,14 @@ Configured via `RuntimeConfig`: ## 6. Agent-Server Protocol The agent-server protocol is defined in full in -`cameleer3/cameleer3-common/PROTOCOL.md`. This section summarizes the key +`cameleer/cameleer-common/PROTOCOL.md`. This section summarizes the key aspects relevant to the SaaS platform. ### 6.1 Agent Registration 1. Agent starts with `CAMELEER_SERVER_SECURITY_BOOTSTRAPTOKEN` environment variable (an API key generated by the SaaS platform, prefixed with `cmk_`). -2. Agent calls `POST /api/v1/agents/register` on the cameleer3-server with the +2. Agent calls `POST /api/v1/agents/register` on the cameleer-server with the API key as a Bearer token. 3. Server validates the key and returns: - HMAC JWT access token (short-lived, ~1 hour) @@ -744,7 +744,7 @@ leaks regardless of whether the request succeeded or failed. |----------------------|-------------|------------------------------------| | Logto access token | ~1 hour | Configured in Logto, refreshed by SDK | | Logto refresh token | ~14 days | Used by `@logto/react` for silent refresh | -| Server agent JWT | ~1 hour | cameleer3-server `CAMELEER_JWT_SECRET` | +| Server agent JWT | ~1 hour | cameleer-server `CAMELEER_JWT_SECRET` | | Server refresh token | ~7 days | Agent re-registers when expired | ### 8.4 Audit Logging @@ -876,22 +876,22 @@ state (`currentTenantId`). Provides `logout` and `signIn` callbacks. | Variable | Default | Description | |-----------------------------------|------------------------------------|----------------------------------| -| `CAMELEER_SAAS_PROVISIONING_SERVERIMAGE` | `gitea.siegeln.net/cameleer/cameleer3-server:latest` | Docker image for per-tenant server | -| `CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE` | `gitea.siegeln.net/cameleer/cameleer3-server-ui:latest` | Docker image for per-tenant UI | +| `CAMELEER_SAAS_PROVISIONING_SERVERIMAGE` | `gitea.siegeln.net/cameleer/cameleer-server:latest` | Docker image for per-tenant server | +| `CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE` | `gitea.siegeln.net/cameleer/cameleer-server-ui:latest` | Docker image for per-tenant UI | | `CAMELEER_SAAS_PROVISIONING_NETWORKNAME` | `cameleer-saas_cameleer` | Shared services Docker network | | `CAMELEER_SAAS_PROVISIONING_TRAEFIKNETWORK` | `cameleer-traefik` | Traefik Docker network | | `CAMELEER_SAAS_PROVISIONING_PUBLICHOST` | `localhost` | Public hostname (same as infrastructure `PUBLIC_HOST`) | | `CAMELEER_SAAS_PROVISIONING_PUBLICPROTOCOL` | `https` | Public protocol (same as infrastructure `PUBLIC_PROTOCOL`) | -| `CAMELEER_SAAS_PROVISIONING_DATASOURCEURL` | `jdbc:postgresql://cameleer-postgres:5432/cameleer3` | PostgreSQL URL passed to tenant servers | +| `CAMELEER_SAAS_PROVISIONING_DATASOURCEURL` | `jdbc:postgresql://cameleer-postgres:5432/cameleer` | PostgreSQL URL passed to tenant servers | | `CAMELEER_SAAS_PROVISIONING_CLICKHOUSEURL` | `jdbc:clickhouse://cameleer-clickhouse:8123/cameleer` | ClickHouse URL passed to tenant servers | -### 10.2 cameleer3-server (per-tenant) +### 10.2 cameleer-server (per-tenant) Env vars injected into provisioned per-tenant server containers by `DockerTenantProvisioner`. All server properties use the `cameleer.server.*` prefix (env vars: `CAMELEER_SERVER_*`). | Variable | Default / Value | Description | |------------------------------|----------------------------------------------|----------------------------------| -| `SPRING_DATASOURCE_URL` | `jdbc:postgresql://cameleer-postgres:5432/cameleer3` | PostgreSQL JDBC URL | +| `SPRING_DATASOURCE_URL` | `jdbc:postgresql://cameleer-postgres:5432/cameleer` | PostgreSQL JDBC URL | | `SPRING_DATASOURCE_USERNAME`| `cameleer` | PostgreSQL user | | `SPRING_DATASOURCE_PASSWORD`| `cameleer_dev` | PostgreSQL password | | `CAMELEER_SERVER_CLICKHOUSE_URL` | `jdbc:clickhouse://cameleer-clickhouse:8123/cameleer` | ClickHouse JDBC URL | diff --git a/docs/superpowers/plans/2026-03-29-phase-roadmap.md b/docs/superpowers/plans/2026-03-29-phase-roadmap.md index 35d1142..cbf41eb 100644 --- a/docs/superpowers/plans/2026-03-29-phase-roadmap.md +++ b/docs/superpowers/plans/2026-03-29-phase-roadmap.md @@ -80,7 +80,7 @@ Note: Phase 9 (Frontend) can be developed in parallel with Phases 3-8, building **PRD Sections:** 6 (Tenant Provisioning), 11 (Networking & Tenant Isolation) **Gitea Epics:** #3 (Tenant Provisioning), #8 (Networking) **Depends on:** Phase 2 -**Produces:** Automated tenant provisioning pipeline. Signup creates tenant → Flux HelmRelease generated → namespace provisioned → cameleer3-server deployed → PostgreSQL schema + OpenSearch index created → tenant ACTIVE. NetworkPolicies enforced. +**Produces:** Automated tenant provisioning pipeline. Signup creates tenant → Flux HelmRelease generated → namespace provisioned → cameleer-server deployed → PostgreSQL schema + OpenSearch index created → tenant ACTIVE. NetworkPolicies enforced. **Key deliverables:** - Provisioning state machine (idempotent, retryable) @@ -91,7 +91,7 @@ Note: Phase 9 (Frontend) can be developed in parallel with Phases 3-8, building - Readiness checking (poll tenant server health) - Tenant lifecycle operations (suspend, reactivate, delete) - K8s NetworkPolicy templates (default deny + allow rules) -- Helm chart for cameleer3-server tenant deployment +- Helm chart for cameleer-server tenant deployment --- @@ -143,11 +143,11 @@ Note: Phase 9 (Frontend) can be developed in parallel with Phases 3-8, building **PRD Sections:** 8 (Observability Integration) **Gitea Epics:** #6 (Observability Integration), #13 (Exchange Replay — gating only) **Depends on:** Phase 3 (server already deployed per tenant), Phase 2 (license for feature gating) -**Produces:** Tenants see their cameleer3-server UI embedded in the SaaS shell. API gateway routes to tenant server. MOAT features gated by license tier. +**Produces:** Tenants see their cameleer-server UI embedded in the SaaS shell. API gateway routes to tenant server. MOAT features gated by license tier. **Key deliverables:** -- Ingress routing rules: `/t/{tenant}/api/*` → tenant's cameleer3-server -- cameleer3-server "managed mode" configuration (trust SaaS JWT, report metrics) +- Ingress routing rules: `/t/{tenant}/api/*` → tenant's cameleer-server +- cameleer-server "managed mode" configuration (trust SaaS JWT, report metrics) - Bootstrap token generation API - MOAT feature gating via license (topology=all, lineage=limited/full, correlation=mid+, debugger=high+, replay=high+) - Server UI embedding approach (iframe or reverse proxy with path rewriting) @@ -211,7 +211,7 @@ Note: Phase 9 (Frontend) can be developed in parallel with Phases 3-8, building - SaaS shell (navigation, tenant switcher, user menu) - Dashboard (platform overview) - Apps list + App deployment page (upload, config, secrets, status, logs, versions) -- Observability section (embedded cameleer3-server UI) +- Observability section (embedded cameleer-server UI) - Team management pages - Settings pages (tenant config, SSO/OIDC, vault connections) - Billing pages (usage, invoices, plan management) diff --git a/docs/superpowers/plans/2026-04-04-phase-2-tenants-identity-licensing.md b/docs/superpowers/plans/2026-04-04-phase-2-tenants-identity-licensing.md index 9edfc14..5446291 100644 --- a/docs/superpowers/plans/2026-04-04-phase-2-tenants-identity-licensing.md +++ b/docs/superpowers/plans/2026-04-04-phase-2-tenants-identity-licensing.md @@ -2006,7 +2006,7 @@ available throughout request lifecycle." **Files:** - Create: `src/main/java/net/siegeln/cameleer/saas/config/ForwardAuthController.java` -This endpoint is called by Traefik's ForwardAuth middleware to validate requests routed to non-platform services (e.g., cameleer3-server). It validates the JWT, resolves the tenant, and returns tenant context headers. +This endpoint is called by Traefik's ForwardAuth middleware to validate requests routed to non-platform services (e.g., cameleer-server). It validates the JWT, resolves the tenant, and returns tenant context headers. - [ ] **Step 1: Create ForwardAuthController** @@ -2455,8 +2455,8 @@ services: networks: - cameleer - cameleer3-server: - image: ${CAMELEER3_SERVER_IMAGE:-gitea.siegeln.net/cameleer/cameleer3-server}:${VERSION:-latest} + cameleer-server: + image: ${CAMELEER_SERVER_IMAGE:-gitea.siegeln.net/cameleer/cameleer-server}:${VERSION:-latest} restart: unless-stopped depends_on: postgres: @@ -2539,9 +2539,9 @@ git add docker-compose.yml docker-compose.dev.yml traefik.yml docker/init-databa git commit -m "feat: add Docker Compose production stack with Traefik + Logto 7-container stack: Traefik (reverse proxy), PostgreSQL (shared), -Logto (identity), cameleer-saas (control plane), cameleer3-server +Logto (identity), cameleer-saas (control plane), cameleer-server (observability), ClickHouse (traces). ForwardAuth middleware for -tenant-aware routing to cameleer3-server." +tenant-aware routing to cameleer-server." ``` --- diff --git a/docs/superpowers/plans/2026-04-04-phase-3-runtime-orchestration.md b/docs/superpowers/plans/2026-04-04-phase-3-runtime-orchestration.md index 495b046..0ddc8ab 100644 --- a/docs/superpowers/plans/2026-04-04-phase-3-runtime-orchestration.md +++ b/docs/superpowers/plans/2026-04-04-phase-3-runtime-orchestration.md @@ -2,7 +2,7 @@ > **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. -**Goal:** Customers can upload a Camel JAR, the platform builds a container image with cameleer3 agent auto-injected, and deploys it to a logical environment with full lifecycle management. +**Goal:** Customers can upload a Camel JAR, the platform builds a container image with cameleer agent auto-injected, and deploys it to a logical environment with full lifecycle management. **Architecture:** Environment → App → Deployment entity hierarchy. `RuntimeOrchestrator` interface with `DockerRuntimeOrchestrator` (docker-java) implementation. Async deployment pipeline with status polling. Container logs streamed to ClickHouse. Pre-built `cameleer-runtime-base` image for fast (~1-3s) customer image builds. @@ -164,8 +164,8 @@ public class RuntimeConfig { @Value("${cameleer.runtime.bootstrap-token:${CAMELEER_AUTH_TOKEN:}}") private String bootstrapToken; - @Value("${cameleer.runtime.cameleer3-server-endpoint:http://cameleer3-server:8081}") - private String cameleer3ServerEndpoint; + @Value("${cameleer.runtime.cameleer-server-endpoint:http://cameleer-server:8081}") + private String cameleerServerEndpoint; public long getMaxJarSize() { return maxJarSize; } public String getJarStoragePath() { return jarStoragePath; } @@ -177,7 +177,7 @@ public class RuntimeConfig { public String getContainerMemoryLimit() { return containerMemoryLimit; } public int getContainerCpuShares() { return containerCpuShares; } public String getBootstrapToken() { return bootstrapToken; } - public String getCameleer3ServerEndpoint() { return cameleer3ServerEndpoint; } + public String getCameleerServerEndpoint() { return cameleerServerEndpoint; } public long parseMemoryLimitBytes() { var limit = containerMemoryLimit.trim().toLowerCase(); @@ -270,7 +270,7 @@ Append to the existing `cameleer:` section in `src/main/resources/application.ym container-memory-limit: ${CAMELEER_CONTAINER_MEMORY_LIMIT:512m} container-cpu-shares: ${CAMELEER_CONTAINER_CPU_SHARES:512} bootstrap-token: ${CAMELEER_AUTH_TOKEN:} - cameleer3-server-endpoint: ${CAMELEER3_SERVER_ENDPOINT:http://cameleer3-server:8081} + cameleer-server-endpoint: ${CAMELEER_SERVER_ENDPOINT:http://cameleer-server:8081} clickhouse: url: ${CLICKHOUSE_URL:jdbc:clickhouse://clickhouse:8123/cameleer} ``` @@ -2788,7 +2788,7 @@ public class DeploymentService { var envVars = Map.of( "CAMELEER_AUTH_TOKEN", env.getBootstrapToken(), "CAMELEER_EXPORT_TYPE", "HTTP", - "CAMELEER_EXPORT_ENDPOINT", runtimeConfig.getCameleer3ServerEndpoint(), + "CAMELEER_EXPORT_ENDPOINT", runtimeConfig.getCameleerServerEndpoint(), "CAMELEER_APPLICATION_ID", app.getSlug(), "CAMELEER_ENVIRONMENT_ID", env.getSlug(), "CAMELEER_DISPLAY_NAME", containerName); @@ -3418,7 +3418,7 @@ volumes: Add to the cameleer-saas service environment: ```yaml CAMELEER_AUTH_TOKEN: ${CAMELEER_AUTH_TOKEN:-default-bootstrap-token} - CAMELEER3_SERVER_ENDPOINT: http://cameleer3-server:8081 + CAMELEER_SERVER_ENDPOINT: http://cameleer-server:8081 CLICKHOUSE_URL: jdbc:clickhouse://clickhouse:8123/cameleer ``` @@ -3427,7 +3427,7 @@ Add to the cameleer-saas service volumes: - jardata:/data/jars ``` -Add `CAMELEER_AUTH_TOKEN` to the cameleer3-server service environment: +Add `CAMELEER_AUTH_TOKEN` to the cameleer-server service environment: ```yaml CAMELEER_AUTH_TOKEN: ${CAMELEER_AUTH_TOKEN:-default-bootstrap-token} ``` @@ -3448,7 +3448,7 @@ FROM eclipse-temurin:21-jre-alpine WORKDIR /app # Agent JAR is copied during CI build from Gitea Maven registry -# ARG AGENT_JAR=cameleer3-agent-1.0-SNAPSHOT-shaded.jar +# ARG AGENT_JAR=cameleer-agent-1.0-SNAPSHOT-shaded.jar COPY agent.jar /app/agent.jar ENTRYPOINT exec java \ diff --git a/docs/superpowers/plans/2026-04-04-phase-4-observability-pipeline.md b/docs/superpowers/plans/2026-04-04-phase-4-observability-pipeline.md index 7b470fb..8e756e8 100644 --- a/docs/superpowers/plans/2026-04-04-phase-4-observability-pipeline.md +++ b/docs/superpowers/plans/2026-04-04-phase-4-observability-pipeline.md @@ -2,9 +2,9 @@ > **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. -**Goal:** Complete the deploy → hit endpoint → see traces loop. Serve the existing cameleer3-server dashboard, add agent connectivity verification, enable optional inbound HTTP routing for customer apps, and wire up observability data health checks. +**Goal:** Complete the deploy → hit endpoint → see traces loop. Serve the existing cameleer-server dashboard, add agent connectivity verification, enable optional inbound HTTP routing for customer apps, and wire up observability data health checks. -**Architecture:** Wiring phase — cameleer3-server already has full observability. Phase 4 adds Traefik routing for the dashboard + customer app endpoints, new API endpoints in cameleer-saas for agent-status and observability-status, and configures `CAMELEER_TENANT_ID` on the server. +**Architecture:** Wiring phase — cameleer-server already has full observability. Phase 4 adds Traefik routing for the dashboard + customer app endpoints, new API endpoints in cameleer-saas for agent-status and observability-status, and configures `CAMELEER_TENANT_ID` on the server. **Tech Stack:** Spring Boot 3.4.3, docker-java 3.4.1, ClickHouse JDBC, Traefik v3 labels, Spring RestClient @@ -14,7 +14,7 @@ ### New Files -- `src/main/java/net/siegeln/cameleer/saas/observability/AgentStatusService.java` — Queries cameleer3-server for agent registration +- `src/main/java/net/siegeln/cameleer/saas/observability/AgentStatusService.java` — Queries cameleer-server for agent registration - `src/main/java/net/siegeln/cameleer/saas/observability/AgentStatusController.java` — Agent status + observability status endpoints - `src/main/java/net/siegeln/cameleer/saas/observability/dto/AgentStatusResponse.java` — Response DTO - `src/main/java/net/siegeln/cameleer/saas/observability/dto/ObservabilityStatusResponse.java` — Response DTO @@ -359,7 +359,7 @@ class AgentStatusServiceTest { @BeforeEach void setUp() { - when(runtimeConfig.getCameleer3ServerEndpoint()).thenReturn("http://cameleer3-server:8081"); + when(runtimeConfig.getCameleerServerEndpoint()).thenReturn("http://cameleer-server:8081"); agentStatusService = new AgentStatusService(appRepository, environmentRepository, runtimeConfig); } @@ -439,7 +439,7 @@ public class AgentStatusService { this.environmentRepository = environmentRepository; this.runtimeConfig = runtimeConfig; this.restClient = RestClient.builder() - .baseUrl(runtimeConfig.getCameleer3ServerEndpoint()) + .baseUrl(runtimeConfig.getCameleerServerEndpoint()) .build(); } @@ -475,7 +475,7 @@ public class AgentStatusService { return new AgentStatusResponse(false, "NOT_REGISTERED", null, List.of(), app.getSlug(), env.getSlug()); } catch (Exception e) { - log.warn("Failed to query agent status from cameleer3-server: {}", e.getMessage()); + log.warn("Failed to query agent status from cameleer-server: {}", e.getMessage()); return new AgentStatusResponse(false, "UNKNOWN", null, List.of(), app.getSlug(), env.getSlug()); } @@ -651,28 +651,28 @@ public class ConnectivityHealthCheck { @EventListener(ApplicationReadyEvent.class) public void verifyConnectivity() { - checkCameleer3Server(); + checkCameleerServer(); } - private void checkCameleer3Server() { + private void checkCameleerServer() { try { var client = RestClient.builder() - .baseUrl(runtimeConfig.getCameleer3ServerEndpoint()) + .baseUrl(runtimeConfig.getCameleerServerEndpoint()) .build(); var response = client.get() .uri("/actuator/health") .retrieve() .toBodilessEntity(); if (response.getStatusCode().is2xxSuccessful()) { - log.info("cameleer3-server connectivity: OK ({})", - runtimeConfig.getCameleer3ServerEndpoint()); + log.info("cameleer-server connectivity: OK ({})", + runtimeConfig.getCameleerServerEndpoint()); } else { - log.warn("cameleer3-server connectivity: HTTP {} ({})", - response.getStatusCode(), runtimeConfig.getCameleer3ServerEndpoint()); + log.warn("cameleer-server connectivity: HTTP {} ({})", + response.getStatusCode(), runtimeConfig.getCameleerServerEndpoint()); } } catch (Exception e) { - log.warn("cameleer3-server connectivity: FAILED ({}) - {}", - runtimeConfig.getCameleer3ServerEndpoint(), e.getMessage()); + log.warn("cameleer-server connectivity: FAILED ({}) - {}", + runtimeConfig.getCameleerServerEndpoint(), e.getMessage()); } } } @@ -686,7 +686,7 @@ Run: `mvn compile -B -q` ```bash git add src/main/java/net/siegeln/cameleer/saas/observability/ConnectivityHealthCheck.java -git commit -m "feat: add cameleer3-server startup connectivity check" +git commit -m "feat: add cameleer-server startup connectivity check" ``` --- @@ -700,7 +700,7 @@ git commit -m "feat: add cameleer3-server startup connectivity check" - [ ] **Step 1: Update docker-compose.yml — add dashboard route and CAMELEER_TENANT_ID** -In the `cameleer3-server` service: +In the `cameleer-server` service: Add to environment section: ```yaml @@ -774,7 +774,7 @@ git commit -m "docs: update HOWTO with observability dashboard, routing, and age | Spec Requirement | Task | |---|---| -| Serve cameleer3-server dashboard via Traefik | Task 7 (dashboard Traefik labels) | +| Serve cameleer-server dashboard via Traefik | Task 7 (dashboard Traefik labels) | | CAMELEER_TENANT_ID configuration | Task 7 (docker-compose env) | | Agent connectivity verification endpoint | Task 4 (AgentStatusService + Controller) | | Observability data health endpoint | Task 4 (ObservabilityStatusResponse) | diff --git a/docs/superpowers/plans/2026-04-04-phase-9-frontend-react-shell.md b/docs/superpowers/plans/2026-04-04-phase-9-frontend-react-shell.md index 159623f..8bafbcf 100644 --- a/docs/superpowers/plans/2026-04-04-phase-9-frontend-react-shell.md +++ b/docs/superpowers/plans/2026-04-04-phase-9-frontend-react-shell.md @@ -4,7 +4,7 @@ **Goal:** Build a React SPA for managing tenants, environments, apps, and deployments. All backend APIs exist — this is the UI layer. -**Architecture:** React 19 + Vite + React Router + Zustand + TanStack Query + @cameleer/design-system. Sidebar layout matching cameleer3-server SPA. Shared Logto OIDC session. RBAC on all actions. Lives in `ui/` directory, built into Spring Boot static resources. +**Architecture:** React 19 + Vite + React Router + Zustand + TanStack Query + @cameleer/design-system. Sidebar layout matching cameleer-server SPA. Shared Logto OIDC session. RBAC on all actions. Lives in `ui/` directory, built into Spring Boot static resources. **Tech Stack:** React 19, Vite 8, TypeScript, React Router 7, Zustand, TanStack React Query, @cameleer/design-system 0.1.31, Lucide React @@ -332,7 +332,7 @@ git commit -m "feat: scaffold React SPA with Vite, design system, and TypeScript - [ ] **Step 1: Create auth-store.ts** -Zustand store for auth state. Same localStorage keys as cameleer3-server SPA for SSO. +Zustand store for auth state. Same localStorage keys as cameleer-server SPA for SSO. ```typescript import { create } from 'zustand'; @@ -1145,7 +1145,7 @@ git commit -m "feat: add SPA controller, Traefik route, CI frontend build, and H |---|---| | Project scaffolding (Vite, React, TS, design system) | Task 1 | | TypeScript API types | Task 1 | -| Auth store (Zustand, same keys as cameleer3-server) | Task 2 | +| Auth store (Zustand, same keys as cameleer-server) | Task 2 | | Login / Logto OIDC redirect / callback | Task 2 | | Protected route | Task 2 | | API client with auth middleware | Task 3 | diff --git a/docs/superpowers/plans/2026-04-05-auth-overhaul.md b/docs/superpowers/plans/2026-04-05-auth-overhaul.md index 56d6346..0f5fdfb 100644 --- a/docs/superpowers/plans/2026-04-05-auth-overhaul.md +++ b/docs/superpowers/plans/2026-04-05-auth-overhaul.md @@ -2,35 +2,35 @@ > **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. -**Goal:** Replace the incoherent three-system auth in cameleer-saas with Logto-centric architecture, and add OIDC resource server support to cameleer3-server for M2M. +**Goal:** Replace the incoherent three-system auth in cameleer-saas with Logto-centric architecture, and add OIDC resource server support to cameleer-server for M2M. -**Architecture:** Logto is the single identity provider for all humans. Spring OAuth2 Resource Server validates Logto JWTs in both the SaaS platform and cameleer3-server. Agents authenticate with per-environment API keys exchanged for server-issued JWTs. Ed25519 command signing is unchanged. Zero trust: every service validates tokens independently via JWKS. +**Architecture:** Logto is the single identity provider for all humans. Spring OAuth2 Resource Server validates Logto JWTs in both the SaaS platform and cameleer-server. Agents authenticate with per-environment API keys exchanged for server-issued JWTs. Ed25519 command signing is unchanged. Zero trust: every service validates tokens independently via JWKS. **Tech Stack:** Spring Boot 3.4, Spring Security OAuth2 Resource Server, Nimbus JOSE+JWT, Logto, React + @logto/react, Zustand, PostgreSQL, Flyway **Spec:** `docs/superpowers/specs/2026-04-05-auth-overhaul-design.md` **Repos:** -- cameleer3-server: `C:\Users\Hendrik\Documents\projects\cameleer3-server` (Phase 1) +- cameleer-server: `C:\Users\Hendrik\Documents\projects\cameleer-server` (Phase 1) - cameleer-saas: `C:\Users\Hendrik\Documents\projects\cameleer-saas` (Phases 2-3) -- cameleer3 (agent): NO CHANGES +- cameleer (agent): NO CHANGES --- -## Phase 1: cameleer3-server — OIDC Resource Server Support +## Phase 1: cameleer-server — OIDC Resource Server Support -All Phase 1 work is in `C:\Users\Hendrik\Documents\projects\cameleer3-server`. +All Phase 1 work is in `C:\Users\Hendrik\Documents\projects\cameleer-server`. ### Task 1: Add OAuth2 Resource Server dependency and config properties **Files:** -- Modify: `cameleer3-server-app/pom.xml` -- Modify: `cameleer3-server-app/src/main/resources/application.yml` -- Modify: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/SecurityProperties.java` +- Modify: `cameleer-server-app/pom.xml` +- Modify: `cameleer-server-app/src/main/resources/application.yml` +- Modify: `cameleer-server-app/src/main/java/com/cameleer/server/app/security/SecurityProperties.java` - [ ] **Step 1: Add dependency to pom.xml** -In `cameleer3-server-app/pom.xml`, add after the `spring-boot-starter-security` dependency (around line 88): +In `cameleer-server-app/pom.xml`, add after the `spring-boot-starter-security` dependency (around line 88): ```xml <dependency> @@ -41,7 +41,7 @@ In `cameleer3-server-app/pom.xml`, add after the `spring-boot-starter-security` - [ ] **Step 2: Add OIDC properties to application.yml** -In `cameleer3-server-app/src/main/resources/application.yml`, add two new properties under the `security:` block (after line 52): +In `cameleer-server-app/src/main/resources/application.yml`, add two new properties under the `security:` block (after line 52): ```yaml oidc-issuer-uri: ${CAMELEER_OIDC_ISSUER_URI:} @@ -50,7 +50,7 @@ In `cameleer3-server-app/src/main/resources/application.yml`, add two new proper - [ ] **Step 3: Add fields to SecurityProperties.java** -In `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/SecurityProperties.java`, add after the `jwtSecret` field (line 19): +In `cameleer-server-app/src/main/java/com/cameleer/server/app/security/SecurityProperties.java`, add after the `jwtSecret` field (line 19): ```java private String oidcIssuerUri; @@ -64,13 +64,13 @@ public void setOidcAudience(String oidcAudience) { this.oidcAudience = oidcAudie - [ ] **Step 4: Verify build compiles** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && ./mvnw compile -pl cameleer3-server-app -q` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && ./mvnw compile -pl cameleer-server-app -q` Expected: BUILD SUCCESS - [ ] **Step 5: Commit** ```bash -git add cameleer3-server-app/pom.xml cameleer3-server-app/src/main/resources/application.yml cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/SecurityProperties.java +git add cameleer-server-app/pom.xml cameleer-server-app/src/main/resources/application.yml cameleer-server-app/src/main/java/com/cameleer/server/app/security/SecurityProperties.java git commit -m "feat: add oauth2-resource-server dependency and OIDC config properties" ``` @@ -79,14 +79,14 @@ git commit -m "feat: add oauth2-resource-server dependency and OIDC config prope ### Task 2: Add conditional OIDC JwtDecoder bean **Files:** -- Modify: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/SecurityBeanConfig.java` +- Modify: `cameleer-server-app/src/main/java/com/cameleer/server/app/security/SecurityBeanConfig.java` - [ ] **Step 1: Write the failing test** -Create `cameleer3-server-app/src/test/java/com/cameleer3/server/app/security/OidcJwtDecoderBeanTest.java`: +Create `cameleer-server-app/src/test/java/com/cameleer/server/app/security/OidcJwtDecoderBeanTest.java`: ```java -package com.cameleer3.server.app.security; +package com.cameleer.server.app.security; import org.junit.jupiter.api.Test; import org.springframework.security.oauth2.jwt.JwtDecoder; @@ -123,12 +123,12 @@ class OidcJwtDecoderBeanTest { - [ ] **Step 2: Run test to verify it fails** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && ./mvnw test -pl cameleer3-server-app -Dtest=OidcJwtDecoderBeanTest -q` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && ./mvnw test -pl cameleer-server-app -Dtest=OidcJwtDecoderBeanTest -q` Expected: FAIL — method `oidcJwtDecoder` does not exist - [ ] **Step 3: Add the oidcJwtDecoder method to SecurityBeanConfig** -In `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/SecurityBeanConfig.java`, add these imports at the top: +In `cameleer-server-app/src/main/java/com/cameleer/server/app/security/SecurityBeanConfig.java`, add these imports at the top: ```java import com.nimbusds.jose.JWSAlgorithm; @@ -216,13 +216,13 @@ Update the test to match: the test calls `config.oidcJwtDecoder(properties)` dir - [ ] **Step 5: Run test to verify it passes** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && ./mvnw test -pl cameleer3-server-app -Dtest=OidcJwtDecoderBeanTest -q` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && ./mvnw test -pl cameleer-server-app -Dtest=OidcJwtDecoderBeanTest -q` Expected: PASS - [ ] **Step 6: Commit** ```bash -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/SecurityBeanConfig.java cameleer3-server-app/src/test/java/com/cameleer3/server/app/security/OidcJwtDecoderBeanTest.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/security/SecurityBeanConfig.java cameleer-server-app/src/test/java/com/cameleer/server/app/security/OidcJwtDecoderBeanTest.java git commit -m "feat: add conditional OIDC JwtDecoder factory for Logto token validation" ``` @@ -231,18 +231,18 @@ git commit -m "feat: add conditional OIDC JwtDecoder factory for Logto token val ### Task 3: Update JwtAuthenticationFilter with OIDC fallback **Files:** -- Modify: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/JwtAuthenticationFilter.java` +- Modify: `cameleer-server-app/src/main/java/com/cameleer/server/app/security/JwtAuthenticationFilter.java` - [ ] **Step 1: Write the failing test** -Create `cameleer3-server-app/src/test/java/com/cameleer3/server/app/security/JwtAuthenticationFilterOidcTest.java`: +Create `cameleer-server-app/src/test/java/com/cameleer/server/app/security/JwtAuthenticationFilterOidcTest.java`: ```java -package com.cameleer3.server.app.security; +package com.cameleer.server.app.security; -import com.cameleer3.server.core.agent.AgentRegistryService; -import com.cameleer3.server.core.security.InvalidTokenException; -import com.cameleer3.server.core.security.JwtService; +import com.cameleer.server.core.agent.AgentRegistryService; +import com.cameleer.server.core.security.InvalidTokenException; +import com.cameleer.server.core.security.JwtService; import jakarta.servlet.FilterChain; import jakarta.servlet.ServletException; import org.junit.jupiter.api.BeforeEach; @@ -369,19 +369,19 @@ class JwtAuthenticationFilterOidcTest { - [ ] **Step 2: Run test to verify it fails** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && ./mvnw test -pl cameleer3-server-app -Dtest=JwtAuthenticationFilterOidcTest -q` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && ./mvnw test -pl cameleer-server-app -Dtest=JwtAuthenticationFilterOidcTest -q` Expected: FAIL — constructor doesn't accept 3 args - [ ] **Step 3: Update JwtAuthenticationFilter** -Replace `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/JwtAuthenticationFilter.java` with: +Replace `cameleer-server-app/src/main/java/com/cameleer/server/app/security/JwtAuthenticationFilter.java` with: ```java -package com.cameleer3.server.app.security; +package com.cameleer.server.app.security; -import com.cameleer3.server.core.agent.AgentRegistryService; -import com.cameleer3.server.core.security.JwtService; -import com.cameleer3.server.core.security.JwtService.JwtValidationResult; +import com.cameleer.server.core.agent.AgentRegistryService; +import com.cameleer.server.core.security.JwtService; +import com.cameleer.server.core.security.JwtService.JwtValidationResult; import jakarta.servlet.FilterChain; import jakarta.servlet.ServletException; import jakarta.servlet.http.HttpServletRequest; @@ -508,13 +508,13 @@ public class JwtAuthenticationFilter extends OncePerRequestFilter { - [ ] **Step 4: Run tests** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && ./mvnw test -pl cameleer3-server-app -Dtest=JwtAuthenticationFilterOidcTest -q` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && ./mvnw test -pl cameleer-server-app -Dtest=JwtAuthenticationFilterOidcTest -q` Expected: PASS (all 4 tests) - [ ] **Step 5: Commit** ```bash -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/JwtAuthenticationFilter.java cameleer3-server-app/src/test/java/com/cameleer3/server/app/security/JwtAuthenticationFilterOidcTest.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/security/JwtAuthenticationFilter.java cameleer-server-app/src/test/java/com/cameleer/server/app/security/JwtAuthenticationFilterOidcTest.java git commit -m "feat: add OIDC token fallback to JwtAuthenticationFilter" ``` @@ -523,8 +523,8 @@ git commit -m "feat: add OIDC token fallback to JwtAuthenticationFilter" ### Task 4: Wire OIDC decoder into SecurityConfig **Files:** -- Modify: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/SecurityConfig.java` -- Modify: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/SecurityBeanConfig.java` +- Modify: `cameleer-server-app/src/main/java/com/cameleer/server/app/security/SecurityConfig.java` +- Modify: `cameleer-server-app/src/main/java/com/cameleer/server/app/security/SecurityBeanConfig.java` - [ ] **Step 1: Add OIDC decoder bean creation to SecurityBeanConfig** @@ -595,13 +595,13 @@ import org.springframework.security.oauth2.jwt.JwtDecoder; - [ ] **Step 3: Run existing tests** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && ./mvnw test -pl cameleer3-server-app -q` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && ./mvnw test -pl cameleer-server-app -q` Expected: All existing tests PASS (no OIDC env vars set, decoder is null, filter behaves as before) - [ ] **Step 4: Commit** ```bash -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/SecurityConfig.java cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/SecurityBeanConfig.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/security/SecurityConfig.java cameleer-server-app/src/main/java/com/cameleer/server/app/security/SecurityBeanConfig.java git commit -m "feat: wire optional OIDC JwtDecoder into security filter chain" ``` @@ -1685,9 +1685,9 @@ In `docker-compose.yml`, remove these two labels from `cameleer-saas` (lines 122 - traefik.http.services.forwardauth.loadbalancer.server.port=8080 ``` -- [ ] **Step 2: Remove ForwardAuth middleware from cameleer3-server** +- [ ] **Step 2: Remove ForwardAuth middleware from cameleer-server** -In `docker-compose.yml`, remove the forward-auth middleware labels from `cameleer3-server` (lines 158-159): +In `docker-compose.yml`, remove the forward-auth middleware labels from `cameleer-server` (lines 158-159): ```yaml - traefik.http.routers.observe.middlewares=forward-auth @@ -1719,7 +1719,7 @@ In `cameleer-saas` environment, remove: CAMELEER_AUTH_TOKEN: ${CAMELEER_AUTH_TOKEN:-default-bootstrap-token} ``` -In `cameleer3-server` environment, add: +In `cameleer-server` environment, add: ```yaml CAMELEER_OIDC_ISSUER_URI: ${LOGTO_ISSUER_URI:-http://logto:3001/oidc} CAMELEER_OIDC_AUDIENCE: ${CAMELEER_OIDC_AUDIENCE:-https://api.cameleer.local} diff --git a/docs/superpowers/plans/2026-04-07-plan1-auth-rbac-overhaul.md b/docs/superpowers/plans/2026-04-07-plan1-auth-rbac-overhaul.md index 8ab6b48..682cb2e 100644 --- a/docs/superpowers/plans/2026-04-07-plan1-auth-rbac-overhaul.md +++ b/docs/superpowers/plans/2026-04-07-plan1-auth-rbac-overhaul.md @@ -8,41 +8,41 @@ **Tech Stack:** Java 17, Spring Boot 3.4.3, PostgreSQL 16, Flyway, JUnit 5, Testcontainers, AssertJ -**Repo:** `C:\Users\Hendrik\Documents\projects\cameleer3-server` +**Repo:** `C:\Users\Hendrik\Documents\projects\cameleer-server` --- ## File Map ### New Files -- `cameleer3-server-app/src/main/resources/db/migration/V2__claim_mapping.sql` -- `cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/ClaimMappingRule.java` -- `cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/ClaimMappingRepository.java` -- `cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/ClaimMappingService.java` -- `cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/AssignmentOrigin.java` -- `cameleer3-server-app/src/main/java/com/cameleer3/server/app/storage/PostgresClaimMappingRepository.java` -- `cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/ClaimMappingAdminController.java` -- `cameleer3-server-app/src/test/java/com/cameleer3/server/core/rbac/ClaimMappingServiceTest.java` -- `cameleer3-server-app/src/test/java/com/cameleer3/server/app/controller/ClaimMappingAdminControllerIT.java` -- `cameleer3-server-app/src/test/java/com/cameleer3/server/app/security/OidcOnlyModeIT.java` +- `cameleer-server-app/src/main/resources/db/migration/V2__claim_mapping.sql` +- `cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/ClaimMappingRule.java` +- `cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/ClaimMappingRepository.java` +- `cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/ClaimMappingService.java` +- `cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/AssignmentOrigin.java` +- `cameleer-server-app/src/main/java/com/cameleer/server/app/storage/PostgresClaimMappingRepository.java` +- `cameleer-server-app/src/main/java/com/cameleer/server/app/controller/ClaimMappingAdminController.java` +- `cameleer-server-app/src/test/java/com/cameleer/server/core/rbac/ClaimMappingServiceTest.java` +- `cameleer-server-app/src/test/java/com/cameleer/server/app/controller/ClaimMappingAdminControllerIT.java` +- `cameleer-server-app/src/test/java/com/cameleer/server/app/security/OidcOnlyModeIT.java` ### Modified Files -- `cameleer3-server-app/src/main/resources/db/migration/V1__init.sql` — no changes (immutable) -- `cameleer3-server-app/src/main/java/com/cameleer3/server/app/rbac/RbacServiceImpl.java` — add origin-aware query methods -- `cameleer3-server-app/src/main/java/com/cameleer3/server/app/storage/PostgresUserRepository.java` — add origin-aware queries -- `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/OidcAuthController.java` — replace syncOidcRoles with claim mapping -- `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/JwtAuthenticationFilter.java` — disable internal token path in OIDC-only mode -- `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/SecurityConfig.java` — conditional endpoint registration -- `cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/UserAdminController.java` — disable in OIDC-only mode -- `cameleer3-server-app/src/main/java/com/cameleer3/server/app/config/AgentRegistryBeanConfig.java` — wire ClaimMappingService -- `cameleer3-server-app/src/main/resources/application.yml` — no new properties needed (OIDC config already exists) +- `cameleer-server-app/src/main/resources/db/migration/V1__init.sql` — no changes (immutable) +- `cameleer-server-app/src/main/java/com/cameleer/server/app/rbac/RbacServiceImpl.java` — add origin-aware query methods +- `cameleer-server-app/src/main/java/com/cameleer/server/app/storage/PostgresUserRepository.java` — add origin-aware queries +- `cameleer-server-app/src/main/java/com/cameleer/server/app/security/OidcAuthController.java` — replace syncOidcRoles with claim mapping +- `cameleer-server-app/src/main/java/com/cameleer/server/app/security/JwtAuthenticationFilter.java` — disable internal token path in OIDC-only mode +- `cameleer-server-app/src/main/java/com/cameleer/server/app/security/SecurityConfig.java` — conditional endpoint registration +- `cameleer-server-app/src/main/java/com/cameleer/server/app/controller/UserAdminController.java` — disable in OIDC-only mode +- `cameleer-server-app/src/main/java/com/cameleer/server/app/config/AgentRegistryBeanConfig.java` — wire ClaimMappingService +- `cameleer-server-app/src/main/resources/application.yml` — no new properties needed (OIDC config already exists) --- ### Task 1: Database Migration — Add Origin Tracking and Claim Mapping Rules **Files:** -- Create: `cameleer3-server-app/src/main/resources/db/migration/V2__claim_mapping.sql` +- Create: `cameleer-server-app/src/main/resources/db/migration/V2__claim_mapping.sql` - [ ] **Step 1: Write the migration** @@ -90,14 +90,14 @@ CREATE INDEX idx_user_groups_origin ON user_groups(user_id, origin); - [ ] **Step 2: Run migration to verify** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn flyway:migrate -pl cameleer3-server-app -Dflyway.url=jdbc:postgresql://localhost:5432/cameleer3 -Dflyway.user=cameleer -Dflyway.password=cameleer_dev` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn flyway:migrate -pl cameleer-server-app -Dflyway.url=jdbc:postgresql://localhost:5432/cameleer -Dflyway.user=cameleer -Dflyway.password=cameleer_dev` If no local PostgreSQL, verify syntax by running the existing test suite which uses Testcontainers. - [ ] **Step 3: Commit** ```bash -git add cameleer3-server-app/src/main/resources/db/migration/V2__claim_mapping.sql +git add cameleer-server-app/src/main/resources/db/migration/V2__claim_mapping.sql git commit -m "feat: add claim mapping rules table and origin tracking to RBAC assignments" ``` @@ -106,14 +106,14 @@ git commit -m "feat: add claim mapping rules table and origin tracking to RBAC a ### Task 2: Core Domain — ClaimMappingRule, AssignmentOrigin, Repository Interface **Files:** -- Create: `cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/AssignmentOrigin.java` -- Create: `cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/ClaimMappingRule.java` -- Create: `cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/ClaimMappingRepository.java` +- Create: `cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/AssignmentOrigin.java` +- Create: `cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/ClaimMappingRule.java` +- Create: `cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/ClaimMappingRepository.java` - [ ] **Step 1: Create AssignmentOrigin enum** ```java -package com.cameleer3.server.core.rbac; +package com.cameleer.server.core.rbac; public enum AssignmentOrigin { direct, managed @@ -123,7 +123,7 @@ public enum AssignmentOrigin { - [ ] **Step 2: Create ClaimMappingRule record** ```java -package com.cameleer3.server.core.rbac; +package com.cameleer.server.core.rbac; import java.time.Instant; import java.util.UUID; @@ -146,7 +146,7 @@ public record ClaimMappingRule( - [ ] **Step 3: Create ClaimMappingRepository interface** ```java -package com.cameleer3.server.core.rbac; +package com.cameleer.server.core.rbac; import java.util.List; import java.util.Optional; @@ -164,9 +164,9 @@ public interface ClaimMappingRepository { - [ ] **Step 4: Commit** ```bash -git add cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/AssignmentOrigin.java -git add cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/ClaimMappingRule.java -git add cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/ClaimMappingRepository.java +git add cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/AssignmentOrigin.java +git add cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/ClaimMappingRule.java +git add cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/ClaimMappingRepository.java git commit -m "feat: add ClaimMappingRule domain model and repository interface" ``` @@ -175,13 +175,13 @@ git commit -m "feat: add ClaimMappingRule domain model and repository interface" ### Task 3: Core Domain — ClaimMappingService **Files:** -- Create: `cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/ClaimMappingService.java` -- Create: `cameleer3-server-app/src/test/java/com/cameleer3/server/core/rbac/ClaimMappingServiceTest.java` +- Create: `cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/ClaimMappingService.java` +- Create: `cameleer-server-app/src/test/java/com/cameleer/server/core/rbac/ClaimMappingServiceTest.java` - [ ] **Step 1: Write tests for ClaimMappingService** ```java -package com.cameleer3.server.core.rbac; +package com.cameleer.server.core.rbac; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; @@ -300,13 +300,13 @@ class ClaimMappingServiceTest { - [ ] **Step 2: Run tests to verify they fail** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn test -pl cameleer3-server-app -Dtest=ClaimMappingServiceTest -Dsurefire.failIfNoSpecifiedTests=false` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn test -pl cameleer-server-app -Dtest=ClaimMappingServiceTest -Dsurefire.failIfNoSpecifiedTests=false` Expected: Compilation error — ClaimMappingService does not exist yet. - [ ] **Step 3: Implement ClaimMappingService** ```java -package com.cameleer3.server.core.rbac; +package com.cameleer.server.core.rbac; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -377,14 +377,14 @@ public class ClaimMappingService { - [ ] **Step 4: Run tests to verify they pass** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn test -pl cameleer3-server-app -Dtest=ClaimMappingServiceTest` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn test -pl cameleer-server-app -Dtest=ClaimMappingServiceTest` Expected: All 7 tests PASS. - [ ] **Step 5: Commit** ```bash -git add cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/ClaimMappingService.java -git add cameleer3-server-app/src/test/java/com/cameleer3/server/core/rbac/ClaimMappingServiceTest.java +git add cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/ClaimMappingService.java +git add cameleer-server-app/src/test/java/com/cameleer/server/core/rbac/ClaimMappingServiceTest.java git commit -m "feat: implement ClaimMappingService with equals/contains/regex matching" ``` @@ -393,15 +393,15 @@ git commit -m "feat: implement ClaimMappingService with equals/contains/regex ma ### Task 4: PostgreSQL Repository — ClaimMappingRepository Implementation **Files:** -- Create: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/storage/PostgresClaimMappingRepository.java` +- Create: `cameleer-server-app/src/main/java/com/cameleer/server/app/storage/PostgresClaimMappingRepository.java` - [ ] **Step 1: Implement PostgresClaimMappingRepository** ```java -package com.cameleer3.server.app.storage; +package com.cameleer.server.app.storage; -import com.cameleer3.server.core.rbac.ClaimMappingRepository; -import com.cameleer3.server.core.rbac.ClaimMappingRule; +import com.cameleer.server.core.rbac.ClaimMappingRepository; +import com.cameleer.server.core.rbac.ClaimMappingRule; import org.springframework.jdbc.core.JdbcTemplate; import java.util.List; @@ -479,7 +479,7 @@ public class PostgresClaimMappingRepository implements ClaimMappingRepository { - [ ] **Step 2: Wire the bean in AgentRegistryBeanConfig (or a new RbacBeanConfig)** -Add to `cameleer3-server-app/src/main/java/com/cameleer3/server/app/config/AgentRegistryBeanConfig.java` (or create a new `RbacBeanConfig.java`): +Add to `cameleer-server-app/src/main/java/com/cameleer/server/app/config/AgentRegistryBeanConfig.java` (or create a new `RbacBeanConfig.java`): ```java @Bean @@ -496,8 +496,8 @@ public ClaimMappingService claimMappingService() { - [ ] **Step 3: Commit** ```bash -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/storage/PostgresClaimMappingRepository.java -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/config/AgentRegistryBeanConfig.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/storage/PostgresClaimMappingRepository.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/config/AgentRegistryBeanConfig.java git commit -m "feat: implement PostgresClaimMappingRepository and wire beans" ``` @@ -506,11 +506,11 @@ git commit -m "feat: implement PostgresClaimMappingRepository and wire beans" ### Task 5: Modify RbacServiceImpl — Origin-Aware Assignments **Files:** -- Modify: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/rbac/RbacServiceImpl.java` +- Modify: `cameleer-server-app/src/main/java/com/cameleer/server/app/rbac/RbacServiceImpl.java` - [ ] **Step 1: Add managed assignment methods to RbacService interface** -In `cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/RbacService.java`, add: +In `cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/RbacService.java`, add: ```java void clearManagedAssignments(String userId); @@ -592,14 +592,14 @@ public List<RoleSummary> getDirectRolesForUser(String userId) { - [ ] **Step 5: Run existing tests** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn test -pl cameleer3-server-app` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn test -pl cameleer-server-app` Expected: All existing tests still pass (migration adds columns with defaults). - [ ] **Step 6: Commit** ```bash -git add cameleer3-server-core/src/main/java/com/cameleer3/server/core/rbac/RbacService.java -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/rbac/RbacServiceImpl.java +git add cameleer-server-core/src/main/java/com/cameleer/server/core/rbac/RbacService.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/rbac/RbacServiceImpl.java git commit -m "feat: add origin-aware managed/direct assignment methods to RbacService" ``` @@ -608,7 +608,7 @@ git commit -m "feat: add origin-aware managed/direct assignment methods to RbacS ### Task 6: Modify OidcAuthController — Replace syncOidcRoles with Claim Mapping **Files:** -- Modify: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/OidcAuthController.java` +- Modify: `cameleer-server-app/src/main/java/com/cameleer/server/app/security/OidcAuthController.java` - [ ] **Step 1: Inject ClaimMappingService and ClaimMappingRepository** @@ -676,13 +676,13 @@ Note: `extractAllClaims` needs to be added to `OidcTokenExchanger` — it return - [ ] **Step 4: Run existing tests** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn test -pl cameleer3-server-app` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn test -pl cameleer-server-app` Expected: PASS (OIDC tests may need adjustment if they test syncOidcRoles directly). - [ ] **Step 5: Commit** ```bash -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/OidcAuthController.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/security/OidcAuthController.java git commit -m "feat: replace syncOidcRoles with claim mapping evaluation on OIDC login" ``` @@ -691,8 +691,8 @@ git commit -m "feat: replace syncOidcRoles with claim mapping evaluation on OIDC ### Task 7: OIDC-Only Mode — Disable Local Auth When OIDC Configured **Files:** -- Modify: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/SecurityConfig.java` -- Modify: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/JwtAuthenticationFilter.java` +- Modify: `cameleer-server-app/src/main/java/com/cameleer/server/app/security/SecurityConfig.java` +- Modify: `cameleer-server-app/src/main/java/com/cameleer/server/app/security/JwtAuthenticationFilter.java` - [ ] **Step 1: Add isOidcEnabled() helper to SecurityConfig** @@ -760,15 +760,15 @@ public ResponseEntity<?> resetPassword(@PathVariable String userId, @RequestBody - [ ] **Step 5: Run full test suite** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn test -pl cameleer3-server-app` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn test -pl cameleer-server-app` Expected: PASS. - [ ] **Step 6: Commit** ```bash -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/SecurityConfig.java -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/security/JwtAuthenticationFilter.java -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/UserAdminController.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/security/SecurityConfig.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/security/JwtAuthenticationFilter.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/controller/UserAdminController.java git commit -m "feat: disable local auth when OIDC is configured (resource server mode)" ``` @@ -777,15 +777,15 @@ git commit -m "feat: disable local auth when OIDC is configured (resource server ### Task 8: Claim Mapping Admin Controller **Files:** -- Create: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/ClaimMappingAdminController.java` +- Create: `cameleer-server-app/src/main/java/com/cameleer/server/app/controller/ClaimMappingAdminController.java` - [ ] **Step 1: Implement the controller** ```java -package com.cameleer3.server.app.controller; +package com.cameleer.server.app.controller; -import com.cameleer3.server.core.rbac.ClaimMappingRepository; -import com.cameleer3.server.core.rbac.ClaimMappingRule; +import com.cameleer.server.core.rbac.ClaimMappingRepository; +import com.cameleer.server.core.rbac.ClaimMappingRule; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.tags.Tag; import org.springframework.http.ResponseEntity; @@ -867,13 +867,13 @@ In `SecurityConfig.filterChain()`, the `/api/v1/admin/**` path already requires - [ ] **Step 3: Run full test suite** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn test -pl cameleer3-server-app` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn test -pl cameleer-server-app` Expected: PASS. - [ ] **Step 4: Commit** ```bash -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/ClaimMappingAdminController.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/controller/ClaimMappingAdminController.java git commit -m "feat: add ClaimMappingAdminController for CRUD on mapping rules" ``` @@ -882,14 +882,14 @@ git commit -m "feat: add ClaimMappingAdminController for CRUD on mapping rules" ### Task 9: Integration Test — Claim Mapping End-to-End **Files:** -- Create: `cameleer3-server-app/src/test/java/com/cameleer3/server/app/controller/ClaimMappingAdminControllerIT.java` +- Create: `cameleer-server-app/src/test/java/com/cameleer/server/app/controller/ClaimMappingAdminControllerIT.java` - [ ] **Step 1: Write integration test** ```java -package com.cameleer3.server.app.controller; +package com.cameleer.server.app.controller; -import com.cameleer3.server.app.AbstractPostgresIT; +import com.cameleer.server.app.AbstractPostgresIT; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import org.junit.jupiter.api.BeforeEach; @@ -954,13 +954,13 @@ class ClaimMappingAdminControllerIT extends AbstractPostgresIT { - [ ] **Step 2: Run integration tests** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn test -pl cameleer3-server-app -Dtest=ClaimMappingAdminControllerIT` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn test -pl cameleer-server-app -Dtest=ClaimMappingAdminControllerIT` Expected: PASS. - [ ] **Step 3: Commit** ```bash -git add cameleer3-server-app/src/test/java/com/cameleer3/server/app/controller/ClaimMappingAdminControllerIT.java +git add cameleer-server-app/src/test/java/com/cameleer/server/app/controller/ClaimMappingAdminControllerIT.java git commit -m "test: add integration tests for claim mapping admin API" ``` @@ -970,12 +970,12 @@ git commit -m "test: add integration tests for claim mapping admin API" - [ ] **Step 1: Run all tests** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn clean verify` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn clean verify` Expected: All tests PASS. Build succeeds. - [ ] **Step 2: Verify migration applies cleanly on fresh database** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn test -pl cameleer3-server-app -Dtest=AbstractPostgresIT` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn test -pl cameleer-server-app -Dtest=AbstractPostgresIT` Expected: Testcontainers starts fresh PostgreSQL, Flyway applies V1 + V2, context loads. - [ ] **Step 3: Commit any remaining fixes** diff --git a/docs/superpowers/plans/2026-04-07-plan2-license-validation.md b/docs/superpowers/plans/2026-04-07-plan2-license-validation.md index 16a898f..6ec5154 100644 --- a/docs/superpowers/plans/2026-04-07-plan2-license-validation.md +++ b/docs/superpowers/plans/2026-04-07-plan2-license-validation.md @@ -8,37 +8,37 @@ **Tech Stack:** Java 17, Spring Boot 3.4.3, Ed25519 (JDK built-in), Nimbus JOSE JWT, JUnit 5, AssertJ -**Repo:** `C:\Users\Hendrik\Documents\projects\cameleer3-server` +**Repo:** `C:\Users\Hendrik\Documents\projects\cameleer-server` --- ## File Map ### New Files -- `cameleer3-server-core/src/main/java/com/cameleer3/server/core/license/LicenseInfo.java` -- `cameleer3-server-core/src/main/java/com/cameleer3/server/core/license/LicenseValidator.java` -- `cameleer3-server-core/src/main/java/com/cameleer3/server/core/license/LicenseGate.java` -- `cameleer3-server-core/src/main/java/com/cameleer3/server/core/license/Feature.java` -- `cameleer3-server-app/src/main/java/com/cameleer3/server/app/config/LicenseBeanConfig.java` -- `cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/LicenseAdminController.java` -- `cameleer3-server-app/src/test/java/com/cameleer3/server/core/license/LicenseValidatorTest.java` -- `cameleer3-server-app/src/test/java/com/cameleer3/server/core/license/LicenseGateTest.java` +- `cameleer-server-core/src/main/java/com/cameleer/server/core/license/LicenseInfo.java` +- `cameleer-server-core/src/main/java/com/cameleer/server/core/license/LicenseValidator.java` +- `cameleer-server-core/src/main/java/com/cameleer/server/core/license/LicenseGate.java` +- `cameleer-server-core/src/main/java/com/cameleer/server/core/license/Feature.java` +- `cameleer-server-app/src/main/java/com/cameleer/server/app/config/LicenseBeanConfig.java` +- `cameleer-server-app/src/main/java/com/cameleer/server/app/controller/LicenseAdminController.java` +- `cameleer-server-app/src/test/java/com/cameleer/server/core/license/LicenseValidatorTest.java` +- `cameleer-server-app/src/test/java/com/cameleer/server/core/license/LicenseGateTest.java` ### Modified Files -- `cameleer3-server-app/src/main/resources/application.yml` — add license config properties +- `cameleer-server-app/src/main/resources/application.yml` — add license config properties --- ### Task 1: Core Domain — LicenseInfo, Feature Enum **Files:** -- Create: `cameleer3-server-core/src/main/java/com/cameleer3/server/core/license/Feature.java` -- Create: `cameleer3-server-core/src/main/java/com/cameleer3/server/core/license/LicenseInfo.java` +- Create: `cameleer-server-core/src/main/java/com/cameleer/server/core/license/Feature.java` +- Create: `cameleer-server-core/src/main/java/com/cameleer/server/core/license/LicenseInfo.java` - [ ] **Step 1: Create Feature enum** ```java -package com.cameleer3.server.core.license; +package com.cameleer.server.core.license; public enum Feature { topology, @@ -52,7 +52,7 @@ public enum Feature { - [ ] **Step 2: Create LicenseInfo record** ```java -package com.cameleer3.server.core.license; +package com.cameleer.server.core.license; import java.time.Instant; import java.util.Map; @@ -87,8 +87,8 @@ public record LicenseInfo( - [ ] **Step 3: Commit** ```bash -git add cameleer3-server-core/src/main/java/com/cameleer3/server/core/license/Feature.java -git add cameleer3-server-core/src/main/java/com/cameleer3/server/core/license/LicenseInfo.java +git add cameleer-server-core/src/main/java/com/cameleer/server/core/license/Feature.java +git add cameleer-server-core/src/main/java/com/cameleer/server/core/license/LicenseInfo.java git commit -m "feat: add LicenseInfo and Feature domain model" ``` @@ -97,13 +97,13 @@ git commit -m "feat: add LicenseInfo and Feature domain model" ### Task 2: LicenseValidator — Ed25519 JWT Verification **Files:** -- Create: `cameleer3-server-core/src/main/java/com/cameleer3/server/core/license/LicenseValidator.java` -- Create: `cameleer3-server-app/src/test/java/com/cameleer3/server/core/license/LicenseValidatorTest.java` +- Create: `cameleer-server-core/src/main/java/com/cameleer/server/core/license/LicenseValidator.java` +- Create: `cameleer-server-app/src/test/java/com/cameleer/server/core/license/LicenseValidatorTest.java` - [ ] **Step 1: Write tests** ```java -package com.cameleer3.server.core.license; +package com.cameleer.server.core.license; import org.junit.jupiter.api.Test; @@ -194,13 +194,13 @@ class LicenseValidatorTest { - [ ] **Step 2: Run tests to verify they fail** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn test -pl cameleer3-server-app -Dtest=LicenseValidatorTest -Dsurefire.failIfNoSpecifiedTests=false` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn test -pl cameleer-server-app -Dtest=LicenseValidatorTest -Dsurefire.failIfNoSpecifiedTests=false` Expected: Compilation error — LicenseValidator does not exist. - [ ] **Step 3: Implement LicenseValidator** ```java -package com.cameleer3.server.core.license; +package com.cameleer.server.core.license; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; @@ -298,14 +298,14 @@ public class LicenseValidator { - [ ] **Step 4: Run tests** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn test -pl cameleer3-server-app -Dtest=LicenseValidatorTest` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn test -pl cameleer-server-app -Dtest=LicenseValidatorTest` Expected: All 3 tests PASS. - [ ] **Step 5: Commit** ```bash -git add cameleer3-server-core/src/main/java/com/cameleer3/server/core/license/LicenseValidator.java -git add cameleer3-server-app/src/test/java/com/cameleer3/server/core/license/LicenseValidatorTest.java +git add cameleer-server-core/src/main/java/com/cameleer/server/core/license/LicenseValidator.java +git add cameleer-server-app/src/test/java/com/cameleer/server/core/license/LicenseValidatorTest.java git commit -m "feat: implement LicenseValidator with Ed25519 signature verification" ``` @@ -314,13 +314,13 @@ git commit -m "feat: implement LicenseValidator with Ed25519 signature verificat ### Task 3: LicenseGate — Feature Check Service **Files:** -- Create: `cameleer3-server-core/src/main/java/com/cameleer3/server/core/license/LicenseGate.java` -- Create: `cameleer3-server-app/src/test/java/com/cameleer3/server/core/license/LicenseGateTest.java` +- Create: `cameleer-server-core/src/main/java/com/cameleer/server/core/license/LicenseGate.java` +- Create: `cameleer-server-app/src/test/java/com/cameleer/server/core/license/LicenseGateTest.java` - [ ] **Step 1: Write tests** ```java -package com.cameleer3.server.core.license; +package com.cameleer.server.core.license; import org.junit.jupiter.api.Test; @@ -366,7 +366,7 @@ class LicenseGateTest { - [ ] **Step 2: Implement LicenseGate** ```java -package com.cameleer3.server.core.license; +package com.cameleer.server.core.license; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -405,14 +405,14 @@ public class LicenseGate { - [ ] **Step 3: Run tests** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn test -pl cameleer3-server-app -Dtest=LicenseGateTest` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn test -pl cameleer-server-app -Dtest=LicenseGateTest` Expected: PASS. - [ ] **Step 4: Commit** ```bash -git add cameleer3-server-core/src/main/java/com/cameleer3/server/core/license/LicenseGate.java -git add cameleer3-server-app/src/test/java/com/cameleer3/server/core/license/LicenseGateTest.java +git add cameleer-server-core/src/main/java/com/cameleer/server/core/license/LicenseGate.java +git add cameleer-server-app/src/test/java/com/cameleer/server/core/license/LicenseGateTest.java git commit -m "feat: implement LicenseGate for feature checking" ``` @@ -421,8 +421,8 @@ git commit -m "feat: implement LicenseGate for feature checking" ### Task 4: License Loading — Bean Config and Startup **Files:** -- Create: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/config/LicenseBeanConfig.java` -- Modify: `cameleer3-server-app/src/main/resources/application.yml` +- Create: `cameleer-server-app/src/main/java/com/cameleer/server/app/config/LicenseBeanConfig.java` +- Modify: `cameleer-server-app/src/main/resources/application.yml` - [ ] **Step 1: Add license config properties to application.yml** @@ -436,11 +436,11 @@ license: - [ ] **Step 2: Implement LicenseBeanConfig** ```java -package com.cameleer3.server.app.config; +package com.cameleer.server.app.config; -import com.cameleer3.server.core.license.LicenseGate; -import com.cameleer3.server.core.license.LicenseInfo; -import com.cameleer3.server.core.license.LicenseValidator; +import com.cameleer.server.core.license.LicenseGate; +import com.cameleer.server.core.license.LicenseInfo; +import com.cameleer.server.core.license.LicenseValidator; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Value; @@ -509,8 +509,8 @@ public class LicenseBeanConfig { - [ ] **Step 3: Commit** ```bash -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/config/LicenseBeanConfig.java -git add cameleer3-server-app/src/main/resources/application.yml +git add cameleer-server-app/src/main/java/com/cameleer/server/app/config/LicenseBeanConfig.java +git add cameleer-server-app/src/main/resources/application.yml git commit -m "feat: add license loading at startup from env var or file" ``` @@ -519,16 +519,16 @@ git commit -m "feat: add license loading at startup from env var or file" ### Task 5: License Admin API — Runtime License Update **Files:** -- Create: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/LicenseAdminController.java` +- Create: `cameleer-server-app/src/main/java/com/cameleer/server/app/controller/LicenseAdminController.java` - [ ] **Step 1: Implement controller** ```java -package com.cameleer3.server.app.controller; +package com.cameleer.server.app.controller; -import com.cameleer3.server.core.license.LicenseGate; -import com.cameleer3.server.core.license.LicenseInfo; -import com.cameleer3.server.core.license.LicenseValidator; +import com.cameleer.server.core.license.LicenseGate; +import com.cameleer.server.core.license.LicenseInfo; +import com.cameleer.server.core.license.LicenseValidator; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.tags.Tag; import org.springframework.beans.factory.annotation.Value; @@ -581,13 +581,13 @@ public class LicenseAdminController { - [ ] **Step 2: Run full test suite** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn clean verify` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn clean verify` Expected: PASS. - [ ] **Step 3: Commit** ```bash -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/LicenseAdminController.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/controller/LicenseAdminController.java git commit -m "feat: add license admin API for runtime license updates" ``` @@ -611,5 +611,5 @@ public ResponseEntity<?> listDebugSessions() { - [ ] **Step 2: Final verification** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn clean verify` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn clean verify` Expected: All tests PASS. diff --git a/docs/superpowers/plans/2026-04-07-plan3-runtime-management.md b/docs/superpowers/plans/2026-04-07-plan3-runtime-management.md index be82cad..9646f2f 100644 --- a/docs/superpowers/plans/2026-04-07-plan3-runtime-management.md +++ b/docs/superpowers/plans/2026-04-07-plan3-runtime-management.md @@ -1,6 +1,6 @@ # Plan 3: Runtime Management in the Server -> **Status: COMPLETED** — Verified 2026-04-09. All runtime management fully ported to cameleer3-server with enhancements beyond the original plan. +> **Status: COMPLETED** — Verified 2026-04-09. All runtime management fully ported to cameleer-server with enhancements beyond the original plan. > **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [x]`) syntax for tracking. @@ -10,7 +10,7 @@ **Tech Stack:** Java 17, Spring Boot 3.4.3, docker-java (zerodep transport), PostgreSQL 16, Flyway, JUnit 5, Testcontainers -**Repo:** `C:\Users\Hendrik\Documents\projects\cameleer3-server` +**Repo:** `C:\Users\Hendrik\Documents\projects\cameleer-server` **Source reference:** Code ported from `C:\Users\Hendrik\Documents\projects\cameleer-saas` (environment, app, deployment, runtime packages) @@ -18,10 +18,10 @@ ## File Map -### New Files — Core Module (`cameleer3-server-core`) +### New Files — Core Module (`cameleer-server-core`) ``` -src/main/java/com/cameleer3/server/core/runtime/ +src/main/java/com/cameleer/server/core/runtime/ ├── Environment.java Record: id, slug, displayName, status, createdAt ├── EnvironmentStatus.java Enum: ACTIVE, SUSPENDED ├── EnvironmentRepository.java Interface: CRUD + findBySlug @@ -42,10 +42,10 @@ src/main/java/com/cameleer3/server/core/runtime/ └── RoutingMode.java Enum: path, subdomain ``` -### New Files — App Module (`cameleer3-server-app`) +### New Files — App Module (`cameleer-server-app`) ``` -src/main/java/com/cameleer3/server/app/runtime/ +src/main/java/com/cameleer/server/app/runtime/ ├── DockerRuntimeOrchestrator.java Docker implementation using docker-java ├── DisabledRuntimeOrchestrator.java No-op implementation (observability-only mode) ├── RuntimeOrchestratorAutoConfig.java @Configuration: auto-detects Docker vs K8s vs disabled @@ -53,13 +53,13 @@ src/main/java/com/cameleer3/server/app/runtime/ ├── JarStorageService.java File-system JAR storage with versioning └── ContainerLogCollector.java Collects Docker container stdout/stderr -src/main/java/com/cameleer3/server/app/storage/ +src/main/java/com/cameleer/server/app/storage/ ├── PostgresEnvironmentRepository.java ├── PostgresAppRepository.java ├── PostgresAppVersionRepository.java └── PostgresDeploymentRepository.java -src/main/java/com/cameleer3/server/app/controller/ +src/main/java/com/cameleer/server/app/controller/ ├── EnvironmentAdminController.java CRUD endpoints under /api/v1/admin/environments ├── AppController.java App + version CRUD + JAR upload └── DeploymentController.java Deploy, stop, restart, promote, logs @@ -70,7 +70,7 @@ src/main/resources/db/migration/ ### Modified Files - `pom.xml` (parent) — add docker-java dependency -- `cameleer3-server-app/pom.xml` — add docker-java dependency +- `cameleer-server-app/pom.xml` — add docker-java dependency - `application.yml` — add runtime config properties --- @@ -78,7 +78,7 @@ src/main/resources/db/migration/ ### Task 1: Add docker-java Dependency **Files:** -- Modify: `cameleer3-server-app/pom.xml` +- Modify: `cameleer-server-app/pom.xml` - [x] **Step 1: Add docker-java dependency** @@ -97,13 +97,13 @@ src/main/resources/db/migration/ - [x] **Step 2: Verify build** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn compile -pl cameleer3-server-app` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn compile -pl cameleer-server-app` Expected: BUILD SUCCESS. - [x] **Step 3: Commit** ```bash -git add cameleer3-server-app/pom.xml +git add cameleer-server-app/pom.xml git commit -m "chore: add docker-java dependency for runtime orchestration" ``` @@ -112,7 +112,7 @@ git commit -m "chore: add docker-java dependency for runtime orchestration" ### Task 2: Database Migration — Runtime Management Tables **Files:** -- Create: `cameleer3-server-app/src/main/resources/db/migration/V3__runtime_management.sql` +- Create: `cameleer-server-app/src/main/resources/db/migration/V3__runtime_management.sql` - [x] **Step 1: Write migration** @@ -176,7 +176,7 @@ INSERT INTO environments (slug, display_name) VALUES ('default', 'Default'); - [x] **Step 2: Commit** ```bash -git add cameleer3-server-app/src/main/resources/db/migration/V3__runtime_management.sql +git add cameleer-server-app/src/main/resources/db/migration/V3__runtime_management.sql git commit -m "feat: add runtime management database schema (environments, apps, versions, deployments)" ``` @@ -185,36 +185,36 @@ git commit -m "feat: add runtime management database schema (environments, apps, ### Task 3: Core Domain — Environment, App, AppVersion, Deployment Records **Files:** -- Create all records in `cameleer3-server-core/src/main/java/com/cameleer3/server/core/runtime/` +- Create all records in `cameleer-server-core/src/main/java/com/cameleer/server/core/runtime/` - [x] **Step 1: Create all domain records** ```java // Environment.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; import java.time.Instant; import java.util.UUID; public record Environment(UUID id, String slug, String displayName, EnvironmentStatus status, Instant createdAt) {} // EnvironmentStatus.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; public enum EnvironmentStatus { ACTIVE, SUSPENDED } // App.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; import java.time.Instant; import java.util.UUID; public record App(UUID id, UUID environmentId, String slug, String displayName, Instant createdAt) {} // AppVersion.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; import java.time.Instant; import java.util.UUID; public record AppVersion(UUID id, UUID appId, int version, String jarPath, String jarChecksum, String jarFilename, Long jarSizeBytes, Instant uploadedAt) {} // Deployment.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; import java.time.Instant; import java.util.UUID; public record Deployment(UUID id, UUID appId, UUID appVersionId, UUID environmentId, @@ -227,18 +227,18 @@ public record Deployment(UUID id, UUID appId, UUID appVersionId, UUID environmen } // DeploymentStatus.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; public enum DeploymentStatus { STARTING, RUNNING, FAILED, STOPPED } // RoutingMode.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; public enum RoutingMode { path, subdomain } ``` - [x] **Step 2: Commit** ```bash -git add cameleer3-server-core/src/main/java/com/cameleer3/server/core/runtime/ +git add cameleer-server-core/src/main/java/com/cameleer/server/core/runtime/ git commit -m "feat: add runtime management domain records" ``` @@ -253,7 +253,7 @@ git commit -m "feat: add runtime management domain records" ```java // EnvironmentRepository.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; import java.util.*; public interface EnvironmentRepository { List<Environment> findAll(); @@ -266,7 +266,7 @@ public interface EnvironmentRepository { } // AppRepository.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; import java.util.*; public interface AppRepository { List<App> findByEnvironmentId(UUID environmentId); @@ -277,7 +277,7 @@ public interface AppRepository { } // AppVersionRepository.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; import java.util.*; public interface AppVersionRepository { List<AppVersion> findByAppId(UUID appId); @@ -287,7 +287,7 @@ public interface AppVersionRepository { } // DeploymentRepository.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; import java.util.*; public interface DeploymentRepository { List<Deployment> findByAppId(UUID appId); @@ -305,7 +305,7 @@ public interface DeploymentRepository { ```java // RuntimeOrchestrator.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; import java.util.stream.Stream; @@ -319,7 +319,7 @@ public interface RuntimeOrchestrator { } // ContainerRequest.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; import java.util.Map; public record ContainerRequest( String containerName, @@ -334,7 +334,7 @@ public record ContainerRequest( ) {} // ContainerStatus.java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; public record ContainerStatus(String state, boolean running, int exitCode, String error) { public static ContainerStatus notFound() { return new ContainerStatus("not_found", false, -1, "Container not found"); @@ -345,7 +345,7 @@ public record ContainerStatus(String state, boolean running, int exitCode, Strin - [x] **Step 3: Commit** ```bash -git add cameleer3-server-core/src/main/java/com/cameleer3/server/core/runtime/ +git add cameleer-server-core/src/main/java/com/cameleer/server/core/runtime/ git commit -m "feat: add runtime repository interfaces and RuntimeOrchestrator" ``` @@ -359,7 +359,7 @@ git commit -m "feat: add runtime repository interfaces and RuntimeOrchestrator" - [x] **Step 1: Create EnvironmentService** ```java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; import java.util.List; import java.util.UUID; @@ -395,7 +395,7 @@ public class EnvironmentService { - [x] **Step 2: Create AppService** ```java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -478,7 +478,7 @@ public class AppService { - [x] **Step 3: Create DeploymentService** ```java -package com.cameleer3.server.core.runtime; +package com.cameleer.server.core.runtime; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -536,7 +536,7 @@ public class DeploymentService { - [x] **Step 4: Commit** ```bash -git add cameleer3-server-core/src/main/java/com/cameleer3/server/core/runtime/ +git add cameleer-server-core/src/main/java/com/cameleer/server/core/runtime/ git commit -m "feat: add EnvironmentService, AppService, DeploymentService" ``` @@ -598,14 +598,14 @@ public class RuntimeBeanConfig { - [x] **Step 3: Run tests** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn test -pl cameleer3-server-app` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn test -pl cameleer-server-app` Expected: PASS (Flyway applies V3 migration, context loads). - [x] **Step 4: Commit** ```bash -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/storage/Postgres*Repository.java -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/config/RuntimeBeanConfig.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/storage/Postgres*Repository.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/config/RuntimeBeanConfig.java git commit -m "feat: implement PostgreSQL repositories for runtime management" ``` @@ -614,16 +614,16 @@ git commit -m "feat: implement PostgreSQL repositories for runtime management" ### Task 7: Docker Runtime Orchestrator **Files:** -- Create: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/runtime/DockerRuntimeOrchestrator.java` -- Create: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/runtime/DisabledRuntimeOrchestrator.java` -- Create: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/runtime/RuntimeOrchestratorAutoConfig.java` +- Create: `cameleer-server-app/src/main/java/com/cameleer/server/app/runtime/DockerRuntimeOrchestrator.java` +- Create: `cameleer-server-app/src/main/java/com/cameleer/server/app/runtime/DisabledRuntimeOrchestrator.java` +- Create: `cameleer-server-app/src/main/java/com/cameleer/server/app/runtime/RuntimeOrchestratorAutoConfig.java` - [x] **Step 1: Implement DisabledRuntimeOrchestrator** ```java -package com.cameleer3.server.app.runtime; +package com.cameleer.server.app.runtime; -import com.cameleer3.server.core.runtime.*; +import com.cameleer.server.core.runtime.*; import java.util.stream.Stream; public class DisabledRuntimeOrchestrator implements RuntimeOrchestrator { @@ -685,9 +685,9 @@ public String startContainer(ContainerRequest request) { - [x] **Step 3: Implement RuntimeOrchestratorAutoConfig** ```java -package com.cameleer3.server.app.runtime; +package com.cameleer.server.app.runtime; -import com.cameleer3.server.core.runtime.RuntimeOrchestrator; +import com.cameleer.server.core.runtime.RuntimeOrchestrator; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.context.annotation.Bean; @@ -718,7 +718,7 @@ public class RuntimeOrchestratorAutoConfig { - [x] **Step 4: Commit** ```bash -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/runtime/ +git add cameleer-server-app/src/main/java/com/cameleer/server/app/runtime/ git commit -m "feat: implement DockerRuntimeOrchestrator with volume-mount JAR deployment" ``` @@ -727,14 +727,14 @@ git commit -m "feat: implement DockerRuntimeOrchestrator with volume-mount JAR d ### Task 8: DeploymentExecutor — Async Deployment Pipeline **Files:** -- Create: `cameleer3-server-app/src/main/java/com/cameleer3/server/app/runtime/DeploymentExecutor.java` +- Create: `cameleer-server-app/src/main/java/com/cameleer/server/app/runtime/DeploymentExecutor.java` - [x] **Step 1: Implement async deployment pipeline** ```java -package com.cameleer3.server.app.runtime; +package com.cameleer.server.app.runtime; -import com.cameleer3.server.core.runtime.*; +import com.cameleer.server.core.runtime.*; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.scheduling.annotation.Async; @@ -841,7 +841,7 @@ public TaskExecutor deploymentTaskExecutor() { - [x] **Step 3: Commit** ```bash -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/runtime/DeploymentExecutor.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/runtime/DeploymentExecutor.java git commit -m "feat: implement async DeploymentExecutor pipeline" ``` @@ -907,9 +907,9 @@ Add to `SecurityConfig.filterChain()`: - [x] **Step 5: Commit** ```bash -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/EnvironmentAdminController.java -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/AppController.java -git add cameleer3-server-app/src/main/java/com/cameleer3/server/app/controller/DeploymentController.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/controller/EnvironmentAdminController.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/controller/AppController.java +git add cameleer-server-app/src/main/java/com/cameleer/server/app/controller/DeploymentController.java git commit -m "feat: add REST controllers for environment, app, and deployment management" ``` @@ -918,7 +918,7 @@ git commit -m "feat: add REST controllers for environment, app, and deployment m ### Task 10: Configuration and Application Properties **Files:** -- Modify: `cameleer3-server-app/src/main/resources/application.yml` +- Modify: `cameleer-server-app/src/main/resources/application.yml` - [x] **Step 1: Add runtime config properties** @@ -939,13 +939,13 @@ cameleer: - [x] **Step 2: Run full test suite** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn clean verify` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn clean verify` Expected: PASS. - [x] **Step 3: Commit** ```bash -git add cameleer3-server-app/src/main/resources/application.yml +git add cameleer-server-app/src/main/resources/application.yml git commit -m "feat: add runtime management configuration properties" ``` @@ -968,7 +968,7 @@ Test deployment creation (with `DisabledRuntimeOrchestrator` — verifies the de - [x] **Step 4: Commit** ```bash -git add cameleer3-server-app/src/test/java/com/cameleer3/server/app/controller/ +git add cameleer-server-app/src/test/java/com/cameleer/server/app/controller/ git commit -m "test: add integration tests for runtime management API" ``` @@ -978,7 +978,7 @@ git commit -m "test: add integration tests for runtime management API" - [x] **Step 1: Run full build** -Run: `cd /c/Users/Hendrik/Documents/projects/cameleer3-server && mvn clean verify` +Run: `cd /c/Users/Hendrik/Documents/projects/cameleer-server && mvn clean verify` Expected: All tests PASS. - [x] **Step 2: Verify schema applies cleanly** diff --git a/docs/superpowers/plans/2026-04-07-plan4-saas-cleanup.md b/docs/superpowers/plans/2026-04-07-plan4-saas-cleanup.md index fee3d70..51be6e6 100644 --- a/docs/superpowers/plans/2026-04-07-plan4-saas-cleanup.md +++ b/docs/superpowers/plans/2026-04-07-plan4-saas-cleanup.md @@ -10,7 +10,7 @@ **Repo:** `C:\Users\Hendrik\Documents\projects\cameleer-saas` -**Prerequisite:** Plans 1-3 must be implemented in cameleer3-server first. +**Prerequisite:** Plans 1-3 must be implemented in cameleer-server first. --- @@ -212,7 +212,7 @@ git commit -m "feat: remove migrated environment/app/deployment/runtime code fro ```sql -- V010__drop_migrated_tables.sql --- Drop tables that have been migrated to cameleer3-server +-- Drop tables that have been migrated to cameleer-server DROP TABLE IF EXISTS deployments CASCADE; DROP TABLE IF EXISTS apps CASCADE; @@ -242,7 +242,7 @@ group_add: - "0" ``` -The Docker socket mount now belongs to the `cameleer3-server` service instead. +The Docker socket mount now belongs to the `cameleer-server` service instead. - [ ] **Step 2: Remove docker-java dependency from pom.xml** @@ -328,7 +328,7 @@ git commit -m "feat: expand ServerApiClient with license push and health check m - [ ] **Step 1: Create integration contract document** -Create `docs/SAAS-INTEGRATION.md` in the cameleer3-server repo documenting: +Create `docs/SAAS-INTEGRATION.md` in the cameleer-server repo documenting: - Which server API endpoints the SaaS calls - Required auth (M2M token with `server:admin` scope) - License injection mechanism (`POST /api/v1/admin/license`) @@ -339,7 +339,7 @@ Create `docs/SAAS-INTEGRATION.md` in the cameleer3-server repo documenting: - [ ] **Step 2: Commit** ```bash -cd /c/Users/Hendrik/Documents/projects/cameleer3-server +cd /c/Users/Hendrik/Documents/projects/cameleer-server git add docs/SAAS-INTEGRATION.md git commit -m "docs: add SaaS integration contract documentation" ``` diff --git a/docs/superpowers/plans/2026-04-09-platform-redesign-plan.md b/docs/superpowers/plans/2026-04-09-platform-redesign-plan.md index e63593f..f7e33f0 100644 --- a/docs/superpowers/plans/2026-04-09-platform-redesign-plan.md +++ b/docs/superpowers/plans/2026-04-09-platform-redesign-plan.md @@ -2,7 +2,7 @@ > **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. -**Goal:** Redesign the cameleer-saas platform from a read-only viewer into a vendor management plane that provisions per-tenant cameleer3-server instances, with vendor CRUD and customer self-service. +**Goal:** Redesign the cameleer-saas platform from a read-only viewer into a vendor management plane that provisions per-tenant cameleer-server instances, with vendor CRUD and customer self-service. **Architecture:** Two-persona split (vendor console at `/vendor/*`, tenant portal at `/tenant/*`). Pluggable `TenantProvisioner` interface with Docker implementation. Backend orchestrates provisioning + Logto + licensing in a single create-tenant flow. Frontend adapts sidebar/routes by persona. @@ -410,13 +410,13 @@ Append to `application.yml`: ```yaml cameleer: provisioning: - server-image: ${CAMELEER_SERVER_IMAGE:gitea.siegeln.net/cameleer/cameleer3-server:latest} - server-ui-image: ${CAMELEER_SERVER_UI_IMAGE:gitea.siegeln.net/cameleer/cameleer3-server-ui:latest} + server-image: ${CAMELEER_SERVER_IMAGE:gitea.siegeln.net/cameleer/cameleer-server:latest} + server-ui-image: ${CAMELEER_SERVER_UI_IMAGE:gitea.siegeln.net/cameleer/cameleer-server-ui:latest} network-name: ${CAMELEER_NETWORK:cameleer-saas_cameleer} traefik-network: ${CAMELEER_TRAEFIK_NETWORK:cameleer-traefik} public-host: ${PUBLIC_HOST:localhost} public-protocol: ${PUBLIC_PROTOCOL:https} - datasource-url: ${CAMELEER_SERVER_DB_URL:jdbc:postgresql://postgres:5432/cameleer3} + datasource-url: ${CAMELEER_SERVER_DB_URL:jdbc:postgresql://postgres:5432/cameleer} oidc-issuer-uri: ${PUBLIC_PROTOCOL:https}://${PUBLIC_HOST:localhost}/oidc oidc-jwk-set-uri: http://logto:3001/oidc/jwks cors-origins: ${PUBLIC_PROTOCOL:https}://${PUBLIC_HOST:localhost} @@ -1877,7 +1877,7 @@ import { LayoutDashboard, ShieldCheck, Server, Users, Settings, KeyRound, Buildi import { useAuth } from '../auth/useAuth'; import { useScopes } from '../auth/useScopes'; import { useOrgStore } from '../auth/useOrganization'; -import logo from '@cameleer/design-system/assets/cameleer3-logo.svg'; +import logo from '@cameleer/design-system/assets/cameleer-logo.svg'; export function Layout() { const navigate = useNavigate(); @@ -2940,8 +2940,8 @@ This gives the SaaS container access to the Docker daemon for provisioning. Add to the `cameleer-saas` environment section: ```yaml -CAMELEER_SERVER_IMAGE: gitea.siegeln.net/cameleer/cameleer3-server:${VERSION:-latest} -CAMELEER_SERVER_UI_IMAGE: gitea.siegeln.net/cameleer/cameleer3-server-ui:${VERSION:-latest} +CAMELEER_SERVER_IMAGE: gitea.siegeln.net/cameleer/cameleer-server:${VERSION:-latest} +CAMELEER_SERVER_UI_IMAGE: gitea.siegeln.net/cameleer/cameleer-server-ui:${VERSION:-latest} CAMELEER_NETWORK: cameleer-saas_cameleer CAMELEER_TRAEFIK_NETWORK: cameleer-traefik ``` diff --git a/docs/superpowers/plans/2026-04-09-saas-ux-polish-plan.md b/docs/superpowers/plans/2026-04-09-saas-ux-polish-plan.md index 459120d..1d4e933 100644 --- a/docs/superpowers/plans/2026-04-09-saas-ux-polish-plan.md +++ b/docs/superpowers/plans/2026-04-09-saas-ux-polish-plan.md @@ -581,7 +581,7 @@ In `ui/sign-in/src/SignInPage.tsx`, find the logo text (line ~61): // BEFORE: <div className={styles.logo}> <img src={cameleerLogo} alt="" className={styles.logoImg} /> - cameleer3 + cameleer </div> // AFTER: diff --git a/docs/superpowers/plans/2026-04-10-fleet-health-plan.md b/docs/superpowers/plans/2026-04-10-fleet-health-plan.md new file mode 100644 index 0000000..f59a7f3 --- /dev/null +++ b/docs/superpowers/plans/2026-04-10-fleet-health-plan.md @@ -0,0 +1,210 @@ +# Fleet Health at a Glance Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Add agent count, environment count, and agent limit columns to the vendor tenant list so the vendor can see fleet utilization at a glance. + +**Architecture:** Extend the existing `VendorTenantSummary` record with three int fields. The list endpoint fetches counts from each active tenant's server via existing M2M API methods (`getAgentCount`, `getEnvironmentCount`), parallelized with `CompletableFuture`. Frontend adds two columns (Agents, Envs) to the DataTable. + +**Tech Stack:** Java 21, Spring Boot, CompletableFuture, React, TypeScript, @cameleer/design-system DataTable + +--- + +### Task 1: Extend backend — VendorTenantSummary + parallel fetch + +**Files:** +- Modify: `src/main/java/net/siegeln/cameleer/saas/vendor/VendorTenantController.java` + +- [ ] **Step 1: Extend the VendorTenantSummary record** + +In `VendorTenantController.java`, replace the record at lines 39-48: + +```java +public record VendorTenantSummary( + UUID id, + String name, + String slug, + String tier, + String status, + String serverState, + String licenseExpiry, + String provisionError, + int agentCount, + int environmentCount, + int agentLimit +) {} +``` + +- [ ] **Step 2: Update the listAll() endpoint to fetch counts in parallel** + +Replace the `listAll()` method at lines 60-77: + +```java +@GetMapping +public ResponseEntity<List<VendorTenantSummary>> listAll() { + var tenants = vendorTenantService.listAll(); + + // Parallel health fetch for active tenants + var futures = tenants.stream().map(tenant -> java.util.concurrent.CompletableFuture.supplyAsync(() -> { + ServerStatus status = vendorTenantService.getServerStatus(tenant); + String licenseExpiry = vendorTenantService + .getLicenseForTenant(tenant.getId()) + .map(l -> l.getExpiresAt() != null ? l.getExpiresAt().toString() : null) + .orElse(null); + + int agentCount = 0; + int environmentCount = 0; + int agentLimit = -1; + + String endpoint = tenant.getServerEndpoint(); + boolean isActive = "ACTIVE".equals(tenant.getStatus().name()); + if (isActive && endpoint != null && !endpoint.isBlank() && "RUNNING".equals(status.state().name())) { + var serverApi = vendorTenantService.getServerApiClient(); + agentCount = serverApi.getAgentCount(endpoint); + environmentCount = serverApi.getEnvironmentCount(endpoint); + } + + var license = vendorTenantService.getLicenseForTenant(tenant.getId()); + if (license.isPresent() && license.get().getLimits() != null) { + var limits = license.get().getLimits(); + if (limits.containsKey("agents")) { + agentLimit = ((Number) limits.get("agents")).intValue(); + } + } + + return new VendorTenantSummary( + tenant.getId(), tenant.getName(), tenant.getSlug(), + tenant.getTier().name(), tenant.getStatus().name(), + status.state().name(), licenseExpiry, tenant.getProvisionError(), + agentCount, environmentCount, agentLimit + ); + })).toList(); + + List<VendorTenantSummary> summaries = futures.stream() + .map(java.util.concurrent.CompletableFuture::join) + .toList(); + + return ResponseEntity.ok(summaries); +} +``` + +- [ ] **Step 3: Expose ServerApiClient from VendorTenantService** + +Add a getter in `src/main/java/net/siegeln/cameleer/saas/vendor/VendorTenantService.java`: + +```java +public ServerApiClient getServerApiClient() { + return serverApiClient; +} +``` + +(The `serverApiClient` field already exists in VendorTenantService — check around line 30.) + +- [ ] **Step 4: Verify compilation** + +Run: `./mvnw compile -pl . -q` +Expected: BUILD SUCCESS + +- [ ] **Step 5: Commit** + +```bash +git add src/main/java/net/siegeln/cameleer/saas/vendor/VendorTenantController.java \ + src/main/java/net/siegeln/cameleer/saas/vendor/VendorTenantService.java +git commit -m "feat: add agent/env counts to vendor tenant list endpoint" +``` + +--- + +### Task 2: Update frontend types and columns + +**Files:** +- Modify: `ui/src/types/api.ts` +- Modify: `ui/src/pages/vendor/VendorTenantsPage.tsx` + +- [ ] **Step 1: Add fields to VendorTenantSummary TypeScript type** + +In `ui/src/types/api.ts`, update the `VendorTenantSummary` interface: + +```typescript +export interface VendorTenantSummary { + id: string; + name: string; + slug: string; + tier: string; + status: string; + serverState: string; + licenseExpiry: string | null; + provisionError: string | null; + agentCount: number; + environmentCount: number; + agentLimit: number; +} +``` + +- [ ] **Step 2: Add Agents and Envs columns to VendorTenantsPage** + +In `ui/src/pages/vendor/VendorTenantsPage.tsx`, add a helper function after `statusColor`: + +```typescript +function formatUsage(used: number, limit: number): string { + return limit < 0 ? `${used} / ∞` : `${used} / ${limit}`; +} +``` + +Then add two column entries in the `columns` array, after the `serverState` column (after line 54) and before the `licenseExpiry` column: + +```typescript + { + key: 'agentCount', + header: 'Agents', + render: (_v, row) => ( + <span style={{ fontFamily: 'monospace', fontSize: '0.875rem' }}> + {formatUsage(row.agentCount, row.agentLimit)} + </span> + ), + }, + { + key: 'environmentCount', + header: 'Envs', + render: (_v, row) => ( + <span style={{ fontFamily: 'monospace', fontSize: '0.875rem' }}> + {row.environmentCount} + </span> + ), + }, +``` + +- [ ] **Step 3: Build the UI** + +Run: `cd ui && npm run build` +Expected: Build succeeds with no errors. + +- [ ] **Step 4: Commit** + +```bash +git add ui/src/types/api.ts ui/src/pages/vendor/VendorTenantsPage.tsx +git commit -m "feat: show agent/env counts in vendor tenant list" +``` + +--- + +### Task 3: Verify end-to-end + +- [ ] **Step 1: Run backend tests** + +Run: `./mvnw test -pl . -q` +Expected: All tests pass. (Existing tests use mocks, the new parallel fetch doesn't break them since it only affects the controller's list mapping.) + +- [ ] **Step 2: Verify in browser** + +Navigate to the vendor tenant list. Confirm: +- "Agents" column shows "0 / ∞" (or actual count if agents are connected) +- "Envs" column shows "1" (or actual count) +- PROVISIONING/SUSPENDED tenants show "0" for both +- 30s auto-refresh still works + +- [ ] **Step 3: Final commit and push** + +```bash +git push +``` diff --git a/docs/superpowers/plans/2026-04-13-install-script-plan.md b/docs/superpowers/plans/2026-04-13-install-script-plan.md index 3843fc3..2e29684 100644 --- a/docs/superpowers/plans/2026-04-13-install-script-plan.md +++ b/docs/superpowers/plans/2026-04-13-install-script-plan.md @@ -1572,8 +1572,8 @@ VENDOR_PASS=${VENDOR_PASS:-} DOCKER_SOCKET=${DOCKER_SOCKET} # Provisioning images -CAMELEER_SAAS_PROVISIONING_SERVERIMAGE=${REGISTRY}/cameleer3-server:${VERSION} -CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE=${REGISTRY}/cameleer3-server-ui:${VERSION} +CAMELEER_SAAS_PROVISIONING_SERVERIMAGE=${REGISTRY}/cameleer-server:${VERSION} +CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE=${REGISTRY}/cameleer-server-ui:${VERSION} EOF log_info "Generated .env" @@ -1793,8 +1793,8 @@ EOF CAMELEER_SAAS_PROVISIONING_PUBLICHOST: ${PUBLIC_HOST:-localhost} CAMELEER_SAAS_PROVISIONING_NETWORKNAME: ${COMPOSE_PROJECT_NAME:-cameleer-saas}_cameleer CAMELEER_SAAS_PROVISIONING_TRAEFIKNETWORK: cameleer-traefik - CAMELEER_SAAS_PROVISIONING_SERVERIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERIMAGE:-gitea.siegeln.net/cameleer/cameleer3-server:latest} - CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE:-gitea.siegeln.net/cameleer/cameleer3-server-ui:latest} + CAMELEER_SAAS_PROVISIONING_SERVERIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERIMAGE:-gitea.siegeln.net/cameleer/cameleer-server:latest} + CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE:-gitea.siegeln.net/cameleer/cameleer-server-ui:latest} labels: - traefik.enable=true - traefik.http.routers.saas.rule=PathPrefix(`/platform`) @@ -2109,7 +2109,7 @@ EOF | `logto` | OIDC identity provider + bootstrap | | `cameleer-saas` | SaaS platform (Spring Boot + React) | -Per-tenant `cameleer3-server` and `cameleer3-server-ui` containers are provisioned dynamically when tenants are created. +Per-tenant `cameleer-server` and `cameleer-server-ui` containers are provisioned dynamically when tenants are created. ## Networking @@ -2656,7 +2656,7 @@ Tasks 8-16 ────── can run in parallel with Phase 1 ## Follow-up (out of scope) -- Bake `docker/server-ui-entrypoint.sh` into the `cameleer3-server-ui` image (separate repo) +- Bake `docker/server-ui-entrypoint.sh` into the `cameleer-server-ui` image (separate repo) - Set up `install.cameleer.io` distribution endpoint - Create release automation (tag → publish installer scripts to distribution endpoint) - Add `docker-compose.dev.yml` overlay generation for the installer's expert mode diff --git a/docs/superpowers/plans/2026-04-15-per-tenant-pg-isolation-plan.md b/docs/superpowers/plans/2026-04-15-per-tenant-pg-isolation-plan.md index 0508353..f75bd76 100644 --- a/docs/superpowers/plans/2026-04-15-per-tenant-pg-isolation-plan.md +++ b/docs/superpowers/plans/2026-04-15-per-tenant-pg-isolation-plan.md @@ -87,7 +87,7 @@ import java.sql.Statement; /** * Creates and drops per-tenant PostgreSQL users and schemas - * on the shared cameleer3 database for DB-level tenant isolation. + * on the shared cameleer database for DB-level tenant isolation. */ @Service public class TenantDatabaseService { diff --git a/docs/superpowers/specs/2026-03-29-moat-features-design.md b/docs/superpowers/specs/2026-03-29-moat-features-design.md index 8f11208..1ea48d5 100644 --- a/docs/superpowers/specs/2026-03-29-moat-features-design.md +++ b/docs/superpowers/specs/2026-03-29-moat-features-design.md @@ -3,7 +3,7 @@ **Date:** 2026-03-29 **Status:** Draft — Awaiting Review **Author:** Boardroom simulation (Strategist, Skeptic, Architect, Growth Hacker) -**Gitea Issues:** cameleer/cameleer3 #57-#72 (label: MOAT) +**Gitea Issues:** cameleer/cameleer #57-#72 (label: MOAT) ## Executive Summary @@ -32,14 +32,14 @@ Week 8-14: Live Route Debugger (agent + server + UI) - #59 — Cross-Service Trace Correlation + Topology Map **Debugger sub-issues:** -- #60 — Protocol: Debug session command types (`cameleer3-common`) +- #60 — Protocol: Debug session command types (`cameleer-common`) - #61 — Agent: DebugSessionManager + breakpoint InterceptStrategy integration - #62 — Agent: ExchangeStateSerializer + synthetic direct route wrapper - #63 — Server: DebugSessionService + WebSocket + REST API - #70 — UI: Debug session frontend components **Lineage sub-issues:** -- #64 — Protocol: Lineage command types (`cameleer3-common`) +- #64 — Protocol: Lineage command types (`cameleer-common`) - #65 — Agent: LineageManager + capture mode integration - #66 — Server: LineageService + DiffEngine + REST API - #71 — UI: Lineage timeline + diff viewer components @@ -69,14 +69,14 @@ Browser (SaaS UI) WebSocket <--------------------------------------+ | | v | -cameleer3-server | +cameleer-server | | POST /api/v1/debug/sessions | | POST /api/v1/debug/sessions/{id}/step | | POST /api/v1/debug/sessions/{id}/resume | | DELETE /api/v1/debug/sessions/{id} | | | v | -SSE Command Channel --> cameleer3 agent | +SSE Command Channel --> cameleer agent | | | | | "start-debug" | | | command v | @@ -101,7 +101,7 @@ SSE Command Channel --> cameleer3 agent | | Continue to next processor ``` -### 1.3 Protocol Additions (cameleer3-common) +### 1.3 Protocol Additions (cameleer-common) #### New SSE Commands @@ -160,11 +160,11 @@ SSE Command Channel --> cameleer3 agent | } ``` -### 1.4 Agent Implementation (cameleer3-agent) +### 1.4 Agent Implementation (cameleer-agent) #### DebugSessionManager -- Location: `com.cameleer3.agent.debug.DebugSessionManager` +- Location: `com.cameleer.agent.debug.DebugSessionManager` - Stores active sessions: `ConcurrentHashMap<sessionId, DebugSession>` - Enforces max concurrent sessions (default 3, configurable via `cameleer.debug.maxSessions`) - Allocates **dedicated Thread** per session (NOT from Camel thread pool) @@ -213,7 +213,7 @@ For non-direct routes (timer, jms, http, file): 3. Debug exchange enters via `ProducerTemplate.send()` 4. Remove temporary route on session completion -### 1.5 Server Implementation (cameleer3-server) +### 1.5 Server Implementation (cameleer-server) #### REST Endpoints @@ -308,7 +308,7 @@ Capture the full transformation history of a message flowing through a route. At ### 2.2 Architecture ``` -cameleer3 agent +cameleer agent | | On lineage-enabled exchange: | Before processor: capture INPUT @@ -319,7 +319,7 @@ cameleer3 agent POST /api/v1/data/executions (processors carry full snapshots) | v -cameleer3-server +cameleer-server | | LineageService: | > Flatten processor tree to ordered list @@ -334,7 +334,7 @@ GET /api/v1/executions/{id}/lineage Browser: LineageTimeline + DiffViewer ``` -### 2.3 Protocol Additions (cameleer3-common) +### 2.3 Protocol Additions (cameleer-common) #### New SSE Commands @@ -370,11 +370,11 @@ Browser: LineageTimeline + DiffViewer | `EXPRESSION` | Any exchange matching a Simple/JsonPath predicate | | `NEXT_N` | Next N exchanges on the route (countdown) | -### 2.4 Agent Implementation (cameleer3-agent) +### 2.4 Agent Implementation (cameleer-agent) #### LineageManager -- Location: `com.cameleer3.agent.lineage.LineageManager` +- Location: `com.cameleer.agent.lineage.LineageManager` - Stores active configs: `ConcurrentHashMap<lineageId, LineageConfig>` - Tracks capture count per lineageId: auto-disables at `maxCaptures` - Duration timeout via `ScheduledExecutorService`: auto-disables after expiry @@ -412,7 +412,7 @@ cameleer.lineage.maxBodySize=65536 # 64KB for lineage captures (vs 4KB normal cameleer.lineage.enabled=true # master switch ``` -### 2.5 Server Implementation (cameleer3-server) +### 2.5 Server Implementation (cameleer-server) #### LineageService @@ -548,7 +548,7 @@ New (added): | Direct/SEDA | URI prefix `direct:`, `seda:`, `vm:` | Exchange property (in-process) | | File/FTP | URI prefix `file:`, `ftp:` | Not propagated (async) | -### 3.3 Agent Implementation (cameleer3-agent) +### 3.3 Agent Implementation (cameleer-agent) #### Outgoing Propagation (InterceptStrategy) @@ -597,7 +597,7 @@ execution.setHopIndex(...); // depth in distributed trace - Parse failure: log warning, continue without context (no exchange failure) - Only inject on outgoing processors, never on FROM consumers -### 3.4 Server Implementation: Trace Assembly (cameleer3-server) +### 3.4 Server Implementation: Trace Assembly (cameleer-server) #### CorrelationService @@ -665,7 +665,7 @@ CREATE INDEX idx_executions_parent_span - **Fan-out:** parallel multicast creates multiple children from same processor - **Circular calls:** detected via hopIndex (max depth 20) -### 3.5 Server Implementation: Topology Graph (cameleer3-server) +### 3.5 Server Implementation: Topology Graph (cameleer-server) #### DependencyGraphService @@ -799,11 +799,11 @@ Reserve `sourceTenantHash` in TraceContext for future use: | Work | Repo | Issue | |------|------|-------| -| Service topology materialized view | cameleer3-server | #69 | -| Topology REST API | cameleer3-server | #69 | -| ServiceTopologyGraph.tsx | cameleer3-server + saas | #72 | -| WebSocket infrastructure (for debugger) | cameleer3-server | #63 | -| TraceContext DTO in cameleer3-common | cameleer3 | #67 | +| Service topology materialized view | cameleer-server | #69 | +| Topology REST API | cameleer-server | #69 | +| ServiceTopologyGraph.tsx | cameleer-server + saas | #72 | +| WebSocket infrastructure (for debugger) | cameleer-server | #63 | +| TraceContext DTO in cameleer-common | cameleer | #67 | **Ship:** Topology graph visible from existing data. Zero agent changes. Immediate visual payoff. @@ -811,10 +811,10 @@ Reserve `sourceTenantHash` in TraceContext for future use: | Work | Repo | Issue | |------|------|-------| -| Lineage protocol DTOs | cameleer3-common | #64 | -| LineageManager + capture integration | cameleer3-agent | #65 | -| LineageService + DiffEngine | cameleer3-server | #66 | -| Lineage UI components | cameleer3-server + saas | #71 | +| Lineage protocol DTOs | cameleer-common | #64 | +| LineageManager + capture integration | cameleer-agent | #65 | +| LineageService + DiffEngine | cameleer-server | #66 | +| Lineage UI components | cameleer-server + saas | #71 | **Ship:** Payload flow lineage independently usable. @@ -822,10 +822,10 @@ Reserve `sourceTenantHash` in TraceContext for future use: | Work | Repo | Issue | |------|------|-------| -| Trace context header propagation | cameleer3-agent | #67 | -| Executions table migration (new columns) | cameleer3-server | #68 | -| CorrelationService + trace assembly | cameleer3-server | #68 | -| DistributedTraceView + TraceSearch UI | cameleer3-server + saas | #72 | +| Trace context header propagation | cameleer-agent | #67 | +| Executions table migration (new columns) | cameleer-server | #68 | +| CorrelationService + trace assembly | cameleer-server | #68 | +| DistributedTraceView + TraceSearch UI | cameleer-server + saas | #72 | **Ship:** Distributed traces + topology — full correlation story. @@ -833,11 +833,11 @@ Reserve `sourceTenantHash` in TraceContext for future use: | Work | Repo | Issue | |------|------|-------| -| Debug protocol DTOs | cameleer3-common | #60 | -| DebugSessionManager + InterceptStrategy | cameleer3-agent | #61 | -| ExchangeStateSerializer + synthetic wrapper | cameleer3-agent | #62 | -| DebugSessionService + WS + REST | cameleer3-server | #63 | -| Debug UI components | cameleer3-server + saas | #70 | +| Debug protocol DTOs | cameleer-common | #60 | +| DebugSessionManager + InterceptStrategy | cameleer-agent | #61 | +| ExchangeStateSerializer + synthetic wrapper | cameleer-agent | #62 | +| DebugSessionService + WS + REST | cameleer-server | #63 | +| Debug UI components | cameleer-server + saas | #70 | **Ship:** Full browser-based route debugger with integration to lineage and correlation. diff --git a/docs/superpowers/specs/2026-03-29-saas-platform-prd.md b/docs/superpowers/specs/2026-03-29-saas-platform-prd.md index c660f75..727ebac 100644 --- a/docs/superpowers/specs/2026-03-29-saas-platform-prd.md +++ b/docs/superpowers/specs/2026-03-29-saas-platform-prd.md @@ -10,12 +10,12 @@ ## 1. Product Definition -**Cameleer SaaS** is a Camel application runtime platform with built-in observability. Customers deploy Apache Camel applications and get zero-configuration tracing, topology mapping, payload lineage, distributed correlation, live debugging, and exchange replay — powered by the cameleer3 agent (auto-injected) and cameleer3-server (managed per tenant). +**Cameleer SaaS** is a Camel application runtime platform with built-in observability. Customers deploy Apache Camel applications and get zero-configuration tracing, topology mapping, payload lineage, distributed correlation, live debugging, and exchange replay — powered by the cameleer agent (auto-injected) and cameleer-server (managed per tenant). ### Three Pillars 1. **Runtime** — Deploy and run Camel applications with automatic agent injection -2. **Observability** — Per-tenant cameleer3-server (traces, topology, lineage, correlation, debugger, replay) +2. **Observability** — Per-tenant cameleer-server (traces, topology, lineage, correlation, debugger, replay) 3. **Management** — Auth, billing, teams, provisioning, secrets, environments ### Two Deployment Modes @@ -27,8 +27,8 @@ | Component | Role | Changes Required | |-----------|------|------------------| -| cameleer3 (agent) | Zero-code Camel instrumentation, auto-injected into customer JARs | MOAT features (lineage, correlation, debugger, replay) | -| cameleer3-server | Per-tenant observability backend | Managed mode (trust SaaS JWT), license module, MOAT features | +| cameleer (agent) | Zero-code Camel instrumentation, auto-injected into customer JARs | MOAT features (lineage, correlation, debugger, replay) | +| cameleer-server | Per-tenant observability backend | Managed mode (trust SaaS JWT), license module, MOAT features | | cameleer-saas (this repo) | SaaS management platform — control plane | New: everything in this document | | design-system | Shared React component library | Used by both SaaS shell and server UI | @@ -81,7 +81,7 @@ Single Spring Boot application with well-bounded internal modules. K8s ingress h ``` [Browser] → [Ingress (Traefik/Envoy)] → [SaaS Platform (modular Spring Boot)] ↓ (tenant routes) ↓ (provisioning) - [Tenant cameleer3-server] [Flux CD → K8s] + [Tenant cameleer-server] [Flux CD → K8s] ``` ### Component Map @@ -114,7 +114,7 @@ Single Spring Boot application with well-bounded internal modules. K8s ingress h │ (PostgreSQL) │ │ API │ │ │ │ - tenants │ └────────┘ │ ┌─────────────────────┐ │ │ - users │ │ │ tenant-a namespace │ │ - │ - teams │ ┌─────┐ │ │ ├─ cameleer3-server │ │ + │ - teams │ ┌─────┐ │ │ ├─ cameleer-server │ │ │ - audit log │ │Flux │ │ │ ├─ camel-app-1 │ │ │ - licenses │ │ CD │ │ │ ├─ camel-app-2 │ │ └──────────────┘ └──┬──┘ │ │ └─ NetworkPolicies │ │ @@ -144,7 +144,7 @@ Same management platform routes to dedicated cluster(s) per customer. Dedicated | Management Platform backend | Spring Boot 3, Java 21 | | Management Platform frontend | React, @cameleer/design-system | | Platform database | PostgreSQL | -| Tenant observability | cameleer3-server (Spring Boot), PostgreSQL, OpenSearch | +| Tenant observability | cameleer-server (Spring Boot), PostgreSQL, OpenSearch | | GitOps | Flux CD | | K8s distribution | Talos (production), k3s (dev) | | Ingress | Traefik or Envoy | @@ -192,7 +192,7 @@ Stores all SaaS control plane data — completely separate from tenant observabi ### Tenant Data (Shared PostgreSQL) -Each tenant's cameleer3-server uses its own PostgreSQL schema on the shared instance (dedicated instance for high/business). This is the existing cameleer3-server data model — unchanged: +Each tenant's cameleer-server uses its own PostgreSQL schema on the shared instance (dedicated instance for high/business). This is the existing cameleer-server data model — unchanged: - Route executions, processor traces, metrics - Route graph topology @@ -215,12 +215,12 @@ Completely separate: Prometheus TSDB for metrics, Loki for logs. ### Architecture -The SaaS management platform is the single identity plane. It owns authentication and authorization. Per-tenant cameleer3-server instances trust SaaS-issued tokens. +The SaaS management platform is the single identity plane. It owns authentication and authorization. Per-tenant cameleer-server instances trust SaaS-issued tokens. - Spring Security OAuth2 for OIDC federation with customer IdPs -- Ed25519 JWT signing (consistent with existing cameleer3-server pattern) +- Ed25519 JWT signing (consistent with existing cameleer-server pattern) - Tokens carry: tenant ID, user ID, roles, feature entitlements -- cameleer3-server validates SaaS-issued JWTs in managed mode +- cameleer-server validates SaaS-issued JWTs in managed mode - Standalone mode retains its own auth for air-gapped deployments ### RBAC Model @@ -252,7 +252,7 @@ Customer signs up + payment → Create tenant record + Stripe customer/subscription → Generate signed license token (Ed25519) → Create Flux HelmRelease CR - → Flux reconciles: namespace, ResourceQuota, NetworkPolicies, cameleer3-server + → Flux reconciles: namespace, ResourceQuota, NetworkPolicies, cameleer-server → Provision PostgreSQL schema + per-tenant credentials → Provision OpenSearch index template + per-tenant credentials → Readiness check: server healthy, DB migrated, auth working @@ -297,7 +297,7 @@ Full Cluster API automation deferred to future release. ### JAR Upload → Immutable Image 1. **Validation** — File type check, size limit per tier, SHA-256 checksum, Trivy security scan, secret detection (reject JARs with embedded credentials) -2. **Image Build** — Templated Dockerfile: distroless JRE base + customer JAR + cameleer3-agent.jar + `-javaagent` flag + agent pre-configured for tenant server. Image tagged: `registry/{tenant}/{app}:v{N}-{sha256short}`. Signed with cosign. SBOM attached. +2. **Image Build** — Templated Dockerfile: distroless JRE base + customer JAR + cameleer-agent.jar + `-javaagent` flag + agent pre-configured for tenant server. Image tagged: `registry/{tenant}/{app}:v{N}-{sha256short}`. Signed with cosign. SBOM attached. 3. **Registry Push** — Per-tenant repository in platform container registry 4. **Deploy** — K8s Deployment in tenant namespace with resource limits, secrets mounted, config injected, NetworkPolicy applied, liveness/readiness probes @@ -350,7 +350,7 @@ Central UI for managing each deployed application: ### Architecture -Each tenant gets a dedicated cameleer3-server instance: +Each tenant gets a dedicated cameleer-server instance: - Shared tiers: deployed in tenant's namespace - Dedicated tiers: deployed in tenant's cluster @@ -359,7 +359,7 @@ The SaaS API gateway routes `/t/{tenant}/api/*` to the correct server instance. ### Agent Connection - Agent bootstrap tokens generated by the SaaS platform -- Agents connect directly to their tenant's cameleer3-server instance +- Agents connect directly to their tenant's cameleer-server instance - Agent auto-injected into customer Camel apps deployed on the platform - External agents (customer-hosted Camel apps) can also connect using bootstrap tokens @@ -448,7 +448,7 @@ K8s NetworkPolicies per tenant namespace: - **Allow:** tenant namespace → shared PostgreSQL/OpenSearch (authenticated per-tenant credentials) - **Allow:** tenant namespace → public internet (Camel app external connectivity) - **Allow:** SaaS platform namespace → all tenant namespaces (management access) -- **Allow:** tenant Camel apps → tenant cameleer3-server (intra-namespace) +- **Allow:** tenant Camel apps → tenant cameleer-server (intra-namespace) ### Zero-Trust Tenant Boundary @@ -546,7 +546,7 @@ Completely separate from tenant observability data. - TLS certificate expiry < 14 days - Metering pipeline stale > 1 hour - Disk usage > 80% on any PV -- Tenant cameleer3-server unhealthy > 5 minutes +- Tenant cameleer-server unhealthy > 5 minutes - OOMKill on any tenant workload ### Dashboards @@ -577,7 +577,7 @@ K8s Metrics → Metrics Collector → Usage Aggregator (hourly) → Stripe Usage |-----------|------|--------| | CPU | core·hours | K8s metrics (namespace aggregate) | | RAM | GB·hours | K8s metrics (namespace aggregate) | -| Data volume | GB ingested | cameleer3-server reports | +| Data volume | GB ingested | cameleer-server reports | - Aggregated per tenant, per hour, stored in platform DB before Stripe submission - Idempotent aggregation (safe to re-run) @@ -613,7 +613,7 @@ K8s Metrics → Metrics Collector → Usage Aggregator (hourly) → Stripe Usage | **App → Status** | Pod health, resource usage, agent connection, events | | **App → Logs** | Live stdout/stderr stream | | **App → Versions** | Image history, promotion log, rollback | -| **Observe** | Embedded cameleer3-server UI (topology, traces, lineage, correlation, debugger, replay) | +| **Observe** | Embedded cameleer-server UI (topology, traces, lineage, correlation, debugger, replay) | | **Team** | Users, roles, invites | | **Settings** | Tenant config, SSO/OIDC, vault connections | | **Billing** | Usage, invoices, plan management | @@ -621,7 +621,7 @@ K8s Metrics → Metrics Collector → Usage Aggregator (hourly) → Stripe Usage ### Design - SaaS shell built with `@cameleer/design-system` -- cameleer3-server React UI embedded (same design system, visual consistency) +- cameleer-server React UI embedded (same design system, visual consistency) - Responsive but desktop-primary (observability tooling is a desktop workflow) --- @@ -681,4 +681,4 @@ K8s Metrics → Metrics Collector → Usage Aggregator (hourly) → Stripe Usage | 12 | Platform Operations & Self-Monitoring | epic, ops | | 13 | MOAT: Exchange Replay | epic, observability | -MOAT features (Debugger, Lineage, Correlation) tracked in cameleer/cameleer3 #57–#72. +MOAT features (Debugger, Lineage, Correlation) tracked in cameleer/cameleer #57–#72. diff --git a/docs/superpowers/specs/2026-04-04-dual-deployment-architecture.md b/docs/superpowers/specs/2026-04-04-dual-deployment-architecture.md index 7b7d283..acba8fa 100644 --- a/docs/superpowers/specs/2026-04-04-dual-deployment-architecture.md +++ b/docs/superpowers/specs/2026-04-04-dual-deployment-architecture.md @@ -27,7 +27,7 @@ Key constraints: | **Identity & Auth** | **Logto** | MPL-2.0 | Lightest IdP (2 containers, ~0.5-1 GB). Orgs, RBAC, M2M tokens, OIDC/SSO federation all in OSS. Replaces ~3-4 months of custom auth build (OIDC, SSO, teams, invites, MFA, password reset, custom roles). | | **Reverse Proxy** | **Traefik** | MIT | Native Docker provider (labels) and K8s provider (IngressRoute CRDs). Same mental model in both environments. Already on the k3s cluster. ForwardAuth middleware for tenant-aware routing. Auto-HTTPS via Let's Encrypt. ~256 MB RAM. | | **Database** | **PostgreSQL** | PostgreSQL License | Already chosen. Platform data + Logto data (separate schemas). | -| **Trace/Metrics Storage** | **ClickHouse** | Apache-2.0 | Replaced OpenSearch in the cameleer3-server stack. Columnar OLAP, excellent for time-series observability data. | +| **Trace/Metrics Storage** | **ClickHouse** | Apache-2.0 | Replaced OpenSearch in the cameleer-server stack. Columnar OLAP, excellent for time-series observability data. | | **Schema Migrations** | **Flyway** | Apache-2.0 | Already in place. | | **Billing (subscriptions)** | **Stripe** | N/A (API) | Start with Stripe Checkout for fixed-tier subscriptions. No custom billing infrastructure day 1. | | **Billing (usage metering)** | **Lago** (deferred) | AGPL-3.0 | Purpose-built for event-based metering. 8 containers — deploy only when usage-based pricing launches. Design event model with Lago's API shape in mind from day 1. Integrate via API only (keeps AGPL safe). | @@ -42,14 +42,14 @@ Key constraints: | Subsystem | Why Build | |---|---| | **License signing & validation** | Ed25519 signed JWT with tier, features, limits, expiry. Dual mode: online API check + offline signed file. No off-the-shelf tool does this. Core IP. | -| **Agent bootstrap tokens** | Tightly coupled to the cameleer3 agent protocol (PROTOCOL.md). Custom Ed25519 tokens for agent registration. | +| **Agent bootstrap tokens** | Tightly coupled to the cameleer agent protocol (PROTOCOL.md). Custom Ed25519 tokens for agent registration. | | **Tenant lifecycle** | CRUD, configuration, status management. Core business logic. User management (invites, teams, roles) is delegated to Logto's organization model. | | **Runtime orchestration** | The core of the "managed Camel runtime" product. `RuntimeOrchestrator` interface with Docker and K8s implementations. No off-the-shelf tool does "managed Camel runtime with agent injection." | -| **Image build pipeline** | Templated Dockerfile: JRE + cameleer3-agent.jar + customer JAR + `-javaagent` flag. Simple but custom. | +| **Image build pipeline** | Templated Dockerfile: JRE + cameleer-agent.jar + customer JAR + `-javaagent` flag. Simple but custom. | | **Feature gating** | Tier-based feature gating logic. Which features are available at which tier. Business logic. | | **Billing integration** | Stripe API calls, subscription lifecycle, webhook handling. Thin integration layer. | -| **Observability proxy** | Routing authenticated requests to tenant-specific cameleer3-server instances. | -| **MOAT features** | Debugger, Lineage, Correlation — the defensible product. Built in cameleer3 agent + server. | +| **Observability proxy** | Routing authenticated requests to tenant-specific cameleer-server instances. | +| **MOAT features** | Debugger, Lineage, Correlation — the defensible product. Built in cameleer agent + server. | ### SKIP / DEFER @@ -74,7 +74,7 @@ Key constraints: +--------+---------------------+------------------------+ | | +--------v--------+ +---------v-----------+ -| cameleer-saas | | cameleer3-server | +| cameleer-saas | | cameleer-server | | (Spring Boot) | | (observability) | | Control plane | | Per-tenant instance | +---+-------+-----+ +----------+----------+ @@ -99,10 +99,10 @@ API request: -> Traefik forwards to upstream service Machine auth (agent bootstrap): - cameleer3-agent -> cameleer-saas /api/agent/register + cameleer-agent -> cameleer-saas /api/agent/register -> Validates bootstrap token (Ed25519) -> Issues agent session token - -> Agent connects to cameleer3-server + -> Agent connects to cameleer-server ``` Logto handles all user-facing identity. The cameleer-saas app handles machine-to-machine auth (agent tokens, license tokens) using Ed25519. @@ -137,9 +137,9 @@ Customer uploads JAR -> Validation (file type, size, SHA-256, security scan) -> Templated Dockerfile generation: FROM eclipse-temurin:21-jre-alpine - COPY cameleer3-agent.jar /opt/agent/ + COPY cameleer-agent.jar /opt/agent/ COPY customer-app.jar /opt/app/ - ENTRYPOINT ["java", "-javaagent:/opt/agent/cameleer3-agent.jar", "-jar", "/opt/app/customer-app.jar"] + ENTRYPOINT ["java", "-javaagent:/opt/agent/cameleer-agent.jar", "-jar", "/opt/app/customer-app.jar"] -> Build: Docker mode: docker build via docker-java (local image cache) K8s mode: Kaniko Job -> push to registry @@ -152,7 +152,7 @@ Customer uploads JAR - **Schema-per-tenant** in PostgreSQL for platform data isolation. - **Logto organizations** map 1:1 to tenants. Logto handles user-tenant membership. - **ClickHouse** data partitioned by tenant_id. -- **cameleer3-server** instances are per-tenant (separate containers/pods). +- **cameleer-server** instances are per-tenant (separate containers/pods). - **K8s bonus:** Namespace-per-tenant for network isolation, resource quotas. ### Environment Model @@ -232,8 +232,8 @@ services: - traefik.enable=true - traefik.http.routers.auth.rule=PathPrefix(`/auth`) - cameleer3-server: - image: gitea.siegeln.net/cameleer/cameleer3-server:${VERSION} + cameleer-server: + image: gitea.siegeln.net/cameleer/cameleer-server:${VERSION} environment: - CLICKHOUSE_URL=jdbc:clickhouse://clickhouse:8123/cameleer labels: @@ -312,9 +312,9 @@ volumes: ### Phase 4: Observability Pipeline **Goal:** Customer can see traces, metrics, and route topology for deployed apps. -- Connect cameleer3-server to customer app containers +- Connect cameleer-server to customer app containers - ClickHouse tenant-scoped data partitioning -- Observability API proxy (tenant-aware routing to cameleer3-server) +- Observability API proxy (tenant-aware routing to cameleer-server) - Basic topology graph endpoint - Agent ↔ server connectivity verification @@ -367,13 +367,13 @@ volumes: 1. Upload a sample Camel JAR via API 2. Platform builds container image 3. Deploy to "dev" environment -4. Container starts with cameleer3 agent attached +4. Container starts with cameleer agent attached 5. App is reachable via Traefik routing 6. Logs are accessible via API 7. Deploy same image to "prod" with different config ### Phase 4 Verification -1. Running Camel app sends traces to cameleer3-server +1. Running Camel app sends traces to cameleer-server 2. Traces visible in ClickHouse with correct tenant_id 3. Topology graph shows route structure 4. Different tenant cannot see another tenant's data @@ -393,7 +393,7 @@ docker compose up -d # Create tenant + user via API/Logto # Upload sample Camel JAR # Deploy to environment -# Verify agent connects to cameleer3-server +# Verify agent connects to cameleer-server # Verify traces in ClickHouse # Verify observability API returns data ``` diff --git a/docs/superpowers/specs/2026-04-04-phase-3-runtime-orchestration.md b/docs/superpowers/specs/2026-04-04-phase-3-runtime-orchestration.md index 1ff89af..51da954 100644 --- a/docs/superpowers/specs/2026-04-04-phase-3-runtime-orchestration.md +++ b/docs/superpowers/specs/2026-04-04-phase-3-runtime-orchestration.md @@ -7,7 +7,7 @@ ## Context -Phase 2 delivered multi-tenancy, identity (Logto OIDC), and license management. The platform can create tenants and issue licenses, but there is nothing to run yet. Phase 3 is the core product differentiator: customers upload a Camel JAR, the platform builds an immutable container image with the cameleer3 agent auto-injected, and deploys it to a logical environment. This is "managed Camel runtime" — similar to Coolify or MuleSoft CloudHub, but purpose-built for Apache Camel with deep observability. +Phase 2 delivered multi-tenancy, identity (Logto OIDC), and license management. The platform can create tenants and issue licenses, but there is nothing to run yet. Phase 3 is the core product differentiator: customers upload a Camel JAR, the platform builds an immutable container image with the cameleer agent auto-injected, and deploys it to a logical environment. This is "managed Camel runtime" — similar to Coolify or MuleSoft CloudHub, but purpose-built for Apache Camel with deep observability. Docker-first. The `KubernetesRuntimeOrchestrator` is deferred to Phase 5. @@ -23,10 +23,10 @@ Docker-first. The `KubernetesRuntimeOrchestrator` is deferred to Phase 5. | Deployment model | Async with polling | Image builds are inherently slow. Deploy returns immediately with deployment ID. Client polls for status. | | Entity hierarchy | Environment → App → Deployment | User thinks "I'm in dev, deploy my app." Environment is the workspace context. | | Environment provisioning | Hybrid auto + manual | Every tenant gets a `default` environment on creation. Additional environments created manually, tier limit enforced. | -| Cross-environment isolation | Logical (not network) | Docker single-tenant mode — customer owns the stack. Data separated by `environmentId` in cameleer3-server. Network isolation is a K8s Phase 5 concern. | -| Container networking | Shared `cameleer` bridge network | Customer containers join the existing network. Agent reaches cameleer3-server at `http://cameleer3-server:8081`. | +| Cross-environment isolation | Logical (not network) | Docker single-tenant mode — customer owns the stack. Data separated by `environmentId` in cameleer-server. Network isolation is a K8s Phase 5 concern. | +| Container networking | Shared `cameleer` bridge network | Customer containers join the existing network. Agent reaches cameleer-server at `http://cameleer-server:8081`. | | Container naming | `{tenant-slug}-{env-slug}-{app-slug}` | Human-readable, unique, identifies tenant+environment+app at a glance. | -| Bootstrap tokens | Shared `CAMELEER_AUTH_TOKEN` from cameleer3-server config | Platform reads the existing token and injects it into customer containers. Environment separation via agent `environmentId` claim, not token. Per-environment tokens deferred to K8s Phase 5. | +| Bootstrap tokens | Shared `CAMELEER_AUTH_TOKEN` from cameleer-server config | Platform reads the existing token and injects it into customer containers. Environment separation via agent `environmentId` claim, not token. Per-environment tokens deferred to K8s Phase 5. | | Health checking | Agent health endpoint (port 9464) | Guaranteed to exist, no user config needed. User-defined health endpoints deferred. | | Inbound HTTP routing | Not in Phase 3 | Most Camel apps are consumers (queues, polls), not servers. Traefik routing for customer apps deferred to Phase 4/4.5. | | Container logs | Captured via docker-java, written to ClickHouse | Unified log query surface from day 1. Same pattern future app logs will use. | @@ -157,7 +157,7 @@ Uses `com.github.docker-java:docker-java` library. Connects via Docker socket (` - Environment variables: - `CAMELEER_AUTH_TOKEN={bootstrap-token}` - `CAMELEER_EXPORT_TYPE=HTTP` - - `CAMELEER_EXPORT_ENDPOINT=http://cameleer3-server:8081` + - `CAMELEER_EXPORT_ENDPOINT=http://cameleer-server:8081` - `CAMELEER_APPLICATION_ID={app-slug}` - `CAMELEER_ENVIRONMENT_ID={env-slug}` - `CAMELEER_DISPLAY_NAME={tenant-slug}-{env-slug}-{app-slug}` @@ -182,7 +182,7 @@ A pre-built Docker image containing everything except the customer JAR: FROM eclipse-temurin:21-jre-alpine WORKDIR /app -COPY cameleer3-agent-{version}-shaded.jar /app/agent.jar +COPY cameleer-agent-{version}-shaded.jar /app/agent.jar ENTRYPOINT exec java \ -Dcameleer.export.type=${CAMELEER_EXPORT_TYPE:-HTTP} \ @@ -250,11 +250,11 @@ ORDER BY (tenant_id, environment_id, app_id, timestamp); ### Bootstrap Token Handling -In Docker single-tenant mode, all environments share the single cameleer3-server instance and its single `CAMELEER_AUTH_TOKEN`. The platform reads this token from its own configuration (`cameleer.runtime.bootstrap-token` / `CAMELEER_AUTH_TOKEN` env var) and injects it into every customer container. No changes to cameleer3-server are needed. +In Docker single-tenant mode, all environments share the single cameleer-server instance and its single `CAMELEER_AUTH_TOKEN`. The platform reads this token from its own configuration (`cameleer.runtime.bootstrap-token` / `CAMELEER_AUTH_TOKEN` env var) and injects it into every customer container. No changes to cameleer-server are needed. -Environment-level data separation happens at the agent registration level — the agent sends its `environmentId` claim when it registers, and cameleer3-server uses that to scope all data. The bootstrap token is the same across environments in a Docker stack. +Environment-level data separation happens at the agent registration level — the agent sends its `environmentId` claim when it registers, and cameleer-server uses that to scope all data. The bootstrap token is the same across environments in a Docker stack. -The `bootstrap_token` column on the environment entity stores the token value used for that environment's containers. In Docker mode this is the same shared value for all environments. In K8s mode (Phase 5), each environment could have its own cameleer3-server instance with a unique token, enabling true per-environment token isolation. +The `bootstrap_token` column on the environment entity stores the token value used for that environment's containers. In Docker mode this is the same shared value for all environments. In K8s mode (Phase 5), each environment could have its own cameleer-server instance with a unique token, enabling true per-environment token isolation. ## API Surface @@ -354,7 +354,7 @@ The cameleer-saas service needs: - JAR storage volume: `jardata:/data/jars` - `cameleer-runtime-base` image must be available (pre-pulled or built locally) -The cameleer3-server `CAMELEER_AUTH_TOKEN` is read by cameleer-saas from shared environment config and injected into customer containers. +The cameleer-server `CAMELEER_AUTH_TOKEN` is read by cameleer-saas from shared environment config and injected into customer containers. New volume in docker-compose.yml: ```yaml @@ -413,7 +413,7 @@ cameleer: 3. Poll `GET /api/apps/{aid}/deployments/{did}` — status transitions: `BUILDING` → `STARTING` → `RUNNING` 4. Container visible in `docker ps` as `{tenant}-{env}-{app}` 5. Container is on the `cameleer` network -6. cameleer3 agent registers with cameleer3-server (visible in server logs) +6. cameleer agent registers with cameleer-server (visible in server logs) 7. Agent health endpoint responds on port 9464 8. Container logs appear in ClickHouse `container_logs` table 9. `GET /api/apps/{aid}/logs` returns log entries diff --git a/docs/superpowers/specs/2026-04-04-phase-4-observability-pipeline.md b/docs/superpowers/specs/2026-04-04-phase-4-observability-pipeline.md index f181734..ad9baae 100644 --- a/docs/superpowers/specs/2026-04-04-phase-4-observability-pipeline.md +++ b/docs/superpowers/specs/2026-04-04-phase-4-observability-pipeline.md @@ -7,18 +7,18 @@ ## Context -Phase 3 delivered the managed Camel runtime: customers upload a JAR, the platform builds a container with the cameleer3 agent injected, and deploys it. The agent connects to cameleer3-server and sends traces, metrics, diagrams, and logs to ClickHouse. But there is no way for the user to see this data yet, and customer apps that expose HTTP endpoints are not reachable. +Phase 3 delivered the managed Camel runtime: customers upload a JAR, the platform builds a container with the cameleer agent injected, and deploys it. The agent connects to cameleer-server and sends traces, metrics, diagrams, and logs to ClickHouse. But there is no way for the user to see this data yet, and customer apps that expose HTTP endpoints are not reachable. Phase 4 completes the loop: deploy an app, hit its endpoint, see the traces in the dashboard. -cameleer3-server already has the complete observability stack — ClickHouse schemas with `tenant_id` partitioning, full search/stats/diagram/log REST APIs, and a React SPA dashboard. Phase 4 is a **wiring phase**, not a build-from-scratch phase. +cameleer-server already has the complete observability stack — ClickHouse schemas with `tenant_id` partitioning, full search/stats/diagram/log REST APIs, and a React SPA dashboard. Phase 4 is a **wiring phase**, not a build-from-scratch phase. ## Key Decisions | Decision | Choice | Rationale | |----------|--------|-----------| -| Observability UI | Serve existing cameleer3-server React SPA via Traefik | Already built. SaaS management UI is Phase 9 — observability UI is not SaaS-specific. | -| API access | Traefik routes directly to cameleer3-server with forward-auth | No proxy layer needed. Forward-auth validates user, injects headers. Server API works as-is. | +| Observability UI | Serve existing cameleer-server React SPA via Traefik | Already built. SaaS management UI is Phase 9 — observability UI is not SaaS-specific. | +| API access | Traefik routes directly to cameleer-server with forward-auth | No proxy layer needed. Forward-auth validates user, injects headers. Server API works as-is. | | Server changes | None | Single-tenant Docker mode works out of the box. `CAMELEER_TENANT_ID` env var already supported. | | Agent changes | None | Agent already sends `applicationId`, `environmentId`, connects to `CAMELEER_EXPORT_ENDPOINT`. | | Tenant ID | Set `CAMELEER_TENANT_ID` to tenant slug in Docker Compose | Tags ClickHouse data with the real tenant identity from day one. Avoids `'default'` → real-id migration later. | @@ -27,16 +27,16 @@ cameleer3-server already has the complete observability stack — ClickHouse sch ## What's Already Working (Phase 3) - Customer containers on the `cameleer` bridge network -- Agent configured: `CAMELEER_AUTH_TOKEN`, `CAMELEER_EXPORT_ENDPOINT=http://cameleer3-server:8081`, `CAMELEER_APPLICATION_ID`, `CAMELEER_ENVIRONMENT_ID` -- cameleer3-server writes traces/metrics/diagrams/logs to ClickHouse -- Traefik routes `/observe/*` to cameleer3-server with forward-auth middleware +- Agent configured: `CAMELEER_AUTH_TOKEN`, `CAMELEER_EXPORT_ENDPOINT=http://cameleer-server:8081`, `CAMELEER_APPLICATION_ID`, `CAMELEER_ENVIRONMENT_ID` +- cameleer-server writes traces/metrics/diagrams/logs to ClickHouse +- Traefik routes `/observe/*` to cameleer-server with forward-auth middleware - Forward-auth endpoint at `/auth/verify` validates JWT, returns `X-Tenant-Id`, `X-User-Id`, `X-User-Email` headers -## Component 1: Serve cameleer3-server Dashboard +## Component 1: Serve cameleer-server Dashboard ### Traefik Routing -Add Traefik labels to the cameleer3-server service in `docker-compose.yml` to serve the React SPA: +Add Traefik labels to the cameleer-server service in `docker-compose.yml` to serve the React SPA: ```yaml # Existing (Phase 3): @@ -49,23 +49,23 @@ Add Traefik labels to the cameleer3-server service in `docker-compose.yml` to se - traefik.http.services.dashboard.loadbalancer.server.port=8080 ``` -The cameleer3-server SPA is served from its own embedded web server. The SPA already calls the server's API endpoints at relative paths — the existing `/observe/*` Traefik route handles those requests with forward-auth. +The cameleer-server SPA is served from its own embedded web server. The SPA already calls the server's API endpoints at relative paths — the existing `/observe/*` Traefik route handles those requests with forward-auth. -**Note:** If the cameleer3-server SPA expects to be served from `/` rather than `/dashboard`, a Traefik StripPrefix middleware may be needed: +**Note:** If the cameleer-server SPA expects to be served from `/` rather than `/dashboard`, a Traefik StripPrefix middleware may be needed: ```yaml - traefik.http.middlewares.dashboard-strip.stripprefix.prefixes=/dashboard - traefik.http.routers.dashboard.middlewares=forward-auth,dashboard-strip ``` -This depends on how the cameleer3-server SPA is configured (base path). To be verified during implementation. +This depends on how the cameleer-server SPA is configured (base path). To be verified during implementation. ### CAMELEER_TENANT_ID Configuration -Set `CAMELEER_TENANT_ID` on the cameleer3-server service so all ingested data is tagged with the real tenant slug: +Set `CAMELEER_TENANT_ID` on the cameleer-server service so all ingested data is tagged with the real tenant slug: ```yaml -cameleer3-server: +cameleer-server: environment: CAMELEER_TENANT_ID: ${CAMELEER_TENANT_SLUG:-default} ``` @@ -76,7 +76,7 @@ Add `CAMELEER_TENANT_SLUG` to `.env.example`. ## Component 2: Agent Connectivity Verification -New endpoint in cameleer-saas to check whether a deployed app's agent has successfully registered with cameleer3-server and is sending data. +New endpoint in cameleer-saas to check whether a deployed app's agent has successfully registered with cameleer-server and is sending data. ### API @@ -100,15 +100,15 @@ public record AgentStatusResponse( ### Implementation -`AgentStatusService` in cameleer-saas calls cameleer3-server's agent registry API: +`AgentStatusService` in cameleer-saas calls cameleer-server's agent registry API: ``` -GET http://cameleer3-server:8081/api/v1/agents +GET http://cameleer-server:8081/api/v1/agents ``` This returns the list of registered agents. The service filters by `applicationId` matching the app's slug and `environmentId` matching the environment's slug. -If the cameleer3-server doesn't expose a public agent listing endpoint, the alternative is to query ClickHouse directly for recent data: +If the cameleer-server doesn't expose a public agent listing endpoint, the alternative is to query ClickHouse directly for recent data: ```sql SELECT max(timestamp) as last_seen @@ -212,17 +212,17 @@ cameleer: ### Startup Verification -On application startup, cameleer-saas verifies that cameleer3-server is reachable: +On application startup, cameleer-saas verifies that cameleer-server is reachable: ```java @EventListener(ApplicationReadyEvent.class) public void verifyConnectivity() { - // HTTP GET http://cameleer3-server:8081/actuator/health - // Log result: "cameleer3-server connectivity: OK" or "FAILED: ..." + // HTTP GET http://cameleer-server:8081/actuator/health + // Log result: "cameleer-server connectivity: OK" or "FAILED: ..." } ``` -This is a best-effort check, not a hard dependency. If cameleer3-server is not yet running (e.g., starting up), the SaaS platform still starts. The check is logged for diagnostics. +This is a best-effort check, not a hard dependency. If cameleer-server is not yet running (e.g., starting up), the SaaS platform still starts. The check is logged for diagnostics. ### ClickHouse Data Verification @@ -259,10 +259,10 @@ This requires cameleer-saas to query ClickHouse directly (the `clickHouseDataSou ## Docker Compose Changes -### cameleer3-server labels (add dashboard route) +### cameleer-server labels (add dashboard route) ```yaml -cameleer3-server: +cameleer-server: environment: CAMELEER_TENANT_ID: ${CAMELEER_TENANT_SLUG:-default} labels: @@ -304,18 +304,18 @@ cameleer: 1. Deploy a sample Camel REST app with `exposedPort: 8080` 2. `curl http://order-svc.default.acme.localhost` hits the Camel app 3. The Camel route processes the request -4. cameleer3 agent captures the trace and sends to cameleer3-server +4. cameleer agent captures the trace and sends to cameleer-server 5. `GET /api/apps/{appId}/agent-status` shows `registered: true, state: ACTIVE` 6. `GET /api/apps/{appId}/observability-status` shows `hasTraces: true` -7. Open `http://localhost/dashboard` — cameleer3-server SPA loads +7. Open `http://localhost/dashboard` — cameleer-server SPA loads 8. Traces visible in the dashboard for the deployed app 9. Route topology graph shows the Camel route structure 10. `CAMELEER_TENANT_ID` is set to the tenant slug in ClickHouse data ## What Phase 4 Does NOT Touch -- No changes to cameleer3-server code (works as-is for single-tenant Docker mode) -- No changes to the cameleer3 agent -- No new ClickHouse schemas (cameleer3-server manages its own) +- No changes to cameleer-server code (works as-is for single-tenant Docker mode) +- No changes to the cameleer agent +- No new ClickHouse schemas (cameleer-server manages its own) - No SaaS management UI (Phase 9) - No K8s-specific changes (Phase 5) diff --git a/docs/superpowers/specs/2026-04-04-phase-9-frontend-react-shell.md b/docs/superpowers/specs/2026-04-04-phase-9-frontend-react-shell.md index 11d4032..764936f 100644 --- a/docs/superpowers/specs/2026-04-04-phase-9-frontend-react-shell.md +++ b/docs/superpowers/specs/2026-04-04-phase-9-frontend-react-shell.md @@ -7,19 +7,19 @@ ## Context -Phases 1-4 built the complete backend: tenants, licensing, environments, app deployment with JAR upload, async deployment pipeline, container logs, agent status, observability status, and inbound HTTP routing. The cameleer3-server observability dashboard is already served at `/dashboard`. But there is no management UI — all operations require curl/API calls. +Phases 1-4 built the complete backend: tenants, licensing, environments, app deployment with JAR upload, async deployment pipeline, container logs, agent status, observability status, and inbound HTTP routing. The cameleer-server observability dashboard is already served at `/dashboard`. But there is no management UI — all operations require curl/API calls. -Phase 9 adds the SaaS management shell: a React SPA for managing tenants, environments, apps, and deployments. The observability UI is already handled by cameleer3-server — this shell covers everything else. +Phase 9 adds the SaaS management shell: a React SPA for managing tenants, environments, apps, and deployments. The observability UI is already handled by cameleer-server — this shell covers everything else. ## Key Decisions | Decision | Choice | Rationale | |----------|--------|-----------| -| Location | `ui/` directory in cameleer-saas repo | Matches cameleer3-server pattern. Single build pipeline. Spring Boot serves the SPA. | +| Location | `ui/` directory in cameleer-saas repo | Matches cameleer-server pattern. Single build pipeline. Spring Boot serves the SPA. | | Relationship to dashboard | Two separate SPAs, linked via navigation | SaaS shell at `/`, observability at `/dashboard`. Same design system = cohesive feel. No coupling. | -| Layout | Sidebar navigation | Consistent with cameleer3-server dashboard. Same AppShell pattern from design system. | +| Layout | Sidebar navigation | Consistent with cameleer-server dashboard. Same AppShell pattern from design system. | | Auth | Shared Logto OIDC session | Same client ID, same localStorage keys. True SSO between SaaS shell and observability dashboard. | -| Tech stack | React 19 + Vite + React Router + Zustand + TanStack Query | Identical to cameleer3-server SPA. Same patterns, same libraries, same conventions. | +| Tech stack | React 19 + Vite + React Router + Zustand + TanStack Query | Identical to cameleer-server SPA. Same patterns, same libraries, same conventions. | | Design system | `@cameleer/design-system` v0.1.31 | Shared component library. CSS Modules + design tokens. Dark theme. | | RBAC | Frontend role-based visibility | Roles from JWT claims. Hide/disable UI for unauthorized actions. Backend enforces — frontend is UX only. | @@ -39,7 +39,7 @@ Phase 9 adds the SaaS management shell: a React SPA for managing tenants, enviro 2. If not authenticated, redirect to Logto OIDC authorize endpoint 3. Logto callback at `/callback` — exchange code for tokens 4. Store `accessToken`, `refreshToken`, `username`, `roles` in Zustand + localStorage -5. Tokens stored with same keys as cameleer3-server SPA: `cameleer-access-token`, `cameleer-refresh-token` +5. Tokens stored with same keys as cameleer-server SPA: `cameleer-access-token`, `cameleer-refresh-token` 6. API client injects `Authorization: Bearer {token}` on all requests 7. On 401, attempt token refresh; on failure, redirect to login @@ -128,7 +128,7 @@ Frontend RBAC implementation: - Sidebar uses `Sidebar` + `TreeView` components from design system - Environment → App hierarchy is collapsible -- "View Dashboard" is an external link to `/dashboard` (cameleer3-server SPA) +- "View Dashboard" is an external link to `/dashboard` (cameleer-server SPA) - Sidebar collapses on small screens (responsive) ## API Integration @@ -181,7 +181,7 @@ ui/ │ ├── main.tsx — React root + providers │ ├── router.tsx — React Router config │ ├── auth/ -│ │ ├── auth-store.ts — Zustand store (same keys as cameleer3-server) +│ │ ├── auth-store.ts — Zustand store (same keys as cameleer-server) │ │ ├── LoginPage.tsx │ │ ├── CallbackPage.tsx │ │ └── ProtectedRoute.tsx @@ -302,14 +302,14 @@ import { ThemeProvider, ToastProvider, BreadcrumbProvider } from '@cameleer/desi 6. Deploy triggers async deployment, status polls and updates live 7. Agent status shows registered/connected 8. Container logs stream in LogViewer -9. "View Dashboard" link navigates to `/dashboard` (cameleer3-server SPA) +9. "View Dashboard" link navigates to `/dashboard` (cameleer-server SPA) 10. Shared auth: no re-login when switching between SPAs 11. RBAC: VIEWER cannot see deploy button, DEVELOPER cannot delete environments 12. Production build: `npm run build` + `mvn package` produces JAR with embedded SPA ## What Phase 9 Does NOT Touch -- No changes to cameleer3-server or its SPA +- No changes to cameleer-server or its SPA - No billing UI (Phase 6) - No team management (Logto org admin — deferred) - No tenant settings/profile page diff --git a/docs/superpowers/specs/2026-04-05-auth-overhaul-design.md b/docs/superpowers/specs/2026-04-05-auth-overhaul-design.md index dbaf86c..c8115f5 100644 --- a/docs/superpowers/specs/2026-04-05-auth-overhaul-design.md +++ b/docs/superpowers/specs/2026-04-05-auth-overhaul-design.md @@ -2,7 +2,7 @@ **Date:** 2026-04-05 **Status:** Draft -**Scope:** cameleer-saas (large), cameleer3-server (small), cameleer3 agent (none) +**Scope:** cameleer-saas (large), cameleer-server (small), cameleer agent (none) ## Problem Statement @@ -13,7 +13,7 @@ The current cameleer-saas authentication implementation has three overlapping id 1. **Logto is the single identity provider** for all human users across all components. 2. **Zero trust** — every service validates tokens independently via JWKS or its own signing key. No identity in HTTP headers. The JWT is the proof. 3. **No custom crypto** — use standard libraries and protocols (OAuth2, OIDC, JWT). No hand-rolled JWT generation or validation. -4. **Server-per-tenant** — each tenant gets their own cameleer3-server instance. The SaaS platform provisions and manages them. +4. **Server-per-tenant** — each tenant gets their own cameleer-server instance. The SaaS platform provisions and manages them. 5. **API keys for agents** — per-environment opaque secrets, exchanged for server-issued JWTs via the existing bootstrap registration flow. 6. **Self-hosted compatible** — same stack, single Logto org, single tenant. No special code paths. @@ -52,9 +52,9 @@ The current cameleer-saas authentication implementation has three overlapping id |-------|--------|-----------|-----------|---------| | Logto user JWT | Logto | ES384 (asymmetric) | Any service via JWKS | SaaS UI users, server dashboard users | | Logto M2M JWT | Logto | ES384 (asymmetric) | Any service via JWKS | SaaS platform → server API calls | -| Server internal JWT | cameleer3-server | HS256 (symmetric) | Issuing server only | Agents (after registration) | -| API key (opaque) | SaaS platform | N/A (hashed at rest) | cameleer3-server (bootstrap validator) | Agent initial registration | -| Ed25519 signature | cameleer3-server | EdDSA | Agent | Server → agent command integrity | +| Server internal JWT | cameleer-server | HS256 (symmetric) | Issuing server only | Agents (after registration) | +| API key (opaque) | SaaS platform | N/A (hashed at rest) | cameleer-server (bootstrap validator) | Agent initial registration | +| Ed25519 signature | cameleer-server | EdDSA | Agent | Server → agent command integrity | ### Authentication flows @@ -65,19 +65,19 @@ The current cameleer-saas authentication implementation has three overlapping id 4. `organization_id` claim in JWT → resolves to internal tenant ID 5. Roles come from JWT claims (Logto org roles), not Management API calls -**Human user → cameleer3-server dashboard:** +**Human user → cameleer-server dashboard:** 1. User authenticates with Logto (OIDC flow, server configured via existing admin API) 2. Server exchanges auth code for ID token, validates via provider JWKS 3. Server issues internal HMAC JWT with mapped roles 4. Existing flow, no changes needed -**SaaS platform → cameleer3-server API (M2M):** +**SaaS platform → cameleer-server API (M2M):** 1. SaaS platform obtains Logto M2M access token (`client_credentials` grant) 2. Calls tenant server API with `Authorization: Bearer <logto-m2m-token>` 3. Server validates via Logto JWKS (new capability — see server changes below) 4. Server grants ADMIN role to valid M2M tokens -**Agent → cameleer3-server:** +**Agent → cameleer-server:** 1. Agent reads `CAMELEER_API_KEY` env var (fallback: `CAMELEER_AUTH_TOKEN` for backward compat) 2. Calls `POST /api/v1/agents/register` with `Authorization: Bearer <api-key>` 3. Server validates via `BootstrapTokenValidator` (constant-time comparison, unchanged) @@ -96,7 +96,7 @@ The current cameleer-saas authentication implementation has three overlapping id ## Component Changes -### cameleer3 (agent) — NO CHANGES +### cameleer (agent) — NO CHANGES The agent's authentication flow is correct as designed: - Reads API key from environment variable @@ -106,13 +106,13 @@ The agent's authentication flow is correct as designed: The only optional change is renaming `CAMELEER_AUTH_TOKEN` to `CAMELEER_API_KEY` for clarity, with backward-compatible fallback. This is cosmetic and can be done at any time. -### cameleer3-server — SMALL CHANGES +### cameleer-server — SMALL CHANGES The server needs one new capability: accepting Logto access tokens (asymmetric JWT) in addition to its own internal HMAC JWTs. This enables the SaaS platform to call server APIs using M2M tokens. #### Change 1: Add `spring-boot-starter-oauth2-resource-server` dependency -**File:** `cameleer3-server-app/pom.xml` +**File:** `cameleer-server-app/pom.xml` Add: ```xml @@ -124,7 +124,7 @@ Add: #### Change 2: Add OIDC resource server properties -**File:** `cameleer3-server-app/src/main/resources/application.yml` +**File:** `cameleer-server-app/src/main/resources/application.yml` Add under `security:`: ```yaml @@ -360,7 +360,7 @@ cameleer: public-key-path: ${CAMELEER_JWT_PUBLIC_KEY_PATH:} ``` -Remove the `keys/` directory mount from `docker-compose.yml`. The SaaS platform does not sign anything — Ed25519 signing lives in cameleer3-server only. +Remove the `keys/` directory mount from `docker-compose.yml`. The SaaS platform does not sign anything — Ed25519 signing lives in cameleer-server only. #### REWRITE: `SecurityConfig.java` @@ -680,7 +680,7 @@ Keep as-is. Serves frontend configuration. No auth changes needed. Update to set `CAMELEER_OIDC_ISSUER_URI` and `CAMELEER_OIDC_AUDIENCE` on the tenant server: ```bash -# Add to the cameleer3-server environment in docker-compose or bootstrap output: +# Add to the cameleer-server environment in docker-compose or bootstrap output: CAMELEER_OIDC_ISSUER_URI=http://logto:3001/oidc CAMELEER_OIDC_AUDIENCE=https://api.cameleer.local ``` @@ -727,7 +727,7 @@ This is a new development — no production data exists. All database schemas, m ### Implementation Order -1. **Phase 1**: Update cameleer3-server (add OIDC resource server support). Deploy. +1. **Phase 1**: Update cameleer-server (add OIDC resource server support). Deploy. 2. **Phase 2**: Rewrite cameleer-saas backend (clean security config, API key management, Logto-only auth). Deploy with frontend changes atomically. 3. **Phase 3**: Update bootstrap script (set OIDC env vars on server, stop reading Logto DB directly). diff --git a/docs/superpowers/specs/2026-04-05-configurable-base-path-design.md b/docs/superpowers/specs/2026-04-05-configurable-base-path-design.md new file mode 100644 index 0000000..dafe2d3 --- /dev/null +++ b/docs/superpowers/specs/2026-04-05-configurable-base-path-design.md @@ -0,0 +1,184 @@ +# Configurable Base Path for SaaS App + +## Problem + +Logto uses many root-level paths (`/sign-in`, `/register`, `/consent`, `/social`, `/api/interaction`, `/api/experience`, `/assets`, etc.) that conflict with the SaaS app's catch-all routing. Enumerating Logto's paths in Traefik is fragile and keeps growing. + +## Solution + +Move the SaaS app to a configurable base path (default: `/platform`). Logto becomes the Traefik catch-all. Zero path enumeration — any path Logto adds in the future just works. + +## Routing + +| Path | Target | Priority | +|------|--------|----------| +| `/platform/*` | cameleer-saas:8080 | default | +| `/server/*` | cameleer-server-ui:80 | default | +| `/*` | logto:3001 (catch-all) | 1 (lowest) | + +## Configuration + +```env +# .env +CONTEXT_PATH=/platform # Change to /saas, /app, etc. No rebuild needed. +``` + +## Implementation + +### 1. Spring Boot — `application.yml` + +```yaml +server: + servlet: + context-path: ${CONTEXT_PATH:/platform} +``` + +Spring automatically prefixes all endpoints. Controllers, SecurityConfig matchers, interceptor patterns — all relative to context-path. No changes needed in Java code. + +### 2. Vite — `ui/vite.config.ts` + +Build with relative base so assets work from any prefix: + +```ts +build: { + outDir: 'dist', + emptyOutDir: true, + assetsDir: '_app', + // removed: base (default '/' for dev, entrypoint injects <base> for production) +}, +``` + +Change `base` to `'./'` so index.html references become relative: +```html +<!-- Before: <script src="/_app/index.js"> (absolute, breaks with prefix) --> +<!-- After: <script src="_app/index.js"> (relative, works from any base) --> +``` + +### 3. Container entrypoint — inject `<base href>` + +Create `docker/entrypoint.sh`: +```sh +#!/bin/sh +# Inject <base href> into index.html for runtime base path support +CONTEXT_PATH="${CONTEXT_PATH:-/platform}" +sed -i "s|<head>|<head><base href=\"${CONTEXT_PATH}/\">|" /app/static/index.html +exec java -jar /app/app.jar +``` + +In Dockerfile (or docker-compose override for dev): +```yaml +entrypoint: ["sh", "/app/entrypoint.sh"] +``` + +For dev mode (mounted dist), the `docker-compose.dev.yml` entrypoint runs the sed on the mounted file. + +### 4. Frontend — derive base path at runtime + +**`ui/src/config.ts`** — use `document.baseURI`: +```ts +const basePath = new URL(document.baseURI).pathname.replace(/\/$/, ''); +// basePath = "/platform" + +fetch(basePath + '/api/config') +``` + +**`ui/src/api/client.ts`** — dynamic API base: +```ts +const basePath = new URL(document.baseURI).pathname.replace(/\/$/, ''); +const API_BASE = basePath + '/api'; +``` + +**`ui/src/main.tsx`** — router basename: +```tsx +const basePath = new URL(document.baseURI).pathname.replace(/\/$/, '') || '/'; +<BrowserRouter basename={basePath}> +``` + +### 5. Docker Compose — Traefik labels + +**cameleer-saas:** +```yaml +labels: + - traefik.http.routers.saas.rule=PathPrefix(`${CONTEXT_PATH:-/platform}`) + - traefik.http.routers.saas.entrypoints=websecure + - traefik.http.routers.saas.tls=true + - traefik.http.services.saas.loadbalancer.server.port=8080 +``` + +**logto (catch-all):** +```yaml +labels: + - traefik.http.routers.logto.rule=PathPrefix(`/`) + - traefik.http.routers.logto.priority=1 + - traefik.http.routers.logto.entrypoints=websecure + - traefik.http.routers.logto.tls=true + - traefik.http.services.logto.loadbalancer.server.port=3001 +``` + +Remove all the enumerated Logto paths — Logto is now the catch-all. + +### 6. Logto ENDPOINT + +Logto's ENDPOINT stays at root (no prefix): +```yaml +ENDPOINT: ${PUBLIC_PROTOCOL:-https}://${PUBLIC_HOST:-localhost} +``` + +OIDC issuer = `https://domain.com/oidc`. Same domain as the SPA. + +### 7. Bootstrap — redirect URIs + +Update redirect URIs to include the context path: +```sh +SPA_REDIRECT_URIS="[\"${PROTO}://${HOST}${CONTEXT_PATH}/callback\"]" +SPA_POST_LOGOUT_URIS="[\"${PROTO}://${HOST}${CONTEXT_PATH}/login\"]" +``` + +Pass `CONTEXT_PATH` to the bootstrap container. + +### 8. Tests — `application-test.yml` + +```yaml +server: + servlet: + context-path: /platform +``` + +Test MockMvc paths are relative to context-path, so existing test paths (`/api/tenants`, etc.) continue to work without changes. + +## Files to modify + +- `src/main/resources/application.yml` — add context-path property +- `src/main/resources/application-test.yml` — add context-path for tests +- `ui/vite.config.ts` — `base: './'` for relative assets +- `ui/src/config.ts` — derive base path from `document.baseURI` +- `ui/src/api/client.ts` — dynamic `API_BASE` +- `ui/src/main.tsx` — `BrowserRouter basename` from `document.baseURI` +- `docker/entrypoint.sh` — NEW, injects `<base href>` into index.html +- `docker-compose.yml` — Traefik labels (SaaS at `/platform`, Logto catch-all), pass `CONTEXT_PATH` to bootstrap +- `docker/logto-bootstrap.sh` — context path in redirect URIs + +## Files that do NOT change + +- All 11 Java controllers — Spring context-path handles prefix transparently +- `SecurityConfig.java` — matchers are relative to context-path +- `WebConfig.java` — interceptor pattern relative to context-path +- `ui/src/api/hooks.ts` — uses centralized `API_BASE` +- All test files — MockMvc is context-path aware + +## Customer experience + +```env +# .env +PUBLIC_HOST=cameleer.mycompany.com +PUBLIC_PROTOCOL=https +CONTEXT_PATH=/platform + +# DNS: 1 record +# cameleer.mycompany.com → server IP + +# docker compose up -d +# SaaS at https://cameleer.mycompany.com/platform/ +# Logto at https://cameleer.mycompany.com/ (login, OIDC) +# Server UI at https://cameleer.mycompany.com/server/ +``` diff --git a/docs/superpowers/specs/2026-04-05-single-domain-routing-design.md b/docs/superpowers/specs/2026-04-05-single-domain-routing-design.md index d5cde7c..f32aea8 100644 --- a/docs/superpowers/specs/2026-04-05-single-domain-routing-design.md +++ b/docs/superpowers/specs/2026-04-05-single-domain-routing-design.md @@ -13,7 +13,7 @@ Path-based routing on one domain. SaaS app at `/platform`, server-ui at `/server | Path | Target | Priority | Notes | |------|--------|----------|-------| | `/platform/*` | cameleer-saas:8080 | default | Spring context-path `/platform` | -| `/server/*` | cameleer3-server-ui:80 | default | Strip-prefix + `BASE_PATH=/server` | +| `/server/*` | cameleer-server-ui:80 | default | Strip-prefix + `BASE_PATH=/server` | | `/` | redirect → `/platform/` | 100 | Via `docker/traefik-dynamic.yml` | | `/*` | logto:3001 | 1 (lowest) | Catch-all: sign-in, OIDC, assets | @@ -49,7 +49,7 @@ PUBLIC_PROTOCOL=https - Custom `JwtDecoder`: ES384 algorithm, `at+jwt` token type, split issuer-uri / jwk-set-uri - Redirect URIs: `${PROTO}://${HOST}/platform/callback` -## Server Integration (cameleer3-server) +## Server Integration (cameleer-server) | Env var | Value | Purpose | |---------|-------|---------| @@ -64,12 +64,12 @@ Server OIDC requirements: - `X-Forwarded-Prefix` support for correct redirect_uri construction - Branding endpoint (`/api/v1/branding/logo`) must be publicly accessible -## Server UI (cameleer3-server-ui) +## Server UI (cameleer-server-ui) | Env var | Value | Purpose | |---------|-------|---------| | `BASE_PATH` | `/server` | React Router basename + `<base>` tag | -| `CAMELEER_API_URL` | `http://cameleer3-server:8081` | nginx API proxy target | +| `CAMELEER_API_URL` | `http://cameleer-server:8081` | nginx API proxy target | Traefik strip-prefix removes `/server` before forwarding to nginx. Server-ui injects `<base href="/server/">` via `BASE_PATH`. @@ -80,7 +80,7 @@ Traefik strip-prefix removes `/server` before forwarding to nginx. Server-ui inj SPA_REDIRECT_URIS=["${PROTO}://${HOST}/platform/callback"] SPA_POST_LOGOUT_URIS=["${PROTO}://${HOST}/platform/login"] -# Traditional (cameleer3-server) — both variants until X-Forwarded-Prefix is consistent +# Traditional (cameleer-server) — both variants until X-Forwarded-Prefix is consistent TRAD_REDIRECT_URIS=["${PROTO}://${HOST}/oidc/callback","${PROTO}://${HOST}/server/oidc/callback"] TRAD_POST_LOGOUT_URIS=["${PROTO}://${HOST}","${PROTO}://${HOST}/server"] ``` diff --git a/docs/superpowers/specs/2026-04-06-custom-sign-in-ui-design.md b/docs/superpowers/specs/2026-04-06-custom-sign-in-ui-design.md index 1dff5c8..449fc31 100644 --- a/docs/superpowers/specs/2026-04-06-custom-sign-in-ui-design.md +++ b/docs/superpowers/specs/2026-04-06-custom-sign-in-ui-design.md @@ -2,11 +2,11 @@ ## Problem -Logto's default sign-in page uses Logto branding. While we configured colors and logos via `PATCH /api/sign-in-exp`, control over layout, typography, and components is limited. The sign-in experience is visually inconsistent with the cameleer3-server login page. +Logto's default sign-in page uses Logto branding. While we configured colors and logos via `PATCH /api/sign-in-exp`, control over layout, typography, and components is limited. The sign-in experience is visually inconsistent with the cameleer-server login page. ## Goal -Replace Logto's sign-in UI with a custom React SPA that visually matches the cameleer3-server login page, using `@cameleer/design-system` components for consistency across all deployment models. +Replace Logto's sign-in UI with a custom React SPA that visually matches the cameleer-server login page, using `@cameleer/design-system` components for consistency across all deployment models. ## Scope @@ -54,9 +54,9 @@ The interaction cookie is set by `/oidc/auth` before the user lands on the sign- ## Visual Design -Matches cameleer3-server LoginPage exactly: +Matches cameleer-server LoginPage exactly: - Centered `Card` (400px max-width, 32px padding) -- Logo: favicon.svg + "cameleer3" text (24px bold) +- Logo: favicon.svg + "cameleer" text (24px bold) - Random witty subtitle (13px muted) - `FormField` + `Input` for username and password - Amber `Button` (primary variant, full-width) diff --git a/docs/superpowers/specs/2026-04-06-server-role-mapping-design.md b/docs/superpowers/specs/2026-04-06-server-role-mapping-design.md index 8f7d3ff..4654bfb 100644 --- a/docs/superpowers/specs/2026-04-06-server-role-mapping-design.md +++ b/docs/superpowers/specs/2026-04-06-server-role-mapping-design.md @@ -2,7 +2,7 @@ ## Problem -When a Logto user SSOs into the cameleer3-server, they get `VIEWER` role by default (OIDC auto-signup). There's no automatic mapping between Logto organization roles and server roles. A SaaS admin must manually promote users in the server. +When a Logto user SSOs into the cameleer-server, they get `VIEWER` role by default (OIDC auto-signup). There's no automatic mapping between Logto organization roles and server roles. A SaaS admin must manually promote users in the server. ## Constraint diff --git a/docs/superpowers/specs/2026-04-07-architecture-review.md b/docs/superpowers/specs/2026-04-07-architecture-review.md index ea8ab9c..9c76d68 100644 --- a/docs/superpowers/specs/2026-04-07-architecture-review.md +++ b/docs/superpowers/specs/2026-04-07-architecture-review.md @@ -2,7 +2,7 @@ **Date:** 2026-04-07 **Status:** Ready for review -**Scope:** cameleer3 (agent), cameleer3-server, cameleer-saas +**Scope:** cameleer (agent), cameleer-server, cameleer-saas **Focus:** Responsibility boundaries, architectural fitness, simplification opportunities **Not in scope:** Security hardening, code quality, performance @@ -12,9 +12,9 @@ The cameleer ecosystem has a clear vision: a standalone observability and runtime platform for Apache Camel, optionally managed by a thin SaaS vendor layer. Both deployment modes must be first-class. -The agent (cameleer3) is architecturally clean. Single job, well-defined protocol. +The agent (cameleer) is architecturally clean. Single job, well-defined protocol. -The server (cameleer3-server) is solid for observability but currently lacks runtime management capabilities (deploying and managing Camel application containers). These capabilities exist in the SaaS layer today but belong in the server, since standalone customers also need them. +The server (cameleer-server) is solid for observability but currently lacks runtime management capabilities (deploying and managing Camel application containers). These capabilities exist in the SaaS layer today but belong in the server, since standalone customers also need them. The SaaS layer (cameleer-saas) has taken on too many responsibilities: environment management, app lifecycle, container orchestration, direct ClickHouse access, and partial auth duplication. It should be a thin vendor management plane: onboard tenants, provision server instances, manage billing. Nothing more. @@ -29,17 +29,17 @@ The SaaS layer (cameleer-saas) has taken on too many responsibilities: environme ## What's Working Well -### Agent (cameleer3) -- Clean separation: core logic in `cameleer3-core`, protocol models in `cameleer3-common`, delivery mechanisms (agent/extension) as thin wrappers +### Agent (cameleer) +- Clean separation: core logic in `cameleer-core`, protocol models in `cameleer-common`, delivery mechanisms (agent/extension) as thin wrappers - Well-defined agent-server protocol (PROTOCOL.md) with versioning - Dual-mode design (Java agent + Quarkus extension) is elegant - Compatibility matrix across 40 Camel versions demonstrates maturity - No changes needed -### Server (cameleer3-server) +### Server (cameleer-server) - Two-database pattern (PostgreSQL control plane, ClickHouse observability data) is correct - In-memory agent registry with heartbeat-based auto-recovery is operationally sound -- `cameleer3-server-core` / `cameleer3-server-app` split keeps domain logic framework-free +- `cameleer-server-core` / `cameleer-server-app` split keeps domain logic framework-free - SSE command push with Ed25519 signing is well-designed - The UI is competitive-grade (per UX audit #100) - Independent user/group/role management works for standalone deployments @@ -392,7 +392,7 @@ Step 8 is the SaaS cleanup after server capabilities are in place. - **saas#37 (admin tenant creation UI):** SaaS UI becomes vendor-focused, simpler ### Issues that become more important: -- **agent#33 (version cameleer3-common independently):** Critical before server API contract stabilizes +- **agent#33 (version cameleer-common independently):** Critical before server API contract stabilizes - **server#46 (OIDC PKCE for SPA):** Required for server-ui in oidc-only mode - **server#101 (onboarding experience):** Server UI needs guided setup for standalone users diff --git a/docs/superpowers/specs/2026-04-09-platform-redesign.md b/docs/superpowers/specs/2026-04-09-platform-redesign.md index 7cc876b..b6abc71 100644 --- a/docs/superpowers/specs/2026-04-09-platform-redesign.md +++ b/docs/superpowers/specs/2026-04-09-platform-redesign.md @@ -30,7 +30,7 @@ This spec redesigns the platform around two personas — **vendor** (us) and **c | ID | Story | Acceptance Criteria | |----|-------|-------------------| | V1 | As a vendor, I want to create a tenant so I can onboard a new customer | Form collects name, slug, tier. Creates DB record + Logto org. Status = PROVISIONING. | -| V2 | As a vendor, I want to provision a server for a tenant so they have a running Cameleer instance | After tenant creation, SaaS creates a cameleer3-server container via Docker API with correct env vars, network, and Traefik labels. Health check passes → status = ACTIVE. | +| V2 | As a vendor, I want to provision a server for a tenant so they have a running Cameleer instance | After tenant creation, SaaS creates a cameleer-server container via Docker API with correct env vars, network, and Traefik labels. Health check passes → status = ACTIVE. | | V3 | As a vendor, I want to generate and assign a license to a tenant | License created with tier-appropriate features/limits/expiry. Token pushed to tenant's server via M2M API. | | V4 | As a vendor, I want to suspend a tenant who hasn't paid | Suspend stops the server container and marks tenant SUSPENDED. Reactivation restarts it. | | V5 | As a vendor, I want to view fleet health at a glance | Tenant list shows each tenant's server status (running/stopped/error), agent count vs limit, license expiry. | @@ -135,7 +135,7 @@ public class TenantProvisionerAutoConfig { | Config | Value | Source | |--------|-------|--------| -| Image | `gitea.siegeln.net/cameleer/cameleer3-server:${VERSION}` | Global config | +| Image | `gitea.siegeln.net/cameleer/cameleer-server:${VERSION}` | Global config | | Name | `cameleer-server-${tenant.slug}` | Derived from tenant | | Network | `cameleer` + `cameleer-traefik` | Fixed networks from compose | | DNS alias | `cameleer-server-${tenant.slug}` | For SaaS→server M2M calls | @@ -146,7 +146,7 @@ public class TenantProvisionerAutoConfig { | Env var | Value | Purpose | |---------|-------|---------| -| `SPRING_DATASOURCE_URL` | `jdbc:postgresql://postgres:5432/cameleer3` | Shared PostgreSQL | +| `SPRING_DATASOURCE_URL` | `jdbc:postgresql://postgres:5432/cameleer` | Shared PostgreSQL | | `CAMELEER_TENANT_ID` | `${tenant.slug}` | Tenant isolation key | | `CAMELEER_OIDC_ISSUER_URI` | `${PUBLIC_PROTOCOL}://${PUBLIC_HOST}/oidc` | Logto as initial OIDC | | `CAMELEER_OIDC_JWK_SET_URI` | `http://logto:3001/oidc/jwks` | Docker-internal JWK | @@ -168,12 +168,12 @@ traefik.http.services.server-${slug}.loadbalancer.server.port=8081 **Server UI container per tenant:** -Each tenant also gets a `cameleer3-server-ui` container: +Each tenant also gets a `cameleer-server-ui` container: | Config | Value | |--------|-------| | Name | `cameleer-server-ui-${tenant.slug}` | -| Image | `gitea.siegeln.net/cameleer/cameleer3-server-ui:${VERSION}` | +| Image | `gitea.siegeln.net/cameleer/cameleer-server-ui:${VERSION}` | | Env | `BASE_PATH=/t/${slug}` | | Traefik | `PathPrefix(/t/${slug})` with `priority=2` (higher than API) | @@ -467,11 +467,11 @@ New migration `V011`: ## 8. Existing Compose Stack Changes -The default `cameleer3-server` and `cameleer3-server-ui` containers in docker-compose.yml become the "bootstrap" server for the `default` tenant. When provisioning is enabled, new tenants get their own dynamically-created containers. +The default `cameleer-server` and `cameleer-server-ui` containers in docker-compose.yml become the "bootstrap" server for the `default` tenant. When provisioning is enabled, new tenants get their own dynamically-created containers. The existing compose stack continues to work as-is for development. The provisioner creates additional containers alongside the compose-managed ones. -For the `default` tenant (created by bootstrap), the SaaS recognizes the existing compose-managed server and doesn't try to provision a new one. This is detected by checking if a container named `cameleer-server-default` (or the compose-managed `cameleer3-server`) already exists. +For the `default` tenant (created by bootstrap), the SaaS recognizes the existing compose-managed server and doesn't try to provision a new one. This is detected by checking if a container named `cameleer-server-default` (or the compose-managed `cameleer-server`) already exists. --- diff --git a/docs/superpowers/specs/2026-04-09-saas-ux-polish-design.md b/docs/superpowers/specs/2026-04-09-saas-ux-polish-design.md index 4e7c500..3d4e719 100644 --- a/docs/superpowers/specs/2026-04-09-saas-ux-polish-design.md +++ b/docs/superpowers/specs/2026-04-09-saas-ux-polish-design.md @@ -376,9 +376,9 @@ Import from `lucide-react`. ### 4.5 Sign-In Branding -**Problem:** Login says "cameleer3" — internal repo name, not product brand. +**Problem:** Login says "cameleer" — internal repo name, not product brand. -**Fix:** Change to "Cameleer" (product name). Update the page title from "Sign in — cameleer3" to "Sign in — Cameleer". +**Fix:** Change to "Cameleer" (product name). Update the page title from "Sign in — cameleer" to "Sign in — Cameleer". **Files:** `ui/sign-in/src/SignInPage.tsx` diff --git a/docs/superpowers/specs/2026-04-10-fleet-health-design.md b/docs/superpowers/specs/2026-04-10-fleet-health-design.md new file mode 100644 index 0000000..40bb914 --- /dev/null +++ b/docs/superpowers/specs/2026-04-10-fleet-health-design.md @@ -0,0 +1,52 @@ +# Fleet Health at a Glance (#44) + +## Context + +The vendor tenant list at `/vendor/tenants` shows basic tenant info (name, slug, tier, status, server state, license expiry) but lacks live usage data. The vendor needs to see agent and environment counts per tenant to understand fleet utilization without clicking into each tenant. + +## Design + +### Backend + +**Extend `VendorTenantSummary`** record in `VendorTenantController.java` with three fields: + +```java +int agentCount, int environmentCount, int agentLimit +``` + +**In the list endpoint mapping**: for each ACTIVE tenant with a server endpoint, call `serverApiClient.getAgentCount(endpoint)` and `serverApiClient.getEnvironmentCount(endpoint)`. Agent limit comes from the tenant's license `limits.agents` field (-1 for unlimited). Use `CompletableFuture` to parallelize the N HTTP calls. + +Tenants that are PROVISIONING/SUSPENDED/DELETED get zeroes — skip the HTTP calls. + +### Frontend + +**Add two columns** to the DataTable in `VendorTenantsPage.tsx`: + +| Column | Key | Display | +|--------|-----|---------| +| Agents | `agentCount` | "3 / 10" or "0 / ∞" (uses agentCount + agentLimit) | +| Envs | `environmentCount` | "1" | + +Place them after the Server column, before License. + +**Update `VendorTenantSummary` type** in `ui/src/types/api.ts` to include `agentCount: number`, `environmentCount: number`, `agentLimit: number`. + +### Existing infrastructure reused + +- `ServerApiClient.getAgentCount()` and `getEnvironmentCount()` — already implemented for tenant dashboard +- `LicenseService.getActiveLicense()` — already used in the list endpoint for license expiry +- 30-second refetch interval on `useVendorTenants()` — already in place + +### No changes to + +- ServerStatusBadge column — kept as-is +- License column — kept as-is +- Detail page — already has its own health data + +## Files to modify + +| File | Change | +|------|--------| +| `VendorTenantController.java` | Extend summary record + parallel health fetch in list endpoint | +| `VendorTenantsPage.tsx` | Add Agents and Envs columns | +| `ui/src/types/api.ts` | Add fields to VendorTenantSummary type | diff --git a/docs/superpowers/specs/2026-04-15-per-tenant-pg-isolation-design.md b/docs/superpowers/specs/2026-04-15-per-tenant-pg-isolation-design.md index 706cbae..e53fdba 100644 --- a/docs/superpowers/specs/2026-04-15-per-tenant-pg-isolation-design.md +++ b/docs/superpowers/specs/2026-04-15-per-tenant-pg-isolation-design.md @@ -5,7 +5,7 @@ ## Context -The cameleer3-server team introduced `currentSchema` and `ApplicationName` JDBC parameters (commit `7a63135`) to scope admin diagnostic queries to a single tenant's connections. Previously, all tenant servers shared one PostgreSQL user and connected to the `cameleer3` database without schema isolation — a tenant's server could theoretically see SQL text from other tenants via `pg_stat_activity`. +The cameleer-server team introduced `currentSchema` and `ApplicationName` JDBC parameters (commit `7a63135`) to scope admin diagnostic queries to a single tenant's connections. Previously, all tenant servers shared one PostgreSQL user and connected to the `cameleer` database without schema isolation — a tenant's server could theoretically see SQL text from other tenants via `pg_stat_activity`. This spec adds per-tenant PostgreSQL users and schemas so each tenant server can only access its own data at the database level. @@ -13,7 +13,7 @@ This spec adds per-tenant PostgreSQL users and schemas so each tenant server can ### Current State -- All tenant servers connect as the shared admin PG user to `cameleer3` database, `public` schema. +- All tenant servers connect as the shared admin PG user to `cameleer` database, `public` schema. - No per-tenant schemas exist — the server's Flyway runs in `public`. - `TenantDataCleanupService` already attempts `DROP SCHEMA tenant_<slug>` on delete (no-op today since schemas don't exist). - Standalone mode sets `currentSchema=tenant_default` in the compose file and is unaffected by this change. @@ -40,7 +40,7 @@ public class TenantDatabaseService { ### `createTenantDatabase(slug, password)` -Connects to `cameleer3` using the admin PG credentials from `ProvisioningProperties`. Executes: +Connects to `cameleer` using the admin PG credentials from `ProvisioningProperties`. Executes: 1. Validate slug against `^[a-z0-9-]+$` (reject unexpected characters). 2. `CREATE USER "tenant_<slug>" WITH PASSWORD '<password>'` (skip if user already exists — idempotent for re-provisioning). @@ -90,7 +90,7 @@ The `ProvisionRequest` record gains `dbPassword` field. **When `dbPassword` is present** (new tenants): ``` -SPRING_DATASOURCE_URL=jdbc:postgresql://cameleer-postgres:5432/cameleer3?currentSchema=tenant_<slug>&ApplicationName=tenant_<slug> +SPRING_DATASOURCE_URL=jdbc:postgresql://cameleer-postgres:5432/cameleer?currentSchema=tenant_<slug>&ApplicationName=tenant_<slug> SPRING_DATASOURCE_USERNAME=tenant_<slug> SPRING_DATASOURCE_PASSWORD=<generated> ``` diff --git a/docs/user-manual.md b/docs/user-manual.md index 61e5722..9c96da2 100644 --- a/docs/user-manual.md +++ b/docs/user-manual.md @@ -68,7 +68,7 @@ The sidebar provides access to all major sections: | **Environments** | Expandable tree showing all environments and their apps | | **License** | License tier, features, limits, and token | | **Platform** | Platform-wide tenant management (visible only to platform admins) | -| **View Dashboard** | Opens the observability dashboard (cameleer3-server) in a new tab | +| **View Dashboard** | Opens the observability dashboard (cameleer-server) in a new tab | | **Account** | Log out of the current session | The Environments section in the sidebar renders as a collapsible tree: environments at the top level, with their applications nested underneath. Clicking any item navigates directly to its detail page. @@ -239,10 +239,10 @@ Failed deployments are highlighted with a red accent for quick identification. ### Accessing the Observability Dashboard -The observability dashboard is provided by cameleer3-server and opens in a separate browser tab: +The observability dashboard is provided by cameleer-server and opens in a separate browser tab: 1. In the sidebar footer, click **View Dashboard**. -2. The dashboard opens at the cameleer3-server URL. +2. The dashboard opens at the cameleer-server URL. Alternatively, from any app detail page, the **Agent Status** card includes a "View in Dashboard" link. @@ -456,11 +456,11 @@ The platform runs as a Docker Compose stack with these services: | Service | Purpose | Dev Port | |---------|---------|----------| | **traefik** | Reverse proxy and TLS termination | 80, 443 | -| **postgres** | Database for platform data, Logto, and cameleer3-server | 5432 | +| **postgres** | Database for platform data, Logto, and cameleer-server | 5432 | | **logto** | Identity provider (OIDC/SSO) | 3001, 3002 | | **logto-bootstrap** | One-time setup (runs and exits) | -- | | **cameleer-saas** | SaaS API server and frontend | 8080 | -| **cameleer3-server** | Observability backend | 8081 | +| **cameleer-server** | Observability backend | 8081 | | **clickhouse** | Trace, metrics, and log storage | 8123 | In production mode (`docker compose up`), only ports 80 and 443 are exposed via Traefik. In development mode (`docker compose -f docker-compose.yml -f docker-compose.dev.yml up`), individual service ports are exposed directly for debugging. @@ -469,11 +469,11 @@ In production mode (`docker compose up`), only ports 80 and 443 are exposed via On first boot, the `logto-bootstrap` container automatically: -1. Waits for Logto and cameleer3-server to be healthy. +1. Waits for Logto and cameleer-server to be healthy. 2. Creates three Logto applications: - **Cameleer SaaS** (SPA) -- for the management UI frontend. - **Cameleer SaaS Backend** (Machine-to-Machine) -- for server-to-Logto API calls. - - **Cameleer Dashboard** (Traditional Web App) -- for cameleer3-server OIDC login. + - **Cameleer Dashboard** (Traditional Web App) -- for cameleer-server OIDC login. 3. Creates an API resource (`https://api.cameleer.local`) with 10 OAuth2 scopes (see Section 9). 4. Creates organization roles with **API resource scopes** (not standalone org permissions): - `admin` -- 9 tenant scopes (all except `platform:admin`). @@ -482,7 +482,7 @@ On first boot, the `logto-bootstrap` container automatically: - Platform admin (default: `admin` / `admin`) -- has the `admin` org role plus the global `platform-admin` role (which grants `platform:admin` scope). - Demo user (default: `camel` / `camel`) -- added to the default organization with the `member` role. 6. Creates a Logto organization ("Example Tenant") and assigns both users. -7. Configures cameleer3-server with Logto OIDC settings for dashboard authentication. +7. Configures cameleer-server with Logto OIDC settings for dashboard authentication. 8. Writes all generated IDs and secrets to `/data/logto-bootstrap.json` for the SaaS backend to consume. The bootstrap is idempotent -- re-running it will skip resources that already exist. @@ -571,15 +571,15 @@ The Cameleer SaaS application itself does not need any changes -- all identity c **Possible causes:** -- The agent cannot reach the cameleer3-server endpoint. Check network connectivity between the deployed container and the observability server. +- The agent cannot reach the cameleer-server endpoint. Check network connectivity between the deployed container and the observability server. - The bootstrap token does not match. The agent uses `CAMELEER_SERVER_SECURITY_BOOTSTRAPTOKEN` to register with the server. -- The cameleer3-server is not healthy. +- The cameleer-server is not healthy. **Resolution:** -1. Check cameleer3-server health: `docker compose logs cameleer3-server`. +1. Check cameleer-server health: `docker compose logs cameleer-server`. 2. Verify the app container's logs for agent connection errors (use the Logs tab on the app detail page). -3. Confirm that `CAMELEER_SERVER_SECURITY_BOOTSTRAPTOKEN` is the same in both the `cameleer-saas` and `cameleer3-server` service configurations. +3. Confirm that `CAMELEER_SERVER_SECURITY_BOOTSTRAPTOKEN` is the same in both the `cameleer-saas` and `cameleer-server` service configurations. ### Container Health Check Failing diff --git a/installer/cameleer/.env.bak b/installer/cameleer/.env.bak new file mode 100644 index 0000000..230e96b --- /dev/null +++ b/installer/cameleer/.env.bak @@ -0,0 +1,33 @@ +# Cameleer SaaS Configuration +# Generated by installer v1.0.0 on 2026-04-15 08:55:30 UTC + +VERSION=latest + +PUBLIC_HOST=desktop-fb5vgj9.siegeln.internal +PUBLIC_PROTOCOL=https + +HTTP_PORT=80 +HTTPS_PORT=443 +LOGTO_CONSOLE_PORT=3002 + +# PostgreSQL +POSTGRES_USER=cameleer +POSTGRES_PASSWORD=dwnyYXj3bVe6kFcOHERr57SkrkD9476a +POSTGRES_DB=cameleer_saas + +# ClickHouse +CLICKHOUSE_PASSWORD=SshXE61qZqB1kVoZpQLbr2mDYokw1ZgJ + +# Admin user +SAAS_ADMIN_USER=admin +SAAS_ADMIN_PASS=1J3TrbgIYZbxjav1K14uy5DX8nil6Bdi + +# TLS +NODE_TLS_REJECT=0 +# Docker +DOCKER_SOCKET=/var/run/docker.sock +DOCKER_GID=0 + +# Provisioning images +CAMELEER_SAAS_PROVISIONING_SERVERIMAGE=gitea.siegeln.net/cameleer/cameleer-server:latest +CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE=gitea.siegeln.net/cameleer/cameleer-server-ui:latest \ No newline at end of file diff --git a/installer/cameleer/INSTALL.md b/installer/cameleer/INSTALL.md new file mode 100644 index 0000000..afb5bf7 --- /dev/null +++ b/installer/cameleer/INSTALL.md @@ -0,0 +1,95 @@ +# Cameleer SaaS -- Installation Documentation + +## Installation Summary + +| | | +|---|---| +| **Version** | latest | +| **Date** | 2026-04-15 08:55:55 UTC | +| **Installer** | v1.0.0 | +| **Install Directory** | C:\Users\Hendrik\Documents\projects\cameleer-saas\installer\cameleer | +| **Hostname** | desktop-fb5vgj9.siegeln.internal | +| **TLS** | Self-signed (auto-generated) | + +## Service URLs + +- **Platform UI:** https://desktop-fb5vgj9.siegeln.internal/platform/ +- **API Endpoint:** https://desktop-fb5vgj9.siegeln.internal/platform/api/ +- **Logto Admin Console:** https://desktop-fb5vgj9.siegeln.internal:3002 + +## First Steps + +1. Open the Platform UI in your browser +2. Log in as admin with the credentials from `credentials.txt` +3. Create tenants from the admin console +4. The platform will provision a dedicated server instance for each tenant + +## Architecture + +| Container | Purpose | +|---|---| +| `traefik` | Reverse proxy, TLS termination, routing | +| `postgres` | PostgreSQL database (SaaS + Logto + tenant schemas) | +| `clickhouse` | Time-series storage (traces, metrics, logs) | +| `logto` | OIDC identity provider + bootstrap | +| `cameleer-saas` | SaaS platform (Spring Boot + React) | + +Per-tenant `cameleer-server` and `cameleer-server-ui` containers are provisioned dynamically. + +## Networking + +| Port | Service | +|---|---| +| 80 | HTTP (redirects to HTTPS) | +| 443 | HTTPS (main entry point) | +| 3002 | Logto Admin Console | + + +## TLS + +**Mode:** Self-signed (auto-generated) + +The platform generated a self-signed certificate on first boot. To replace it: +1. Log in as admin and navigate to **Certificates** in the admin console +2. Upload your certificate and key via the UI +3. Activate the new certificate (zero-downtime swap) + +## Data & Backups + +| Docker Volume | Contains | +|---|---| +| `cameleer-pgdata` | PostgreSQL data (tenants, licenses, audit) | +| `cameleer-chdata` | ClickHouse data (traces, metrics, logs) | +| `cameleer-certs` | TLS certificates | +| `cameleer-bootstrapdata` | Logto bootstrap results | + +### Backup Commands + +```bash +docker compose -p cameleer-saas exec cameleer-postgres pg_dump -U cameleer cameleer_saas > backup.sql +docker compose -p cameleer-saas exec cameleer-clickhouse clickhouse-client --query "SELECT * FROM cameleer.traces FORMAT Native" > traces.native +``` + +## Upgrading + +```powershell +.\install.ps1 -InstallDir C:\Users\Hendrik\Documents\projects\cameleer-saas\installer\cameleer -Version NEW_VERSION +``` + +## Troubleshooting + +| Issue | Command | +|---|---| +| Service not starting | `docker compose -p cameleer-saas logs SERVICE_NAME` | +| Bootstrap failed | `docker compose -p cameleer-saas logs cameleer-logto` | +| Routing issues | `docker compose -p cameleer-saas logs cameleer-traefik` | +| Database issues | `docker compose -p cameleer-saas exec cameleer-postgres psql -U cameleer -d cameleer_saas` | + +## Uninstalling + +```powershell +Set-Location C:\Users\Hendrik\Documents\projects\cameleer-saas\installer\cameleer +docker compose -p cameleer-saas down +docker compose -p cameleer-saas down -v +Remove-Item -Recurse -Force C:\Users\Hendrik\Documents\projects\cameleer-saas\installer\cameleer +``` \ No newline at end of file diff --git a/installer/cameleer/cameleer.conf b/installer/cameleer/cameleer.conf new file mode 100644 index 0000000..e862f96 --- /dev/null +++ b/installer/cameleer/cameleer.conf @@ -0,0 +1,18 @@ +# Cameleer installation config +# Generated by installer v1.0.0 on 2026-04-15 08:55:30 UTC + +install_dir=C:\Users\Hendrik\Documents\projects\cameleer-saas\installer\cameleer +public_host=desktop-fb5vgj9.siegeln.internal +public_protocol=https +admin_user=admin +tls_mode=self-signed +http_port=80 +https_port=443 +logto_console_port=3002 +logto_console_exposed=true +monitoring_network= +version=latest +compose_project=cameleer-saas +docker_socket=/var/run/docker.sock +node_tls_reject=0 +deployment_mode=saas \ No newline at end of file diff --git a/installer/cameleer/credentials.txt b/installer/cameleer/credentials.txt new file mode 100644 index 0000000..db47b3c --- /dev/null +++ b/installer/cameleer/credentials.txt @@ -0,0 +1,16 @@ +=========================================== + CAMELEER PLATFORM CREDENTIALS + Generated: 2026-04-15 08:55:55 UTC + + SECURE THIS FILE AND DELETE AFTER NOTING + THESE CREDENTIALS CANNOT BE RECOVERED +=========================================== + +Admin Console: https://desktop-fb5vgj9.siegeln.internal/platform/ +Admin User: admin +Admin Password: 1J3TrbgIYZbxjav1K14uy5DX8nil6Bdi + +PostgreSQL: cameleer / dwnyYXj3bVe6kFcOHERr57SkrkD9476a +ClickHouse: default / SshXE61qZqB1kVoZpQLbr2mDYokw1ZgJ + +Logto Console: https://desktop-fb5vgj9.siegeln.internal:3002 \ No newline at end of file diff --git a/installer/cameleer/docker-compose.yml b/installer/cameleer/docker-compose.yml index d94610d..d1b42a8 100644 --- a/installer/cameleer/docker-compose.yml +++ b/installer/cameleer/docker-compose.yml @@ -1,6 +1,6 @@ # Cameleer SaaS Platform -# Generated by Cameleer installer — do not edit manually - +# Generated by Cameleer installer -- do not edit manually + services: cameleer-traefik: image: ${TRAEFIK_IMAGE:-gitea.siegeln.net/cameleer/cameleer-traefik}:${VERSION:-latest} @@ -20,7 +20,7 @@ services: networks: - cameleer - cameleer-traefik - + cameleer-postgres: image: ${POSTGRES_IMAGE:-gitea.siegeln.net/cameleer/cameleer-postgres}:${VERSION:-latest} restart: unless-stopped @@ -37,7 +37,7 @@ services: retries: 5 networks: - cameleer - + cameleer-clickhouse: image: ${CLICKHOUSE_IMAGE:-gitea.siegeln.net/cameleer/cameleer-clickhouse}:${VERSION:-latest} restart: unless-stopped @@ -52,7 +52,7 @@ services: retries: 3 networks: - cameleer - + cameleer-logto: image: ${LOGTO_IMAGE:-gitea.siegeln.net/cameleer/cameleer-logto}:${VERSION:-latest} restart: unless-stopped @@ -104,7 +104,7 @@ services: - cameleer-bootstrapdata:/data networks: - cameleer - + cameleer-saas: image: ${CAMELEER_IMAGE:-gitea.siegeln.net/cameleer/cameleer-saas}:${VERSION:-latest} restart: unless-stopped @@ -112,14 +112,11 @@ services: cameleer-logto: condition: service_healthy environment: - # SaaS database SPRING_DATASOURCE_URL: jdbc:postgresql://cameleer-postgres:5432/cameleer_saas SPRING_DATASOURCE_USERNAME: ${POSTGRES_USER:-cameleer} SPRING_DATASOURCE_PASSWORD: ${POSTGRES_PASSWORD} - # Identity (Logto) CAMELEER_SAAS_IDENTITY_LOGTOENDPOINT: http://cameleer-logto:3001 CAMELEER_SAAS_IDENTITY_LOGTOPUBLICENDPOINT: ${PUBLIC_PROTOCOL:-https}://${PUBLIC_HOST:-localhost} - # Provisioning — passed to per-tenant server containers CAMELEER_SAAS_PROVISIONING_PUBLICHOST: ${PUBLIC_HOST:-localhost} CAMELEER_SAAS_PROVISIONING_PUBLICPROTOCOL: ${PUBLIC_PROTOCOL:-https} CAMELEER_SAAS_PROVISIONING_NETWORKNAME: ${COMPOSE_PROJECT_NAME:-cameleer-saas}_cameleer @@ -127,8 +124,8 @@ services: CAMELEER_SAAS_PROVISIONING_DATASOURCEUSERNAME: ${POSTGRES_USER:-cameleer} CAMELEER_SAAS_PROVISIONING_DATASOURCEPASSWORD: ${POSTGRES_PASSWORD} CAMELEER_SAAS_PROVISIONING_CLICKHOUSEPASSWORD: ${CLICKHOUSE_PASSWORD} - CAMELEER_SAAS_PROVISIONING_SERVERIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERIMAGE:-gitea.siegeln.net/cameleer/cameleer3-server:latest} - CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE:-gitea.siegeln.net/cameleer/cameleer3-server-ui:latest} + CAMELEER_SAAS_PROVISIONING_SERVERIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERIMAGE:-gitea.siegeln.net/cameleer/cameleer-server:latest} + CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE:-gitea.siegeln.net/cameleer/cameleer-server-ui:latest} labels: - traefik.enable=true - traefik.http.routers.saas.rule=PathPrefix(`/platform`) @@ -142,17 +139,17 @@ services: networks: - cameleer group_add: - - "1001" - + - "0" + volumes: cameleer-pgdata: cameleer-chdata: cameleer-certs: cameleer-bootstrapdata: - + networks: cameleer: driver: bridge cameleer-traefik: name: cameleer-traefik - driver: bridge + driver: bridge \ No newline at end of file diff --git a/installer/install.ps1 b/installer/install.ps1 index 902a574..a9698fd 100644 --- a/installer/install.ps1 +++ b/installer/install.ps1 @@ -592,7 +592,7 @@ HTTPS_PORT=$($c.HttpsPort) # PostgreSQL POSTGRES_USER=cameleer POSTGRES_PASSWORD=$($c.PostgresPassword) -POSTGRES_DB=cameleer3 +POSTGRES_DB=cameleer # ClickHouse CLICKHOUSE_PASSWORD=$($c.ClickhousePassword) @@ -654,8 +654,8 @@ DOCKER_SOCKET=$($c.DockerSocket) DOCKER_GID=$gid # Provisioning images -CAMELEER_SAAS_PROVISIONING_SERVERIMAGE=${REGISTRY}/cameleer3-server:$($c.Version) -CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE=${REGISTRY}/cameleer3-server-ui:$($c.Version) +CAMELEER_SAAS_PROVISIONING_SERVERIMAGE=${REGISTRY}/cameleer-server:$($c.Version) +CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE=${REGISTRY}/cameleer-server-ui:$($c.Version) "@ $content += $provisioningBlock } @@ -854,8 +854,8 @@ services: CAMELEER_SAAS_PROVISIONING_DATASOURCEUSERNAME: ${POSTGRES_USER:-cameleer} CAMELEER_SAAS_PROVISIONING_DATASOURCEPASSWORD: ${POSTGRES_PASSWORD} CAMELEER_SAAS_PROVISIONING_CLICKHOUSEPASSWORD: ${CLICKHOUSE_PASSWORD} - CAMELEER_SAAS_PROVISIONING_SERVERIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERIMAGE:-gitea.siegeln.net/cameleer/cameleer3-server:latest} - CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE:-gitea.siegeln.net/cameleer/cameleer3-server-ui:latest} + CAMELEER_SAAS_PROVISIONING_SERVERIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERIMAGE:-gitea.siegeln.net/cameleer/cameleer-server:latest} + CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE:-gitea.siegeln.net/cameleer/cameleer-server-ui:latest} labels: - traefik.enable=true - traefik.http.routers.saas.rule=PathPrefix(`/platform`) @@ -953,13 +953,13 @@ services: image: postgres:16-alpine restart: unless-stopped environment: - POSTGRES_DB: ${POSTGRES_DB:-cameleer3} + POSTGRES_DB: ${POSTGRES_DB:-cameleer} POSTGRES_USER: ${POSTGRES_USER:-cameleer} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} volumes: - cameleer-pgdata:/var/lib/postgresql/data healthcheck: - test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER:-cameleer} -d $${POSTGRES_DB:-cameleer3}"] + test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER:-cameleer} -d $${POSTGRES_DB:-cameleer}"] interval: 5s timeout: 5s retries: 5 @@ -993,7 +993,7 @@ services: $serverBlock = @" cameleer-server: - image: `${SERVER_IMAGE:-gitea.siegeln.net/cameleer/cameleer3-server}:`${VERSION:-latest} + image: `${SERVER_IMAGE:-gitea.siegeln.net/cameleer/cameleer-server}:`${VERSION:-latest} container_name: cameleer-server restart: unless-stopped depends_on: @@ -1001,7 +1001,7 @@ services: condition: service_healthy environment: CAMELEER_SERVER_TENANT_ID: default - SPRING_DATASOURCE_URL: jdbc:postgresql://cameleer-postgres:5432/`${POSTGRES_DB:-cameleer3}?currentSchema=tenant_default + SPRING_DATASOURCE_URL: jdbc:postgresql://cameleer-postgres:5432/`${POSTGRES_DB:-cameleer}?currentSchema=tenant_default SPRING_DATASOURCE_USERNAME: `${POSTGRES_USER:-cameleer} SPRING_DATASOURCE_PASSWORD: `${POSTGRES_PASSWORD} CAMELEER_SERVER_CLICKHOUSE_URL: jdbc:clickhouse://cameleer-clickhouse:8123/cameleer @@ -1044,7 +1044,7 @@ services: - cameleer-apps cameleer-server-ui: - image: `${SERVER_UI_IMAGE:-gitea.siegeln.net/cameleer/cameleer3-server-ui}:`${VERSION:-latest} + image: `${SERVER_UI_IMAGE:-gitea.siegeln.net/cameleer/cameleer-server-ui}:`${VERSION:-latest} restart: unless-stopped depends_on: cameleer-server: @@ -1430,7 +1430,7 @@ $logtoConsoleRow | ``logto`` | OIDC identity provider + bootstrap | | ``cameleer-saas`` | SaaS platform (Spring Boot + React) | -Per-tenant ``cameleer3-server`` and ``cameleer3-server-ui`` containers are provisioned dynamically. +Per-tenant ``cameleer-server`` and ``cameleer-server-ui`` containers are provisioned dynamically. ## Networking @@ -1579,7 +1579,7 @@ $tlsSection ### Backup Commands ``````bash -docker compose -p $($c.ComposeProject) exec cameleer-postgres pg_dump -U cameleer cameleer3 > backup.sql +docker compose -p $($c.ComposeProject) exec cameleer-postgres pg_dump -U cameleer cameleer > backup.sql docker compose -p $($c.ComposeProject) exec cameleer-clickhouse clickhouse-client --query "SELECT * FROM cameleer.traces FORMAT Native" > traces.native `````` @@ -1596,7 +1596,7 @@ docker compose -p $($c.ComposeProject) exec cameleer-clickhouse clickhouse-clien | Service not starting | ``docker compose -p $($c.ComposeProject) logs SERVICE_NAME`` | | Server issues | ``docker compose -p $($c.ComposeProject) logs server`` | | Routing issues | ``docker compose -p $($c.ComposeProject) logs cameleer-traefik`` | -| Database issues | ``docker compose -p $($c.ComposeProject) exec cameleer-postgres psql -U cameleer -d cameleer3`` | +| Database issues | ``docker compose -p $($c.ComposeProject) exec cameleer-postgres psql -U cameleer -d cameleer`` | ## Uninstalling diff --git a/installer/install.sh b/installer/install.sh index 0eae070..c3326fa 100644 --- a/installer/install.sh +++ b/installer/install.sh @@ -588,7 +588,7 @@ HTTPS_PORT=${HTTPS_PORT} # PostgreSQL POSTGRES_USER=cameleer POSTGRES_PASSWORD=${POSTGRES_PASSWORD} -POSTGRES_DB=cameleer3 +POSTGRES_DB=cameleer # ClickHouse CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD} @@ -663,8 +663,8 @@ DOCKER_SOCKET=${DOCKER_SOCKET} DOCKER_GID=$(stat -c '%g' "${DOCKER_SOCKET}" 2>/dev/null || echo "0") # Provisioning images -CAMELEER_SAAS_PROVISIONING_SERVERIMAGE=${REGISTRY}/cameleer3-server:${VERSION} -CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE=${REGISTRY}/cameleer3-server-ui:${VERSION} +CAMELEER_SAAS_PROVISIONING_SERVERIMAGE=${REGISTRY}/cameleer-server:${VERSION} +CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE=${REGISTRY}/cameleer-server-ui:${VERSION} EOF log_info "Generated .env" @@ -867,8 +867,8 @@ EOF CAMELEER_SAAS_PROVISIONING_DATASOURCEUSERNAME: ${POSTGRES_USER:-cameleer} CAMELEER_SAAS_PROVISIONING_DATASOURCEPASSWORD: ${POSTGRES_PASSWORD} CAMELEER_SAAS_PROVISIONING_CLICKHOUSEPASSWORD: ${CLICKHOUSE_PASSWORD} - CAMELEER_SAAS_PROVISIONING_SERVERIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERIMAGE:-gitea.siegeln.net/cameleer/cameleer3-server:latest} - CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE:-gitea.siegeln.net/cameleer/cameleer3-server-ui:latest} + CAMELEER_SAAS_PROVISIONING_SERVERIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERIMAGE:-gitea.siegeln.net/cameleer/cameleer-server:latest} + CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE: ${CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE:-gitea.siegeln.net/cameleer/cameleer-server-ui:latest} labels: - traefik.enable=true - traefik.http.routers.saas.rule=PathPrefix(`/platform`) @@ -977,13 +977,13 @@ COMPOSEEOF image: postgres:16-alpine restart: unless-stopped environment: - POSTGRES_DB: ${POSTGRES_DB:-cameleer3} + POSTGRES_DB: ${POSTGRES_DB:-cameleer} POSTGRES_USER: ${POSTGRES_USER:-cameleer} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} volumes: - cameleer-pgdata:/var/lib/postgresql/data healthcheck: - test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER:-cameleer} -d $${POSTGRES_DB:-cameleer3}"] + test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER:-cameleer} -d $${POSTGRES_DB:-cameleer}"] interval: 5s timeout: 5s retries: 5 @@ -1024,7 +1024,7 @@ COMPOSEEOF cat >> "$f" << COMPOSEEOF cameleer-server: - image: \${SERVER_IMAGE:-gitea.siegeln.net/cameleer/cameleer3-server}:\${VERSION:-latest} + image: \${SERVER_IMAGE:-gitea.siegeln.net/cameleer/cameleer-server}:\${VERSION:-latest} container_name: cameleer-server restart: unless-stopped depends_on: @@ -1032,7 +1032,7 @@ COMPOSEEOF condition: service_healthy environment: CAMELEER_SERVER_TENANT_ID: default - SPRING_DATASOURCE_URL: jdbc:postgresql://cameleer-postgres:5432/\${POSTGRES_DB:-cameleer3}?currentSchema=tenant_default + SPRING_DATASOURCE_URL: jdbc:postgresql://cameleer-postgres:5432/\${POSTGRES_DB:-cameleer}?currentSchema=tenant_default SPRING_DATASOURCE_USERNAME: \${POSTGRES_USER:-cameleer} SPRING_DATASOURCE_PASSWORD: \${POSTGRES_PASSWORD} CAMELEER_SERVER_CLICKHOUSE_URL: jdbc:clickhouse://cameleer-clickhouse:8123/cameleer @@ -1075,7 +1075,7 @@ COMPOSEEOF - cameleer-apps cameleer-server-ui: - image: \${SERVER_UI_IMAGE:-gitea.siegeln.net/cameleer/cameleer3-server-ui}:\${VERSION:-latest} + image: \${SERVER_UI_IMAGE:-gitea.siegeln.net/cameleer/cameleer-server-ui}:\${VERSION:-latest} restart: unless-stopped depends_on: cameleer-server: @@ -1372,7 +1372,7 @@ EOF | `logto` | OIDC identity provider + bootstrap | | `cameleer-saas` | SaaS platform (Spring Boot + React) | -Per-tenant `cameleer3-server` and `cameleer3-server-ui` containers are provisioned dynamically when tenants are created. +Per-tenant `cameleer-server` and `cameleer-server-ui` containers are provisioned dynamically when tenants are created. ## Networking @@ -1561,7 +1561,7 @@ EOF \`\`\`bash # PostgreSQL -docker compose -p ${COMPOSE_PROJECT} exec cameleer-postgres pg_dump -U cameleer cameleer3 > backup.sql +docker compose -p ${COMPOSE_PROJECT} exec cameleer-postgres pg_dump -U cameleer cameleer > backup.sql # ClickHouse docker compose -p ${COMPOSE_PROJECT} exec cameleer-clickhouse clickhouse-client --query "SELECT * FROM cameleer.traces FORMAT Native" > traces.native @@ -1584,7 +1584,7 @@ The installer preserves your \`.env\`, credentials, and data volumes. Only the c | Service not starting | \`docker compose -p ${COMPOSE_PROJECT} logs SERVICE_NAME\` | | Server issues | \`docker compose -p ${COMPOSE_PROJECT} logs server\` | | Routing issues | \`docker compose -p ${COMPOSE_PROJECT} logs cameleer-traefik\` | -| Database issues | \`docker compose -p ${COMPOSE_PROJECT} exec cameleer-postgres psql -U cameleer -d cameleer3\` | +| Database issues | \`docker compose -p ${COMPOSE_PROJECT} exec cameleer-postgres psql -U cameleer -d cameleer\` | ## Uninstalling diff --git a/src/main/java/net/siegeln/cameleer/saas/identity/LogtoConfig.java b/src/main/java/net/siegeln/cameleer/saas/identity/LogtoConfig.java index 707f83e..470d326 100644 --- a/src/main/java/net/siegeln/cameleer/saas/identity/LogtoConfig.java +++ b/src/main/java/net/siegeln/cameleer/saas/identity/LogtoConfig.java @@ -25,7 +25,7 @@ public class LogtoConfig { @Value("${cameleer.saas.identity.m2mclientsecret:}") private String m2mClientSecret; - @Value("${cameleer.saas.identity.serverendpoint:http://cameleer3-server:8081}") + @Value("${cameleer.saas.identity.serverendpoint:http://cameleer-server:8081}") private String serverEndpoint; private String tradAppId; diff --git a/src/main/java/net/siegeln/cameleer/saas/identity/ServerApiClient.java b/src/main/java/net/siegeln/cameleer/saas/identity/ServerApiClient.java index a4925cc..7f45143 100644 --- a/src/main/java/net/siegeln/cameleer/saas/identity/ServerApiClient.java +++ b/src/main/java/net/siegeln/cameleer/saas/identity/ServerApiClient.java @@ -11,7 +11,7 @@ import java.time.Instant; import java.util.Map; /** - * Authenticated client for cameleer3-server API calls. + * Authenticated client for cameleer-server API calls. * Uses Logto M2M client_credentials grant with the Cameleer API resource. */ @Service @@ -191,7 +191,7 @@ public class ServerApiClient { cachedToken = response.get("access_token").asText(); long expiresIn = response.get("expires_in").asLong(); tokenExpiry = Instant.now().plusSeconds(expiresIn); - log.info("Acquired cameleer3-server M2M access token"); + log.info("Acquired cameleer-server M2M access token"); return cachedToken; } catch (Exception e) { diff --git a/src/main/resources/application-local.yml b/src/main/resources/application-local.yml index 291ca40..05faaff 100644 --- a/src/main/resources/application-local.yml +++ b/src/main/resources/application-local.yml @@ -1,5 +1,5 @@ ## Profile for running outside Docker (mvn spring-boot:run -Dspring-boot.run.profiles=dev,local) -## Overrides docker hostnames with localhost for Postgres, ClickHouse, cameleer3-server +## Overrides docker hostnames with localhost for Postgres, ClickHouse, cameleer-server spring: datasource: url: jdbc:postgresql://localhost:5432/cameleer_saas diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 3cdd8d9..b8771e1 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -41,15 +41,15 @@ cameleer: m2mclientsecret: ${CAMELEER_SAAS_IDENTITY_M2MCLIENTSECRET:} spaclientid: ${CAMELEER_SAAS_IDENTITY_SPACLIENTID:} audience: ${CAMELEER_SAAS_IDENTITY_AUDIENCE:https://api.cameleer.local} - serverendpoint: ${CAMELEER_SAAS_IDENTITY_SERVERENDPOINT:http://cameleer3-server:8081} + serverendpoint: ${CAMELEER_SAAS_IDENTITY_SERVERENDPOINT:http://cameleer-server:8081} provisioning: - serverimage: ${CAMELEER_SAAS_PROVISIONING_SERVERIMAGE:gitea.siegeln.net/cameleer/cameleer3-server:latest} - serveruiimage: ${CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE:gitea.siegeln.net/cameleer/cameleer3-server-ui:latest} + serverimage: ${CAMELEER_SAAS_PROVISIONING_SERVERIMAGE:gitea.siegeln.net/cameleer/cameleer-server:latest} + serveruiimage: ${CAMELEER_SAAS_PROVISIONING_SERVERUIIMAGE:gitea.siegeln.net/cameleer/cameleer-server-ui:latest} networkname: ${CAMELEER_SAAS_PROVISIONING_NETWORKNAME:cameleer-saas_cameleer} traefiknetwork: ${CAMELEER_SAAS_PROVISIONING_TRAEFIKNETWORK:cameleer-traefik} publichost: ${CAMELEER_SAAS_PROVISIONING_PUBLICHOST:localhost} publicprotocol: ${CAMELEER_SAAS_PROVISIONING_PUBLICPROTOCOL:https} - datasourceurl: ${CAMELEER_SAAS_PROVISIONING_DATASOURCEURL:jdbc:postgresql://cameleer-postgres:5432/cameleer3} + datasourceurl: ${CAMELEER_SAAS_PROVISIONING_DATASOURCEURL:jdbc:postgresql://cameleer-postgres:5432/cameleer} datasourceusername: ${CAMELEER_SAAS_PROVISIONING_DATASOURCEUSERNAME:${POSTGRES_USER:cameleer}} datasourcepassword: ${CAMELEER_SAAS_PROVISIONING_DATASOURCEPASSWORD:${POSTGRES_PASSWORD:cameleer_dev}} clickhouseurl: ${CAMELEER_SAAS_PROVISIONING_CLICKHOUSEURL:jdbc:clickhouse://cameleer-clickhouse:8123/cameleer} diff --git a/ui/package.json b/ui/package.json index f795ff3..3c27d2c 100644 --- a/ui/package.json +++ b/ui/package.json @@ -7,7 +7,7 @@ "dev": "vite", "build": "tsc -b && vite build", "preview": "vite preview", - "postinstall": "node -e \"const fs=require('fs'),p='node_modules/@cameleer/design-system/assets/';if(fs.existsSync('public')){fs.copyFileSync(p+'cameleer3-logo.svg','public/favicon.svg')}\"" + "postinstall": "node -e \"const fs=require('fs'),p='node_modules/@cameleer/design-system/assets/';if(fs.existsSync('public')){fs.copyFileSync(p+'cameleer-logo.svg','public/favicon.svg')}\"" }, "dependencies": { "@cameleer/design-system": "^0.1.45", diff --git a/ui/public/favicon-192.png b/ui/public/favicon-192.png new file mode 100644 index 0000000..fe9c65e Binary files /dev/null and b/ui/public/favicon-192.png differ diff --git a/ui/public/favicon-32.png b/ui/public/favicon-32.png new file mode 100644 index 0000000..2298f90 Binary files /dev/null and b/ui/public/favicon-32.png differ diff --git a/ui/public/logo-dark.svg b/ui/public/logo-dark.svg index b1511a3..9514b5e 100644 --- a/ui/public/logo-dark.svg +++ b/ui/public/logo-dark.svg @@ -1,4 +1,4 @@ <svg xmlns="http://www.w3.org/2000/svg" viewBox="940 300 2100 950" width="360" height="160"> <path fill="#D4941E" d="M 1385.2768,1205.0273 c -1.7727,-1.0809 -3.4419,-2.9917 -3.7093,-4.2463 -0.2674,-1.2545 -0.6851,-23.881 -0.9282,-50.281 -0.4544,-49.3389 -1.4003,-65.7355 -5.6645,-98.1921 -10.4552,-79.57719 -28.3441,-125.96796 -62.5438,-162.19311 -9.2529,-9.80096 -19.9748,-18.38696 -33.931,-27.17162 -12.6119,-7.93853 -24.8581,-13.73088 -49.5,-23.41316 -41.7081,-16.38789 -67.8677,-32.29827 -89.0588,-54.16599 -34.7586,-35.86827 -54.3653,-83.30392 -59.0504,-142.86402 -0.8357,-10.6245 -0.92,-22.5842 -0.2891,-41 0.4899,-14.3 0.8164,-35.225 0.7255,-46.5 -0.1983,-24.59199 -2.0251,-34.76973 -8.4617,-47.14159 -6.2021,-11.92135 -10.364,-15.10789 -36.2345,-27.74305 -25.4032,-12.40694 -27.7701,-13.30168 -35.4717,-13.40961 -4.63013,-0.0649 -7.47783,0.72754 -15.6593,4.35747 -9.86218,4.37563 -10.15161,4.43672 -21,4.43267 -10.86566,-0.004 -11.08917,-0.0517 -18.30169,-3.90103 -17.43524,-9.3052 -21.50075,-23.5772 -13.55784,-47.59486 2.73631,-8.27402 10.00732,-22.43593 14.69263,-28.61719 5.4984,-7.25394 10.89014,-11.83885 20.83968,-17.72117 15.06768,-8.90827 29.60254,-11.98884 63.90372,-13.54403 l 16.5765,-0.75156 14.9235,-7.05735 c 8.2079,-3.88154 17.1735,-7.76831 19.9235,-8.63727 7.7052,-2.43474 21.059,-4.67186 27.8605,-4.66741 8.0518,0.005 22.643,2.41202 30.0139,4.95066 l 5.8744,2.02321 4.8856,-4.09041 c 10.341,-8.65797 18.6496,-12.95738 28.96,-14.98583 6.9966,-1.37649 26.3532,-0.64631 32.1116,1.21134 4.5531,1.46885 5.4951,3.7902 6.3689,15.69592 1.5167,20.66426 -5.0112,40.44987 -18.1772,55.09363 -4.3065,4.78983 -4.5016,5.25488 -3.4977,8.33516 4.5184,13.86447 5.3154,38.07517 2.1537,65.42564 -5.169,44.71349 -5.0411,70.7797 0.5404,110.15637 6.8135,48.06863 22.3335,73.51874 48.2051,79.04779 24.1748,5.16643 45.2921,-5.78181 66.8353,-34.65077 4.809,-6.4442 11.1363,-14.93006 14.0608,-18.85747 7.3865,-9.91943 25.6102,-27.11708 35.952,-33.92766 12.5235,-8.24739 26.8808,-14.74833 42.8527,-19.40354 15.4108,-4.49168 26.7091,-9.74984 36.2432,-16.86731 3.4338,-2.56341 13.3338,-12.03104 22,-21.03916 26.2356,-27.27067 44.5755,-40.32368 66.9928,-47.68062 19.1052,-6.26998 35.4927,-7.73718 50.8681,-4.55427 37.0856,7.67726 63.5507,26.77589 100.2888,72.37362 16.6011,20.60463 29.9711,32.07977 51.6071,44.29313 39.3131,22.19195 50.1228,30.50985 68.8076,52.94655 5.4963,6.6 12.9187,14.91604 16.4941,18.4801 33.6796,33.57259 54.1965,72.51092 61.6587,117.0199 2.7315,16.29242 3.3374,26.62538 3.1861,54.33713 l -0.1465,26.83714 -2.7975,2.40572 c -3.9132,3.36522 -7.2806,3.99163 -11.2591,2.09442 -6.4731,-3.08682 -6.5715,-3.57833 -6.878,-34.36929 -0.2908,-29.2175 -2.0265,-46.13705 -6.6479,-64.80512 -3.2997,-13.32891 -12.2529,-34.61943 -17.0313,-40.5 l -2.0314,-2.5 0.5698,3.5 c 5.8574,35.97875 4.2855,72.40287 -5.3946,125 -8.4016,45.65054 -4.3665,69.39588 20.7318,122 11.4175,23.93009 12.5452,27.25907 12.4212,36.6684 -0.1018,7.7227 -2.5346,19.5162 -13.1674,63.8316 -1.0558,4.4 -3.5336,14.975 -5.5063,23.5 -1.9727,8.525 -4.2259,18.2 -5.0072,21.5 -0.7812,3.3 -3.4495,15.225 -5.9296,26.5 -9.1636,41.6596 -13.4372,59.8787 -14.5204,61.9027 -2.4994,4.6702 -5.2312,5.0973 -32.6024,5.0973 H 1765.8 l -3.4,-3.4 c -2.3518,-2.3518 -3.4,-4.3226 -3.4,-6.3925 0,-1.6458 2.2347,-12.1533 4.966,-23.35 8.6906,-35.6259 11.6969,-54.778 12.6921,-80.8575 1.3475,-35.3073 -4.6406,-62.7687 -18.7825,-86.137 -7.6672,-12.66954 -11.9163,-17.84148 -29.8756,-36.36415 -22.9362,-23.65574 -34.6222,-39.72583 -47.9268,-65.90697 -5.7294,-11.27448 -13.6061,-31.99995 -15.5051,-40.79778 -0.3212,-1.48824 -1.0176,-3.84619 -1.5475,-5.2399 l -0.9634,-2.534 -11.7786,7.15145 c -38.634,23.45687 -74.5513,34.71091 -124.1895,38.91257 -14.5402,1.23075 -58.2359,0.66344 -71.9142,-0.93369 -5.4419,-0.63542 -6.4542,-0.49723 -7.25,0.98972 -0.5545,1.03621 -0.9249,60.63835 -0.9249,148.84365 0,161.6262 0.4025,151.2052 -5.9673,154.4992 -2.3865,1.2341 -7.4633,1.5162 -27.233,1.5132 -22.3926,-0 -24.5527,-0.158 -27.5229,-1.969 z M 1424,1045.6452 c 0,-87.21053 0.3878,-144.17994 1.0365,-152.24998 1.8115,-22.53829 7.2373,-44.8067 16.1142,-66.13567 20.7842,-49.93942 66.8961,-95.01414 129.8493,-126.92865 14.9469,-7.57742 29.2834,-13.56192 41.5,-17.32336 3.85,-1.1854 7.9,-2.55654 9,-3.04699 6.0644,-2.70386 29.8837,-6.94397 39.0685,-6.95465 16.5354,-0.0192 29.4209,10.53866 32.4491,26.58755 1.5763,8.35375 1.0812,11.63345 -4.5147,29.90655 -10.1916,33.28037 -13.3229,61.96134 -10.0442,92 3.2262,29.55737 10.5673,53.87028 23.6898,78.45848 11.023,20.65405 21.7624,35.21113 38.7623,52.54152 17.2909,17.62693 24.0427,25.40931 30.3653,35 26.0619,39.5327 33.1081,82.6442 23.6173,144.5 -1.6936,11.0379 -7.1852,37.5413 -10.412,50.25 l -0.6982,2.75 h 11.041 c 9.6675,0 11.1002,-0.2177 11.5165,-1.75 0.2615,-0.9625 1.1691,-4.9 2.0169,-8.75 4.2214,-19.1689 6.8202,-30.513 8.1326,-35.5 1.361,-5.1717 9.3524,-39.8413 18.5555,-80.5 2.2408,-9.9 5.3554,-23.4 6.9213,-30 4.9646,-20.9246 5.3189,-23.3077 4.1531,-27.9371 -0.5856,-2.32595 -4.0498,-10.49161 -7.6981,-18.14594 -9.222,-19.34804 -12.2871,-26.05688 -14.0769,-30.8114 -5.3001,-14.07878 -9.5733,-27.65251 -11.9961,-38.10556 -2.5547,-11.02237 -2.7797,-13.62939 -2.7612,-32 0.019,-19.36303 0.1714,-20.85991 4.7729,-47 6.161,-34.99931 7.6003,-48.16042 7.6003,-69.5 -10e-5,-33.76835 -6.5703,-63.86472 -19.8286,-90.82854 -6.3511,-12.91659 -11.7543,-20.74668 -21.037,-30.48614 -12.8375,-13.46928 -22.9472,-20.76621 -47.0954,-33.9923 -11.7394,-6.42975 -28.8576,-17.82564 -36.5,-24.2987 -10.6672,-9.03504 -17.2351,-15.91058 -32.8553,-34.39432 -16.848,-19.93653 -31.9446,-35.04489 -42.6447,-42.67772 -10.3431,-7.37816 -15.6552,-10.10769 -28,-14.38707 -9.1747,-3.18048 -10.0479,-3.29466 -25.5,-3.33475 -15.5657,-0.0404 -16.2561,0.0478 -25.4354,3.24965 -23.091,8.0544 -33.3943,15.26018 -59.5646,41.65777 -30.5973,30.86299 -38.6661,35.8414 -77,47.50846 -16.2269,4.93872 -34.1287,15.69697 -44.617,26.81301 -10.992,11.6499 -13.307,14.35965 -22.3589,26.17065 -19.0735,24.88726 -27.0799,33.14259 -41.0241,42.29946 -10.0586,6.60527 -20.3327,9.75956 -33.9507,10.42334 -37.2243,1.81441 -62.5379,-17.55119 -76.1054,-58.2228 -11.652,-34.92922 -16.8948,-93.36051 -12.158,-135.5 5.892,-52.41494 5.8488,-63.62373 -0.3099,-80.57433 -4.7448,-13.05916 -4.7675,-12.96705 5.716,-23.17933 5.7642,-5.61509 9.7601,-10.45668 11.1613,-13.52373 2.7419,-6.00142 5.1126,-15.9207 5.1319,-21.47261 L 1198,352 l -5.9651,0 c -11.169,0 -21.7558,5.31928 -28.8986,14.51992 -5.5094,7.09667 -9.8889,9.41118 -14.4261,7.62413 -22.7413,-8.95689 -39.8334,-10.59845 -57.5511,-5.52733 -3.1125,0.89085 -11.6238,4.5155 -18.9141,8.05478 -15.4059,7.47927 -22.5958,9.28006 -37.245,9.32847 -31.9108,0.10543 -56.25892,6.94953 -67.17127,18.88141 -8.24539,9.01574 -18.57001,32.98439 -17.63456,40.9387 0.20038,1.70385 1.68501,3.56683 4.30583,5.40313 6.15036,4.30931 11.64453,4.02586 24.53725,-1.26587 9.37877,-3.84945 11.49879,-4.33904 20.46275,-4.7256 12.5127,-0.5396 16.1351,0.57224 41.5,12.73763 28.326,13.58558 38.6034,16.26339 54.7762,14.27212 10.7814,-1.32746 19.6601,-4.77604 26.9813,-10.47981 10.8957,-8.48862 12.7264,-9.11418 18.2752,-6.24475 3.4802,1.79966 5.9673,6.17527 5.9673,10.49833 0,5.2273 -12.3619,16.07427 -24.373,21.38616 -8.3575,3.69608 -19.5481,6.59858 -25.4408,6.59858 -2.8524,0 -5.1862,0.40847 -5.1862,0.90771 0,0.49925 1.1261,3.08675 2.5024,5.75 7.4849,14.48347 10.3469,40.93277 8.5814,79.30477 -1.8809,40.87852 -1.063,65.17107 3.0314,90.03752 1.9205,11.66347 7.4026,31.07934 11.5058,40.75 3.6541,8.61199 4.8919,11.32366 8.5592,18.75 7.5496,15.28823 16.3315,27.16362 30.7439,41.57393 20.487,20.48403 39.3629,32.17675 72.4974,44.90876 32.2544,12.39381 46.3332,19.15119 64.0627,30.7482 24.2965,15.89251 40.6199,31.86253 55.9811,54.76911 15.3367,22.87022 26.7091,49.93352 35.5759,84.66142 7.4833,29.30908 14.5942,79.14828 16.5733,116.15948 0.3771,7.0514 0.7727,14.0264 0.879,15.5 0.1064,1.4735 0.2639,17.1916 0.35,34.9291 L 1403,1185 h 10.5 10.5 z m 109.6148,-166.12974 c 32.3584,-3.61532 59.7448,-11.3892 85.9116,-24.38672 13.8501,-6.87965 33.6049,-18.83328 37.1094,-22.455 0.7986,-0.82533 0.878,-3.10315 0.2676,-7.67374 -0.4775,-3.575 -0.9114,-15.05 -0.9643,-25.5 -0.1555,-30.74924 3.0015,-49.74257 13.6751,-82.27105 3.3477,-10.20267 3.1984,-15.57022 -0.5373,-19.30587 -2.563,-2.563 -3.6408,-2.92269 -8.75,-2.91989 -17.9704,0.01 -50.057,9.8542 -78.4604,24.07205 -31.505,15.77045 -56.5528,33.57164 -78.5866,55.85076 -22.9969,23.25282 -37.4392,45.78809 -46.737,72.92624 -3.3375,9.74165 -8.0905,29.93345 -7.2451,30.77886 2.3874,2.38739 64.9877,3.04398 84.317,0.88436 z"/> - <text x="1920" y="870" fill="#D4941E" font-family="system-ui, -apple-system, sans-serif" font-size="380" font-weight="600" letter-spacing="8">cameleer3</text> + <text x="1920" y="870" fill="#D4941E" font-family="system-ui, -apple-system, sans-serif" font-size="380" font-weight="600" letter-spacing="8">cameleer</text> </svg> diff --git a/ui/public/logo.svg b/ui/public/logo.svg index a859971..2f95d62 100644 --- a/ui/public/logo.svg +++ b/ui/public/logo.svg @@ -1,4 +1,4 @@ <svg xmlns="http://www.w3.org/2000/svg" viewBox="940 300 2100 950" width="360" height="160"> <path fill="#C6820E" d="M 1385.2768,1205.0273 c -1.7727,-1.0809 -3.4419,-2.9917 -3.7093,-4.2463 -0.2674,-1.2545 -0.6851,-23.881 -0.9282,-50.281 -0.4544,-49.3389 -1.4003,-65.7355 -5.6645,-98.1921 -10.4552,-79.57719 -28.3441,-125.96796 -62.5438,-162.19311 -9.2529,-9.80096 -19.9748,-18.38696 -33.931,-27.17162 -12.6119,-7.93853 -24.8581,-13.73088 -49.5,-23.41316 -41.7081,-16.38789 -67.8677,-32.29827 -89.0588,-54.16599 -34.7586,-35.86827 -54.3653,-83.30392 -59.0504,-142.86402 -0.8357,-10.6245 -0.92,-22.5842 -0.2891,-41 0.4899,-14.3 0.8164,-35.225 0.7255,-46.5 -0.1983,-24.59199 -2.0251,-34.76973 -8.4617,-47.14159 -6.2021,-11.92135 -10.364,-15.10789 -36.2345,-27.74305 -25.4032,-12.40694 -27.7701,-13.30168 -35.4717,-13.40961 -4.63013,-0.0649 -7.47783,0.72754 -15.6593,4.35747 -9.86218,4.37563 -10.15161,4.43672 -21,4.43267 -10.86566,-0.004 -11.08917,-0.0517 -18.30169,-3.90103 -17.43524,-9.3052 -21.50075,-23.5772 -13.55784,-47.59486 2.73631,-8.27402 10.00732,-22.43593 14.69263,-28.61719 5.4984,-7.25394 10.89014,-11.83885 20.83968,-17.72117 15.06768,-8.90827 29.60254,-11.98884 63.90372,-13.54403 l 16.5765,-0.75156 14.9235,-7.05735 c 8.2079,-3.88154 17.1735,-7.76831 19.9235,-8.63727 7.7052,-2.43474 21.059,-4.67186 27.8605,-4.66741 8.0518,0.005 22.643,2.41202 30.0139,4.95066 l 5.8744,2.02321 4.8856,-4.09041 c 10.341,-8.65797 18.6496,-12.95738 28.96,-14.98583 6.9966,-1.37649 26.3532,-0.64631 32.1116,1.21134 4.5531,1.46885 5.4951,3.7902 6.3689,15.69592 1.5167,20.66426 -5.0112,40.44987 -18.1772,55.09363 -4.3065,4.78983 -4.5016,5.25488 -3.4977,8.33516 4.5184,13.86447 5.3154,38.07517 2.1537,65.42564 -5.169,44.71349 -5.0411,70.7797 0.5404,110.15637 6.8135,48.06863 22.3335,73.51874 48.2051,79.04779 24.1748,5.16643 45.2921,-5.78181 66.8353,-34.65077 4.809,-6.4442 11.1363,-14.93006 14.0608,-18.85747 7.3865,-9.91943 25.6102,-27.11708 35.952,-33.92766 12.5235,-8.24739 26.8808,-14.74833 42.8527,-19.40354 15.4108,-4.49168 26.7091,-9.74984 36.2432,-16.86731 3.4338,-2.56341 13.3338,-12.03104 22,-21.03916 26.2356,-27.27067 44.5755,-40.32368 66.9928,-47.68062 19.1052,-6.26998 35.4927,-7.73718 50.8681,-4.55427 37.0856,7.67726 63.5507,26.77589 100.2888,72.37362 16.6011,20.60463 29.9711,32.07977 51.6071,44.29313 39.3131,22.19195 50.1228,30.50985 68.8076,52.94655 5.4963,6.6 12.9187,14.91604 16.4941,18.4801 33.6796,33.57259 54.1965,72.51092 61.6587,117.0199 2.7315,16.29242 3.3374,26.62538 3.1861,54.33713 l -0.1465,26.83714 -2.7975,2.40572 c -3.9132,3.36522 -7.2806,3.99163 -11.2591,2.09442 -6.4731,-3.08682 -6.5715,-3.57833 -6.878,-34.36929 -0.2908,-29.2175 -2.0265,-46.13705 -6.6479,-64.80512 -3.2997,-13.32891 -12.2529,-34.61943 -17.0313,-40.5 l -2.0314,-2.5 0.5698,3.5 c 5.8574,35.97875 4.2855,72.40287 -5.3946,125 -8.4016,45.65054 -4.3665,69.39588 20.7318,122 11.4175,23.93009 12.5452,27.25907 12.4212,36.6684 -0.1018,7.7227 -2.5346,19.5162 -13.1674,63.8316 -1.0558,4.4 -3.5336,14.975 -5.5063,23.5 -1.9727,8.525 -4.2259,18.2 -5.0072,21.5 -0.7812,3.3 -3.4495,15.225 -5.9296,26.5 -9.1636,41.6596 -13.4372,59.8787 -14.5204,61.9027 -2.4994,4.6702 -5.2312,5.0973 -32.6024,5.0973 H 1765.8 l -3.4,-3.4 c -2.3518,-2.3518 -3.4,-4.3226 -3.4,-6.3925 0,-1.6458 2.2347,-12.1533 4.966,-23.35 8.6906,-35.6259 11.6969,-54.778 12.6921,-80.8575 1.3475,-35.3073 -4.6406,-62.7687 -18.7825,-86.137 -7.6672,-12.66954 -11.9163,-17.84148 -29.8756,-36.36415 -22.9362,-23.65574 -34.6222,-39.72583 -47.9268,-65.90697 -5.7294,-11.27448 -13.6061,-31.99995 -15.5051,-40.79778 -0.3212,-1.48824 -1.0176,-3.84619 -1.5475,-5.2399 l -0.9634,-2.534 -11.7786,7.15145 c -38.634,23.45687 -74.5513,34.71091 -124.1895,38.91257 -14.5402,1.23075 -58.2359,0.66344 -71.9142,-0.93369 -5.4419,-0.63542 -6.4542,-0.49723 -7.25,0.98972 -0.5545,1.03621 -0.9249,60.63835 -0.9249,148.84365 0,161.6262 0.4025,151.2052 -5.9673,154.4992 -2.3865,1.2341 -7.4633,1.5162 -27.233,1.5132 -22.3926,-0 -24.5527,-0.158 -27.5229,-1.969 z M 1424,1045.6452 c 0,-87.21053 0.3878,-144.17994 1.0365,-152.24998 1.8115,-22.53829 7.2373,-44.8067 16.1142,-66.13567 20.7842,-49.93942 66.8961,-95.01414 129.8493,-126.92865 14.9469,-7.57742 29.2834,-13.56192 41.5,-17.32336 3.85,-1.1854 7.9,-2.55654 9,-3.04699 6.0644,-2.70386 29.8837,-6.94397 39.0685,-6.95465 16.5354,-0.0192 29.4209,10.53866 32.4491,26.58755 1.5763,8.35375 1.0812,11.63345 -4.5147,29.90655 -10.1916,33.28037 -13.3229,61.96134 -10.0442,92 3.2262,29.55737 10.5673,53.87028 23.6898,78.45848 11.023,20.65405 21.7624,35.21113 38.7623,52.54152 17.2909,17.62693 24.0427,25.40931 30.3653,35 26.0619,39.5327 33.1081,82.6442 23.6173,144.5 -1.6936,11.0379 -7.1852,37.5413 -10.412,50.25 l -0.6982,2.75 h 11.041 c 9.6675,0 11.1002,-0.2177 11.5165,-1.75 0.2615,-0.9625 1.1691,-4.9 2.0169,-8.75 4.2214,-19.1689 6.8202,-30.513 8.1326,-35.5 1.361,-5.1717 9.3524,-39.8413 18.5555,-80.5 2.2408,-9.9 5.3554,-23.4 6.9213,-30 4.9646,-20.9246 5.3189,-23.3077 4.1531,-27.9371 -0.5856,-2.32595 -4.0498,-10.49161 -7.6981,-18.14594 -9.222,-19.34804 -12.2871,-26.05688 -14.0769,-30.8114 -5.3001,-14.07878 -9.5733,-27.65251 -11.9961,-38.10556 -2.5547,-11.02237 -2.7797,-13.62939 -2.7612,-32 0.019,-19.36303 0.1714,-20.85991 4.7729,-47 6.161,-34.99931 7.6003,-48.16042 7.6003,-69.5 -10e-5,-33.76835 -6.5703,-63.86472 -19.8286,-90.82854 -6.3511,-12.91659 -11.7543,-20.74668 -21.037,-30.48614 -12.8375,-13.46928 -22.9472,-20.76621 -47.0954,-33.9923 -11.7394,-6.42975 -28.8576,-17.82564 -36.5,-24.2987 -10.6672,-9.03504 -17.2351,-15.91058 -32.8553,-34.39432 -16.848,-19.93653 -31.9446,-35.04489 -42.6447,-42.67772 -10.3431,-7.37816 -15.6552,-10.10769 -28,-14.38707 -9.1747,-3.18048 -10.0479,-3.29466 -25.5,-3.33475 -15.5657,-0.0404 -16.2561,0.0478 -25.4354,3.24965 -23.091,8.0544 -33.3943,15.26018 -59.5646,41.65777 -30.5973,30.86299 -38.6661,35.8414 -77,47.50846 -16.2269,4.93872 -34.1287,15.69697 -44.617,26.81301 -10.992,11.6499 -13.307,14.35965 -22.3589,26.17065 -19.0735,24.88726 -27.0799,33.14259 -41.0241,42.29946 -10.0586,6.60527 -20.3327,9.75956 -33.9507,10.42334 -37.2243,1.81441 -62.5379,-17.55119 -76.1054,-58.2228 -11.652,-34.92922 -16.8948,-93.36051 -12.158,-135.5 5.892,-52.41494 5.8488,-63.62373 -0.3099,-80.57433 -4.7448,-13.05916 -4.7675,-12.96705 5.716,-23.17933 5.7642,-5.61509 9.7601,-10.45668 11.1613,-13.52373 2.7419,-6.00142 5.1126,-15.9207 5.1319,-21.47261 L 1198,352 l -5.9651,0 c -11.169,0 -21.7558,5.31928 -28.8986,14.51992 -5.5094,7.09667 -9.8889,9.41118 -14.4261,7.62413 -22.7413,-8.95689 -39.8334,-10.59845 -57.5511,-5.52733 -3.1125,0.89085 -11.6238,4.5155 -18.9141,8.05478 -15.4059,7.47927 -22.5958,9.28006 -37.245,9.32847 -31.9108,0.10543 -56.25892,6.94953 -67.17127,18.88141 -8.24539,9.01574 -18.57001,32.98439 -17.63456,40.9387 0.20038,1.70385 1.68501,3.56683 4.30583,5.40313 6.15036,4.30931 11.64453,4.02586 24.53725,-1.26587 9.37877,-3.84945 11.49879,-4.33904 20.46275,-4.7256 12.5127,-0.5396 16.1351,0.57224 41.5,12.73763 28.326,13.58558 38.6034,16.26339 54.7762,14.27212 10.7814,-1.32746 19.6601,-4.77604 26.9813,-10.47981 10.8957,-8.48862 12.7264,-9.11418 18.2752,-6.24475 3.4802,1.79966 5.9673,6.17527 5.9673,10.49833 0,5.2273 -12.3619,16.07427 -24.373,21.38616 -8.3575,3.69608 -19.5481,6.59858 -25.4408,6.59858 -2.8524,0 -5.1862,0.40847 -5.1862,0.90771 0,0.49925 1.1261,3.08675 2.5024,5.75 7.4849,14.48347 10.3469,40.93277 8.5814,79.30477 -1.8809,40.87852 -1.063,65.17107 3.0314,90.03752 1.9205,11.66347 7.4026,31.07934 11.5058,40.75 3.6541,8.61199 4.8919,11.32366 8.5592,18.75 7.5496,15.28823 16.3315,27.16362 30.7439,41.57393 20.487,20.48403 39.3629,32.17675 72.4974,44.90876 32.2544,12.39381 46.3332,19.15119 64.0627,30.7482 24.2965,15.89251 40.6199,31.86253 55.9811,54.76911 15.3367,22.87022 26.7091,49.93352 35.5759,84.66142 7.4833,29.30908 14.5942,79.14828 16.5733,116.15948 0.3771,7.0514 0.7727,14.0264 0.879,15.5 0.1064,1.4735 0.2639,17.1916 0.35,34.9291 L 1403,1185 h 10.5 10.5 z m 109.6148,-166.12974 c 32.3584,-3.61532 59.7448,-11.3892 85.9116,-24.38672 13.8501,-6.87965 33.6049,-18.83328 37.1094,-22.455 0.7986,-0.82533 0.878,-3.10315 0.2676,-7.67374 -0.4775,-3.575 -0.9114,-15.05 -0.9643,-25.5 -0.1555,-30.74924 3.0015,-49.74257 13.6751,-82.27105 3.3477,-10.20267 3.1984,-15.57022 -0.5373,-19.30587 -2.563,-2.563 -3.6408,-2.92269 -8.75,-2.91989 -17.9704,0.01 -50.057,9.8542 -78.4604,24.07205 -31.505,15.77045 -56.5528,33.57164 -78.5866,55.85076 -22.9969,23.25282 -37.4392,45.78809 -46.737,72.92624 -3.3375,9.74165 -8.0905,29.93345 -7.2451,30.77886 2.3874,2.38739 64.9877,3.04398 84.317,0.88436 z"/> - <text x="1920" y="870" fill="#C6820E" font-family="system-ui, -apple-system, sans-serif" font-size="380" font-weight="600" letter-spacing="8">cameleer3</text> + <text x="1920" y="870" fill="#C6820E" font-family="system-ui, -apple-system, sans-serif" font-size="380" font-weight="600" letter-spacing="8">cameleer</text> </svg> diff --git a/ui/sign-in/src/SignInPage.tsx b/ui/sign-in/src/SignInPage.tsx index a46b404..551cef0 100644 --- a/ui/sign-in/src/SignInPage.tsx +++ b/ui/sign-in/src/SignInPage.tsx @@ -1,7 +1,7 @@ import { type FormEvent, useMemo, useState } from 'react'; import { Eye, EyeOff } from 'lucide-react'; import { Card, Input, Button, Alert, FormField } from '@cameleer/design-system'; -import cameleerLogo from '@cameleer/design-system/assets/cameleer3-logo.svg'; +import cameleerLogo from '@cameleer/design-system/assets/cameleer-logo.svg'; import { signIn } from './experience-api'; import styles from './SignInPage.module.css'; diff --git a/ui/sign-in/tsconfig.tsbuildinfo b/ui/sign-in/tsconfig.tsbuildinfo new file mode 100644 index 0000000..b040474 --- /dev/null +++ b/ui/sign-in/tsconfig.tsbuildinfo @@ -0,0 +1 @@ +{"root":["./src/app.tsx","./src/signinpage.tsx","./src/experience-api.ts","./src/main.tsx","./src/vite-env.d.ts"],"version":"5.9.3"} \ No newline at end of file diff --git a/ui/src/components/Layout.tsx b/ui/src/components/Layout.tsx index 2cd00b7..9c06de3 100644 --- a/ui/src/components/Layout.tsx +++ b/ui/src/components/Layout.tsx @@ -5,10 +5,13 @@ import { TopBar, } from '@cameleer/design-system'; import { LayoutDashboard, ShieldCheck, Users, Settings, Shield, Building, ScrollText } from 'lucide-react'; +import { useQuery } from '@tanstack/react-query'; import { useAuth } from '../auth/useAuth'; import { useScopes } from '../auth/useScopes'; import { useOrgStore } from '../auth/useOrganization'; -import cameleerLogo from '@cameleer/design-system/assets/cameleer3-logo.svg'; +import { api } from '../api/client'; +import type { VendorTenantSummary } from '../types/api'; +import cameleerLogo from '@cameleer/design-system/assets/cameleer-logo.svg'; function CameleerLogo() { return ( @@ -34,6 +37,12 @@ export function Layout() { const { username } = useOrgStore(); const isVendor = scopes.has('platform:admin'); + const { data: vendorTenants } = useQuery<VendorTenantSummary[]>({ + queryKey: ['vendor', 'tenants'], + queryFn: () => api.get('/vendor/tenants'), + enabled: isVendor, + refetchInterval: 30_000, + }); const isTenantAdmin = scopes.has('tenant:manage'); const onVendorRoute = location.pathname.startsWith('/vendor'); // Vendor on vendor routes: show only TENANTS. On tenant routes: show tenant portal too (for debugging). @@ -65,12 +74,25 @@ export function Layout() { > <div style={{ padding: '6px 12px 6px 36px', fontSize: 13, cursor: 'pointer', - fontWeight: isActive(location, '/vendor/tenants') ? 600 : 400, - color: isActive(location, '/vendor/tenants') ? 'var(--amber)' : 'var(--text-muted)' }} + fontWeight: isActive(location, '/vendor/tenants') && !location.pathname.startsWith('/vendor/tenants/') ? 600 : 400, + color: isActive(location, '/vendor/tenants') && !location.pathname.startsWith('/vendor/tenants/') ? 'var(--amber)' : 'var(--text-muted)' }} onClick={() => navigate('/vendor/tenants')} > Tenants </div> + {vendorTenants?.filter(t => t.status !== 'DELETED').map(t => ( + <div + key={t.id} + style={{ padding: '4px 12px 4px 48px', fontSize: 12, cursor: 'pointer', + fontWeight: isActive(location, `/vendor/tenants/${t.id}`) ? 600 : 400, + color: isActive(location, `/vendor/tenants/${t.id}`) ? 'var(--amber)' : 'var(--text-muted)', + whiteSpace: 'nowrap', overflow: 'hidden', textOverflow: 'ellipsis' }} + onClick={() => navigate(`/vendor/tenants/${t.id}`)} + title={t.name} + > + {t.name} + </div> + ))} <div style={{ padding: '6px 12px 6px 36px', fontSize: 13, cursor: 'pointer', fontWeight: isActive(location, '/vendor/audit') ? 600 : 400, @@ -129,7 +151,7 @@ export function Layout() { <Sidebar.Section icon={<Shield size={16} />} - label="SSO" + label="Security" open={false} active={isActive(location, '/tenant/sso')} onToggle={() => navigate('/tenant/sso')} diff --git a/ui/tsconfig.tsbuildinfo b/ui/tsconfig.tsbuildinfo new file mode 100644 index 0000000..ab181f8 --- /dev/null +++ b/ui/tsconfig.tsbuildinfo @@ -0,0 +1 @@ +{"root":["./src/config.ts","./src/main.tsx","./src/router.tsx","./src/vite-env.d.ts","./src/api/ca-hooks.ts","./src/api/certificate-hooks.ts","./src/api/client.ts","./src/api/hooks.ts","./src/api/tenant-hooks.ts","./src/api/vendor-hooks.ts","./src/auth/callbackpage.tsx","./src/auth/loginpage.tsx","./src/auth/orgresolver.tsx","./src/auth/protectedroute.tsx","./src/auth/useauth.ts","./src/auth/useorganization.ts","./src/auth/usescopes.ts","./src/components/auditlogtable.tsx","./src/components/layout.tsx","./src/components/requirescope.tsx","./src/components/serverstatusbadge.tsx","./src/components/usageindicator.tsx","./src/pages/tenant/settingspage.tsx","./src/pages/tenant/ssopage.tsx","./src/pages/tenant/teampage.tsx","./src/pages/tenant/tenantauditpage.tsx","./src/pages/tenant/tenantdashboardpage.tsx","./src/pages/tenant/tenantlicensepage.tsx","./src/pages/vendor/certificatespage.tsx","./src/pages/vendor/createtenantpage.tsx","./src/pages/vendor/infrastructurepage.tsx","./src/pages/vendor/tenantdetailpage.tsx","./src/pages/vendor/vendorauditpage.tsx","./src/pages/vendor/vendortenantspage.tsx","./src/types/api.ts","./src/utils/slug.ts","./src/utils/tier.ts"],"version":"5.9.3"} \ No newline at end of file