diff --git a/apps/api-gateway/src/main.ts b/apps/api-gateway/src/main.ts index 350fc14..723bd63 100644 --- a/apps/api-gateway/src/main.ts +++ b/apps/api-gateway/src/main.ts @@ -28,6 +28,7 @@ async function bootstrap() { .build(); const document = SwaggerModule.createDocument(app, config); SwaggerModule.setup('docs', app, document, { + yamlDocumentUrl: '/openapi.yaml', swaggerOptions: { persistAuthorization: true }, customSiteTitle: 'Документация API' }); diff --git a/apps/frontend/components/id/auth-provider.tsx b/apps/frontend/components/id/auth-provider.tsx index 6b49a8a..0ea0d28 100644 --- a/apps/frontend/components/id/auth-provider.tsx +++ b/apps/frontend/components/id/auth-provider.tsx @@ -40,7 +40,7 @@ import { usePublicSettings } from './public-settings-provider'; import { useToast } from './toast-provider'; import { PinLockModal } from './pin-lock-modal'; import { AppBootstrapScreen } from './app-bootstrap-screen'; -import { EMBEDDED_AUTH_MESSAGE, type EmbeddedAuthPayload } from '@/lib/embedded-auth-bridge'; +import { EMBEDDED_AUTH_MESSAGE, type EmbeddedAuthPayload, useEmbeddedAuthFallback } from '@/lib/embedded-auth-bridge'; import { usePinIdleLock } from '@/hooks/use-pin-idle-lock'; import { clearPinIdleWatch, isPinIdleWatchActive, markPinIdleWatch } from '@/lib/pin-idle-storage'; @@ -145,6 +145,8 @@ export function AuthProvider({ children }: { children: React.ReactNode }) { const refreshInFlightRef = React.useRef | null>(null); const initialBootstrapDoneRef = React.useRef(false); + useEmbeddedAuthFallback(); + React.useEffect(() => { if (isApiGatewayReady()) { setIsApiReady(true); diff --git a/apps/frontend/lib/api.ts b/apps/frontend/lib/api.ts index 492db8d..353935e 100644 --- a/apps/frontend/lib/api.ts +++ b/apps/frontend/lib/api.ts @@ -1,6 +1,22 @@ const API_ORIGIN_PROXY_PREFIX = '/idp-api'; const configuredApiUrl = (process.env.NEXT_PUBLIC_API_URL ?? 'http://localhost:3000').replace(/\/$/, ''); const configuredWsUrl = (process.env.NEXT_PUBLIC_WS_URL ?? 'ws://localhost:8085/ws').replace(/\/$/, ''); +const MOBILE_API_URL_KEY = 'lendry_mobile_api_url'; + +declare global { + interface Window { + __LENDRY_DIRECT_API_URL__?: string; + } +} + +function resolveDirectApiOverride(): string | null { + if (typeof window === 'undefined') return null; + const fromWindow = window.__LENDRY_DIRECT_API_URL__?.trim(); + if (fromWindow) return fromWindow.replace(/\/$/, ''); + const fromStorage = window.localStorage.getItem(MOBILE_API_URL_KEY)?.trim(); + if (fromStorage) return fromStorage.replace(/\/$/, ''); + return null; +} function getServerApiUrl(): string { return (process.env.INTERNAL_API_URL ?? configuredApiUrl).replace(/\/$/, ''); @@ -26,6 +42,9 @@ function isLocalDevApiUrl(url: string): boolean { } function resolveBrowserApiBaseUrl(): string { + const directApi = resolveDirectApiOverride(); + if (directApi) return directApi; + // SSR: внутренний URL Docker-сети (api-gateway), не публичный домен. if (typeof window === 'undefined') { return getServerApiUrl(); @@ -261,7 +280,7 @@ export async function uploadMediaObject( const apiBase = getApiUrl().replace(/\/$/, ''); const formData = new FormData(); formData.append('file', file, file instanceof File ? file.name : 'upload.bin'); - const response = await fetch(`${apiBase}/media/upload`, { + const response = await platformFetch(`${apiBase}/media/upload`, { method: 'POST', headers: { 'X-Upload-Token': presigned.uploadToken }, body: formData @@ -272,7 +291,7 @@ export async function uploadMediaObject( return; } - const response = await fetch(presigned.uploadUrl, { + const response = await platformFetch(presigned.uploadUrl, { method: 'PUT', headers: { 'Content-Type': contentType }, body: file @@ -473,6 +492,17 @@ export function resetPinRequiredNotification() { pinNotificationSent = false; } +let customFetchImpl: typeof fetch | null = null; + +/** Tauri/mobile: native HTTP (bypasses WebView CORS and self-signed TLS). */ +export function setCustomFetch(fetchImpl: typeof fetch | null) { + customFetchImpl = fetchImpl; +} + +function platformFetch(input: RequestInfo | URL, init?: RequestInit): Promise { + return (customFetchImpl ?? fetch)(input, init); +} + function notifyPinRequired(sessionId: string) { if (!pinRequiredHandler || pinNotificationSent) return; pinNotificationSent = true; @@ -909,7 +939,7 @@ function releaseApiSlot(): void { /** Liveness: nginx → api-gateway HTTP. */ async function probeGatewayAlive(): Promise { try { - const response = await fetch(`${getApiUrl()}/health`, { + const response = await platformFetch(`${getApiUrl()}/health`, { method: 'GET', cache: 'no-store', signal: AbortSignal.timeout(4500) @@ -956,7 +986,7 @@ async function fetchWithGatewayRetry( for (let attempt = 0; attempt < maxAttempts; attempt++) { try { assertGatewayCircuitClosed(behavior); - const response = await fetch(url, init); + const response = await platformFetch(url, init); if (GATEWAY_RETRY_STATUS.has(response.status) && attempt + 1 < maxAttempts) { await sleep(gatewayRetryDelay(attempt)); continue; diff --git a/install.sh b/install.sh index c9e688d..bd63d68 100644 --- a/install.sh +++ b/install.sh @@ -83,7 +83,6 @@ ${BOLD}Lendry ID v${SCRIPT_VERSION}${NC} — установка и управл ./install.sh --fix-all Комплексное исправление: 502, прокси, порты, Nginx ./install.sh --status Статус сервисов ./install.sh --reset-db Сброс PostgreSQL (новый пароль из .env, данные удалятся) - ./install.sh --build-apk Собрать подписанный Android APK (tauri_app → frontend/public/downloads) ./install.sh --remove-nginx Удалить конфиги Nginx IdP ${BOLD}Режим локальной сети (без интернета / AD-домены .local .lpr):${NC} @@ -4473,62 +4472,6 @@ action_fix_all_errors() { show_status } -action_build_tauri_apk() { - local image="${TAURI_APK_IMAGE:-lendry-id-tauri-apk-builder}" - local output_dir="${ROOT_DIR}/apps/frontend/public/downloads" - local output_apk="${output_dir}/lendry-id.apk" - local secrets_dir="${ROOT_DIR}/tauri_app/.secrets" - local public_api public_frontend npm_registry - - load_env - public_api="$(env_get PUBLIC_API_URL "http://localhost:3000")" - public_frontend="$(env_get PUBLIC_FRONTEND_URL "http://localhost:3002")" - npm_registry="$(env_get NPM_REGISTRY "https://registry.npmjs.org")" - - mkdir -p "${output_dir}" "${secrets_dir}" - chmod 700 "${secrets_dir}" 2>/dev/null || true - - echo "" - echo -e "${BOLD}Сборка подписанного Android APK (Tauri)${NC}" - echo " API: ${public_api}" - echo " Frontend: ${public_frontend}" - echo " Выход: ${output_apk}" - echo "" - - if [[ "${OFFLINE}" -eq 1 ]]; then - warn "OFFLINE=1: образ APK-builder должен быть уже собран локально" - fi - - log "Шаг 1/3: Docker-образ tauri_app (Android SDK + NDK)..." - configure_docker_build_env - docker_cmd build \ - -f "${ROOT_DIR}/tauri_app/Dockerfile.apk" \ - -t "${image}" \ - --build-arg "NPM_REGISTRY=${npm_registry}" \ - "${ROOT_DIR}" - - log "Шаг 2/3: Сборка release APK с подписью..." - docker_cmd run --rm \ - -v "${output_dir}:/out" \ - -v "${secrets_dir}:/workspace/tauri_app/.secrets" \ - -e "PUBLIC_API_URL=${public_api}" \ - -e "PUBLIC_FRONTEND_URL=${public_frontend}" \ - -e "VITE_API_URL=${public_api}" \ - -e "VITE_FRONTEND_URL=${public_frontend}" \ - "${image}" - - log "Шаг 3/3: Проверка результата..." - [[ -f "${output_apk}" ]] || fail "APK не найден после сборки: ${output_apk}" - - ok "Подписанный APK готов: ${output_apk}" - ls -lh "${output_apk}" 2>/dev/null || true - if [[ -f "${secrets_dir}/signing-credentials.env" ]]; then - warn "Пароли keystore: ${secrets_dir}/signing-credentials.env (не коммитьте в git)" - fi - echo "" - echo " Скачивание на сайте: /download/android" - echo " Перезапустите frontend, если контейнер уже работает: ./install.sh --restart" -} action_restart() { load_env @@ -4556,7 +4499,6 @@ show_menu() { echo " 3) SSL-сертификаты (обновить / включить custom / Let's Encrypt)" echo " 4) Перезапуск / пересборка контейнеров (+ очистка Docker)" echo " 11) Миграция БД и пересборка (после git pull)" - echo " 12) Собрать Android APK (Tauri, подписанный → frontend/public/downloads)" echo " 5) Статус сервисов" echo " 6) Удалить конфиги Nginx IdP" echo " 7) Сброс PostgreSQL (если ошибка P1000 / пароль БД)" @@ -4575,7 +4517,6 @@ show_menu() { 3) action_renew_ssl ;; 4) action_restart ;; 11) action_migrate_rebuild ;; - 12) action_build_tauri_apk ;; 5) show_status ;; 6) remove_nginx_configs; ok "Готово" ;; 7) action_reset_db; action_restart ;; @@ -4602,7 +4543,6 @@ main() { renew-ssl) action_renew_ssl ;; restart) action_restart ;; migrate-rebuild) action_migrate_rebuild ;; - build-apk) action_build_tauri_apk ;; fix-host-nginx|fix-docker-nginx) action_fix_docker_nginx ;; docker-prune) action_docker_prune ;; fix-proxy) action_fix_host_proxy ;; diff --git a/package-lock.json b/package-lock.json index 690f8ad..4e96803 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7154,6 +7154,15 @@ "node": ">= 10" } }, + "node_modules/@tauri-apps/plugin-http": { + "version": "2.5.9", + "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-http/-/plugin-http-2.5.9.tgz", + "integrity": "sha512-lCiY0+vs4HvIUSvZrBs8TC3TiCB0MOPRmiUjTq4prW7SlcJE2jdLeT6KBsJrT9Tlplufl7W1pY6SFAO3gCWxDA==", + "license": "MIT OR Apache-2.0", + "dependencies": { + "@tauri-apps/api": "^2.11.0" + } + }, "node_modules/@tauri-apps/plugin-opener": { "version": "2.5.4", "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.5.4.tgz", @@ -13450,12 +13459,14 @@ "@radix-ui/react-dialog": "^1.1.15", "@radix-ui/react-slot": "^1.2.4", "@tauri-apps/api": "^2.9.0", + "@tauri-apps/plugin-http": "^2.5.9", "@tauri-apps/plugin-opener": "^2.5.0", "@tauri-apps/plugin-stronghold": "^2.3.0", "@zxing/browser": "^0.1.5", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "lucide-react": "^0.561.0", + "qrcode.react": "^4.2.0", "react": "^19.2.1", "react-dom": "^19.2.1", "tailwind-merge": "^3.4.0", diff --git a/tauri_app/Dockerfile.apk b/tauri_app/Dockerfile.apk deleted file mode 100644 index 3897ade..0000000 --- a/tauri_app/Dockerfile.apk +++ /dev/null @@ -1,81 +0,0 @@ -FROM ghcr.io/cirruslabs/android-sdk:35-ndk - -ENV DEBIAN_FRONTEND=noninteractive -ENV ANDROID_HOME=/opt/android-sdk -ENV ANDROID_SDK_ROOT=/opt/android-sdk -ENV JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64 -ENV PATH=/root/.cargo/bin:/opt/android-sdk/cmdline-tools/latest/bin:/opt/android-sdk/platform-tools:/usr/local/bin:$PATH - -ARG NPM_REGISTRY=https://registry.npmjs.org - -RUN apt-get update && apt-get install -y --no-install-recommends \ - ca-certificates \ - curl \ - unzip \ - xz-utils \ - git \ - build-essential \ - pkg-config \ - libssl-dev \ - openjdk-17-jdk \ - && rm -rf /var/lib/apt/lists/* - -RUN if [ ! -d "${ANDROID_HOME}" ] && [ -d /opt/android-sdk-linux ]; then ln -s /opt/android-sdk-linux "${ANDROID_HOME}"; fi \ - && (sdkmanager --version || true) \ - && test -d "${ANDROID_HOME}/platforms/android-35" \ - && test -d "${ANDROID_HOME}/build-tools" \ - && test -d "${ANDROID_HOME}/platform-tools" \ - && test -d "${ANDROID_HOME}/ndk" - -RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash - \ - && apt-get update \ - && apt-get install -y --no-install-recommends nodejs \ - && rm -rf /var/lib/apt/lists/* - -RUN curl --proto '=https' --tlsv1.2 -fsSL https://sh.rustup.rs | sh -s -- -y --profile minimal \ - && rustup target add aarch64-linux-android armv7-linux-androideabi i686-linux-android x86_64-linux-android - -WORKDIR /workspace - -COPY package.json package-lock.json .npmrc ./ -COPY apps/sso-core/package.json ./apps/sso-core/ -COPY apps/api-gateway/package.json ./apps/api-gateway/ -COPY apps/frontend/package.json ./apps/frontend/ -COPY apps/docs/package.json ./apps/docs/ -COPY tauri_app/package.json ./tauri_app/ - -RUN --mount=type=cache,target=/root/.npm \ - npm config set registry "${NPM_REGISTRY}" && \ - npm ci --no-audit --no-fund - -COPY apps/frontend ./apps/frontend -COPY shared ./shared -COPY tsconfig.base.json ./ -COPY tauri_app ./tauri_app - -RUN sed -i 's/\r$//' tauri_app/docker/*.sh \ - && chmod +x tauri_app/docker/*.sh \ - && cp tauri_app/docker/build-android-apk.sh /usr/local/bin/build-android-apk \ - && chmod +x /usr/local/bin/build-android-apk - -ENV ANDROID_AGP_LOCAL_REPO=/opt/android-agp-maven -ENV GRADLE_USER_HOME=/root/.gradle -ENV ANDROID_COMPILE_SDK=35 - -RUN if [ ! -d "${ANDROID_HOME}" ] && [ -d /opt/android-sdk-linux ]; then ln -s /opt/android-sdk-linux "${ANDROID_HOME}"; fi \ - && ln -sfn android-35 "${ANDROID_HOME}/platforms/android-36" \ - && test -e "${ANDROID_HOME}/platforms/android-36" - -RUN /workspace/tauri_app/docker/prefetch-android-agp.sh \ - && /workspace/tauri_app/docker/verify-offline-agp.sh - -RUN if [ -f /workspace/tauri_app/docker/offline-gradle/gradle-8.14.3-bin.zip ]; then \ - mkdir -p /opt/offline-gradle \ - && cp /workspace/tauri_app/docker/offline-gradle/gradle-8.14.3-bin.zip /opt/offline-gradle/; \ - else \ - /workspace/tauri_app/docker/populate-offline-gradle.sh \ - && mkdir -p /opt/offline-gradle \ - && cp /workspace/tauri_app/docker/offline-gradle/gradle-8.14.3-bin.zip /opt/offline-gradle/; \ - fi - -CMD ["build-android-apk"] diff --git a/tauri_app/README.md b/tauri_app/README.md deleted file mode 100644 index 9246e71..0000000 --- a/tauri_app/README.md +++ /dev/null @@ -1,92 +0,0 @@ -# Lendry ID Super App - -Tauri v2 приложение для macOS, iOS и Android. Использует тот же React/Tailwind/shadcn UI стиль, что и `apps/frontend`, через Vite alias: - -```ts -'@': '../apps/frontend' -``` - -## Запуск - -```bash -npm install -npm --workspace @lendry/tauri-app run tauri:dev -``` - -## Web build - -```bash -npm --workspace @lendry/tauri-app run build -``` - -## Mobile bootstrap - -```bash -npm --workspace @lendry/tauri-app run android:init -npm --workspace @lendry/tauri-app run ios:init -``` - -После генерации проверьте `src-tauri/mobile-permissions.md` и добавьте camera permissions, если CLI не внёс их автоматически. - -## Docker APK build - -Сборка подписанного release APK через `install.sh` (Docker + Android SDK + release keystore): - -```bash -./install.sh --build-apk -``` - -Или пункт **12** в интерактивном меню `./install.sh`. - -Готовый файл: - -```text -apps/frontend/public/downloads/lendry-id.apk -``` - -Keystore и пароли создаются автоматически при первой сборке и сохраняются в `tauri_app/.secrets/` (не коммитятся в git). - -Если сборка падает с `KeytoolException` / `not properly padded`, keystore и пароли рассинхронизированы. Пересоздайте их: - -```bash -rm -rf tauri_app/.secrets -./install.sh --build-apk -``` - -Или одной командой: - -```bash -ANDROID_KEYSTORE_FORCE_REGENERATE=1 ./install.sh --build-apk -``` - -После этого кнопка «Скачать приложение» на странице входа скачивает APK через: - -```text -/download/android -``` - -Собрать только через Docker-образ (без install.sh): - -```bash -docker build -f tauri_app/Dockerfile.apk -t lendry-id-tauri-apk-builder . -mkdir -p apps/frontend/public/downloads tauri_app/.secrets -docker run --rm \ - -v "$(pwd)/apps/frontend/public/downloads:/out" \ - -v "$(pwd)/tauri_app/.secrets:/workspace/tauri_app/.secrets" \ - -e PUBLIC_API_URL=https://sso.example.ru/idp-api \ - -e PUBLIC_FRONTEND_URL=https://sso.example.ru \ - lendry-id-tauri-apk-builder -``` - -## Переменные окружения - -```bash -VITE_API_URL=https://sso.example.ru/idp-api -VITE_FRONTEND_URL=https://sso.example.ru -``` - -## Реализованные модули - -- `Chats`: wrapper существующего web UI `/family`, чтобы не дублировать messenger. -- `Security`: QR scanner + approve `/auth/advanced/qr/session/:sessionId/approve`, список сессий и revoke. -- `Authenticator`: offline TOTP RFC 6238 с хранением seeds в `tauri-plugin-stronghold`. diff --git a/tauri_app/docker/agp-resolver/.gitignore b/tauri_app/docker/agp-resolver/.gitignore deleted file mode 100644 index d9cea7b..0000000 --- a/tauri_app/docker/agp-resolver/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -.gradle/ -build/ -offline-gradle/*.zip -local.properties diff --git a/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/checksums.lock b/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/checksums.lock deleted file mode 100644 index ca39e30..0000000 Binary files a/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/checksums.lock and /dev/null differ diff --git a/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/md5-checksums.bin b/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/md5-checksums.bin deleted file mode 100644 index 73018f7..0000000 Binary files a/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/md5-checksums.bin and /dev/null differ diff --git a/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/sha1-checksums.bin b/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/sha1-checksums.bin deleted file mode 100644 index 2a7a46d..0000000 Binary files a/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/sha1-checksums.bin and /dev/null differ diff --git a/tauri_app/docker/agp-resolver/.gradle/8.14.3/executionHistory/executionHistory.lock b/tauri_app/docker/agp-resolver/.gradle/8.14.3/executionHistory/executionHistory.lock deleted file mode 100644 index fbb29d0..0000000 Binary files a/tauri_app/docker/agp-resolver/.gradle/8.14.3/executionHistory/executionHistory.lock and /dev/null differ diff --git a/tauri_app/docker/agp-resolver/.gradle/8.14.3/fileChanges/last-build.bin b/tauri_app/docker/agp-resolver/.gradle/8.14.3/fileChanges/last-build.bin deleted file mode 100644 index f76dd23..0000000 Binary files a/tauri_app/docker/agp-resolver/.gradle/8.14.3/fileChanges/last-build.bin and /dev/null differ diff --git a/tauri_app/docker/agp-resolver/.gradle/8.14.3/fileHashes/fileHashes.lock b/tauri_app/docker/agp-resolver/.gradle/8.14.3/fileHashes/fileHashes.lock deleted file mode 100644 index f89bba4..0000000 Binary files a/tauri_app/docker/agp-resolver/.gradle/8.14.3/fileHashes/fileHashes.lock and /dev/null differ diff --git a/tauri_app/docker/agp-resolver/.gradle/8.14.3/gc.properties b/tauri_app/docker/agp-resolver/.gradle/8.14.3/gc.properties deleted file mode 100644 index e69de29..0000000 diff --git a/tauri_app/docker/agp-resolver/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/tauri_app/docker/agp-resolver/.gradle/buildOutputCleanup/buildOutputCleanup.lock deleted file mode 100644 index b0e9238..0000000 Binary files a/tauri_app/docker/agp-resolver/.gradle/buildOutputCleanup/buildOutputCleanup.lock and /dev/null differ diff --git a/tauri_app/docker/agp-resolver/.gradle/buildOutputCleanup/cache.properties b/tauri_app/docker/agp-resolver/.gradle/buildOutputCleanup/cache.properties deleted file mode 100644 index c0fdd5c..0000000 --- a/tauri_app/docker/agp-resolver/.gradle/buildOutputCleanup/cache.properties +++ /dev/null @@ -1,2 +0,0 @@ -#Fri Jun 26 17:46:50 GMT 2026 -gradle.version=8.14.3 diff --git a/tauri_app/docker/agp-resolver/.gradle/vcs-1/gc.properties b/tauri_app/docker/agp-resolver/.gradle/vcs-1/gc.properties deleted file mode 100644 index e69de29..0000000 diff --git a/tauri_app/docker/agp-resolver/app/build.gradle.kts b/tauri_app/docker/agp-resolver/app/build.gradle.kts deleted file mode 100644 index 33b9b48..0000000 --- a/tauri_app/docker/agp-resolver/app/build.gradle.kts +++ /dev/null @@ -1,38 +0,0 @@ -plugins { - id("com.android.application") - id("org.jetbrains.kotlin.android") -} - -android { - namespace = "ru.lendry.offline.resolver" - compileSdk = 35 - - defaultConfig { - applicationId = "ru.lendry.offline.resolver" - minSdk = 24 - targetSdk = 35 - versionCode = 1 - versionName = "1.0" - } - - buildTypes { - release { - isMinifyEnabled = false - } - } - - kotlinOptions { - jvmTarget = "1.8" - } -} - -// Mirror Tauri Android app dependencies (apps + typical plugin transitives). -dependencies { - implementation("androidx.webkit:webkit:1.14.0") - implementation("androidx.appcompat:appcompat:1.7.1") - implementation("androidx.activity:activity-ktx:1.10.1") - implementation("com.google.android.material:material:1.12.0") - implementation("androidx.lifecycle:lifecycle-process:2.10.0") - implementation("androidx.browser:browser:1.8.0") - implementation("androidx.core:core-ktx:1.13.0") -} diff --git a/tauri_app/docker/agp-resolver/app/src/main/AndroidManifest.xml b/tauri_app/docker/agp-resolver/app/src/main/AndroidManifest.xml deleted file mode 100644 index dc25c17..0000000 --- a/tauri_app/docker/agp-resolver/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/tauri_app/docker/agp-resolver/build.gradle.kts b/tauri_app/docker/agp-resolver/build.gradle.kts deleted file mode 100644 index 1f41039..0000000 --- a/tauri_app/docker/agp-resolver/build.gradle.kts +++ /dev/null @@ -1,129 +0,0 @@ -import org.gradle.api.GradleException - -allprojects { - repositories { - google() - mavenCentral() - } -} - -fun installArtifact( - root: File, - group: String, - name: String, - version: String, - ext: String, - src: File, -) { - val dir = root.resolve("${group.replace('.', '/')}/$name/$version") - dir.mkdirs() - src.copyTo(dir.resolve("$name-$version.$ext"), overwrite = true) -} - -fun googleMavenBases(group: String): List = - if (group.startsWith("com.android") || group.startsWith("androidx") || group.startsWith("com.google.android")) { - listOf( - "https://dl.google.com/dl/android/maven2", - "https://dl.google.com/android/maven2", - "https://maven.google.com", - ) - } else { - listOf( - "https://repo.maven.apache.org/maven2", - "https://dl.google.com/dl/android/maven2", - "https://maven.google.com", - ) - } - -fun downloadUrl(url: String, dest: File) { - dest.parentFile.mkdirs() - exec { - commandLine("curl", "-fsSL", url, "-o", dest.absolutePath) - } -} - -fun ensurePom(root: File, group: String, name: String, version: String) { - val dir = root.resolve("${group.replace('.', '/')}/$name/$version") - dir.mkdirs() - val pom = dir.resolve("$name-$version.pom") - if (pom.exists() && pom.length() > 0L) { - return - } - - val groupPath = group.replace('.', '/') - for (base in googleMavenBases(group)) { - val url = "$base/$groupPath/$name/$version/$name-$version.pom" - try { - downloadUrl(url, pom) - if (pom.exists() && pom.length() > 0L) { - return - } - } catch (_: Exception) { - pom.delete() - } - } - - throw GradleException("POM not found: $group:$name:$version") -} - -fun exportConfiguration(projectPath: String, configName: String, offlineRoot: File): Int { - val target = project(projectPath) - val configuration = target.configurations.getByName(configName) - configuration.resolve() - val modules = linkedSetOf>() - - configuration.resolvedConfiguration.resolvedArtifacts.forEach { artifact -> - val id = artifact.moduleVersion.id - modules.add(Triple(id.group, id.name, id.version)) - installArtifact( - offlineRoot, - id.group, - id.name, - id.version, - artifact.extension ?: "jar", - artifact.file, - ) - } - - modules.forEach { (group, name, version) -> - ensurePom(offlineRoot, group, name, version) - } - - println("Exported ${modules.size} modules from ${projectPath}:${configName}") - return modules.size -} - -fun exportAndroidRuntimeClasspath(offlineRoot: File): Int = - exportConfiguration(":app", "releaseRuntimeClasspath", offlineRoot) - -val agpVersion: String = providers.gradleProperty("agpVersion").orElse("8.11.0").get() - -tasks.register("exportOfflineMaven") { - dependsOn(":tools:compileJava") - doLast { - val offlineRoot = file("${rootProject.projectDir}/../offline-maven").apply { mkdirs() } - val modules = exportConfiguration(":tools", "agp", offlineRoot) - file("${offlineRoot.absolutePath}/.agp-offline-complete").writeText( - "agpVersion=$agpVersion\nmodules=$modules\n", - ) - } -} - -tasks.register("exportAllOfflineMaven") { - dependsOn(":tools:compileJava", ":app:preBuild") - doLast { - val offlineRoot = file("${rootProject.projectDir}/../offline-maven").apply { mkdirs() } - var modules = 0 - modules += exportConfiguration(":tools", "agp", offlineRoot) - modules += exportConfiguration(":tools", "buildPlugins", offlineRoot) - modules += exportAndroidRuntimeClasspath(offlineRoot) - - file("${offlineRoot.absolutePath}/.agp-offline-complete").writeText( - "agpVersion=$agpVersion\nmodules=$modules\n", - ) - file("${offlineRoot.absolutePath}/.android-deps-offline-complete").writeText( - "modules=$modules\n", - ) - println("Exported ${modules} total modules to ${offlineRoot.absolutePath}") - } -} diff --git a/tauri_app/docker/agp-resolver/build/reports/problems/problems-report.html b/tauri_app/docker/agp-resolver/build/reports/problems/problems-report.html deleted file mode 100644 index ca4a2d4..0000000 --- a/tauri_app/docker/agp-resolver/build/reports/problems/problems-report.html +++ /dev/null @@ -1,663 +0,0 @@ - - - - - - - - - - - - - Gradle Configuration Cache - - - -
- -
- Loading... -
- - - - - - diff --git a/tauri_app/docker/agp-resolver/gradle.properties b/tauri_app/docker/agp-resolver/gradle.properties deleted file mode 100644 index 18825f9..0000000 --- a/tauri_app/docker/agp-resolver/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8 -android.useAndroidX=true -android.nonTransitiveRClass=true diff --git a/tauri_app/docker/agp-resolver/gradle/wrapper/gradle-wrapper.jar b/tauri_app/docker/agp-resolver/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index e708b1c..0000000 Binary files a/tauri_app/docker/agp-resolver/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/tauri_app/docker/agp-resolver/gradle/wrapper/gradle-wrapper.properties b/tauri_app/docker/agp-resolver/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index c5f9a53..0000000 --- a/tauri_app/docker/agp-resolver/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,6 +0,0 @@ -#Tue May 10 19:22:52 CST 2022 -distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip -distributionPath=wrapper/dists -zipStorePath=wrapper/dists -zipStoreBase=GRADLE_USER_HOME diff --git a/tauri_app/docker/agp-resolver/gradlew b/tauri_app/docker/agp-resolver/gradlew deleted file mode 100644 index 4f906e0..0000000 --- a/tauri_app/docker/agp-resolver/gradlew +++ /dev/null @@ -1,185 +0,0 @@ -#!/usr/bin/env sh - -# -# Copyright 2015 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -############################################################################## -## -## Gradle start up script for UN*X -## -############################################################################## - -# Attempt to set APP_HOME -# Resolve links: $0 may be a link -PRG="$0" -# Need this for relative symlinks. -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG=`dirname "$PRG"`"/$link" - fi -done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null - -APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - -# Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD="maximum" - -warn () { - echo "$*" -} - -die () { - echo - echo "$*" - echo - exit 1 -} - -# OS specific support (must be 'true' or 'false'). -cygwin=false -msys=false -darwin=false -nonstop=false -case "`uname`" in - CYGWIN* ) - cygwin=true - ;; - Darwin* ) - darwin=true - ;; - MINGW* ) - msys=true - ;; - NONSTOP* ) - nonstop=true - ;; -esac - -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar - - -# Determine the Java command to use to start the JVM. -if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" - else - JAVACMD="$JAVA_HOME/bin/java" - fi - if [ ! -x "$JAVACMD" ] ; then - die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -else - JAVACMD="java" - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." -fi - -# Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then - MAX_FD_LIMIT=`ulimit -H -n` - if [ $? -eq 0 ] ; then - if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then - MAX_FD="$MAX_FD_LIMIT" - fi - ulimit -n $MAX_FD - if [ $? -ne 0 ] ; then - warn "Could not set maximum file descriptor limit: $MAX_FD" - fi - else - warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" - fi -fi - -# For Darwin, add options to specify how the application appears in the dock -if $darwin; then - GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" -fi - -# For Cygwin or MSYS, switch paths to Windows format before running java -if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then - APP_HOME=`cygpath --path --mixed "$APP_HOME"` - CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - - JAVACMD=`cygpath --unix "$JAVACMD"` - - # We build the pattern for arguments to be converted via cygpath - ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` - SEP="" - for dir in $ROOTDIRSRAW ; do - ROOTDIRS="$ROOTDIRS$SEP$dir" - SEP="|" - done - OURCYGPATTERN="(^($ROOTDIRS))" - # Add a user-defined pattern to the cygpath arguments - if [ "$GRADLE_CYGPATTERN" != "" ] ; then - OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" - fi - # Now convert the arguments - kludge to limit ourselves to /bin/sh - i=0 - for arg in "$@" ; do - CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` - CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option - - if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition - eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` - else - eval `echo args$i`="\"$arg\"" - fi - i=`expr $i + 1` - done - case $i in - 0) set -- ;; - 1) set -- "$args0" ;; - 2) set -- "$args0" "$args1" ;; - 3) set -- "$args0" "$args1" "$args2" ;; - 4) set -- "$args0" "$args1" "$args2" "$args3" ;; - 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; - esac -fi - -# Escape application args -save () { - for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done - echo " " -} -APP_ARGS=`save "$@"` - -# Collect all arguments for the java command, following the shell quoting and substitution rules -eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" - -exec "$JAVACMD" "$@" diff --git a/tauri_app/docker/agp-resolver/gradlew.bat b/tauri_app/docker/agp-resolver/gradlew.bat deleted file mode 100644 index 107acd3..0000000 --- a/tauri_app/docker/agp-resolver/gradlew.bat +++ /dev/null @@ -1,89 +0,0 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega diff --git a/tauri_app/docker/agp-resolver/settings.gradle.kts b/tauri_app/docker/agp-resolver/settings.gradle.kts deleted file mode 100644 index 4ee8bb4..0000000 --- a/tauri_app/docker/agp-resolver/settings.gradle.kts +++ /dev/null @@ -1,16 +0,0 @@ -pluginManagement { - repositories { - google() - mavenCentral() - gradlePluginPortal() - } -} - -plugins { - id("com.android.application") version "8.11.0" apply false - id("org.jetbrains.kotlin.android") version "1.9.25" apply false -} - -rootProject.name = "agp-resolver" -include(":app") -include(":tools") diff --git a/tauri_app/docker/agp-resolver/tools/build.gradle.kts b/tauri_app/docker/agp-resolver/tools/build.gradle.kts deleted file mode 100644 index d06d306..0000000 --- a/tauri_app/docker/agp-resolver/tools/build.gradle.kts +++ /dev/null @@ -1,21 +0,0 @@ -plugins { - java -} - -repositories { - google() - mavenCentral() -} - -val agpVersion: String = providers.gradleProperty("agpVersion").orElse("8.11.0").get() - -configurations { - create("agp") - create("buildPlugins") -} - -dependencies { - add("agp", "com.android.tools.build:gradle:$agpVersion") - add("buildPlugins", "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25") - add("buildPlugins", "org.jetbrains.kotlin:kotlin-stdlib:1.9.25") -} diff --git a/tauri_app/docker/build-android-apk.sh b/tauri_app/docker/build-android-apk.sh deleted file mode 100644 index 4265c7a..0000000 --- a/tauri_app/docker/build-android-apk.sh +++ /dev/null @@ -1,77 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail - -cd /workspace - -export VITE_API_URL="${VITE_API_URL:-${PUBLIC_API_URL:-http://localhost:3000}}" -export VITE_FRONTEND_URL="${VITE_FRONTEND_URL:-${PUBLIC_FRONTEND_URL:-http://localhost:3002}}" -export ANDROID_HOME="${ANDROID_HOME:-/opt/android-sdk}" -export ANDROID_SDK_ROOT="${ANDROID_SDK_ROOT:-${ANDROID_HOME}}" -export GRADLE_USER_HOME="${GRADLE_USER_HOME:-/root/.gradle}" -export ANDROID_AGP_LOCAL_REPO="${ANDROID_AGP_LOCAL_REPO:-/opt/android-agp-maven}" - -if [ -z "${ANDROID_NDK_HOME:-}" ]; then - NDK_DIR="$(find "${ANDROID_HOME}/ndk" -mindepth 1 -maxdepth 1 -type d 2>/dev/null | sort -V | tail -n 1 || true)" - if [ -n "${NDK_DIR}" ]; then - export ANDROID_NDK_HOME="${NDK_DIR}" - export NDK_HOME="${NDK_DIR}" - fi -fi - -echo "==> Android SDK: ${ANDROID_HOME}" -echo "==> Android NDK: ${ANDROID_NDK_HOME:-не найден}" - -if [ -z "${ANDROID_NDK_HOME:-}" ] || [ ! -d "${ANDROID_NDK_HOME}" ]; then - echo "Android NDK не найден в ${ANDROID_HOME}/ndk. Используйте Android SDK image с предустановленным NDK или примонтируйте SDK с NDK." >&2 - exit 1 -fi - -mkdir -p /out - -echo "==> Проверка web-сборки tauri_app" -npm --workspace @lendry/tauri-app run build - -cd /workspace/tauri_app - -if [ -d "src-tauri/gen/android" ]; then - echo "==> Очистка предыдущего Android проекта Tauri" - rm -rf src-tauri/gen/android -fi - -echo "==> Инициализация Android проекта Tauri" -npm run android:init -- --ci || npm run android:init - -echo "==> Настройка репозиториев Gradle (Google Maven + локальный кэш AGP)" -/workspace/tauri_app/docker/patch-android-gradle-repos.sh /workspace/tauri_app/src-tauri/gen/android - -echo "==> Настройка Android SDK (offline, без загрузки platform из Google)" -/workspace/tauri_app/docker/patch-android-sdk.sh /workspace/tauri_app/src-tauri/gen/android - -echo "==> Настройка offline Gradle wrapper (если bundled zip доступен)" -/workspace/tauri_app/docker/install-offline-gradle.sh /workspace/tauri_app/src-tauri/gen/android - -echo "==> Подготовка keystore для release-подписи APK" -/workspace/tauri_app/docker/ensure-android-keystore.sh -/workspace/tauri_app/docker/patch-android-signing.sh /workspace/tauri_app/src-tauri/gen/android - -echo "==> Сборка Android APK (release, signed)" -npm run tauri -- android build --apk - -APK_PATH="$(find /workspace/tauri_app/src-tauri/gen/android -type f -name '*release*.apk' ! -name '*unsigned*' | sort | tail -n 1 || true)" -if [[ -z "${APK_PATH}" ]]; then - APK_PATH="$(find /workspace/tauri_app/src-tauri/gen/android -type f -name '*.apk' ! -name '*unsigned*' | sort | tail -n 1 || true)" -fi - -if [ -z "${APK_PATH}" ] || [ ! -f "${APK_PATH}" ]; then - echo "APK не найден после сборки" >&2 - find /workspace/tauri_app/src-tauri/gen/android -maxdepth 8 -type f -name '*.apk' | sort >&2 || true - exit 1 -fi - -/workspace/tauri_app/docker/verify-apk-signature.sh "${APK_PATH}" - -cp "${APK_PATH}" /out/lendry-id.apk -chmod 0644 /out/lendry-id.apk - -echo "==> APK готов: /out/lendry-id.apk" -ls -lh /out/lendry-id.apk diff --git a/tauri_app/docker/ensure-android-keystore.sh b/tauri_app/docker/ensure-android-keystore.sh deleted file mode 100644 index 7cb268d..0000000 --- a/tauri_app/docker/ensure-android-keystore.sh +++ /dev/null @@ -1,145 +0,0 @@ -#!/usr/bin/env bash -# Создаёт и проверяет release keystore для подписи APK. -set -euo pipefail - -SECRETS_DIR="${ANDROID_SECRETS_DIR:-/workspace/tauri_app/.secrets}" -KEYSTORE_FILE="${ANDROID_KEYSTORE_FILE:-${SECRETS_DIR}/lendry-id-release.keystore}" -KEY_ALIAS="${ANDROID_KEY_ALIAS:-lendry-id}" -CREDENTIALS_FILE="${SECRETS_DIR}/signing-credentials.env" -KEYSTORE_PROPS_TEMPLATE="${SECRETS_DIR}/keystore.properties.template" -FORCE_REGENERATE="${ANDROID_KEYSTORE_FORCE_REGENERATE:-0}" - -mkdir -p "${SECRETS_DIR}" -chmod 700 "${SECRETS_DIR}" || true - -read_credentials() { - STORE_PASSWORD="" - KEY_PASSWORD="" - if [[ -f "${CREDENTIALS_FILE}" ]]; then - # shellcheck disable=SC1090 - source "${CREDENTIALS_FILE}" - STORE_PASSWORD="${ANDROID_KEYSTORE_PASSWORD:-}" - KEY_PASSWORD="${ANDROID_KEY_PASSWORD:-${ANDROID_KEYSTORE_PASSWORD:-}}" - elif [[ -f "${KEYSTORE_PROPS_TEMPLATE}" ]]; then - STORE_PASSWORD="$(grep -E '^storePassword=' "${KEYSTORE_PROPS_TEMPLATE}" | head -n1 | cut -d= -f2- || true)" - KEY_PASSWORD="$(grep -E '^keyPassword=' "${KEYSTORE_PROPS_TEMPLATE}" | head -n1 | cut -d= -f2- || true)" - KEY_PASSWORD="${KEY_PASSWORD:-${STORE_PASSWORD}}" - fi -} - -write_credentials_files() { - local password="$1" - - cat > "${CREDENTIALS_FILE}" < "${KEYSTORE_PROPS_TEMPLATE}" </dev/null 2>&1 || return 1 - - # Для JKS/PKCS12 у Gradle storePassword и keyPassword должны совпадать. - if [[ "${key_password}" != "${store_password}" ]]; then - return 1 - fi - - return 0 -} - -backup_broken_keystore() { - local backup_dir="${SECRETS_DIR}/backup-$(date +%Y%m%d-%H%M%S)" - mkdir -p "${backup_dir}" - for file in "${KEYSTORE_FILE}" "${CREDENTIALS_FILE}" "${KEYSTORE_PROPS_TEMPLATE}"; do - if [[ -f "${file}" ]]; then - cp "${file}" "${backup_dir}/" - fi - done - echo "==> Старые файлы подписи сохранены в ${backup_dir}" -} - -gen_secret() { - if command -v openssl >/dev/null 2>&1; then - openssl rand -hex 16 - else - date +%s%N | sha256sum | awk '{print substr($1,1,32)}' - fi -} - -create_keystore() { - local password="$1" - - if ! command -v keytool >/dev/null 2>&1; then - echo "keytool не найден — нужен JDK для генерации keystore" >&2 - exit 1 - fi - - rm -f "${KEYSTORE_FILE}" - - echo "==> Генерация release keystore для подписи APK..." - # JKS + один пароль — максимально совместимо с Android Gradle signing. - keytool -genkeypair -v \ - -storetype JKS \ - -keystore "${KEYSTORE_FILE}" \ - -alias "${KEY_ALIAS}" \ - -keyalg RSA \ - -keysize 2048 \ - -validity 10000 \ - -storepass "${password}" \ - -keypass "${password}" \ - -dname "CN=Lendry ID, OU=Mobile, O=Lendry, C=RU" - - chmod 600 "${KEYSTORE_FILE}" || true - write_credentials_files "${password}" - - echo "==> Keystore создан: ${KEYSTORE_FILE}" - echo "==> Пароли сохранены: ${CREDENTIALS_FILE}" -} - -if [[ "${FORCE_REGENERATE}" == "1" && -f "${KEYSTORE_FILE}" ]]; then - backup_broken_keystore - rm -f "${KEYSTORE_FILE}" "${CREDENTIALS_FILE}" "${KEYSTORE_PROPS_TEMPLATE}" -fi - -if [[ -f "${KEYSTORE_FILE}" ]]; then - read_credentials - if validate_keystore "${STORE_PASSWORD}" "${KEY_PASSWORD}"; then - write_credentials_files "${STORE_PASSWORD}" - echo "==> Android keystore проверен: ${KEYSTORE_FILE}" - exit 0 - fi - - echo "==> Keystore повреждён или пароли не совпадают — пересоздаём release keystore" >&2 - backup_broken_keystore - rm -f "${KEYSTORE_FILE}" "${CREDENTIALS_FILE}" "${KEYSTORE_PROPS_TEMPLATE}" -fi - -create_keystore "$(gen_secret)" - -if ! validate_keystore "$(grep -E '^storePassword=' "${KEYSTORE_PROPS_TEMPLATE}" | cut -d= -f2-)" "$(grep -E '^keyPassword=' "${KEYSTORE_PROPS_TEMPLATE}" | cut -d= -f2-)"; then - echo "Не удалось проверить только что созданный keystore" >&2 - exit 1 -fi - -echo "==> Keystore успешно создан и проверен" diff --git a/tauri_app/docker/ensure-tauri-androidx-offline.sh b/tauri_app/docker/ensure-tauri-androidx-offline.sh deleted file mode 100644 index 76d48aa..0000000 --- a/tauri_app/docker/ensure-tauri-androidx-offline.sh +++ /dev/null @@ -1,122 +0,0 @@ -#!/usr/bin/env bash -# Download AndroidX artifacts required by Tauri offline APK builds but missed by Gradle export -# (metadata POMs, version aliases, legacy lifecycle lines). -set -euo pipefail - -ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" -OFFLINE="${ROOT}/docker/offline-maven" - -if [ ! -d "${OFFLINE}" ]; then - echo "Offline Maven dir not found: ${OFFLINE}" >&2 - exit 1 -fi - -MAVEN_BASES=( - "https://dl.google.com/dl/android/maven2" - "https://dl.google.com/android/maven2" - "https://maven.google.com" -) - -# group:artifact:version — from Tauri universalReleaseRuntimeClasspath resolution. -REQUIRED=( - "androidx.annotation:annotation:1.9.1" - "androidx.annotation:annotation-jvm:1.9.1" - "androidx.emoji2:emoji2:1.2.0" - "androidx.emoji2:emoji2-views-helper:1.2.0" - "androidx.emoji2:emoji2:1.3.0" - "androidx.emoji2:emoji2-views-helper:1.3.0" - "androidx.lifecycle:lifecycle-runtime:2.10.0" - "androidx.lifecycle:lifecycle-runtime-android:2.10.0" - "androidx.lifecycle:lifecycle-viewmodel:2.6.1" - "androidx.lifecycle:lifecycle-viewmodel:2.10.0" - "androidx.lifecycle:lifecycle-viewmodel-android:2.10.0" - "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1" - "androidx.lifecycle:lifecycle-viewmodel-ktx:2.10.0" - "androidx.lifecycle:lifecycle-runtime-ktx:2.6.1" - "androidx.lifecycle:lifecycle-runtime-ktx:2.10.0" - "androidx.lifecycle:lifecycle-runtime-ktx-android:2.10.0" - "androidx.lifecycle:lifecycle-common:2.6.1" - "androidx.lifecycle:lifecycle-common:2.10.0" - "androidx.lifecycle:lifecycle-common-jvm:2.6.1" - "androidx.lifecycle:lifecycle-common-jvm:2.10.0" - "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1" - "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.10.0" - "androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.10.0" - "androidx.lifecycle:lifecycle-livedata-core:2.5.1" - "androidx.lifecycle:lifecycle-livedata-core:2.10.0" - "androidx.lifecycle:lifecycle-livedata:2.0.0" - "androidx.lifecycle:lifecycle-livedata:2.10.0" - "androidx.savedstate:savedstate:1.2.1" - "androidx.savedstate:savedstate:1.4.0" - "androidx.savedstate:savedstate-android:1.2.1" - "androidx.savedstate:savedstate-android:1.4.0" - "androidx.savedstate:savedstate-ktx:1.2.1" - "androidx.savedstate:savedstate-ktx:1.4.0" -) - -download_file() { - local url="$1" - local dest="$2" - mkdir -p "$(dirname "${dest}")" - curl -fsSL --connect-timeout 20 --max-time 120 "${url}" -o "${dest}" -} - -try_download_ext() { - local group="$1" - local artifact="$2" - local version="$3" - local ext="$4" - local group_path="${group//./\/}" - local dest="${OFFLINE}/${group_path}/${artifact}/${version}/${artifact}-${version}.${ext}" - - if [ -f "${dest}" ] && [ -s "${dest}" ]; then - return 0 - fi - - for base in "${MAVEN_BASES[@]}"; do - local url="${base}/${group_path}/${artifact}/${version}/${artifact}-${version}.${ext}" - if download_file "${url}" "${dest}" 2>/dev/null && [ -s "${dest}" ]; then - echo " + ${group}:${artifact}:${version}.${ext}" - return 0 - fi - rm -f "${dest}" - done - return 1 -} - -ensure_coordinate() { - local spec="$1" - IFS=':' read -r group artifact version <<< "${spec}" - local got=0 - for ext in pom module aar jar; do - if try_download_ext "${group}" "${artifact}" "${version}" "${ext}"; then - got=1 - fi - done - if [ "${got}" -eq 0 ]; then - echo "WARN: nothing downloaded for ${spec}" >&2 - fi -} - -echo "==> Ensuring Tauri-required AndroidX artifacts in ${OFFLINE}" -for spec in "${REQUIRED[@]}"; do - echo "-- ${spec}" - ensure_coordinate "${spec}" -done - -required_files=( - "${OFFLINE}/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom" - "${OFFLINE}/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.pom" - "${OFFLINE}/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.pom" - "${OFFLINE}/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.pom" - "${OFFLINE}/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.pom" -) - -for file in "${required_files[@]}"; do - if [ ! -f "${file}" ]; then - echo "Missing required file after ensure: ${file}" >&2 - exit 1 - fi -done - -echo "==> Tauri AndroidX ensure complete" diff --git a/tauri_app/docker/install-offline-gradle.sh b/tauri_app/docker/install-offline-gradle.sh deleted file mode 100644 index eccf2c6..0000000 --- a/tauri_app/docker/install-offline-gradle.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env bash -# Use bundled Gradle wrapper distribution when available (offline LAN builds). -set -euo pipefail - -ANDROID_GEN="${1:-/workspace/tauri_app/src-tauri/gen/android}" -GRADLE_VERSION="${GRADLE_VERSION:-8.14.3}" - -for candidate in \ - "/opt/offline-gradle/gradle-${GRADLE_VERSION}-bin.zip" \ - "/workspace/tauri_app/docker/offline-gradle/gradle-${GRADLE_VERSION}-bin.zip"; do - if [ -f "${candidate}" ]; then - BUNDLED_ZIP="${candidate}" - break - fi -done - -WRAPPER_PROPS="${ANDROID_GEN}/gradle/wrapper/gradle-wrapper.properties" -if [ -z "${BUNDLED_ZIP:-}" ] || [ ! -f "${WRAPPER_PROPS}" ]; then - echo "==> Bundled Gradle ${GRADLE_VERSION} not found, wrapper will use default distributionUrl" - exit 0 -fi - -OFFLINE_ZIP="/opt/offline-gradle/gradle-${GRADLE_VERSION}-bin.zip" -mkdir -p /opt/offline-gradle -if [ "${BUNDLED_ZIP}" != "${OFFLINE_ZIP}" ]; then - cp "${BUNDLED_ZIP}" "${OFFLINE_ZIP}" -fi - -sed -i "s|^distributionUrl=.*|distributionUrl=file\\:/opt/offline-gradle/gradle-${GRADLE_VERSION}-bin.zip|" "${WRAPPER_PROPS}" -echo "==> Gradle wrapper patched to offline file distribution (${OFFLINE_ZIP})" diff --git a/tauri_app/docker/offline-gradle/.gitignore b/tauri_app/docker/offline-gradle/.gitignore deleted file mode 100644 index c4c4ffc..0000000 --- a/tauri_app/docker/offline-gradle/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.zip diff --git a/tauri_app/docker/offline-maven/.agp-offline-complete b/tauri_app/docker/offline-maven/.agp-offline-complete deleted file mode 100644 index 75fddb9..0000000 --- a/tauri_app/docker/offline-maven/.agp-offline-complete +++ /dev/null @@ -1,2 +0,0 @@ -agpVersion=8.11.0 -modules=215 diff --git a/tauri_app/docker/offline-maven/.android-deps-offline-complete b/tauri_app/docker/offline-maven/.android-deps-offline-complete deleted file mode 100644 index 473d501..0000000 --- a/tauri_app/docker/offline-maven/.android-deps-offline-complete +++ /dev/null @@ -1 +0,0 @@ -modules=215 diff --git a/tauri_app/docker/offline-maven/androidx/activity/activity-ktx/1.10.1/activity-ktx-1.10.1.aar b/tauri_app/docker/offline-maven/androidx/activity/activity-ktx/1.10.1/activity-ktx-1.10.1.aar deleted file mode 100644 index 8037904..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/activity/activity-ktx/1.10.1/activity-ktx-1.10.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/activity/activity-ktx/1.10.1/activity-ktx-1.10.1.pom b/tauri_app/docker/offline-maven/androidx/activity/activity-ktx/1.10.1/activity-ktx-1.10.1.pom deleted file mode 100644 index 6a9dfc6..0000000 --- a/tauri_app/docker/offline-maven/androidx/activity/activity-ktx/1.10.1/activity-ktx-1.10.1.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - 4.0.0 - androidx.activity - activity-ktx - 1.10.1 - aar - Activity Kotlin Extensions - Kotlin extensions for 'activity' artifact - https://developer.android.com/jetpack/androidx/releases/activity#1.10.1 - 2018 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.activity - activity - 1.10.1 - - - androidx.activity - activity-compose - 1.10.1 - - - - - - androidx.activity - activity - [1.10.1] - compile - aar - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.6.1 - compile - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.6.1 - compile - aar - - - androidx.savedstate - savedstate-ktx - 1.2.1 - compile - aar - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/activity/activity/1.10.1/activity-1.10.1.aar b/tauri_app/docker/offline-maven/androidx/activity/activity/1.10.1/activity-1.10.1.aar deleted file mode 100644 index 1b0aaaa..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/activity/activity/1.10.1/activity-1.10.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/activity/activity/1.10.1/activity-1.10.1.pom b/tauri_app/docker/offline-maven/androidx/activity/activity/1.10.1/activity-1.10.1.pom deleted file mode 100644 index 60dc057..0000000 --- a/tauri_app/docker/offline-maven/androidx/activity/activity/1.10.1/activity-1.10.1.pom +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - 4.0.0 - androidx.activity - activity - 1.10.1 - aar - Activity - Provides the base Activity subclass and the relevant hooks to build a composable structure on top. - https://developer.android.com/jetpack/androidx/releases/activity#1.10.1 - 2018 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.activity - activity-compose - 1.10.1 - - - androidx.activity - activity-ktx - 1.10.1 - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.22 - - - - - - androidx.annotation - annotation - 1.8.1 - compile - - - androidx.core - core-ktx - 1.13.0 - compile - aar - - - androidx.core - core-viewtree - 1.0.0 - compile - aar - - - androidx.lifecycle - lifecycle-common - 2.6.1 - compile - - - androidx.lifecycle - lifecycle-runtime - 2.6.1 - compile - - - androidx.lifecycle - lifecycle-viewmodel - 2.6.1 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - compile - - - androidx.savedstate - savedstate - 1.2.1 - compile - - - androidx.tracing - tracing - 1.0.0 - runtime - aar - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.6.1 - compile - - - androidx.profileinstaller - profileinstaller - 1.4.0 - runtime - aar - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.7.3 - runtime - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation-experimental/1.4.1/annotation-experimental-1.4.1.aar b/tauri_app/docker/offline-maven/androidx/annotation/annotation-experimental/1.4.1/annotation-experimental-1.4.1.aar deleted file mode 100644 index 1fcbb8f..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/annotation/annotation-experimental/1.4.1/annotation-experimental-1.4.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation-experimental/1.4.1/annotation-experimental-1.4.1.pom b/tauri_app/docker/offline-maven/androidx/annotation/annotation-experimental/1.4.1/annotation-experimental-1.4.1.pom deleted file mode 100644 index 454cb6b..0000000 --- a/tauri_app/docker/offline-maven/androidx/annotation/annotation-experimental/1.4.1/annotation-experimental-1.4.1.pom +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - 4.0.0 - androidx.annotation - annotation-experimental - 1.4.1 - aar - Experimental annotation - Java annotation for use on unstable Android API surfaces. When used in conjunction with the Experimental annotation lint checks, this annotation provides functional parity with Kotlin's Experimental annotation. - https://developer.android.com/jetpack/androidx/releases/annotation#1.4.1 - 2019 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - org.jetbrains.kotlin - kotlin-stdlib - 1.7.10 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.jar b/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.jar deleted file mode 100644 index 819381c..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.module b/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.module deleted file mode 100644 index 4d082e4..0000000 --- a/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.module +++ /dev/null @@ -1,102 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "url": "../../annotation/1.9.1/annotation-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation", - "version": "1.9.1", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "8.10" - } - }, - "variants": [ - { - "name": "jvmApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.9.24" - } - } - ], - "files": [ - { - "name": "annotation-jvm-1.9.1.jar", - "url": "annotation-jvm-1.9.1.jar", - "size": 60577, - "sha512": "ee8cceeb09d0231f6de4015f078e8cb0805de6faf383a9653d5f3763c43bb137e5346c2b177972b1f70d2f648f6f32047051c0f3183bdb50dc01de41931f265a", - "sha256": "1e343917ebf27ba96fe4dc52b1cad7fd32b738fbc6355bb6cd5b3b305d7212d0", - "sha1": "b17951747e38bf3986a24431b9ba0d039958aa5f", - "md5": "01d6a04b3b9847638d000529df8ef76a" - } - ] - }, - { - "name": "jvmRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.9.24" - } - } - ], - "files": [ - { - "name": "annotation-jvm-1.9.1.jar", - "url": "annotation-jvm-1.9.1.jar", - "size": 60577, - "sha512": "ee8cceeb09d0231f6de4015f078e8cb0805de6faf383a9653d5f3763c43bb137e5346c2b177972b1f70d2f648f6f32047051c0f3183bdb50dc01de41931f265a", - "sha256": "1e343917ebf27ba96fe4dc52b1cad7fd32b738fbc6355bb6cd5b3b305d7212d0", - "sha1": "b17951747e38bf3986a24431b9ba0d039958aa5f", - "md5": "01d6a04b3b9847638d000529df8ef76a" - } - ] - }, - { - "name": "jvmSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "files": [ - { - "name": "annotation-jvm-1.9.1-sources.jar", - "url": "annotation-jvm-1.9.1-sources.jar", - "size": 71470, - "sha512": "5759f4ec9a371e59e83971070101aa8f97f1ac74ecb13198180323c42bdfa556809fe63acaddce38cb856f0ff1e422d61d230d22b52eaa3c6c0b63dfa9a48e2b", - "sha256": "c6ae897fbfb73ca09d4ae31a24bfff85c652097ad10644cdbb738488728cb39b", - "sha1": "865f245e3c1d595a6b9ae80e622a94907abc58d5", - "md5": "66f6afff7400acfe9945d6fbcd957f74" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.pom b/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.pom deleted file mode 100644 index 54c2493..0000000 --- a/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - 4.0.0 - androidx.annotation - annotation-jvm - 1.9.1 - Annotation - Provides source annotations for tooling and readability. - https://developer.android.com/jetpack/androidx/releases/annotation#1.9.1 - 2013 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.24 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.jar b/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.jar deleted file mode 100644 index 94173cf..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.module b/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.module deleted file mode 100644 index 7ead07e..0000000 --- a/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.module +++ /dev/null @@ -1,1179 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.annotation", - "module": "annotation", - "version": "1.9.1", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "8.10" - } - }, - "variants": [ - { - "name": "androidxSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "androidx-multiplatform-docs" - }, - "files": [ - { - "name": "annotation-1.9.1-multiplatform-sources.jar", - "url": "annotation-1.9.1-multiplatform-sources.jar", - "size": 73772, - "sha512": "cdf94982015c1dbe99472b10a7039beb61d8d47a3d490ea0a4faa9948708f07bd1be7c4af0755f097da2ff1b46ffe1d550f813593d38e2abea3e297fe609b451", - "sha256": "3dd5ee2422da3c6a9dc7ad73f01eefc6d9108ecbf564ab46337eaf01a7cd95c6", - "sha1": "377915fe6725629718ef858d38e2c1558763cc4f", - "md5": "eedc0424355b8d56400b3b96a477087b" - } - ] - }, - { - "name": "libraryVersionMetadata", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.usage": "library-version-metadata" - }, - "files": [ - { - "name": "apiLevels.json", - "url": "annotation-1.9.1-versionMetadata.json", - "size": 10678, - "sha512": "8068e9a0ce4ace1bb9ba4c302fd45b7546313644a7e8c58bdf571f0dd776494364e801b75090cc012f1ad9c680c228bb50e615b9dbb6ad1fdb24295ca6fad483", - "sha256": "0d299e1d6c95aff40ec427fe226b7a8b933281290f346ff4f9775fa4c5e154ad", - "sha1": "05d6ccae4c93baf5c027134ddb15bc84aa9b7a50", - "md5": "cdd620d5481a9de4a8c8c5ff958579b6" - } - ] - }, - { - "name": "metadataApiElements", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.platform.type": "common" - }, - "dependencies": [ - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.9.24" - } - } - ], - "files": [ - { - "name": "annotation-metadata-1.9.1.jar", - "url": "annotation-1.9.1.jar", - "size": 11586, - "sha512": "fdcb6e124953fb18ae1cda4f8860fb1f062be5659a2a215f663068cd8c835b5efcb24805f94c26d37dc874de60cf0a8aaed8e595978529b797b282687429ca8f", - "sha256": "38322afa7345c37e29c65ec8852178ae1c26e23096a0634d07a4a3893931f58c", - "sha1": "7d1eff28a93c44697d9706b0b5fd63b8f50b034b", - "md5": "610bb43ec63a18c0ea167a330e7734f6" - } - ] - }, - { - "name": "metadataSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "common" - }, - "files": [ - { - "name": "annotation-kotlin-1.9.1-sources.jar", - "url": "annotation-1.9.1-sources.jar", - "size": 29195, - "sha512": "8bd77064aaa1e079a45f982fbdc5565a3efc3e26adc66363146de279087e27afc1e62f188fe6c0d82da585ab05f651f77f70d6db26dac9bbd0718efc1d57813d", - "sha256": "4560d6790c5174f4a6f1170fd8bd4c38ad918608fedd624fb67a35cd1a0f4e3a", - "sha1": "b4b206cb9f956d7abf27fd8c95ec1f6dcdc5a4d6", - "md5": "9772cec615ad89e9be417ed0522b41e6" - } - ] - }, - { - "name": "androidNativeArm32ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "android_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-androidnativearm32/1.9.1/annotation-androidnativearm32-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-androidnativearm32", - "version": "1.9.1" - } - }, - { - "name": "androidNativeArm32SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "android_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-androidnativearm32/1.9.1/annotation-androidnativearm32-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-androidnativearm32", - "version": "1.9.1" - } - }, - { - "name": "androidNativeArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "android_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-androidnativearm64/1.9.1/annotation-androidnativearm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-androidnativearm64", - "version": "1.9.1" - } - }, - { - "name": "androidNativeArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "android_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-androidnativearm64/1.9.1/annotation-androidnativearm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-androidnativearm64", - "version": "1.9.1" - } - }, - { - "name": "androidNativeX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "android_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-androidnativex64/1.9.1/annotation-androidnativex64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-androidnativex64", - "version": "1.9.1" - } - }, - { - "name": "androidNativeX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "android_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-androidnativex64/1.9.1/annotation-androidnativex64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-androidnativex64", - "version": "1.9.1" - } - }, - { - "name": "androidNativeX86ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "android_x86", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-androidnativex86/1.9.1/annotation-androidnativex86-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-androidnativex86", - "version": "1.9.1" - } - }, - { - "name": "androidNativeX86SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "android_x86", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-androidnativex86/1.9.1/annotation-androidnativex86-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-androidnativex86", - "version": "1.9.1" - } - }, - { - "name": "iosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-iosarm64/1.9.1/annotation-iosarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-iosarm64", - "version": "1.9.1" - } - }, - { - "name": "iosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-iosarm64/1.9.1/annotation-iosarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-iosarm64", - "version": "1.9.1" - } - }, - { - "name": "iosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-iosarm64/1.9.1/annotation-iosarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-iosarm64", - "version": "1.9.1" - } - }, - { - "name": "iosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-iossimulatorarm64/1.9.1/annotation-iossimulatorarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-iossimulatorarm64", - "version": "1.9.1" - } - }, - { - "name": "iosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-iossimulatorarm64/1.9.1/annotation-iossimulatorarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-iossimulatorarm64", - "version": "1.9.1" - } - }, - { - "name": "iosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-iossimulatorarm64/1.9.1/annotation-iossimulatorarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-iossimulatorarm64", - "version": "1.9.1" - } - }, - { - "name": "iosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-iosx64/1.9.1/annotation-iosx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-iosx64", - "version": "1.9.1" - } - }, - { - "name": "iosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-iosx64/1.9.1/annotation-iosx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-iosx64", - "version": "1.9.1" - } - }, - { - "name": "iosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-iosx64/1.9.1/annotation-iosx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-iosx64", - "version": "1.9.1" - } - }, - { - "name": "jsApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../annotation-js/1.9.1/annotation-js-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-js", - "version": "1.9.1" - } - }, - { - "name": "jsRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../annotation-js/1.9.1/annotation-js-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-js", - "version": "1.9.1" - } - }, - { - "name": "jsSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../annotation-js/1.9.1/annotation-js-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-js", - "version": "1.9.1" - } - }, - { - "name": "jvmApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../annotation-jvm/1.9.1/annotation-jvm-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-jvm", - "version": "1.9.1" - } - }, - { - "name": "jvmRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../annotation-jvm/1.9.1/annotation-jvm-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-jvm", - "version": "1.9.1" - } - }, - { - "name": "jvmSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../annotation-jvm/1.9.1/annotation-jvm-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-jvm", - "version": "1.9.1" - } - }, - { - "name": "linuxArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "linux_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-linuxarm64/1.9.1/annotation-linuxarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-linuxarm64", - "version": "1.9.1" - } - }, - { - "name": "linuxArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "linux_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-linuxarm64/1.9.1/annotation-linuxarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-linuxarm64", - "version": "1.9.1" - } - }, - { - "name": "linuxX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "linux_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-linuxx64/1.9.1/annotation-linuxx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-linuxx64", - "version": "1.9.1" - } - }, - { - "name": "linuxX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "linux_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-linuxx64/1.9.1/annotation-linuxx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-linuxx64", - "version": "1.9.1" - } - }, - { - "name": "macosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-macosarm64/1.9.1/annotation-macosarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-macosarm64", - "version": "1.9.1" - } - }, - { - "name": "macosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-macosarm64/1.9.1/annotation-macosarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-macosarm64", - "version": "1.9.1" - } - }, - { - "name": "macosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-macosarm64/1.9.1/annotation-macosarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-macosarm64", - "version": "1.9.1" - } - }, - { - "name": "macosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-macosx64/1.9.1/annotation-macosx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-macosx64", - "version": "1.9.1" - } - }, - { - "name": "macosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-macosx64/1.9.1/annotation-macosx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-macosx64", - "version": "1.9.1" - } - }, - { - "name": "macosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-macosx64/1.9.1/annotation-macosx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-macosx64", - "version": "1.9.1" - } - }, - { - "name": "mingwX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "mingw_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-mingwx64/1.9.1/annotation-mingwx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-mingwx64", - "version": "1.9.1" - } - }, - { - "name": "mingwX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "mingw_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-mingwx64/1.9.1/annotation-mingwx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-mingwx64", - "version": "1.9.1" - } - }, - { - "name": "tvosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-tvosarm64/1.9.1/annotation-tvosarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-tvosarm64", - "version": "1.9.1" - } - }, - { - "name": "tvosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-tvosarm64/1.9.1/annotation-tvosarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-tvosarm64", - "version": "1.9.1" - } - }, - { - "name": "tvosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-tvosarm64/1.9.1/annotation-tvosarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-tvosarm64", - "version": "1.9.1" - } - }, - { - "name": "tvosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-tvossimulatorarm64/1.9.1/annotation-tvossimulatorarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-tvossimulatorarm64", - "version": "1.9.1" - } - }, - { - "name": "tvosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-tvossimulatorarm64/1.9.1/annotation-tvossimulatorarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-tvossimulatorarm64", - "version": "1.9.1" - } - }, - { - "name": "tvosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-tvossimulatorarm64/1.9.1/annotation-tvossimulatorarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-tvossimulatorarm64", - "version": "1.9.1" - } - }, - { - "name": "tvosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-tvosx64/1.9.1/annotation-tvosx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-tvosx64", - "version": "1.9.1" - } - }, - { - "name": "tvosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-tvosx64/1.9.1/annotation-tvosx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-tvosx64", - "version": "1.9.1" - } - }, - { - "name": "tvosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-tvosx64/1.9.1/annotation-tvosx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-tvosx64", - "version": "1.9.1" - } - }, - { - "name": "wasmJsApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../annotation-wasm-js/1.9.1/annotation-wasm-js-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-wasm-js", - "version": "1.9.1" - } - }, - { - "name": "wasmJsRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../annotation-wasm-js/1.9.1/annotation-wasm-js-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-wasm-js", - "version": "1.9.1" - } - }, - { - "name": "wasmJsSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../annotation-wasm-js/1.9.1/annotation-wasm-js-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-wasm-js", - "version": "1.9.1" - } - }, - { - "name": "watchosArm32ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchosarm32/1.9.1/annotation-watchosarm32-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchosarm32", - "version": "1.9.1" - } - }, - { - "name": "watchosArm32SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchosarm32/1.9.1/annotation-watchosarm32-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchosarm32", - "version": "1.9.1" - } - }, - { - "name": "watchosArm32MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchosarm32/1.9.1/annotation-watchosarm32-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchosarm32", - "version": "1.9.1" - } - }, - { - "name": "watchosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchosarm64/1.9.1/annotation-watchosarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchosarm64", - "version": "1.9.1" - } - }, - { - "name": "watchosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchosarm64/1.9.1/annotation-watchosarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchosarm64", - "version": "1.9.1" - } - }, - { - "name": "watchosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchosarm64/1.9.1/annotation-watchosarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchosarm64", - "version": "1.9.1" - } - }, - { - "name": "watchosDeviceArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchosdevicearm64/1.9.1/annotation-watchosdevicearm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchosdevicearm64", - "version": "1.9.1" - } - }, - { - "name": "watchosDeviceArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchosdevicearm64/1.9.1/annotation-watchosdevicearm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchosdevicearm64", - "version": "1.9.1" - } - }, - { - "name": "watchosDeviceArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchosdevicearm64/1.9.1/annotation-watchosdevicearm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchosdevicearm64", - "version": "1.9.1" - } - }, - { - "name": "watchosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchossimulatorarm64/1.9.1/annotation-watchossimulatorarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchossimulatorarm64", - "version": "1.9.1" - } - }, - { - "name": "watchosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchossimulatorarm64/1.9.1/annotation-watchossimulatorarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchossimulatorarm64", - "version": "1.9.1" - } - }, - { - "name": "watchosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchossimulatorarm64/1.9.1/annotation-watchossimulatorarm64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchossimulatorarm64", - "version": "1.9.1" - } - }, - { - "name": "watchosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchosx64/1.9.1/annotation-watchosx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchosx64", - "version": "1.9.1" - } - }, - { - "name": "watchosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchosx64/1.9.1/annotation-watchosx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchosx64", - "version": "1.9.1" - } - }, - { - "name": "watchosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../annotation-watchosx64/1.9.1/annotation-watchosx64-1.9.1.module", - "group": "androidx.annotation", - "module": "annotation-watchosx64", - "version": "1.9.1" - } - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom b/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom deleted file mode 100644 index e4d6ed1..0000000 --- a/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - 4.0.0 - androidx.annotation - annotation - 1.9.1 - Annotation - Provides source annotations for tooling and readability. - https://developer.android.com/jetpack/androidx/releases/annotation#1.9.1 - 2013 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.24 - runtime - - - androidx.annotation - annotation-jvm - 1.9.1 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/appcompat/appcompat-resources/1.7.1/appcompat-resources-1.7.1.aar b/tauri_app/docker/offline-maven/androidx/appcompat/appcompat-resources/1.7.1/appcompat-resources-1.7.1.aar deleted file mode 100644 index 2908631..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/appcompat/appcompat-resources/1.7.1/appcompat-resources-1.7.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/appcompat/appcompat-resources/1.7.1/appcompat-resources-1.7.1.pom b/tauri_app/docker/offline-maven/androidx/appcompat/appcompat-resources/1.7.1/appcompat-resources-1.7.1.pom deleted file mode 100644 index 0fe1e34..0000000 --- a/tauri_app/docker/offline-maven/androidx/appcompat/appcompat-resources/1.7.1/appcompat-resources-1.7.1.pom +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - 4.0.0 - androidx.appcompat - appcompat-resources - 1.7.1 - aar - AppCompat Resources - Provides backward-compatible implementations of resource-related Android SDKfunctionality, including color state list theming. - https://developer.android.com/jetpack/androidx/releases/appcompat#1.7.1 - 2019 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.appcompat - appcompat - 1.7.1 - - - - - - androidx.annotation - annotation - 1.2.0 - compile - - - androidx.collection - collection - 1.0.0 - runtime - - - androidx.core - core - 1.6.0 - compile - aar - - - androidx.vectordrawable - vectordrawable - 1.1.0 - compile - aar - - - androidx.vectordrawable - vectordrawable-animated - 1.1.0 - compile - aar - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.aar b/tauri_app/docker/offline-maven/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.aar deleted file mode 100644 index f21941f..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.pom b/tauri_app/docker/offline-maven/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.pom deleted file mode 100644 index ef64db2..0000000 --- a/tauri_app/docker/offline-maven/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - 4.0.0 - androidx.appcompat - appcompat - 1.7.1 - aar - AppCompat - Provides backwards-compatible implementations of UI-related Android SDK functionality, including dark mode and Material theming. - https://developer.android.com/jetpack/androidx/releases/appcompat#1.7.1 - 2011 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.appcompat - appcompat-resources - 1.7.1 - - - - - - androidx.activity - activity - 1.8.0 - compile - aar - - - androidx.annotation - annotation - 1.3.0 - compile - - - androidx.appcompat - appcompat-resources - [1.7.1] - compile - aar - - - androidx.collection - collection - 1.0.0 - runtime - - - androidx.core - core - 1.13.0 - compile - aar - - - androidx.core - core-ktx - 1.13.0 - runtime - aar - - - androidx.cursoradapter - cursoradapter - 1.0.0 - compile - aar - - - androidx.drawerlayout - drawerlayout - 1.0.0 - compile - aar - - - androidx.emoji2 - emoji2 - 1.3.0 - runtime - aar - - - androidx.emoji2 - emoji2-views-helper - 1.2.0 - runtime - aar - - - androidx.fragment - fragment - 1.5.4 - compile - aar - - - androidx.lifecycle - lifecycle-runtime - 2.6.1 - runtime - - - androidx.lifecycle - lifecycle-viewmodel - 2.6.1 - runtime - - - androidx.profileinstaller - profileinstaller - 1.3.1 - runtime - aar - - - androidx.resourceinspection - resourceinspection-annotation - 1.0.1 - runtime - - - androidx.savedstate - savedstate - 1.2.1 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.22 - runtime - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/arch/core/core-common/2.2.0/core-common-2.2.0.jar b/tauri_app/docker/offline-maven/androidx/arch/core/core-common/2.2.0/core-common-2.2.0.jar deleted file mode 100644 index b2efafc..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/arch/core/core-common/2.2.0/core-common-2.2.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/arch/core/core-common/2.2.0/core-common-2.2.0.pom b/tauri_app/docker/offline-maven/androidx/arch/core/core-common/2.2.0/core-common-2.2.0.pom deleted file mode 100644 index bd76839..0000000 --- a/tauri_app/docker/offline-maven/androidx/arch/core/core-common/2.2.0/core-common-2.2.0.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - 4.0.0 - androidx.arch.core - core-common - 2.2.0 - Android Arch-Common - Android Arch-Common - https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0 - 2017 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - androidx.annotation - annotation - 1.1.0 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/arch/core/core-runtime/2.2.0/core-runtime-2.2.0.aar b/tauri_app/docker/offline-maven/androidx/arch/core/core-runtime/2.2.0/core-runtime-2.2.0.aar deleted file mode 100644 index efa6db6..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/arch/core/core-runtime/2.2.0/core-runtime-2.2.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/arch/core/core-runtime/2.2.0/core-runtime-2.2.0.pom b/tauri_app/docker/offline-maven/androidx/arch/core/core-runtime/2.2.0/core-runtime-2.2.0.pom deleted file mode 100644 index 1768a70..0000000 --- a/tauri_app/docker/offline-maven/androidx/arch/core/core-runtime/2.2.0/core-runtime-2.2.0.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - 4.0.0 - androidx.arch.core - core-runtime - 2.2.0 - aar - Android Arch-Runtime - Android Arch-Runtime - https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0 - 2017 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - androidx.annotation - annotation - 1.1.0 - compile - - - androidx.arch.core - core-common - [2.2.0] - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/browser/browser/1.8.0/browser-1.8.0.aar b/tauri_app/docker/offline-maven/androidx/browser/browser/1.8.0/browser-1.8.0.aar deleted file mode 100644 index 6bb67ee..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/browser/browser/1.8.0/browser-1.8.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/browser/browser/1.8.0/browser-1.8.0.pom b/tauri_app/docker/offline-maven/androidx/browser/browser/1.8.0/browser-1.8.0.pom deleted file mode 100644 index b13868a..0000000 --- a/tauri_app/docker/offline-maven/androidx/browser/browser/1.8.0/browser-1.8.0.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - 4.0.0 - androidx.browser - browser - 1.8.0 - aar - Browser - Provides support for embedding Custom Tabs in an app. - https://developer.android.com/jetpack/androidx/releases/browser#1.8.0 - 2015 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - androidx.annotation - annotation - 1.2.0 - compile - - - androidx.annotation - annotation-experimental - 1.4.0 - compile - aar - - - androidx.collection - collection - 1.1.0 - runtime - - - androidx.concurrent - concurrent-futures - 1.0.0 - runtime - - - androidx.core - core - 1.1.0 - compile - aar - - - androidx.interpolator - interpolator - 1.0.0 - runtime - aar - - - com.google.guava - listenablefuture - 1.0 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/cardview/cardview/1.0.0/cardview-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/cardview/cardview/1.0.0/cardview-1.0.0.aar deleted file mode 100644 index 06a73c3..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/cardview/cardview/1.0.0/cardview-1.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/cardview/cardview/1.0.0/cardview-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/cardview/cardview/1.0.0/cardview-1.0.0.pom deleted file mode 100644 index a563cb2..0000000 --- a/tauri_app/docker/offline-maven/androidx/cardview/cardview/1.0.0/cardview-1.0.0.pom +++ /dev/null @@ -1,37 +0,0 @@ - - - 4.0.0 - androidx.cardview - cardview - 1.0.0 - aar - Android Support CardView v7 - Android Support CardView v7 - http://developer.android.com/tools/extras/support-library.html - 2011 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.0.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/collection/collection/1.1.0/collection-1.1.0.jar b/tauri_app/docker/offline-maven/androidx/collection/collection/1.1.0/collection-1.1.0.jar deleted file mode 100644 index 761fe3b..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/collection/collection/1.1.0/collection-1.1.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/collection/collection/1.1.0/collection-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/collection/collection/1.1.0/collection-1.1.0.pom deleted file mode 100644 index 65cd3a2..0000000 --- a/tauri_app/docker/offline-maven/androidx/collection/collection/1.1.0/collection-1.1.0.pom +++ /dev/null @@ -1,36 +0,0 @@ - - - 4.0.0 - androidx.collection - collection - 1.1.0 - Android Support Library collections - Standalone efficient collections. - http://developer.android.com/tools/extras/support-library.html - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.1.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/concurrent/concurrent-futures/1.1.0/concurrent-futures-1.1.0.jar b/tauri_app/docker/offline-maven/androidx/concurrent/concurrent-futures/1.1.0/concurrent-futures-1.1.0.jar deleted file mode 100644 index 833b095..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/concurrent/concurrent-futures/1.1.0/concurrent-futures-1.1.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/concurrent/concurrent-futures/1.1.0/concurrent-futures-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/concurrent/concurrent-futures/1.1.0/concurrent-futures-1.1.0.pom deleted file mode 100644 index 7ff1457..0000000 --- a/tauri_app/docker/offline-maven/androidx/concurrent/concurrent-futures/1.1.0/concurrent-futures-1.1.0.pom +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - 4.0.0 - androidx.concurrent - concurrent-futures - 1.1.0 - AndroidX Futures - Androidx implementation of Guava's ListenableFuture - https://developer.android.com/topic/libraries/architecture/index.html - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.1.0 - compile - - - com.google.guava - listenablefuture - 1.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout-solver/2.0.1/constraintlayout-solver-2.0.1.jar b/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout-solver/2.0.1/constraintlayout-solver-2.0.1.jar deleted file mode 100644 index c5f4844..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout-solver/2.0.1/constraintlayout-solver-2.0.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout-solver/2.0.1/constraintlayout-solver-2.0.1.pom b/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout-solver/2.0.1/constraintlayout-solver-2.0.1.pom deleted file mode 100644 index 4dc7e2c..0000000 --- a/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout-solver/2.0.1/constraintlayout-solver-2.0.1.pom +++ /dev/null @@ -1,28 +0,0 @@ - - - 4.0.0 - androidx.constraintlayout - constraintlayout-solver - 2.0.1 - Android ConstraintLayout Solver - Solver for ConstraintLayout - http://tools.android.com - 2007 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - git://android.googlesource.com/platform/tools/sherpa.git - https://android.googlesource.com/platform/tools/sherpa - - diff --git a/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout/2.0.1/constraintlayout-2.0.1.aar b/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout/2.0.1/constraintlayout-2.0.1.aar deleted file mode 100644 index cb56db6..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout/2.0.1/constraintlayout-2.0.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout/2.0.1/constraintlayout-2.0.1.pom b/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout/2.0.1/constraintlayout-2.0.1.pom deleted file mode 100644 index 02db756..0000000 --- a/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout/2.0.1/constraintlayout-2.0.1.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - 4.0.0 - androidx.constraintlayout - constraintlayout - 2.0.1 - aar - Android ConstraintLayout - ConstraintLayout for Android - http://tools.android.com - 2007 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - git://android.googlesource.com/platform/tools/sherpa.git - https://android.googlesource.com/platform/tools/sherpa - - - - androidx.appcompat - appcompat - 1.2.0 - compile - - - androidx.core - core - 1.3.1 - compile - - - androidx.constraintlayout - constraintlayout-solver - 2.0.1 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/coordinatorlayout/coordinatorlayout/1.1.0/coordinatorlayout-1.1.0.aar b/tauri_app/docker/offline-maven/androidx/coordinatorlayout/coordinatorlayout/1.1.0/coordinatorlayout-1.1.0.aar deleted file mode 100644 index b232c04..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/coordinatorlayout/coordinatorlayout/1.1.0/coordinatorlayout-1.1.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/coordinatorlayout/coordinatorlayout/1.1.0/coordinatorlayout-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/coordinatorlayout/coordinatorlayout/1.1.0/coordinatorlayout-1.1.0.pom deleted file mode 100644 index 16175c1..0000000 --- a/tauri_app/docker/offline-maven/androidx/coordinatorlayout/coordinatorlayout/1.1.0/coordinatorlayout-1.1.0.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - 4.0.0 - androidx.coordinatorlayout - coordinatorlayout - 1.1.0 - aar - Android Support Library Coordinator Layout - The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. - https://developer.android.com/jetpack/androidx - 2011 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.1.0 - compile - - - androidx.core - core - 1.1.0 - aar - compile - - - androidx.customview - customview - 1.0.0 - aar - compile - - - androidx.collection - collection - 1.0.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.0/core-ktx-1.13.0.aar b/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.0/core-ktx-1.13.0.aar deleted file mode 100644 index 373ff82..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.0/core-ktx-1.13.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.0/core-ktx-1.13.0.pom b/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.0/core-ktx-1.13.0.pom deleted file mode 100644 index 1f403c5..0000000 --- a/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.0/core-ktx-1.13.0.pom +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - 4.0.0 - androidx.core - core-ktx - 1.13.0 - aar - Core Kotlin Extensions - Kotlin extensions for 'core' artifact - https://developer.android.com/jetpack/androidx/releases/core#1.13.0 - 2018 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.core - core - 1.13.0 - - - - - - androidx.annotation - annotation - 1.1.0 - compile - - - androidx.core - core - 1.13.0 - compile - aar - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.22 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.1/core-ktx-1.13.1.aar b/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.1/core-ktx-1.13.1.aar deleted file mode 100644 index 8c5d737..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.1/core-ktx-1.13.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.1/core-ktx-1.13.1.pom b/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.1/core-ktx-1.13.1.pom deleted file mode 100644 index c445ebe..0000000 --- a/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.1/core-ktx-1.13.1.pom +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - 4.0.0 - androidx.core - core-ktx - 1.13.1 - aar - Core Kotlin Extensions - Kotlin extensions for 'core' artifact - https://developer.android.com/jetpack/androidx/releases/core#1.13.1 - 2018 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.core - core - 1.13.1 - - - - - - androidx.annotation - annotation - 1.1.0 - compile - - - androidx.core - core - 1.13.1 - compile - aar - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.22 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/core/core-viewtree/1.0.0/core-viewtree-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/core/core-viewtree/1.0.0/core-viewtree-1.0.0.aar deleted file mode 100644 index 044b068..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/core/core-viewtree/1.0.0/core-viewtree-1.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/core/core-viewtree/1.0.0/core-viewtree-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/core/core-viewtree/1.0.0/core-viewtree-1.0.0.pom deleted file mode 100644 index af42707..0000000 --- a/tauri_app/docker/offline-maven/androidx/core/core-viewtree/1.0.0/core-viewtree-1.0.0.pom +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - 4.0.0 - androidx.core - core-viewtree - 1.0.0 - aar - androidx.core:core-viewtree - Provides ViewTree extensions packaged for use by other core androidx libraries - https://developer.android.com/jetpack/androidx/releases/core#1.0.0 - 2024 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.22 - - - - - - org.jetbrains.kotlin - kotlin-stdlib - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/core/core/1.13.0/core-1.13.0.aar b/tauri_app/docker/offline-maven/androidx/core/core/1.13.0/core-1.13.0.aar deleted file mode 100644 index 461fed9..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/core/core/1.13.0/core-1.13.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/core/core/1.13.0/core-1.13.0.pom b/tauri_app/docker/offline-maven/androidx/core/core/1.13.0/core-1.13.0.pom deleted file mode 100644 index ca7def0..0000000 --- a/tauri_app/docker/offline-maven/androidx/core/core/1.13.0/core-1.13.0.pom +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - 4.0.0 - androidx.core - core - 1.13.0 - aar - Core - Provides backward-compatible implementations of Android platform APIs and features. - https://developer.android.com/jetpack/androidx/releases/core#1.13.0 - 2015 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.core - core-ktx - 1.13.0 - - - androidx.core - core-testing - 1.13.0 - - - - - - androidx.annotation - annotation - 1.6.0 - compile - - - androidx.annotation - annotation-experimental - 1.4.0 - compile - aar - - - androidx.collection - collection - 1.0.0 - runtime - - - androidx.concurrent - concurrent-futures - 1.0.0 - runtime - - - androidx.interpolator - interpolator - 1.0.0 - runtime - aar - - - androidx.lifecycle - lifecycle-runtime - 2.6.2 - compile - - - androidx.versionedparcelable - versionedparcelable - 1.1.1 - compile - aar - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.22 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/core/core/1.13.1/core-1.13.1.aar b/tauri_app/docker/offline-maven/androidx/core/core/1.13.1/core-1.13.1.aar deleted file mode 100644 index bdf0365..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/core/core/1.13.1/core-1.13.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/core/core/1.13.1/core-1.13.1.pom b/tauri_app/docker/offline-maven/androidx/core/core/1.13.1/core-1.13.1.pom deleted file mode 100644 index b6f8b5f..0000000 --- a/tauri_app/docker/offline-maven/androidx/core/core/1.13.1/core-1.13.1.pom +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - 4.0.0 - androidx.core - core - 1.13.1 - aar - Core - Provides backward-compatible implementations of Android platform APIs and features. - https://developer.android.com/jetpack/androidx/releases/core#1.13.1 - 2015 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.core - core-ktx - 1.13.1 - - - androidx.core - core-testing - 1.13.1 - - - - - - androidx.annotation - annotation - 1.6.0 - compile - - - androidx.annotation - annotation-experimental - 1.4.0 - compile - aar - - - androidx.collection - collection - 1.0.0 - runtime - - - androidx.concurrent - concurrent-futures - 1.0.0 - runtime - - - androidx.interpolator - interpolator - 1.0.0 - runtime - aar - - - androidx.lifecycle - lifecycle-runtime - 2.6.2 - compile - - - androidx.versionedparcelable - versionedparcelable - 1.1.1 - compile - aar - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.22 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.aar deleted file mode 100644 index cd1494a..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.pom deleted file mode 100644 index ffca433..0000000 --- a/tauri_app/docker/offline-maven/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.pom +++ /dev/null @@ -1,37 +0,0 @@ - - - 4.0.0 - androidx.cursoradapter - cursoradapter - 1.0.0 - aar - Android Support Library Cursor Adapter - The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. - http://developer.android.com/tools/extras/support-library.html - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.0.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/customview/customview/1.1.0/customview-1.1.0.aar b/tauri_app/docker/offline-maven/androidx/customview/customview/1.1.0/customview-1.1.0.aar deleted file mode 100644 index 3b4eda2..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/customview/customview/1.1.0/customview-1.1.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/customview/customview/1.1.0/customview-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/customview/customview/1.1.0/customview-1.1.0.pom deleted file mode 100644 index 7ecd4c3..0000000 --- a/tauri_app/docker/offline-maven/androidx/customview/customview/1.1.0/customview-1.1.0.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - 4.0.0 - androidx.customview - customview - 1.1.0 - aar - Android Support Library Custom View - The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. - https://developer.android.com/jetpack/androidx - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.1.0 - compile - - - androidx.core - core - 1.3.0 - compile - aar - - - androidx.collection - collection - 1.1.0 - runtime - - - diff --git a/tauri_app/docker/offline-maven/androidx/databinding/databinding-common/8.11.0/databinding-common-8.11.0.jar b/tauri_app/docker/offline-maven/androidx/databinding/databinding-common/8.11.0/databinding-common-8.11.0.jar deleted file mode 100644 index 5ac6f22..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/databinding/databinding-common/8.11.0/databinding-common-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/databinding/databinding-common/8.11.0/databinding-common-8.11.0.pom b/tauri_app/docker/offline-maven/androidx/databinding/databinding-common/8.11.0/databinding-common-8.11.0.pom deleted file mode 100644 index 758ce29..0000000 --- a/tauri_app/docker/offline-maven/androidx/databinding/databinding-common/8.11.0/databinding-common-8.11.0.pom +++ /dev/null @@ -1,23 +0,0 @@ - - - 4.0.0 - androidx.databinding - databinding-common - 8.11.0 - androidx.databinding.databinding-common - Shared library between Data Binding runtime lib and compiler - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - diff --git a/tauri_app/docker/offline-maven/androidx/databinding/databinding-compiler-common/8.11.0/databinding-compiler-common-8.11.0.jar b/tauri_app/docker/offline-maven/androidx/databinding/databinding-compiler-common/8.11.0/databinding-compiler-common-8.11.0.jar deleted file mode 100644 index 91e26b9..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/databinding/databinding-compiler-common/8.11.0/databinding-compiler-common-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/databinding/databinding-compiler-common/8.11.0/databinding-compiler-common-8.11.0.pom b/tauri_app/docker/offline-maven/androidx/databinding/databinding-compiler-common/8.11.0/databinding-compiler-common-8.11.0.pom deleted file mode 100644 index b0c91d3..0000000 --- a/tauri_app/docker/offline-maven/androidx/databinding/databinding-compiler-common/8.11.0/databinding-compiler-common-8.11.0.pom +++ /dev/null @@ -1,91 +0,0 @@ - - - 4.0.0 - androidx.databinding - databinding-compiler-common - 8.11.0 - androidx.databinding.databinding-compiler-common - Common library that can be shared between different build tools - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - androidx.databinding - databinding-common - 8.11.0 - runtime - - - com.android.databinding - baseLibrary - 8.11.0 - runtime - - - com.android.tools - annotations - 31.11.0 - runtime - - - com.android.tools.build.jetifier - jetifier-core - 1.0.0-beta10 - runtime - - - com.google.code.gson - gson - 2.11.0 - runtime - - - com.google.guava - guava - 33.3.1-jre - runtime - - - com.googlecode.juniversalchardet - juniversalchardet - 1.0.3 - runtime - - - com.squareup - javapoet - 1.10.0 - runtime - - - commons-io - commons-io - 2.16.1 - runtime - - - org.glassfish.jaxb - jaxb-runtime - 2.3.2 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 2.1.20 - runtime - - - diff --git a/tauri_app/docker/offline-maven/androidx/documentfile/documentfile/1.0.0/documentfile-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/documentfile/documentfile/1.0.0/documentfile-1.0.0.aar deleted file mode 100644 index 79fd550..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/documentfile/documentfile/1.0.0/documentfile-1.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/documentfile/documentfile/1.0.0/documentfile-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/documentfile/documentfile/1.0.0/documentfile-1.0.0.pom deleted file mode 100644 index dfc9aad..0000000 --- a/tauri_app/docker/offline-maven/androidx/documentfile/documentfile/1.0.0/documentfile-1.0.0.pom +++ /dev/null @@ -1,37 +0,0 @@ - - - 4.0.0 - androidx.documentfile - documentfile - 1.0.0 - aar - Android Support Library Document File - The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. - http://developer.android.com/tools/extras/support-library.html - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.0.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/drawerlayout/drawerlayout/1.1.1/drawerlayout-1.1.1.aar b/tauri_app/docker/offline-maven/androidx/drawerlayout/drawerlayout/1.1.1/drawerlayout-1.1.1.aar deleted file mode 100644 index 86dac42..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/drawerlayout/drawerlayout/1.1.1/drawerlayout-1.1.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/drawerlayout/drawerlayout/1.1.1/drawerlayout-1.1.1.pom b/tauri_app/docker/offline-maven/androidx/drawerlayout/drawerlayout/1.1.1/drawerlayout-1.1.1.pom deleted file mode 100644 index 3bedebb..0000000 --- a/tauri_app/docker/offline-maven/androidx/drawerlayout/drawerlayout/1.1.1/drawerlayout-1.1.1.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - 4.0.0 - androidx.drawerlayout - drawerlayout - 1.1.1 - aar - Android Support Library Drawer Layout - The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. - https://developer.android.com/jetpack/androidx - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.1.0 - compile - - - androidx.core - core - 1.2.0 - compile - aar - - - androidx.customview - customview - 1.1.0 - compile - aar - - - diff --git a/tauri_app/docker/offline-maven/androidx/dynamicanimation/dynamicanimation/1.0.0/dynamicanimation-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/dynamicanimation/dynamicanimation/1.0.0/dynamicanimation-1.0.0.aar deleted file mode 100644 index b9f4cc6..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/dynamicanimation/dynamicanimation/1.0.0/dynamicanimation-1.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/dynamicanimation/dynamicanimation/1.0.0/dynamicanimation-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/dynamicanimation/dynamicanimation/1.0.0/dynamicanimation-1.0.0.pom deleted file mode 100644 index dc09da5..0000000 --- a/tauri_app/docker/offline-maven/androidx/dynamicanimation/dynamicanimation/1.0.0/dynamicanimation-1.0.0.pom +++ /dev/null @@ -1,51 +0,0 @@ - - - 4.0.0 - androidx.dynamicanimation - dynamicanimation - 1.0.0 - aar - Android Support DynamicAnimation - Physics-based animation in support library, where the animations are driven by physics force. You can use this Animation library to create smooth and realistic animations. - http://developer.android.com/tools/extras/support-library.html - 2017 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.core - core - 1.0.0 - aar - compile - - - androidx.collection - collection - 1.0.0 - compile - - - androidx.legacy - legacy-support-core-utils - 1.0.0 - aar - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.aar b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.aar deleted file mode 100644 index 35a8b6b..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.module b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.module deleted file mode 100644 index 357c766..0000000 --- a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.module +++ /dev/null @@ -1,110 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.emoji2", - "module": "emoji2-views-helper", - "version": "1.2.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "7.5-rc-2" - } - }, - "variants": [ - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.core", - "module": "core", - "version": { - "requires": "1.3.0" - } - } - ], - "files": [ - { - "name": "emoji2-views-helper-1.2.0.aar", - "url": "emoji2-views-helper-1.2.0.aar", - "size": 21917, - "sha512": "f93f48ca072dfe10289b790deb9703f3d313fa0457f37cbc92881d31428372178f74d1fa41fb6605ab3ccb41ad2f02b710e72fa319b92e82926c0b523d9e8ebd", - "sha256": "7ffa4d464d9db259fca0cdb50fbd4ab63d6872bcda59468b9f7555504c7d5ac4", - "sha1": "4a22802fc9e88ad232522f04a35d1fdc3e5b4df0", - "md5": "1a4b6d516e641772360a3030d6feda7f" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.collection", - "module": "collection", - "version": { - "requires": "1.1.0" - } - }, - { - "group": "androidx.core", - "module": "core", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2", - "version": { - "requires": "1.2.0" - } - } - ], - "files": [ - { - "name": "emoji2-views-helper-1.2.0.aar", - "url": "emoji2-views-helper-1.2.0.aar", - "size": 21917, - "sha512": "f93f48ca072dfe10289b790deb9703f3d313fa0457f37cbc92881d31428372178f74d1fa41fb6605ab3ccb41ad2f02b710e72fa319b92e82926c0b523d9e8ebd", - "sha256": "7ffa4d464d9db259fca0cdb50fbd4ab63d6872bcda59468b9f7555504c7d5ac4", - "sha1": "4a22802fc9e88ad232522f04a35d1fdc3e5b4df0", - "md5": "1a4b6d516e641772360a3030d6feda7f" - } - ] - }, - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "files": [ - { - "name": "emoji2-views-helper-1.2.0-sources.jar", - "url": "emoji2-views-helper-1.2.0-sources.jar", - "size": 17409, - "sha512": "b5babc8d9ebcf9faa0d0f20464d97e2ee686058fc593b801289866d5c8221df83b7ac9415ddc18eccccb5e26e69d0eda1b147d6d60685183c2d6308689500507", - "sha256": "ede24c021b055ab0bc287ce3ab784ab1fff3f336dae1ee9adae8b0d849e7b997", - "sha1": "833c4c3f1564f35f7f62b810bf3e0eaf544ebc1f", - "md5": "b7694abf3b882286206b7c00585bf461" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.pom b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.pom deleted file mode 100644 index 91fb547..0000000 --- a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.pom +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - 4.0.0 - androidx.emoji2 - emoji2-views-helper - 1.2.0 - aar - Android Emoji2 Compat view helpers - View helpers for Emoji2 - https://developer.android.com/jetpack/androidx/releases/emoji2#1.2.0 - 2017 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - androidx.collection - collection - 1.1.0 - runtime - - - androidx.core - core - 1.3.0 - compile - aar - - - androidx.emoji2 - emoji2 - [1.2.0] - runtime - aar - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.aar b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.aar deleted file mode 100644 index 9c3df4f..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.module b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.module deleted file mode 100644 index 4afcfa2..0000000 --- a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.module +++ /dev/null @@ -1,242 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.emoji2", - "module": "emoji2-views-helper", - "version": "1.3.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "8.0" - } - }, - "variants": [ - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.core", - "module": "core", - "version": { - "requires": "1.3.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.emoji2", - "module": "emoji2-emojipicker", - "version": { - "requires": "1.0.0-alpha03" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-emojipicker-samples", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-bundled", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-views", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-benchmark", - "version": { - "requires": "1.3.0" - } - } - ], - "files": [ - { - "name": "emoji2-views-helper-1.3.0.aar", - "url": "emoji2-views-helper-1.3.0.aar", - "size": 22075, - "sha512": "1c5ebe19d91cd3491454de9e12615f94ed1e6e49fd97ab02709aa2e5bfeb27a89d20148854503e255c5fbbdc7d77ad5ac9cd3e5b902817ed1f32e5b0178c58ca", - "sha256": "9a1351295a4f739df0efe8344adaa9afb34856c3af584d4a9afbec105a45b90b", - "sha1": "7bef7c1117bb40ef41ee0641cd1d2d605e2d607c", - "md5": "473586f500e1ae30491f2cf67dd13870" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.collection", - "module": "collection", - "version": { - "requires": "1.1.0" - } - }, - { - "group": "androidx.core", - "module": "core", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2", - "version": { - "requires": "1.3.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.emoji2", - "module": "emoji2-emojipicker", - "version": { - "requires": "1.0.0-alpha03" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-emojipicker-samples", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-bundled", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-views", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-benchmark", - "version": { - "requires": "1.3.0" - } - } - ], - "files": [ - { - "name": "emoji2-views-helper-1.3.0.aar", - "url": "emoji2-views-helper-1.3.0.aar", - "size": 22075, - "sha512": "1c5ebe19d91cd3491454de9e12615f94ed1e6e49fd97ab02709aa2e5bfeb27a89d20148854503e255c5fbbdc7d77ad5ac9cd3e5b902817ed1f32e5b0178c58ca", - "sha256": "9a1351295a4f739df0efe8344adaa9afb34856c3af584d4a9afbec105a45b90b", - "sha1": "7bef7c1117bb40ef41ee0641cd1d2d605e2d607c", - "md5": "473586f500e1ae30491f2cf67dd13870" - } - ] - }, - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "dependencyConstraints": [ - { - "group": "androidx.emoji2", - "module": "emoji2-emojipicker", - "version": { - "requires": "1.0.0-alpha03" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-emojipicker-samples", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-bundled", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-views", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-benchmark", - "version": { - "requires": "1.3.0" - } - } - ], - "files": [ - { - "name": "emoji2-views-helper-1.3.0-sources.jar", - "url": "emoji2-views-helper-1.3.0-sources.jar", - "size": 17409, - "sha512": "9c16707fa7227ef6ff5dd22db1a50b2c046f4da9d6e719cce0650214c8fe430112fa217c0058b09b66488533b03f514710b056b8fc33198ccef8e4e0a8ce2489", - "sha256": "ae8f9eac6a0627a136f631af717e6fab86a69e45c83765661e3795f7bbef3562", - "sha1": "070bc75b8c5681fc8d0a4026648950c1cfd90a72", - "md5": "71eca72934c7840028ba5480a3f5c33e" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.pom b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.pom deleted file mode 100644 index d4304ec..0000000 --- a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.pom +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - 4.0.0 - androidx.emoji2 - emoji2-views-helper - 1.3.0 - aar - Android Emoji2 Compat view helpers - View helpers for Emoji2 - https://developer.android.com/jetpack/androidx/releases/emoji2#1.3.0 - 2017 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.emoji2 - emoji2-emojipicker - 1.0.0-alpha03 - - - androidx.emoji2 - emoji2-emojipicker-samples - 1.3.0 - - - androidx.emoji2 - emoji2 - 1.3.0 - - - androidx.emoji2 - emoji2-bundled - 1.3.0 - - - androidx.emoji2 - emoji2-views - 1.3.0 - - - androidx.emoji2 - emoji2-benchmark - 1.3.0 - - - - - - androidx.collection - collection - 1.1.0 - runtime - - - androidx.core - core - 1.3.0 - compile - aar - - - androidx.emoji2 - emoji2 - [1.3.0] - runtime - aar - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.aar b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.aar deleted file mode 100644 index a372283..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.module b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.module deleted file mode 100644 index 32b5808..0000000 --- a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.module +++ /dev/null @@ -1,131 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.emoji2", - "module": "emoji2", - "version": "1.2.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "7.5-rc-2" - } - }, - "variants": [ - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.core", - "module": "core", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.startup", - "module": "startup-runtime", - "version": { - "requires": "1.0.0" - } - } - ], - "files": [ - { - "name": "emoji2-1.2.0.aar", - "url": "emoji2-1.2.0.aar", - "size": 134505, - "sha512": "0ccc7b0cce3f5d98bea8a865f3292c512573796fcee01c38a8a9ed682b1a14ac8c9fe8752976592177cd50ca7dd7fb73e90158b26655e10b03536513715f2dc2", - "sha256": "f31a06c150ecb03073f55a6f7b0b74a240a6a8d727c14ce76726d020570dfa8c", - "sha1": "2c95c9aa87788e4d9ce692ecfc961db004e57480", - "md5": "dd0bd8eeae51a8b91be400346dfd6783" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.2.0" - } - }, - { - "group": "androidx.collection", - "module": "collection", - "version": { - "requires": "1.1.0" - } - }, - { - "group": "androidx.core", - "module": "core", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.4.1" - } - }, - { - "group": "androidx.startup", - "module": "startup-runtime", - "version": { - "requires": "1.0.0" - } - } - ], - "files": [ - { - "name": "emoji2-1.2.0.aar", - "url": "emoji2-1.2.0.aar", - "size": 134505, - "sha512": "0ccc7b0cce3f5d98bea8a865f3292c512573796fcee01c38a8a9ed682b1a14ac8c9fe8752976592177cd50ca7dd7fb73e90158b26655e10b03536513715f2dc2", - "sha256": "f31a06c150ecb03073f55a6f7b0b74a240a6a8d727c14ce76726d020570dfa8c", - "sha1": "2c95c9aa87788e4d9ce692ecfc961db004e57480", - "md5": "dd0bd8eeae51a8b91be400346dfd6783" - } - ] - }, - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "files": [ - { - "name": "emoji2-1.2.0-sources.jar", - "url": "emoji2-1.2.0-sources.jar", - "size": 53120, - "sha512": "805c7a029261da961b707387b21015d1569e7319b68999c14bdd1c66e9f0c29630fc01bde5499878c245886efe67de6474a051720924d1180b67a9bd30b87b94", - "sha256": "0fb791b7cb4a3c68a31b17b06a4c074e6bd2f3af6abca5051582646d649bdef1", - "sha1": "9b49601261eae202c9bf6f9fc18890b8fe0edf69", - "md5": "cd56b98aba3225e83dfa53da1d78f422" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.pom b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.pom deleted file mode 100644 index ae82bd2..0000000 --- a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - 4.0.0 - androidx.emoji2 - emoji2 - 1.2.0 - aar - Android Emoji2 Compat - Core library to enable emoji compatibility in Kitkat and newer devices to avoid the empty emoji characters. - https://developer.android.com/jetpack/androidx/releases/emoji2#1.2.0 - 2017 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - androidx.annotation - annotation - 1.2.0 - runtime - - - androidx.collection - collection - 1.1.0 - runtime - - - androidx.core - core - 1.3.0 - compile - aar - - - androidx.lifecycle - lifecycle-process - 2.4.1 - runtime - aar - - - androidx.startup - startup-runtime - 1.0.0 - compile - aar - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.aar b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.aar deleted file mode 100644 index 595fe30..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.module b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.module deleted file mode 100644 index f589270..0000000 --- a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.module +++ /dev/null @@ -1,263 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.emoji2", - "module": "emoji2", - "version": "1.3.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "8.0" - } - }, - "variants": [ - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.core", - "module": "core", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.startup", - "module": "startup-runtime", - "version": { - "requires": "1.0.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.emoji2", - "module": "emoji2-emojipicker", - "version": { - "requires": "1.0.0-alpha03" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-emojipicker-samples", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-bundled", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-views", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-views-helper", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-benchmark", - "version": { - "requires": "1.3.0" - } - } - ], - "files": [ - { - "name": "emoji2-1.3.0.aar", - "url": "emoji2-1.3.0.aar", - "size": 143474, - "sha512": "e29de158918d633bb13af27d83312bd0b149db22fd8935511e422024ba7b87a700a03c9782ba9cd376e37852876781c9e0c4efb4bc20a30d8a784d68ed41a7d9", - "sha256": "2bf23818b23a996ddaa1b5fd5bb32129daff6bbb2dce15166e2fccdd2010b1a5", - "sha1": "37ed42991ddf77924510472dba632314aab1c9d9", - "md5": "0c7fe9caa3baf3da7a709d7a812616e0" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.2.0" - } - }, - { - "group": "androidx.collection", - "module": "collection", - "version": { - "requires": "1.1.0" - } - }, - { - "group": "androidx.core", - "module": "core", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.4.1" - } - }, - { - "group": "androidx.startup", - "module": "startup-runtime", - "version": { - "requires": "1.0.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.emoji2", - "module": "emoji2-emojipicker", - "version": { - "requires": "1.0.0-alpha03" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-emojipicker-samples", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-bundled", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-views", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-views-helper", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-benchmark", - "version": { - "requires": "1.3.0" - } - } - ], - "files": [ - { - "name": "emoji2-1.3.0.aar", - "url": "emoji2-1.3.0.aar", - "size": 143474, - "sha512": "e29de158918d633bb13af27d83312bd0b149db22fd8935511e422024ba7b87a700a03c9782ba9cd376e37852876781c9e0c4efb4bc20a30d8a784d68ed41a7d9", - "sha256": "2bf23818b23a996ddaa1b5fd5bb32129daff6bbb2dce15166e2fccdd2010b1a5", - "sha1": "37ed42991ddf77924510472dba632314aab1c9d9", - "md5": "0c7fe9caa3baf3da7a709d7a812616e0" - } - ] - }, - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "dependencyConstraints": [ - { - "group": "androidx.emoji2", - "module": "emoji2-emojipicker", - "version": { - "requires": "1.0.0-alpha03" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-emojipicker-samples", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-bundled", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-views", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-views-helper", - "version": { - "requires": "1.3.0" - } - }, - { - "group": "androidx.emoji2", - "module": "emoji2-benchmark", - "version": { - "requires": "1.3.0" - } - } - ], - "files": [ - { - "name": "emoji2-1.3.0-sources.jar", - "url": "emoji2-1.3.0-sources.jar", - "size": 57650, - "sha512": "bc7fdaa283f590da3329bc4b80ebd18da770b628e69b09ed4e5e34a27a0f505a233f597700407f92e52e5a62bb50e534d1de80f9589539af1f3fb1895c4ffb96", - "sha256": "cd9b28e11cc5b9dacb5187ce2db89f97650a4c71c6ccf0aaa41a68cf8863c409", - "sha1": "788179fcab96cd6ec9a3e284e2a509545dc0fb8d", - "md5": "bcd8a79fc734e129ba2caec4e6d8d065" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.pom b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.pom deleted file mode 100644 index 26bd5c0..0000000 --- a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.pom +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - 4.0.0 - androidx.emoji2 - emoji2 - 1.3.0 - aar - Android Emoji2 Compat - Core library to enable emoji compatibility in Kitkat and newer devices to avoid the empty emoji characters. - https://developer.android.com/jetpack/androidx/releases/emoji2#1.3.0 - 2017 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.emoji2 - emoji2-emojipicker - 1.0.0-alpha03 - - - androidx.emoji2 - emoji2-emojipicker-samples - 1.3.0 - - - androidx.emoji2 - emoji2-bundled - 1.3.0 - - - androidx.emoji2 - emoji2-views - 1.3.0 - - - androidx.emoji2 - emoji2-views-helper - 1.3.0 - - - androidx.emoji2 - emoji2-benchmark - 1.3.0 - - - - - - androidx.annotation - annotation - 1.2.0 - runtime - - - androidx.collection - collection - 1.1.0 - runtime - - - androidx.core - core - 1.3.0 - compile - aar - - - androidx.lifecycle - lifecycle-process - 2.4.1 - runtime - aar - - - androidx.startup - startup-runtime - 1.0.0 - compile - aar - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/fragment/fragment/1.5.4/fragment-1.5.4.aar b/tauri_app/docker/offline-maven/androidx/fragment/fragment/1.5.4/fragment-1.5.4.aar deleted file mode 100644 index 8ca2c54..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/fragment/fragment/1.5.4/fragment-1.5.4.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/fragment/fragment/1.5.4/fragment-1.5.4.pom b/tauri_app/docker/offline-maven/androidx/fragment/fragment/1.5.4/fragment-1.5.4.pom deleted file mode 100644 index 1b541ec..0000000 --- a/tauri_app/docker/offline-maven/androidx/fragment/fragment/1.5.4/fragment-1.5.4.pom +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - 4.0.0 - androidx.fragment - fragment - 1.5.4 - aar - Android Support Library fragment - The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. - https://developer.android.com/jetpack/androidx/releases/fragment#1.5.4 - 2011 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - androidx.activity - activity - 1.5.1 - compile - aar - - - androidx.annotation - annotation - 1.1.0 - compile - - - androidx.annotation - annotation-experimental - 1.0.0 - compile - aar - - - androidx.collection - collection - 1.1.0 - compile - - - androidx.core - core-ktx - 1.2.0 - compile - aar - - - androidx.lifecycle - lifecycle-livedata-core - 2.5.1 - compile - aar - - - androidx.lifecycle - lifecycle-viewmodel - 2.5.1 - compile - aar - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.5.1 - compile - aar - - - androidx.loader - loader - 1.0.0 - compile - aar - - - androidx.savedstate - savedstate - 1.2.0 - compile - aar - - - androidx.viewpager - viewpager - 1.0.0 - compile - aar - - - org.jetbrains.kotlin - kotlin-stdlib - 1.6.21 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.aar deleted file mode 100644 index bccf86f..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.pom deleted file mode 100644 index 49a6639..0000000 --- a/tauri_app/docker/offline-maven/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.pom +++ /dev/null @@ -1,37 +0,0 @@ - - - 4.0.0 - androidx.interpolator - interpolator - 1.0.0 - aar - Android Support Library Interpolators - The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. - http://developer.android.com/tools/extras/support-library.html - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.0.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/legacy/legacy-support-core-utils/1.0.0/legacy-support-core-utils-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/legacy/legacy-support-core-utils/1.0.0/legacy-support-core-utils-1.0.0.aar deleted file mode 100644 index 2980f60..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/legacy/legacy-support-core-utils/1.0.0/legacy-support-core-utils-1.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/legacy/legacy-support-core-utils/1.0.0/legacy-support-core-utils-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/legacy/legacy-support-core-utils/1.0.0/legacy-support-core-utils-1.0.0.pom deleted file mode 100644 index 39f3ee8..0000000 --- a/tauri_app/docker/offline-maven/androidx/legacy/legacy-support-core-utils/1.0.0/legacy-support-core-utils-1.0.0.pom +++ /dev/null @@ -1,72 +0,0 @@ - - - 4.0.0 - androidx.legacy - legacy-support-core-utils - 1.0.0 - aar - Android Support Library core utils - The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. - http://developer.android.com/tools/extras/support-library.html - 2011 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.0.0 - compile - - - androidx.core - core - 1.0.0 - aar - compile - - - androidx.documentfile - documentfile - 1.0.0 - aar - compile - - - androidx.loader - loader - 1.0.0 - aar - compile - - - androidx.localbroadcastmanager - localbroadcastmanager - 1.0.0 - aar - compile - - - androidx.print - print - 1.0.0 - aar - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.jar deleted file mode 100644 index 165d43f..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.module deleted file mode 100644 index bc81e1c..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.module +++ /dev/null @@ -1,639 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "url": "../../lifecycle-common/2.10.0/lifecycle-common-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": "2.10.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14428372" - } - }, - "variants": [ - { - "name": "jvmApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jspecify", - "module": "jspecify", - "version": { - "requires": "1.0.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-common-jvm-2.10.0.jar", - "url": "lifecycle-common-jvm-2.10.0.jar", - "size": 60791, - "sha512": "f76e1b7c81e2046772314eacb73f04f37e44b58879aedd3b163cc45033e10c020d06d0544316a004f12e1db59633bb9629b1618f79f649866f79e519fc05ba0d", - "sha256": "15943082d87bcd78830398fa377f2c8b12643de290d0906ed8e49a2d335ddb54", - "sha1": "2b7a92c746f3339efc533a2da0024e596760f816", - "md5": "cd58fd111c07594a1230669a2d3c2901" - } - ] - }, - { - "name": "jvmRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jspecify", - "module": "jspecify", - "version": { - "requires": "1.0.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "org.jetbrains.androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.9.5" - }, - "reason": "prevents symbols duplication" - } - ], - "files": [ - { - "name": "lifecycle-common-jvm-2.10.0.jar", - "url": "lifecycle-common-jvm-2.10.0.jar", - "size": 60791, - "sha512": "f76e1b7c81e2046772314eacb73f04f37e44b58879aedd3b163cc45033e10c020d06d0544316a004f12e1db59633bb9629b1618f79f649866f79e519fc05ba0d", - "sha256": "15943082d87bcd78830398fa377f2c8b12643de290d0906ed8e49a2d335ddb54", - "sha1": "2b7a92c746f3339efc533a2da0024e596760f816", - "md5": "cd58fd111c07594a1230669a2d3c2901" - } - ] - }, - { - "name": "jvmSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-common-jvm-2.10.0-sources.jar", - "url": "lifecycle-common-jvm-2.10.0-sources.jar", - "size": 32181, - "sha512": "a8a3101f1067095149bec7bc68939d70527f7346adaa930accbc472b22c26ce05495a39ed81ef6395e9c47e2ce39007449f3a1f9aa6ea770a5e1c8873bdf9173", - "sha256": "7f3dd285e49950c7b4e8b493ce397ba08d672455577143509d5218f314b3dc62", - "sha1": "d115be7529a072225b056c7afe4dba33a449c160", - "md5": "379538192f6ad62acc885af46356df7b" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.pom deleted file mode 100644 index 2fce7bc..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.pom +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-common-jvm - 2.10.0 - Lifecycle-Common - Android Lifecycle-Common - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2017 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - org.jetbrains.androidx.lifecycle - lifecycle-common - 2.9.5 - - - - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - compile - - - androidx.annotation - annotation-jvm - 1.9.1 - compile - - - org.jspecify - jspecify - 1.0.0 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.9.0 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.jar deleted file mode 100644 index 756b401..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.module deleted file mode 100644 index 1e4d8e2..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.module +++ /dev/null @@ -1,1702 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": "2.10.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14428372" - } - }, - "variants": [ - { - "name": "metadataApiElements", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.platform.type": "common" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-common-metadata-2.10.0.jar", - "url": "lifecycle-common-2.10.0.jar", - "size": 12347, - "sha512": "95df7e43efe1391fb4f875be49bcac12472a575d85991d88056a96b2bd29cfcffed7824cc454ace71b8d819e4b8a45cc1781e162504e77246ac527e85808617b", - "sha256": "9d3a9980095b769deb4f328f7f325439b188147124d66dc42edd55e3e7beea37", - "sha1": "55e13b9d6d087da27e49b2ac9e5609cc2d5cdc27", - "md5": "90ad634c7557b8b7fcd1cc5e3382cf09" - } - ] - }, - { - "name": "metadataSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "common" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-common-kotlin-2.10.0-sources.jar", - "url": "lifecycle-common-2.10.0-sources.jar", - "size": 15996, - "sha512": "0ef99e814ca21dedd8625e6f032cdce9b97dbec1dc84532492497fca8d45a9b76d24f206ed3a80a67a35177069ec1ad79dcf0c8260f027ad7bd5c97f8c265432", - "sha256": "3b241e3b0a4f558c06e6908d9ef19c48dfdd672a4687ca0703fc2fd9afe7d9fc", - "sha1": "8781efb2ce956e9f2b7c7f41944050dec8851962", - "md5": "d48127651b9f760d34d8347be75c0f18" - } - ] - }, - { - "name": "androidxSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "androidx-multiplatform-docs" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-common-2.10.0-multiplatform-sources.jar", - "url": "lifecycle-common-2.10.0-multiplatform-sources.jar", - "size": 34713, - "sha512": "900de1a628a5914b1b20cb9d2f86961b80ef583c21b86503913c1bb06d86dfab6c46cf2e1960e6498dae008b29c7a51521041091be884f510762a13a969c69c9", - "sha256": "b2bf56f3d0984fcf0345f3b74e10826dbd4f4b5944c0a48ea6aff4935b1fa057", - "sha1": "f3658e24f690b2ca507031aadc2d9f138d53bd40", - "md5": "966c4525fe0f46be6f1640fc0b268156" - } - ] - }, - { - "name": "libraryVersionMetadata", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.usage": "library-version-metadata" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-common is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "apiLevels.json", - "url": "lifecycle-common-2.10.0-versionMetadata.json", - "size": 6401, - "sha512": "416513c355fc153ff77c8d3cd9fcd824aca498c6defd299b76e828388899ea4c7d30d32641ea6a062e5f142cf5a60fcc6768065d7a1865a3437a61eb2a9defa1", - "sha256": "dcaeb76267aae290e0babff79e51c77e63347ecc5e14f3f9b19187c36c72217b", - "sha1": "4a8e751c418fda7f7d3ae7197ba9ef3e42bf514f", - "md5": "a194be3659a42bd79423a2caf86a6d1a" - } - ] - }, - { - "name": "iosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-iosarm64/2.10.0/lifecycle-common-iosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-iosarm64", - "version": "2.10.0" - } - }, - { - "name": "iosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-iosarm64/2.10.0/lifecycle-common-iosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-iosarm64", - "version": "2.10.0" - } - }, - { - "name": "iosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-iosarm64/2.10.0/lifecycle-common-iosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-iosarm64", - "version": "2.10.0" - } - }, - { - "name": "iosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-iossimulatorarm64/2.10.0/lifecycle-common-iossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-iossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "iosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-iossimulatorarm64/2.10.0/lifecycle-common-iossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-iossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "iosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-iossimulatorarm64/2.10.0/lifecycle-common-iossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-iossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "iosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-iosx64/2.10.0/lifecycle-common-iosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-iosx64", - "version": "2.10.0" - } - }, - { - "name": "iosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-iosx64/2.10.0/lifecycle-common-iosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-iosx64", - "version": "2.10.0" - } - }, - { - "name": "iosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-iosx64/2.10.0/lifecycle-common-iosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-iosx64", - "version": "2.10.0" - } - }, - { - "name": "jsApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../lifecycle-common-js/2.10.0/lifecycle-common-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-js", - "version": "2.10.0" - } - }, - { - "name": "jsRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../lifecycle-common-js/2.10.0/lifecycle-common-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-js", - "version": "2.10.0" - } - }, - { - "name": "jsSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../lifecycle-common-js/2.10.0/lifecycle-common-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-js", - "version": "2.10.0" - } - }, - { - "name": "jvmApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-jvm", - "version": "2.10.0" - } - }, - { - "name": "jvmRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-jvm", - "version": "2.10.0" - } - }, - { - "name": "jvmSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-jvm", - "version": "2.10.0" - } - }, - { - "name": "linuxArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "linux_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-linuxarm64/2.10.0/lifecycle-common-linuxarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-linuxarm64", - "version": "2.10.0" - } - }, - { - "name": "linuxArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "linux_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-linuxarm64/2.10.0/lifecycle-common-linuxarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-linuxarm64", - "version": "2.10.0" - } - }, - { - "name": "linuxX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "linux_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-linuxx64/2.10.0/lifecycle-common-linuxx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-linuxx64", - "version": "2.10.0" - } - }, - { - "name": "linuxX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "linux_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-linuxx64/2.10.0/lifecycle-common-linuxx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-linuxx64", - "version": "2.10.0" - } - }, - { - "name": "macosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-macosarm64/2.10.0/lifecycle-common-macosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-macosarm64", - "version": "2.10.0" - } - }, - { - "name": "macosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-macosarm64/2.10.0/lifecycle-common-macosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-macosarm64", - "version": "2.10.0" - } - }, - { - "name": "macosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-macosarm64/2.10.0/lifecycle-common-macosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-macosarm64", - "version": "2.10.0" - } - }, - { - "name": "macosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-macosx64/2.10.0/lifecycle-common-macosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-macosx64", - "version": "2.10.0" - } - }, - { - "name": "macosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-macosx64/2.10.0/lifecycle-common-macosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-macosx64", - "version": "2.10.0" - } - }, - { - "name": "macosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-macosx64/2.10.0/lifecycle-common-macosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-macosx64", - "version": "2.10.0" - } - }, - { - "name": "mingwX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "mingw_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-mingwx64/2.10.0/lifecycle-common-mingwx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-mingwx64", - "version": "2.10.0" - } - }, - { - "name": "mingwX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "mingw_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-mingwx64/2.10.0/lifecycle-common-mingwx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-mingwx64", - "version": "2.10.0" - } - }, - { - "name": "tvosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-tvosarm64/2.10.0/lifecycle-common-tvosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-tvosarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-tvosarm64/2.10.0/lifecycle-common-tvosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-tvosarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-tvosarm64/2.10.0/lifecycle-common-tvosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-tvosarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-tvossimulatorarm64/2.10.0/lifecycle-common-tvossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-tvossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-tvossimulatorarm64/2.10.0/lifecycle-common-tvossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-tvossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-tvossimulatorarm64/2.10.0/lifecycle-common-tvossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-tvossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-tvosx64/2.10.0/lifecycle-common-tvosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-tvosx64", - "version": "2.10.0" - } - }, - { - "name": "tvosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-tvosx64/2.10.0/lifecycle-common-tvosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-tvosx64", - "version": "2.10.0" - } - }, - { - "name": "tvosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-tvosx64/2.10.0/lifecycle-common-tvosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-tvosx64", - "version": "2.10.0" - } - }, - { - "name": "wasmJsApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../lifecycle-common-wasm-js/2.10.0/lifecycle-common-wasm-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-wasm-js", - "version": "2.10.0" - } - }, - { - "name": "wasmJsRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../lifecycle-common-wasm-js/2.10.0/lifecycle-common-wasm-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-wasm-js", - "version": "2.10.0" - } - }, - { - "name": "wasmJsSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../lifecycle-common-wasm-js/2.10.0/lifecycle-common-wasm-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-wasm-js", - "version": "2.10.0" - } - }, - { - "name": "watchosArm32ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchosarm32/2.10.0/lifecycle-common-watchosarm32-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchosarm32", - "version": "2.10.0" - } - }, - { - "name": "watchosArm32SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchosarm32/2.10.0/lifecycle-common-watchosarm32-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchosarm32", - "version": "2.10.0" - } - }, - { - "name": "watchosArm32MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchosarm32/2.10.0/lifecycle-common-watchosarm32-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchosarm32", - "version": "2.10.0" - } - }, - { - "name": "watchosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchosarm64/2.10.0/lifecycle-common-watchosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchosarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchosarm64/2.10.0/lifecycle-common-watchosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchosarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchosarm64/2.10.0/lifecycle-common-watchosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchosarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosDeviceArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchosdevicearm64/2.10.0/lifecycle-common-watchosdevicearm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchosdevicearm64", - "version": "2.10.0" - } - }, - { - "name": "watchosDeviceArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchosdevicearm64/2.10.0/lifecycle-common-watchosdevicearm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchosdevicearm64", - "version": "2.10.0" - } - }, - { - "name": "watchosDeviceArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchosdevicearm64/2.10.0/lifecycle-common-watchosdevicearm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchosdevicearm64", - "version": "2.10.0" - } - }, - { - "name": "watchosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchossimulatorarm64/2.10.0/lifecycle-common-watchossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchossimulatorarm64/2.10.0/lifecycle-common-watchossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchossimulatorarm64/2.10.0/lifecycle-common-watchossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchosx64/2.10.0/lifecycle-common-watchosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchosx64", - "version": "2.10.0" - } - }, - { - "name": "watchosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchosx64/2.10.0/lifecycle-common-watchosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchosx64", - "version": "2.10.0" - } - }, - { - "name": "watchosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-common-watchosx64/2.10.0/lifecycle-common-watchosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-common-watchosx64", - "version": "2.10.0" - } - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.pom deleted file mode 100644 index 383098b..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.pom +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-common - 2.10.0 - Lifecycle-Common - Android Lifecycle-Common - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2017 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - - - - androidx.lifecycle - lifecycle-common-jvm - 2.10.0 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.9.0 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - runtime - - - androidx.annotation - annotation - 1.9.1 - runtime - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.jar deleted file mode 100644 index fd6b42c..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.module deleted file mode 100644 index 6e0fb15..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.module +++ /dev/null @@ -1,639 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": "2.6.1", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "8.0-rc-2" - } - }, - "variants": [ - { - "name": "apiElements", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.jvm.version": 8, - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.1.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.6.4" - }, - "excludes": [ - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib-jdk8" - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib-jdk7" - } - ] - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-common-2.6.1.jar", - "url": "lifecycle-common-2.6.1.jar", - "size": 52314, - "sha512": "0a14c05591e2f13ce875edb53e1d06c492183eedfcd762f512ed6e16f386bfde534009276eab35e260d0b2e47389f8c1fb41e9d389f6472b4b6fe2b270c8729c", - "sha256": "f34831b6c71cd844e1d35d1be49d5e79447c5ab856346531b1e8676fda7374b1", - "sha1": "10f354fdb64868baecd67128560c5a0d6312c495", - "md5": "2d1b4c15f17d8c1b5fef67713253b140" - } - ] - }, - { - "name": "runtimeElements", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.jvm.version": 8, - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.1.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.6.4" - }, - "excludes": [ - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib-jdk8" - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib-jdk7" - } - ] - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-common-2.6.1.jar", - "url": "lifecycle-common-2.6.1.jar", - "size": 52314, - "sha512": "0a14c05591e2f13ce875edb53e1d06c492183eedfcd762f512ed6e16f386bfde534009276eab35e260d0b2e47389f8c1fb41e9d389f6472b4b6fe2b270c8729c", - "sha256": "f34831b6c71cd844e1d35d1be49d5e79447c5ab856346531b1e8676fda7374b1", - "sha1": "10f354fdb64868baecd67128560c5a0d6312c495", - "md5": "2d1b4c15f17d8c1b5fef67713253b140" - } - ] - }, - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-common-2.6.1-sources.jar", - "url": "lifecycle-common-2.6.1-sources.jar", - "size": 24682, - "sha512": "7727681b4a417bb8d23a4e1640de957986454a72756dd879c891dbc4a192d8018e4bfbd75f2de6faae4640dc77b5aa67577309088b9616793cff57f81890551c", - "sha256": "9b194a75aa6724bdac277be839eddd5d49192d64389d5ac02d1f6bb6c334124e", - "sha1": "a2a417e26f5d4c961d9621d0540014e1706d0c52", - "md5": "555b73990dfd5183e738ec2fee6f4a17" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.pom deleted file mode 100644 index ddf77ae..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.pom +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-common - 2.6.1 - Android Lifecycle-Common - Android Lifecycle-Common - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.6.1 - 2017 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common-java8 - 2.6.1 - - - androidx.lifecycle - lifecycle-compiler - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-ktx-lint - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-truth - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-process - 2.6.1 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.6.1 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-compose-samples - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-ktx-lint - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.6.1 - - - androidx.lifecycle - lifecycle-service - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-compose-samples - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.6.1 - - - - - - androidx.annotation - annotation - 1.1.0 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.10 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.6.4 - compile - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core-ktx/2.10.0/lifecycle-livedata-core-ktx-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core-ktx/2.10.0/lifecycle-livedata-core-ktx-2.10.0.aar deleted file mode 100644 index 53af05e..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core-ktx/2.10.0/lifecycle-livedata-core-ktx-2.10.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core-ktx/2.10.0/lifecycle-livedata-core-ktx-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core-ktx/2.10.0/lifecycle-livedata-core-ktx-2.10.0.pom deleted file mode 100644 index 35e0287..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core-ktx/2.10.0/lifecycle-livedata-core-ktx-2.10.0.pom +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - aar - LiveData Core Kotlin Extensions - Kotlin extensions for 'livedata-core' artifact - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2018 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - - - - androidx.lifecycle - lifecycle-livedata-core - [2.10.0] - compile - aar - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.aar deleted file mode 100644 index 7d34d35..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.module deleted file mode 100644 index f5e734b..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.module +++ /dev/null @@ -1,806 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": "2.10.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14428372" - } - }, - "variants": [ - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-livedata-core-2.10.0-sources.jar", - "url": "lifecycle-livedata-core-2.10.0-sources.jar", - "size": 12361, - "sha512": "a86c62426d848b859088e1931ed974dd0cd5b467251ed46f7bcdb01776ee66aee419996546c8ffa50d378a76533d87e97f7d93452e32e45a8c0cc2562e5fbdc9", - "sha256": "2a7e7f5ac6c3716d214cbeb2b6459c3d9de74e4fa169f99c198210626c701cba", - "sha1": "b27b638e9048333080231acaabe4df0a6be0c6ef", - "md5": "a2c22224955708f953531a3d48f97bf0" - } - ] - }, - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jspecify", - "module": "jspecify", - "version": { - "requires": "1.0.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-livedata-core-2.10.0.aar", - "url": "lifecycle-livedata-core-2.10.0.aar", - "size": 34341, - "sha512": "cf26cec1f5c840ca40af846a33d3a3795b71e453e677f4517076ccceae5388750abf80837520b5c535bc34e4179924ae48c8b288f5333d4c56cecb97a19062ac", - "sha256": "12dd61a9843ccebb4547d3ebe2f6d030ca8f6988d22f8fad19c0af93b4a97e95", - "sha1": "d7f69935e30d0eef2301f9130590bcbbe4cdf618", - "md5": "b0038e7a3dbb10d4c3fbdb7f230e5a38" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.arch.core", - "module": "core-common", - "version": { - "requires": "2.2.0" - } - }, - { - "group": "androidx.arch.core", - "module": "core-runtime", - "version": { - "requires": "2.2.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jspecify", - "module": "jspecify", - "version": { - "requires": "1.0.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-livedata-core-2.10.0.aar", - "url": "lifecycle-livedata-core-2.10.0.aar", - "size": 34341, - "sha512": "cf26cec1f5c840ca40af846a33d3a3795b71e453e677f4517076ccceae5388750abf80837520b5c535bc34e4179924ae48c8b288f5333d4c56cecb97a19062ac", - "sha256": "12dd61a9843ccebb4547d3ebe2f6d030ca8f6988d22f8fad19c0af93b4a97e95", - "sha1": "d7f69935e30d0eef2301f9130590bcbbe4cdf618", - "md5": "b0038e7a3dbb10d4c3fbdb7f230e5a38" - } - ] - }, - { - "name": "libraryVersionMetadata", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.usage": "library-version-metadata" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-livedata-core-2.10.0-versionMetadata.json", - "url": "lifecycle-livedata-core-2.10.0-versionMetadata.json", - "size": 1478, - "sha512": "1761adc34d5b70f622fe16126c562500a7598dfacb99adef90b422ec60dadce9a0e7b102c761e53fc4ffa456097e94e0f0d06b73578bc52b32927c0066dc2d95", - "sha256": "bffc890c75aafe9adf105af2d499cbd59143de01772112c7b31a43cc3c0f6659", - "sha1": "fcf0173ec1d18e336aedb73447316b905ada5b56", - "md5": "3e2420dfc5d1704d1147147ff80c773e" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.pom deleted file mode 100644 index 64fb7c0..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.pom +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - aar - Lifecycle LiveData Core - Android Lifecycle LiveData Core - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2017 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - - - - androidx.arch.core - core-runtime - 2.2.0 - runtime - aar - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - compile - - - androidx.arch.core - core-common - 2.2.0 - runtime - - - org.jspecify - jspecify - 1.0.0 - compile - - - androidx.lifecycle - lifecycle-common - [2.10.0] - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.aar deleted file mode 100644 index 8b67408..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.module deleted file mode 100644 index b5ac6be..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.module +++ /dev/null @@ -1,110 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": "2.5.1", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "7.4" - } - }, - "variants": [ - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.5.1" - } - } - ], - "files": [ - { - "name": "lifecycle-livedata-core-2.5.1.aar", - "url": "lifecycle-livedata-core-2.5.1.aar", - "size": 10078, - "sha512": "1425f323a8248394f2a67509a4429b57f83b3b381357e0903d37c049e8c0332cf7453660572cb433397651f7eaa196fb6de94656c34e702a1d201a4c50652a43", - "sha256": "ee792103ca248bfaf150c45a93871e4cf7e8cebab990e0f62f7de5d4ff2f209f", - "sha1": "a55defc29b52baf41304c058c91dba38b5c7651c", - "md5": "0d81175396403490f8834cd6906b2b03" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.arch.core", - "module": "core-common", - "version": { - "requires": "2.1.0" - } - }, - { - "group": "androidx.arch.core", - "module": "core-runtime", - "version": { - "requires": "2.1.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.5.1" - } - } - ], - "files": [ - { - "name": "lifecycle-livedata-core-2.5.1.aar", - "url": "lifecycle-livedata-core-2.5.1.aar", - "size": 10078, - "sha512": "1425f323a8248394f2a67509a4429b57f83b3b381357e0903d37c049e8c0332cf7453660572cb433397651f7eaa196fb6de94656c34e702a1d201a4c50652a43", - "sha256": "ee792103ca248bfaf150c45a93871e4cf7e8cebab990e0f62f7de5d4ff2f209f", - "sha1": "a55defc29b52baf41304c058c91dba38b5c7651c", - "md5": "0d81175396403490f8834cd6906b2b03" - } - ] - }, - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "files": [ - { - "name": "lifecycle-livedata-core-2.5.1-sources.jar", - "url": "lifecycle-livedata-core-2.5.1-sources.jar", - "size": 6814, - "sha512": "e41cbf39485d124f79536b444e5d0ee38d52e993422c7882b4a55bf7bbf573d2fb39eb52ebeeab71222f577bf71c5c1967ce7ac7b6f78108ef6b46d5fb55cfb5", - "sha256": "a7260859d2991284ae553251a4ff9730f3b57c35d14128f9b079dd5db28958f1", - "sha1": "38ecd5651d87b6db994df01f93fc72d6e59b846a", - "md5": "1c8d3854faf03cbaa6d83d2f57345fa6" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.pom deleted file mode 100644 index a845b6c..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.pom +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-livedata-core - 2.5.1 - aar - Android Lifecycle LiveData Core - Android Lifecycle LiveData Core - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.5.1 - 2017 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - androidx.arch.core - core-common - 2.1.0 - runtime - - - androidx.arch.core - core-runtime - 2.1.0 - runtime - aar - - - androidx.lifecycle - lifecycle-common - [2.5.1] - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0.aar deleted file mode 100644 index 27b091c..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0.pom deleted file mode 100644 index 8b38501..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0.pom +++ /dev/null @@ -1,51 +0,0 @@ - - - 4.0.0 - androidx.lifecycle - lifecycle-livedata - 2.0.0 - aar - Android Lifecycle LiveData - Android Lifecycle LiveData - https://developer.android.com/topic/libraries/architecture/index.html - 2017 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.arch.core - core-runtime - 2.0.0 - aar - compile - - - androidx.lifecycle - lifecycle-livedata-core - 2.0.0 - aar - compile - - - androidx.arch.core - core-common - 2.0.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.aar deleted file mode 100644 index 48f67c5..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.module deleted file mode 100644 index d35c09f..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.module +++ /dev/null @@ -1,841 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": "2.10.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14428372" - } - }, - "variants": [ - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-livedata-2.10.0-sources.jar", - "url": "lifecycle-livedata-2.10.0-sources.jar", - "size": 17750, - "sha512": "40e49d976f62f8c335b4093aa7eb5bc2ae383ee99178ce7dde0ee46a00172298529ed10250c6eb5b666b4392cab94ce815e8b18356f9fbe920a35b92605b67f2", - "sha256": "17b5c634db9da69c4d0d50d4d23ec83961a119aa5eb8ae7fce2d75ca9bbd2e89", - "sha1": "c7b9b48ba7397874fd93123e723ec791c14bf2c3", - "md5": "d593dbef8b58166d078186c968a949c3" - } - ] - }, - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.arch.core", - "module": "core-runtime", - "version": { - "requires": "2.2.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jspecify", - "module": "jspecify", - "version": { - "requires": "1.0.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-livedata-2.10.0.aar", - "url": "lifecycle-livedata-2.10.0.aar", - "size": 55037, - "sha512": "538a5746ce7e09ed40e220ba7c0662fb134e1a863ff0584f521bf47dc94c42d6ddeb261a2d3ee4014588334b07fc73db0778866a08e9539c357d983c4a47499b", - "sha256": "3e8c009fc88da1c52e4ed05a81269d5ac9bd405046f300307f5e3a17e201a6df", - "sha1": "ce0b5f930a64679a621c8bc67c060a7820c0a57b", - "md5": "8c1d4d31ac300b58e3a0210bec55ce5a" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.arch.core", - "module": "core-common", - "version": { - "requires": "2.2.0" - } - }, - { - "group": "androidx.arch.core", - "module": "core-runtime", - "version": { - "requires": "2.2.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jspecify", - "module": "jspecify", - "version": { - "requires": "1.0.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-livedata-2.10.0.aar", - "url": "lifecycle-livedata-2.10.0.aar", - "size": 55037, - "sha512": "538a5746ce7e09ed40e220ba7c0662fb134e1a863ff0584f521bf47dc94c42d6ddeb261a2d3ee4014588334b07fc73db0778866a08e9539c357d983c4a47499b", - "sha256": "3e8c009fc88da1c52e4ed05a81269d5ac9bd405046f300307f5e3a17e201a6df", - "sha1": "ce0b5f930a64679a621c8bc67c060a7820c0a57b", - "md5": "8c1d4d31ac300b58e3a0210bec55ce5a" - } - ] - }, - { - "name": "libraryVersionMetadata", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.usage": "library-version-metadata" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-livedata-2.10.0-versionMetadata.json", - "url": "lifecycle-livedata-2.10.0-versionMetadata.json", - "size": 4142, - "sha512": "53ca1849ce69df9ec889c98f3007b6c1362c21b585e0a856dd33649549bd29266fe779e20c0b080bb6a879e92b62188d02840eb5895c2f726d6e5db7d9d90c92", - "sha256": "7aef82ea2272f506fedf6e6383e195828cc03808d9f588e7cdb79784cfa2293c", - "sha1": "801fd9f2a88649de2c7c644c037f19bce41b88eb", - "md5": "cb0e81f74d9442eab01a9631a9bccc95" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.pom deleted file mode 100644 index 405485e..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.pom +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-livedata - 2.10.0 - aar - Lifecycle LiveData - Android Lifecycle LiveData - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2017 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - - - - androidx.arch.core - core-common - 2.2.0 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.9.0 - compile - - - androidx.arch.core - core-runtime - 2.2.0 - compile - aar - - - androidx.lifecycle - lifecycle-livedata-core - [2.10.0] - compile - aar - - - androidx.lifecycle - lifecycle-livedata-core-ktx - [2.10.0] - compile - aar - - - org.jspecify - jspecify - 1.0.0 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-process/2.10.0/lifecycle-process-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-process/2.10.0/lifecycle-process-2.10.0.aar deleted file mode 100644 index 8481ed3..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-process/2.10.0/lifecycle-process-2.10.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-process/2.10.0/lifecycle-process-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-process/2.10.0/lifecycle-process-2.10.0.pom deleted file mode 100644 index 578bfc8..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-process/2.10.0/lifecycle-process-2.10.0.pom +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-process - 2.10.0 - aar - Lifecycle Process - Android Lifecycle Process - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2018 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - - - - androidx.startup - startup-runtime - 1.1.1 - compile - aar - - - androidx.annotation - annotation - 1.9.1 - compile - - - androidx.lifecycle - lifecycle-runtime - [2.10.0] - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.aar deleted file mode 100644 index dd0226f..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.module deleted file mode 100644 index 6388211..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.module +++ /dev/null @@ -1,688 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "url": "../../lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": "2.10.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14428372" - } - }, - "variants": [ - { - "name": "androidApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "androidx.arch.core", - "module": "core-common", - "version": { - "requires": "2.2.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jspecify", - "module": "jspecify", - "version": { - "requires": "1.0.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-runtime.aar", - "url": "lifecycle-runtime-android-2.10.0.aar", - "size": 80161, - "sha512": "98566f7511856528efbb1ff1a25c24caf9a6a98d991ac49496755496aa7cc1a4667cd61715b8eb1122672df6fc4ae02126b7685c8d0bfa9d0c8ac5f957786645", - "sha256": "2193a1573d623f37b20c7d27d1a8f903a72f651cc6f32e5794f85dda744fee75", - "sha1": "40be68aed3188a20bbf08da48a4ef65ebc4abfe0", - "md5": "327b4eaa6050558c7e004b4d0b1715d0" - } - ] - }, - { - "name": "androidRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "androidx.arch.core", - "module": "core-common", - "version": { - "requires": "2.2.0" - } - }, - { - "group": "androidx.arch.core", - "module": "core-runtime", - "version": { - "requires": "2.2.0" - } - }, - { - "group": "androidx.core", - "module": "core-viewtree", - "version": { - "requires": "1.0.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "androidx.profileinstaller", - "module": "profileinstaller", - "version": { - "requires": "1.4.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jspecify", - "module": "jspecify", - "version": { - "requires": "1.0.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "org.jetbrains.androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.9.5" - }, - "reason": "prevents symbols duplication" - } - ], - "files": [ - { - "name": "lifecycle-runtime.aar", - "url": "lifecycle-runtime-android-2.10.0.aar", - "size": 80161, - "sha512": "98566f7511856528efbb1ff1a25c24caf9a6a98d991ac49496755496aa7cc1a4667cd61715b8eb1122672df6fc4ae02126b7685c8d0bfa9d0c8ac5f957786645", - "sha256": "2193a1573d623f37b20c7d27d1a8f903a72f651cc6f32e5794f85dda744fee75", - "sha1": "40be68aed3188a20bbf08da48a4ef65ebc4abfe0", - "md5": "327b4eaa6050558c7e004b4d0b1715d0" - } - ] - }, - { - "name": "androidSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-runtime-android-2.10.0-sources.jar", - "url": "lifecycle-runtime-android-2.10.0-sources.jar", - "size": 23154, - "sha512": "73d21e9522a60296936da90a91872c02f3badfaec2b97c05f685995c4ea7f667be28f97b2c8ac66034350c01743c5d4b52ffbe057bcf0c31217cf25dcaeeeb3c", - "sha256": "d231316b84e92d179c4fc2bce85b560fe00f32b36bd4b5bde901a6ded60ca7b5", - "sha1": "6696da66195e08dada195ae27819da26f4273cb0", - "md5": "16f355bcea88e31a07e8cd8e55b570f9" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.pom deleted file mode 100644 index b046611..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.pom +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-runtime-android - 2.10.0 - aar - Lifecycle Runtime - Android Lifecycle Runtime - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2017 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - org.jetbrains.androidx.lifecycle - lifecycle-runtime - 2.9.5 - - - - - - androidx.arch.core - core-runtime - 2.2.0 - runtime - - - androidx.profileinstaller - profileinstaller - 1.4.0 - runtime - aar - - - org.jspecify - jspecify - 1.0.0 - compile - - - androidx.annotation - annotation-jvm - 1.9.1 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.9.0 - compile - - - androidx.core - core-viewtree - 1.0.0 - runtime - aar - - - androidx.lifecycle - lifecycle-common-jvm - [2.10.0] - compile - - - androidx.arch.core - core-common - 2.2.0 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.jar deleted file mode 100644 index d6cb92d..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.pom deleted file mode 100644 index 376ff44..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.pom +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-runtime-desktop - 2.10.0 - Lifecycle Runtime - Android Lifecycle Runtime - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2017 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - org.jetbrains.androidx.lifecycle - lifecycle-runtime - 2.9.5 - - - - - - androidx.lifecycle - lifecycle-common-jvm - [2.10.0] - compile - - - androidx.annotation - annotation-jvm - 1.9.1 - compile - - - androidx.arch.core - core-common - 2.2.0 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.aar deleted file mode 100644 index 16c4e0e..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.module deleted file mode 100644 index 73f7a37..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.module +++ /dev/null @@ -1,631 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "url": "../../lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": "2.10.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14428372" - } - }, - "variants": [ - { - "name": "androidApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.9.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-runtime-ktx.aar", - "url": "lifecycle-runtime-ktx-android-2.10.0.aar", - "size": 5337, - "sha512": "50e2e514780d7b6e07b6d6fa5400d1a2c171b1f881ed60a5c334ab8fff6d879fed61ab08b59fb3db716f92926656606d2db13be864928fbb07c4cef445845fc3", - "sha256": "871883703339f87284d232cb436e317c6f4af5612d92b43f27c6b13b92109fa7", - "sha1": "95f019107651ac50e0402896f6eb2e9944e344be", - "md5": "ce7d2a8fc40a54f816d1e1621318408a" - } - ] - }, - { - "name": "androidRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.9.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-runtime-ktx.aar", - "url": "lifecycle-runtime-ktx-android-2.10.0.aar", - "size": 5337, - "sha512": "50e2e514780d7b6e07b6d6fa5400d1a2c171b1f881ed60a5c334ab8fff6d879fed61ab08b59fb3db716f92926656606d2db13be864928fbb07c4cef445845fc3", - "sha256": "871883703339f87284d232cb436e317c6f4af5612d92b43f27c6b13b92109fa7", - "sha1": "95f019107651ac50e0402896f6eb2e9944e344be", - "md5": "ce7d2a8fc40a54f816d1e1621318408a" - } - ] - }, - { - "name": "androidSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-runtime-ktx-android-2.10.0-sources.jar", - "url": "lifecycle-runtime-ktx-android-2.10.0-sources.jar", - "size": 4448, - "sha512": "c7e2ae0ea4988dcba3f97532b9ea0cf78955da6f3a1356a2131f04cfbc9c874bdbf5412fc72dae90a7adf1115289158ecc9e4c2726e166632e8c7398108b585b", - "sha256": "c5df5b7bfa9c6d61ef14047bd9de207db688188c0d5d7b5f5c4ad6613806b1fc", - "sha1": "17e8e0f2128f99c4c3543e2c1529d3c75e94eb13", - "md5": "ec4925012898d8e9ca06f365036f3872" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.pom deleted file mode 100644 index 960e084..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.pom +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-runtime-ktx-android - 2.10.0 - aar - Lifecycle Kotlin Extensions - Kotlin extensions for 'lifecycle' artifact - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2019 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - compile - - - androidx.lifecycle - lifecycle-runtime-android - [2.10.0] - compile - aar - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.9.0 - compile - - - androidx.annotation - annotation-jvm - 1.9.1 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.aar deleted file mode 100644 index 59cc69b..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.jar deleted file mode 100644 index fa7c328..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.module deleted file mode 100644 index 8861e10..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.module +++ /dev/null @@ -1,821 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": "2.10.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14428372" - } - }, - "variants": [ - { - "name": "metadataApiElements", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.platform.type": "common" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-runtime-ktx-metadata-2.10.0.jar", - "url": "lifecycle-runtime-ktx-2.10.0.jar", - "size": 4835, - "sha512": "5cfaec5cf07804ca53668cc006a26cf273f4b4a20e489f0f1d82217daff2274a850a6291fb51c750a9a6a2150b7781e81595212b1d10bd024c22af4b778cda1c", - "sha256": "5d74d1e9c45d538aafc48b2313e598eff9b4a13bfee9f2f3d776f5274d5cde22", - "sha1": "fb55f05d0fa494c4cbb84d7814fcd16e55c2319f", - "md5": "098b2ab23a512228e8f635a73e4364a8" - } - ] - }, - { - "name": "metadataSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "common" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-runtime-ktx-kotlin-2.10.0-sources.jar", - "url": "lifecycle-runtime-ktx-2.10.0-sources.jar", - "size": 4448, - "sha512": "c7e2ae0ea4988dcba3f97532b9ea0cf78955da6f3a1356a2131f04cfbc9c874bdbf5412fc72dae90a7adf1115289158ecc9e4c2726e166632e8c7398108b585b", - "sha256": "c5df5b7bfa9c6d61ef14047bd9de207db688188c0d5d7b5f5c4ad6613806b1fc", - "sha1": "17e8e0f2128f99c4c3543e2c1529d3c75e94eb13", - "md5": "ec4925012898d8e9ca06f365036f3872" - } - ] - }, - { - "name": "androidxSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "androidx-multiplatform-docs" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-runtime-ktx-2.10.0-multiplatform-sources.jar", - "url": "lifecycle-runtime-ktx-2.10.0-multiplatform-sources.jar", - "size": 4740, - "sha512": "5fe8d9c2ea9b9eb883dccee1bf01c51bacbc00fdaf6e29339a3e0b0d953224215f16a396cde65b69aebb3e71813267b0994fd25f84765fad25610eeff2981856", - "sha256": "9a5b212cb7751d756513357f6b012901e7ca0caee4229544c64b57aa3d09f029", - "sha1": "3889f4f8f719f05a3bcafee62ac501d66b0ab15b", - "md5": "22d0c116a002878882586567cb679cc0" - } - ] - }, - { - "name": "libraryVersionMetadata", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.usage": "library-version-metadata" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "apiLevels.json", - "url": "lifecycle-runtime-ktx-2.10.0-versionMetadata.json", - "size": 5626, - "sha512": "6dd830cfb7beebaefdd6f8d295b48713eaeebf9499f6ddc855c926143422891c88c245cfecd7699e4323e25ba5baabf478cdd9461f8f18d7d34e246a23a2371c", - "sha256": "6a501c6e66630ef6e7ee98833fa45736afbf25ffbb04a242f00f3de35750e4c7", - "sha1": "cece383c8c5dcbfdc9c4436129111bc5cc433058", - "md5": "864067359cadf96bdda260c705ace2c1" - } - ] - }, - { - "name": "androidApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-android", - "version": "2.10.0" - } - }, - { - "name": "androidRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-android", - "version": "2.10.0" - } - }, - { - "name": "androidSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-android", - "version": "2.10.0" - } - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.pom deleted file mode 100644 index 62bedd2..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.pom +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - aar - Lifecycle Kotlin Extensions - Kotlin extensions for 'lifecycle' artifact - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2019 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - - - - androidx.annotation - annotation - 1.9.1 - runtime - - - androidx.lifecycle - lifecycle-runtime - [2.10.0] - runtime - - - androidx.lifecycle - lifecycle-runtime-ktx-android - 2.10.0 - aar - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - runtime - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.aar deleted file mode 100644 index aa3caa4..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.module deleted file mode 100644 index 3117f15..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.module +++ /dev/null @@ -1,627 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": "2.6.1", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "8.0-rc-2" - } - }, - "variants": [ - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.0.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.6.4" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-runtime-ktx-2.6.1.aar", - "url": "lifecycle-runtime-ktx-2.6.1.aar", - "size": 61591, - "sha512": "f0b53fa1ce84ddd56eaef082455f1f06deacd3e602085b9faba0d95e795baf7b1007e6726f8f3e71a65355e11eaebac9a6c8359f7c2fad044da51696076ded15", - "sha256": "28a0b834f40edd52e2f8010bdc3057d2a0cc76aaa5ac9311adb0b9ce919ca9cc", - "sha1": "33decb94ec41360796e2160159bdca7dde688d0f", - "md5": "3567ed247500cd4c0e4b9ccad3f6d37e" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.0.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.6.4" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-runtime-ktx-2.6.1.aar", - "url": "lifecycle-runtime-ktx-2.6.1.aar", - "size": 61591, - "sha512": "f0b53fa1ce84ddd56eaef082455f1f06deacd3e602085b9faba0d95e795baf7b1007e6726f8f3e71a65355e11eaebac9a6c8359f7c2fad044da51696076ded15", - "sha256": "28a0b834f40edd52e2f8010bdc3057d2a0cc76aaa5ac9311adb0b9ce919ca9cc", - "sha1": "33decb94ec41360796e2160159bdca7dde688d0f", - "md5": "3567ed247500cd4c0e4b9ccad3f6d37e" - } - ] - }, - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-runtime-ktx-2.6.1-sources.jar", - "url": "lifecycle-runtime-ktx-2.6.1-sources.jar", - "size": 7211, - "sha512": "100fd52d3422a2b8d95ebcf26ea99ce1c8eeafc5ef6676fb37a030b35b36da617e45c56748c41d7f5b2061ff78735a29573b63715e66fdf82443e2a51b03b4b5", - "sha256": "8503ed85cf65d200b9079e660a2b2c645cb322d74558034b08d364f0e349662a", - "sha1": "6ad3251adb760573a519eebbdfb90fd2384b185d", - "md5": "b30c0ae8153c899de498250c2a31db60" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.pom deleted file mode 100644 index 7318a4c..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.pom +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-runtime-ktx - 2.6.1 - aar - Android Lifecycle Kotlin Extensions - Kotlin extensions for 'lifecycle' artifact - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.6.1 - 2019 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.6.1 - - - androidx.lifecycle - lifecycle-common-java8 - 2.6.1 - - - androidx.lifecycle - lifecycle-compiler - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-ktx-lint - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-truth - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-process - 2.6.1 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.6.1 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-compose-samples - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-ktx-lint - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.6.1 - - - androidx.lifecycle - lifecycle-service - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-compose-samples - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.6.1 - - - - - - androidx.annotation - annotation - 1.0.0 - compile - - - androidx.lifecycle - lifecycle-runtime - [2.6.1] - compile - aar - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.10 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.6.4 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.aar deleted file mode 100644 index cb6bf15..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.jar deleted file mode 100644 index 7b1bf01..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.module deleted file mode 100644 index 648cf55..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.module +++ /dev/null @@ -1,1760 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": "2.10.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14428372" - } - }, - "variants": [ - { - "name": "metadataApiElements", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.platform.type": "common" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "org.jetbrains.androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.9.5" - }, - "reason": "prevents symbols duplication" - } - ], - "files": [ - { - "name": "lifecycle-runtime-metadata-2.10.0.jar", - "url": "lifecycle-runtime-2.10.0.jar", - "size": 16198, - "sha512": "466ab3d2108cbc036317128475d209d3ce197647cdf8429d628ecfb17fdc12c4f465565b7e842a6aca381ed2d2e936fc255f86f1afcfe80a4e8754acf6d340fd", - "sha256": "d944d204a450ed01a32effccfb4832bf9d6460090b717a88a013381d204ab639", - "sha1": "97a9e1dd76b37012dd8ce84d3aab4aafe76d84ba", - "md5": "8918a2dd9ae82552f6d7ecfef6438ff0" - } - ] - }, - { - "name": "metadataSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "common" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-runtime-kotlin-2.10.0-sources.jar", - "url": "lifecycle-runtime-2.10.0-sources.jar", - "size": 22332, - "sha512": "444110445c86dc51f0841cf0124106737d3f98157361cb8f6cf28927365c306240a056c6aefa479294215f90b949c28ccfd2982ccc489b55f035842b54fbd186", - "sha256": "728d94fa95980ab0f3839682bded2f7bab8c97f180badc04330cf88b7a061cc0", - "sha1": "418c10fc765fbaf8fae84c79818adbe53f09bdab", - "md5": "bb5ca5f239fddd01ba83db394b6af87a" - } - ] - }, - { - "name": "androidxSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "androidx-multiplatform-docs" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-runtime-2.10.0-multiplatform-sources.jar", - "url": "lifecycle-runtime-2.10.0-multiplatform-sources.jar", - "size": 35690, - "sha512": "43ddc4d14195f892b5c7e02722a95e093cfb38121033fa97401a1a4efbce2cd63676c6a600a0ae7b551a7426e2c4175b19faeb0084dadfbb7653cd95714c12e5", - "sha256": "856505ae2b07fb607029bff771502f8f1e9b97e6e1c646824322948970671d95", - "sha1": "0fffb8ee33a5112f585fe4fdf6f9319a1a528a55", - "md5": "ab9e2de004f7dec532ccf9f4b097f06c" - } - ] - }, - { - "name": "libraryVersionMetadata", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.usage": "library-version-metadata" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "apiLevels.json", - "url": "lifecycle-runtime-2.10.0-versionMetadata.json", - "size": 4573, - "sha512": "14a8f8bb632b6726f89177baf41bbd4f910d53ae94b0234095d1c53bc2fac91dd48c8333b606f1478abfe3c9053fbb47e9e60d8695d1daef2b6456d99a5f866e", - "sha256": "2bb6ae084e357e56f7d62bb608de80f069c460e118d98a75b1dbe745349ed38e", - "sha1": "cf74d0d0bf69f658fe4bec12e39302a50f356446", - "md5": "fe09da7ea5b9562e9f26268a1c47e901" - } - ] - }, - { - "name": "androidApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-android", - "version": "2.10.0" - } - }, - { - "name": "androidRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-android", - "version": "2.10.0" - } - }, - { - "name": "androidSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-android", - "version": "2.10.0" - } - }, - { - "name": "desktopApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-desktop", - "version": "2.10.0" - } - }, - { - "name": "desktopRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-desktop", - "version": "2.10.0" - } - }, - { - "name": "desktopSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-desktop", - "version": "2.10.0" - } - }, - { - "name": "iosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-iosarm64/2.10.0/lifecycle-runtime-iosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-iosarm64", - "version": "2.10.0" - } - }, - { - "name": "iosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-iosarm64/2.10.0/lifecycle-runtime-iosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-iosarm64", - "version": "2.10.0" - } - }, - { - "name": "iosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-iosarm64/2.10.0/lifecycle-runtime-iosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-iosarm64", - "version": "2.10.0" - } - }, - { - "name": "iosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-iossimulatorarm64/2.10.0/lifecycle-runtime-iossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-iossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "iosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-iossimulatorarm64/2.10.0/lifecycle-runtime-iossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-iossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "iosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-iossimulatorarm64/2.10.0/lifecycle-runtime-iossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-iossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "iosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-iosx64/2.10.0/lifecycle-runtime-iosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-iosx64", - "version": "2.10.0" - } - }, - { - "name": "iosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-iosx64/2.10.0/lifecycle-runtime-iosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-iosx64", - "version": "2.10.0" - } - }, - { - "name": "iosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-iosx64/2.10.0/lifecycle-runtime-iosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-iosx64", - "version": "2.10.0" - } - }, - { - "name": "jsApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../lifecycle-runtime-js/2.10.0/lifecycle-runtime-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-js", - "version": "2.10.0" - } - }, - { - "name": "jsRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../lifecycle-runtime-js/2.10.0/lifecycle-runtime-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-js", - "version": "2.10.0" - } - }, - { - "name": "jsSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../lifecycle-runtime-js/2.10.0/lifecycle-runtime-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-js", - "version": "2.10.0" - } - }, - { - "name": "linuxArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "linux_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-linuxarm64/2.10.0/lifecycle-runtime-linuxarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-linuxarm64", - "version": "2.10.0" - } - }, - { - "name": "linuxArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "linux_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-linuxarm64/2.10.0/lifecycle-runtime-linuxarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-linuxarm64", - "version": "2.10.0" - } - }, - { - "name": "linuxX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "linux_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-linuxx64/2.10.0/lifecycle-runtime-linuxx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-linuxx64", - "version": "2.10.0" - } - }, - { - "name": "linuxX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "linux_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-linuxx64/2.10.0/lifecycle-runtime-linuxx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-linuxx64", - "version": "2.10.0" - } - }, - { - "name": "macosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-macosarm64/2.10.0/lifecycle-runtime-macosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-macosarm64", - "version": "2.10.0" - } - }, - { - "name": "macosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-macosarm64/2.10.0/lifecycle-runtime-macosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-macosarm64", - "version": "2.10.0" - } - }, - { - "name": "macosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-macosarm64/2.10.0/lifecycle-runtime-macosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-macosarm64", - "version": "2.10.0" - } - }, - { - "name": "macosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-macosx64/2.10.0/lifecycle-runtime-macosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-macosx64", - "version": "2.10.0" - } - }, - { - "name": "macosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-macosx64/2.10.0/lifecycle-runtime-macosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-macosx64", - "version": "2.10.0" - } - }, - { - "name": "macosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-macosx64/2.10.0/lifecycle-runtime-macosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-macosx64", - "version": "2.10.0" - } - }, - { - "name": "mingwX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "mingw_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-mingwx64/2.10.0/lifecycle-runtime-mingwx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-mingwx64", - "version": "2.10.0" - } - }, - { - "name": "mingwX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "mingw_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-mingwx64/2.10.0/lifecycle-runtime-mingwx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-mingwx64", - "version": "2.10.0" - } - }, - { - "name": "tvosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-tvosarm64/2.10.0/lifecycle-runtime-tvosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-tvosarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-tvosarm64/2.10.0/lifecycle-runtime-tvosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-tvosarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-tvosarm64/2.10.0/lifecycle-runtime-tvosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-tvosarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-tvossimulatorarm64/2.10.0/lifecycle-runtime-tvossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-tvossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-tvossimulatorarm64/2.10.0/lifecycle-runtime-tvossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-tvossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-tvossimulatorarm64/2.10.0/lifecycle-runtime-tvossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-tvossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-tvosx64/2.10.0/lifecycle-runtime-tvosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-tvosx64", - "version": "2.10.0" - } - }, - { - "name": "tvosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-tvosx64/2.10.0/lifecycle-runtime-tvosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-tvosx64", - "version": "2.10.0" - } - }, - { - "name": "tvosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-tvosx64/2.10.0/lifecycle-runtime-tvosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-tvosx64", - "version": "2.10.0" - } - }, - { - "name": "wasmJsApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../lifecycle-runtime-wasm-js/2.10.0/lifecycle-runtime-wasm-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-wasm-js", - "version": "2.10.0" - } - }, - { - "name": "wasmJsRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../lifecycle-runtime-wasm-js/2.10.0/lifecycle-runtime-wasm-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-wasm-js", - "version": "2.10.0" - } - }, - { - "name": "wasmJsSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../lifecycle-runtime-wasm-js/2.10.0/lifecycle-runtime-wasm-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-wasm-js", - "version": "2.10.0" - } - }, - { - "name": "watchosArm32ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchosarm32/2.10.0/lifecycle-runtime-watchosarm32-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchosarm32", - "version": "2.10.0" - } - }, - { - "name": "watchosArm32SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchosarm32/2.10.0/lifecycle-runtime-watchosarm32-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchosarm32", - "version": "2.10.0" - } - }, - { - "name": "watchosArm32MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchosarm32/2.10.0/lifecycle-runtime-watchosarm32-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchosarm32", - "version": "2.10.0" - } - }, - { - "name": "watchosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchosarm64/2.10.0/lifecycle-runtime-watchosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchosarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchosarm64/2.10.0/lifecycle-runtime-watchosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchosarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchosarm64/2.10.0/lifecycle-runtime-watchosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchosarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosDeviceArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchosdevicearm64/2.10.0/lifecycle-runtime-watchosdevicearm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchosdevicearm64", - "version": "2.10.0" - } - }, - { - "name": "watchosDeviceArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchosdevicearm64/2.10.0/lifecycle-runtime-watchosdevicearm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchosdevicearm64", - "version": "2.10.0" - } - }, - { - "name": "watchosDeviceArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchosdevicearm64/2.10.0/lifecycle-runtime-watchosdevicearm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchosdevicearm64", - "version": "2.10.0" - } - }, - { - "name": "watchosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchossimulatorarm64/2.10.0/lifecycle-runtime-watchossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchossimulatorarm64/2.10.0/lifecycle-runtime-watchossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchossimulatorarm64/2.10.0/lifecycle-runtime-watchossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchosx64/2.10.0/lifecycle-runtime-watchosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchosx64", - "version": "2.10.0" - } - }, - { - "name": "watchosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchosx64/2.10.0/lifecycle-runtime-watchosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchosx64", - "version": "2.10.0" - } - }, - { - "name": "watchosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-runtime-watchosx64/2.10.0/lifecycle-runtime-watchosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-watchosx64", - "version": "2.10.0" - } - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.pom deleted file mode 100644 index 23d3aea..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.pom +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-runtime - 2.10.0 - aar - Lifecycle Runtime - Android Lifecycle Runtime - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2017 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - org.jetbrains.androidx.lifecycle - lifecycle-runtime - 2.9.5 - - - - - - androidx.annotation - annotation - 1.9.1 - runtime - - - androidx.lifecycle - lifecycle-common - [2.10.0] - runtime - - - androidx.lifecycle - lifecycle-runtime-android - 2.10.0 - aar - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - runtime - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.aar deleted file mode 100644 index 96a8b4b..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.module deleted file mode 100644 index c8af0dc..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.module +++ /dev/null @@ -1,646 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "url": "../../lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": "2.10.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14428372" - } - }, - "variants": [ - { - "name": "androidApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel.aar", - "url": "lifecycle-viewmodel-android-2.10.0.aar", - "size": 64099, - "sha512": "9844c3668037a4e9ab0f826ae2d60d1b0b95176ebdbf0a9f3be5d5f7fa835ffbeb54c33fc56f6f506c9177acce792dacce5f8ef7a4792e150082eb3356c07059", - "sha256": "9303287030027ca0b8cf98a748ddeb121ec1bfa1312c0069428e4765bbabce78", - "sha1": "927c91fe0892e3f71d67cd430538475af9aefc29", - "md5": "02113908691c074620ce4b6d995c2f2f" - } - ] - }, - { - "name": "androidRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "androidx.core", - "module": "core-viewtree", - "version": { - "requires": "1.0.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "org.jetbrains.androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.9.5" - }, - "reason": "prevents symbols duplication" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel.aar", - "url": "lifecycle-viewmodel-android-2.10.0.aar", - "size": 64099, - "sha512": "9844c3668037a4e9ab0f826ae2d60d1b0b95176ebdbf0a9f3be5d5f7fa835ffbeb54c33fc56f6f506c9177acce792dacce5f8ef7a4792e150082eb3356c07059", - "sha256": "9303287030027ca0b8cf98a748ddeb121ec1bfa1312c0069428e4765bbabce78", - "sha1": "927c91fe0892e3f71d67cd430538475af9aefc29", - "md5": "02113908691c074620ce4b6d995c2f2f" - } - ] - }, - { - "name": "androidSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-android-2.10.0-sources.jar", - "url": "lifecycle-viewmodel-android-2.10.0-sources.jar", - "size": 43144, - "sha512": "5d29e6a0ff10a4b99262b7b97e99d59f2cdb343a808e276e11d649e3fc65262abcf7f1bb0db95aa8bb3b0ed940aca5f02c64526d8ce2f890eaddc7a395c685fb", - "sha256": "7a544326f5a98a7091e33a4d0b78ab54db56feb1bfdac88382423200d4ada3c9", - "sha1": "adac1144ef521bf82be25279bc90de8bbd489703", - "md5": "0294b81f42b4451e033bad003d5a0ff7" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.pom deleted file mode 100644 index 8bcc92b..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.pom +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-viewmodel-android - 2.10.0 - aar - Lifecycle ViewModel - Android Lifecycle ViewModel - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2017 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - org.jetbrains.androidx.lifecycle - lifecycle-viewmodel - 2.9.5 - - - - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.9.0 - compile - - - androidx.core - core-viewtree - 1.0.0 - runtime - aar - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.9.0 - compile - - - androidx.annotation - annotation-jvm - 1.9.1 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.jar deleted file mode 100644 index b3ab2d8..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.pom deleted file mode 100644 index a0b9946..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.pom +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-viewmodel-desktop - 2.10.0 - Lifecycle ViewModel - Android Lifecycle ViewModel - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2017 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - org.jetbrains.androidx.lifecycle - lifecycle-viewmodel - 2.9.5 - - - - - - androidx.annotation - annotation-jvm - 1.9.1 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.9.0 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.aar deleted file mode 100644 index eaba497..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.module deleted file mode 100644 index bdda8f6..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.module +++ /dev/null @@ -1,792 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": "2.10.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14428372" - } - }, - "variants": [ - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-ktx-2.10.0-sources.jar", - "url": "lifecycle-viewmodel-ktx-2.10.0-sources.jar", - "size": 4456, - "sha512": "3210804612a245fa73b486c4128db7505f2a69c52c220f82a4f2757c18f9a103a5869c101b5a0646ac63ea1759bf9a5b73fca7043937d59db689e48627129e67", - "sha256": "f15c9fbd9ade832f04d2deed9cdc1732697e63b8c34ffae0ada712197abcc6ec", - "sha1": "6b61248b684d6cc83a4855ef1b98dd76536d8ec7", - "md5": "c11d236a7f7df430fcfd0e95cbd2e66f" - } - ] - }, - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.9.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-ktx-2.10.0.aar", - "url": "lifecycle-viewmodel-ktx-2.10.0.aar", - "size": 5812, - "sha512": "45c2f93d084cbd479fed5a021f61c7b379d84fdd43c640a827a60afb240b9cc7b9d74ad664256ea20aae8e72d66308e8a813665686e4e20135d1c28dc4f72cf5", - "sha256": "54295ac86b67886dc0613e38f621c531995d0662005fc763e340e19a90994f84", - "sha1": "5d6ee8e35b6f1c771fc6e98db62005a05cfdefa9", - "md5": "8fe6803c2b0ee5aa740feb7df81c78d8" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.9.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-ktx-2.10.0.aar", - "url": "lifecycle-viewmodel-ktx-2.10.0.aar", - "size": 5812, - "sha512": "45c2f93d084cbd479fed5a021f61c7b379d84fdd43c640a827a60afb240b9cc7b9d74ad664256ea20aae8e72d66308e8a813665686e4e20135d1c28dc4f72cf5", - "sha256": "54295ac86b67886dc0613e38f621c531995d0662005fc763e340e19a90994f84", - "sha1": "5d6ee8e35b6f1c771fc6e98db62005a05cfdefa9", - "md5": "8fe6803c2b0ee5aa740feb7df81c78d8" - } - ] - }, - { - "name": "libraryVersionMetadata", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.usage": "library-version-metadata" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-ktx-2.10.0-versionMetadata.json", - "url": "lifecycle-viewmodel-ktx-2.10.0-versionMetadata.json", - "size": 1064, - "sha512": "039a18d778b0ffee554b3fd07f32f3a868e64657b390063295a157f4ac4857853989aa4bcf72c3b49cdc21b1ec163dafc4bc2cc70f8c7c6986eb2130bbbebda0", - "sha256": "0b7504ca8554d1df14e92a8f7993eae30cf7343537d3bdbb55d5910d69dc9de3", - "sha1": "5b77039c7e201889161f5edc00b99631d318b120", - "md5": "fdc4c2ceb77ccd95893781f948ba6670" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.pom deleted file mode 100644 index c9262ed..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.pom +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - aar - Lifecycle ViewModel Kotlin Extensions - Kotlin extensions for 'viewmodel' artifact - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2018 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - - - - androidx.lifecycle - lifecycle-viewmodel - [2.10.0] - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.9.0 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.aar deleted file mode 100644 index adad0e5..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.module deleted file mode 100644 index 6ae6344..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.module +++ /dev/null @@ -1,613 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": "2.6.1", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "8.0-rc-2" - } - }, - "variants": [ - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.6.4" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-ktx-2.6.1.aar", - "url": "lifecycle-viewmodel-ktx-2.6.1.aar", - "size": 4793, - "sha512": "1a6dc42daacf9954856fcd15f436a05ab308a53991fe2dde7beaa5b5d7feb63d5c0a0768ccfbdde1edca32077ef5dc5a3543ba3ea21ea6ed7099e649f4bd5dd4", - "sha256": "7fc0fa234a3321b1f34db5862b17da83d1c62c1bc66ec2fd4f1bb0a771acfabb", - "sha1": "00a6214896fba4ed16b44b0c051e6ceea24be554", - "md5": "9df0b4895728001d6acb45d829cc9451" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.6.4" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-ktx-2.6.1.aar", - "url": "lifecycle-viewmodel-ktx-2.6.1.aar", - "size": 4793, - "sha512": "1a6dc42daacf9954856fcd15f436a05ab308a53991fe2dde7beaa5b5d7feb63d5c0a0768ccfbdde1edca32077ef5dc5a3543ba3ea21ea6ed7099e649f4bd5dd4", - "sha256": "7fc0fa234a3321b1f34db5862b17da83d1c62c1bc66ec2fd4f1bb0a771acfabb", - "sha1": "00a6214896fba4ed16b44b0c051e6ceea24be554", - "md5": "9df0b4895728001d6acb45d829cc9451" - } - ] - }, - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-ktx-2.6.1-sources.jar", - "url": "lifecycle-viewmodel-ktx-2.6.1-sources.jar", - "size": 1410, - "sha512": "0d366e912ef3af47e3ae5b2119f41e7d26df08715e369bc0cd5116855c19ce4344d27c9dd331dc15283f36e9d41428d2d19b70410023efbd2c77ef970ba442a0", - "sha256": "dc9b84fecf2d5c7eade2d86e75a5c407c81209698e001fe822a5ed1896571d67", - "sha1": "a05e599dfc3c73f4dbbd43acef2fcaec28d0704a", - "md5": "588eac84e61d6f9ee3e62a2086187a90" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.pom deleted file mode 100644 index 7937de7..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.pom +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.6.1 - aar - Android Lifecycle ViewModel Kotlin Extensions - Kotlin extensions for 'viewmodel' artifact - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.6.1 - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.6.1 - - - androidx.lifecycle - lifecycle-common-java8 - 2.6.1 - - - androidx.lifecycle - lifecycle-compiler - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-ktx-lint - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-truth - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-process - 2.6.1 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.6.1 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-compose-samples - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-ktx-lint - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.6.1 - - - androidx.lifecycle - lifecycle-service - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-compose-samples - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.6.1 - - - - - - androidx.lifecycle - lifecycle-viewmodel - [2.6.1] - compile - aar - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.10 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.6.4 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.aar deleted file mode 100644 index fee982a..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.module deleted file mode 100644 index 88bd648..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.module +++ /dev/null @@ -1,725 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "url": "../../lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": "2.10.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14428372" - } - }, - "variants": [ - { - "name": "androidApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "androidx.core", - "module": "core-ktx", - "version": { - "requires": "1.2.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.4.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-serialization-core", - "version": { - "requires": "1.7.3" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-savedstate.aar", - "url": "lifecycle-viewmodel-savedstate-android-2.10.0.aar", - "size": 56701, - "sha512": "077951adb910e82668cf911d9abf3e5ea1672858a9b81a4314224398fa518e332ef402270e477007b20e4983ad132bdeae638e0c5d2cad2f8f419f9b0135ed80", - "sha256": "19404239fa584322c2f81e9659e162bc011b746d29dc950a11d260624d83225e", - "sha1": "a7cc58b26d9dc7c9780dea3f2feb9b996f898412", - "md5": "41c156df4f794d67dc4092dde9010de4" - } - ] - }, - { - "name": "androidRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "androidx.core", - "module": "core-ktx", - "version": { - "requires": "1.2.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.4.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-serialization-core", - "version": { - "requires": "1.7.3" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "org.jetbrains.androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.9.5" - }, - "reason": "prevents symbols duplication" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-savedstate.aar", - "url": "lifecycle-viewmodel-savedstate-android-2.10.0.aar", - "size": 56701, - "sha512": "077951adb910e82668cf911d9abf3e5ea1672858a9b81a4314224398fa518e332ef402270e477007b20e4983ad132bdeae638e0c5d2cad2f8f419f9b0135ed80", - "sha256": "19404239fa584322c2f81e9659e162bc011b746d29dc950a11d260624d83225e", - "sha1": "a7cc58b26d9dc7c9780dea3f2feb9b996f898412", - "md5": "41c156df4f794d67dc4092dde9010de4" - } - ] - }, - { - "name": "androidSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-savedstate-android-2.10.0-sources.jar", - "url": "lifecycle-viewmodel-savedstate-android-2.10.0-sources.jar", - "size": 31301, - "sha512": "cc11c5edab1044667ceb472b86810f269075c69d321512b7c73de5ef39d6eb3c28ef18687d6756bab4d8cd9be4ea03eea0236ae6eb9bb97e31cae7591208e260", - "sha256": "87ceec2affc9837225454b3db5abc4f3ed71db354edaccae12648823e88e6e29", - "sha1": "562dc1571caa9843876f2dee0fcc24b57b25c7b8", - "md5": "8b0a530ecb421f64e2bcbc0883eaa854" - }, - { - "name": "lifecycle-viewmodel-savedstate-2.10.0-samples-sources.jar", - "url": "lifecycle-viewmodel-savedstate-android-2.10.0-samples-sources.jar", - "size": 5593, - "sha512": "dd0f37b2e8fed03d02d9c5e877884ac96df5f2a3ce667e81136d125efff42bfa5ba7bb3761ade2b1d0305a06e2c9e733fb6b3952467dc5abb2243a77cb5eaddc", - "sha256": "db875f4851cbc4a6c89085aa0acc8b9517c9df7ad2c987da1c9111c2121247bb", - "sha1": "f0e6ff50f158c97ed29349cdb28ca5b372205f46", - "md5": "1d2700ef8f867b9eb49a77117a301aeb" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.pom deleted file mode 100644 index 72c8353..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.pom +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-viewmodel-savedstate-android - 2.10.0 - aar - Lifecycle ViewModel with SavedState - Android Lifecycle ViewModel - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2018 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - org.jetbrains.androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.9.5 - - - - - - androidx.lifecycle - lifecycle-livedata-core - [2.10.0] - compile - aar - - - androidx.annotation - annotation-jvm - 1.9.1 - compile - - - org.jetbrains.kotlinx - kotlinx-serialization-core-jvm - 1.7.3 - compile - - - androidx.core - core-ktx - 1.2.0 - compile - aar - - - androidx.lifecycle - lifecycle-viewmodel-android - [2.10.0] - compile - aar - - - androidx.savedstate - savedstate-android - 1.4.0 - compile - aar - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - compile - - - androidx.lifecycle - lifecycle-common-jvm - [2.10.0] - runtime - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.9.0 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.9.0 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.jar deleted file mode 100644 index 9ffbcf6..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.pom deleted file mode 100644 index d7c9f2d..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.pom +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-viewmodel-savedstate-desktop - 2.10.0 - Lifecycle ViewModel with SavedState - Android Lifecycle ViewModel - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2018 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - org.jetbrains.androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.9.5 - - - - - - androidx.annotation - annotation-jvm - 1.9.1 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.9.0 - compile - - - androidx.lifecycle - lifecycle-viewmodel-desktop - [2.10.0] - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - compile - - - androidx.lifecycle - lifecycle-common-jvm - [2.10.0] - runtime - - - org.jetbrains.kotlinx - kotlinx-serialization-core-jvm - 1.7.3 - compile - - - androidx.savedstate - savedstate-desktop - 1.4.0 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.aar deleted file mode 100644 index be8cedb..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.jar deleted file mode 100644 index 970bed0..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.module deleted file mode 100644 index 4abb712..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.module +++ /dev/null @@ -1,1797 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": "2.10.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14428372" - } - }, - "variants": [ - { - "name": "metadataApiElements", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.platform.type": "common" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - } - }, - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.4.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-serialization-core", - "version": { - "requires": "1.7.3" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "org.jetbrains.androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.9.5" - }, - "reason": "prevents symbols duplication" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-savedstate-metadata-2.10.0.jar", - "url": "lifecycle-viewmodel-savedstate-2.10.0.jar", - "size": 19736, - "sha512": "159424b37eece6a86367686f910cd0858c54c18b412b95df717585889720297307f4c902dd0b93e0749053fc28e2261d8893857910e68e19dcd49752be87a752", - "sha256": "b18144e91c4780b3b05943256053d7d4dccc45b153066d5f5ffce1839aa0511b", - "sha1": "b18297610ea1c6f5ee6035b9222800e497a43ef6", - "md5": "42b334f5ebac2576fd58d3e496eed52e" - } - ] - }, - { - "name": "metadataSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "common" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-savedstate-kotlin-2.10.0-sources.jar", - "url": "lifecycle-viewmodel-savedstate-2.10.0-sources.jar", - "size": 24809, - "sha512": "205b6af559457f22cd66f8ce0e6db968288510fc8d0928cad434bb1ced583b8a0c752de7ceb2f941d47c58ae2345f672bef4f3248822486a3c73dbb75e090386", - "sha256": "4b50b4e8a373533f6bece7076d530c85440d552bbb54ec5c73848552b414f4c4", - "sha1": "74dd525f1d56acdf477c40031bc1c5b9f96618df", - "md5": "a8fac429249eba6d98ee7ce7fdbd954a" - } - ] - }, - { - "name": "androidxSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "androidx-multiplatform-docs" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-savedstate-2.10.0-multiplatform-sources.jar", - "url": "lifecycle-viewmodel-savedstate-2.10.0-multiplatform-sources.jar", - "size": 38115, - "sha512": "15b166a9f0a95fc0a7b340f6c68dfd350a0b42d899df40e06c06ad21bde3bd3681f2c36414b960e6b46510d6d3b0735198453bbebbed9e12c953079245d7f994", - "sha256": "dc41bd9708b0b190ffa6afa3d57390de2c351169cfa57fc951d609a41ecace59", - "sha1": "74c5f4329fca00afb5b800ba5c49f44dbefd1fce", - "md5": "76eda4664a1f968f702a6d4f695e7942" - }, - { - "name": "lifecycle-viewmodel-savedstate-2.10.0-samples-sources.jar", - "url": "lifecycle-viewmodel-savedstate-2.10.0-samples-sources.jar", - "size": 5593, - "sha512": "dd0f37b2e8fed03d02d9c5e877884ac96df5f2a3ce667e81136d125efff42bfa5ba7bb3761ade2b1d0305a06e2c9e733fb6b3952467dc5abb2243a77cb5eaddc", - "sha256": "db875f4851cbc4a6c89085aa0acc8b9517c9df7ad2c987da1c9111c2121247bb", - "sha1": "f0e6ff50f158c97ed29349cdb28ca5b372205f46", - "md5": "1d2700ef8f867b9eb49a77117a301aeb" - } - ] - }, - { - "name": "libraryVersionMetadata", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.usage": "library-version-metadata" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "apiLevels.json", - "url": "lifecycle-viewmodel-savedstate-2.10.0-versionMetadata.json", - "size": 5122, - "sha512": "2b5fafa87939102f486820ab19e069d3c4a510423525ffce5ca43f9d99fd282ab381ee00beabc38756f2226894027096175f8becbd5f4b0cb40cfa4f8991c36c", - "sha256": "b0972273e19f33910a84ac2d6d473bf3f0c352bbb0739e3ee029a5ad3142bb4c", - "sha1": "90494ad158fad7613808356c4e6698c1b6029dbc", - "md5": "b1ccdf3f2aff43b95f987014514eecae" - } - ] - }, - { - "name": "androidApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-android", - "version": "2.10.0" - } - }, - { - "name": "androidRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-android", - "version": "2.10.0" - } - }, - { - "name": "androidSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-android", - "version": "2.10.0" - } - }, - { - "name": "desktopApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-desktop", - "version": "2.10.0" - } - }, - { - "name": "desktopRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-desktop", - "version": "2.10.0" - } - }, - { - "name": "desktopSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-desktop", - "version": "2.10.0" - } - }, - { - "name": "iosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-iosarm64/2.10.0/lifecycle-viewmodel-savedstate-iosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-iosarm64", - "version": "2.10.0" - } - }, - { - "name": "iosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-iosarm64/2.10.0/lifecycle-viewmodel-savedstate-iosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-iosarm64", - "version": "2.10.0" - } - }, - { - "name": "iosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-iosarm64/2.10.0/lifecycle-viewmodel-savedstate-iosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-iosarm64", - "version": "2.10.0" - } - }, - { - "name": "iosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-iossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-iossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-iossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "iosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-iossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-iossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-iossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "iosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-iossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-iossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-iossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "iosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-iosx64/2.10.0/lifecycle-viewmodel-savedstate-iosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-iosx64", - "version": "2.10.0" - } - }, - { - "name": "iosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-iosx64/2.10.0/lifecycle-viewmodel-savedstate-iosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-iosx64", - "version": "2.10.0" - } - }, - { - "name": "iosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-iosx64/2.10.0/lifecycle-viewmodel-savedstate-iosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-iosx64", - "version": "2.10.0" - } - }, - { - "name": "jsApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-js/2.10.0/lifecycle-viewmodel-savedstate-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-js", - "version": "2.10.0" - } - }, - { - "name": "jsRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-js/2.10.0/lifecycle-viewmodel-savedstate-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-js", - "version": "2.10.0" - } - }, - { - "name": "jsSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-js/2.10.0/lifecycle-viewmodel-savedstate-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-js", - "version": "2.10.0" - } - }, - { - "name": "linuxArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "linux_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-linuxarm64/2.10.0/lifecycle-viewmodel-savedstate-linuxarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-linuxarm64", - "version": "2.10.0" - } - }, - { - "name": "linuxArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "linux_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-linuxarm64/2.10.0/lifecycle-viewmodel-savedstate-linuxarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-linuxarm64", - "version": "2.10.0" - } - }, - { - "name": "linuxX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "linux_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-linuxx64/2.10.0/lifecycle-viewmodel-savedstate-linuxx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-linuxx64", - "version": "2.10.0" - } - }, - { - "name": "linuxX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "linux_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-linuxx64/2.10.0/lifecycle-viewmodel-savedstate-linuxx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-linuxx64", - "version": "2.10.0" - } - }, - { - "name": "macosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-macosarm64/2.10.0/lifecycle-viewmodel-savedstate-macosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-macosarm64", - "version": "2.10.0" - } - }, - { - "name": "macosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-macosarm64/2.10.0/lifecycle-viewmodel-savedstate-macosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-macosarm64", - "version": "2.10.0" - } - }, - { - "name": "macosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-macosarm64/2.10.0/lifecycle-viewmodel-savedstate-macosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-macosarm64", - "version": "2.10.0" - } - }, - { - "name": "macosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-macosx64/2.10.0/lifecycle-viewmodel-savedstate-macosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-macosx64", - "version": "2.10.0" - } - }, - { - "name": "macosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-macosx64/2.10.0/lifecycle-viewmodel-savedstate-macosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-macosx64", - "version": "2.10.0" - } - }, - { - "name": "macosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-macosx64/2.10.0/lifecycle-viewmodel-savedstate-macosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-macosx64", - "version": "2.10.0" - } - }, - { - "name": "mingwX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "mingw_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-mingwx64/2.10.0/lifecycle-viewmodel-savedstate-mingwx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-mingwx64", - "version": "2.10.0" - } - }, - { - "name": "mingwX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "mingw_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-mingwx64/2.10.0/lifecycle-viewmodel-savedstate-mingwx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-mingwx64", - "version": "2.10.0" - } - }, - { - "name": "tvosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-tvosarm64/2.10.0/lifecycle-viewmodel-savedstate-tvosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-tvosarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-tvosarm64/2.10.0/lifecycle-viewmodel-savedstate-tvosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-tvosarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-tvosarm64/2.10.0/lifecycle-viewmodel-savedstate-tvosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-tvosarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-tvossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-tvossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-tvossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-tvossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-tvossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-tvossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-tvossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-tvossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-tvossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-tvosx64/2.10.0/lifecycle-viewmodel-savedstate-tvosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-tvosx64", - "version": "2.10.0" - } - }, - { - "name": "tvosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-tvosx64/2.10.0/lifecycle-viewmodel-savedstate-tvosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-tvosx64", - "version": "2.10.0" - } - }, - { - "name": "tvosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-tvosx64/2.10.0/lifecycle-viewmodel-savedstate-tvosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-tvosx64", - "version": "2.10.0" - } - }, - { - "name": "wasmJsApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-wasm-js/2.10.0/lifecycle-viewmodel-savedstate-wasm-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-wasm-js", - "version": "2.10.0" - } - }, - { - "name": "wasmJsRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-wasm-js/2.10.0/lifecycle-viewmodel-savedstate-wasm-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-wasm-js", - "version": "2.10.0" - } - }, - { - "name": "wasmJsSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-wasm-js/2.10.0/lifecycle-viewmodel-savedstate-wasm-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-wasm-js", - "version": "2.10.0" - } - }, - { - "name": "watchosArm32ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchosarm32/2.10.0/lifecycle-viewmodel-savedstate-watchosarm32-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchosarm32", - "version": "2.10.0" - } - }, - { - "name": "watchosArm32SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchosarm32/2.10.0/lifecycle-viewmodel-savedstate-watchosarm32-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchosarm32", - "version": "2.10.0" - } - }, - { - "name": "watchosArm32MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchosarm32/2.10.0/lifecycle-viewmodel-savedstate-watchosarm32-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchosarm32", - "version": "2.10.0" - } - }, - { - "name": "watchosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchosarm64/2.10.0/lifecycle-viewmodel-savedstate-watchosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchosarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchosarm64/2.10.0/lifecycle-viewmodel-savedstate-watchosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchosarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchosarm64/2.10.0/lifecycle-viewmodel-savedstate-watchosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchosarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosDeviceArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchosdevicearm64/2.10.0/lifecycle-viewmodel-savedstate-watchosdevicearm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchosdevicearm64", - "version": "2.10.0" - } - }, - { - "name": "watchosDeviceArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchosdevicearm64/2.10.0/lifecycle-viewmodel-savedstate-watchosdevicearm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchosdevicearm64", - "version": "2.10.0" - } - }, - { - "name": "watchosDeviceArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchosdevicearm64/2.10.0/lifecycle-viewmodel-savedstate-watchosdevicearm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchosdevicearm64", - "version": "2.10.0" - } - }, - { - "name": "watchosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-watchossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-watchossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-watchossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchosx64/2.10.0/lifecycle-viewmodel-savedstate-watchosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchosx64", - "version": "2.10.0" - } - }, - { - "name": "watchosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchosx64/2.10.0/lifecycle-viewmodel-savedstate-watchosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchosx64", - "version": "2.10.0" - } - }, - { - "name": "watchosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-savedstate-watchosx64/2.10.0/lifecycle-viewmodel-savedstate-watchosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate-watchosx64", - "version": "2.10.0" - } - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.pom deleted file mode 100644 index c68ffc4..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.pom +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - aar - Lifecycle ViewModel with SavedState - Android Lifecycle ViewModel - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2018 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - org.jetbrains.androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.9.5 - - - - - - androidx.annotation - annotation - 1.9.1 - runtime - - - org.jetbrains.kotlinx - kotlinx-serialization-core - 1.7.3 - runtime - - - androidx.lifecycle - lifecycle-viewmodel - [2.10.0] - runtime - - - androidx.lifecycle - lifecycle-common - [2.10.0] - runtime - - - androidx.lifecycle - lifecycle-viewmodel-savedstate-android - 2.10.0 - aar - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - runtime - - - androidx.savedstate - savedstate - 1.4.0 - runtime - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.9.0 - runtime - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.aar deleted file mode 100644 index d59fe1f..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.module deleted file mode 100644 index 673b42d..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.module +++ /dev/null @@ -1,669 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": "2.6.1", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "8.0-rc-2" - } - }, - "variants": [ - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.0.0" - } - }, - { - "group": "androidx.core", - "module": "core-ktx", - "version": { - "requires": "1.2.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.2.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.6.4" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-savedstate-2.6.1.aar", - "url": "lifecycle-viewmodel-savedstate-2.6.1.aar", - "size": 39559, - "sha512": "6cefe9ad510a5d43412fe9a9ce5c0e6ebffa3086e31094675e389aeea285053a98f3516244ea92509c2724b848e3041ffa0c5d7cff4fc67e906165d417744195", - "sha256": "c82f89221adbe19df7c7adbab63f4ecc857fc746e3c9494256ab8fa5c20491b2", - "sha1": "7cac77a315e1c8235a1f0c7d041c3c5e565f0f4b", - "md5": "2ec5a2c5c6114f5882fc80bc7b8cfbea" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.0.0" - } - }, - { - "group": "androidx.core", - "module": "core-ktx", - "version": { - "requires": "1.2.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.2.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-android", - "version": { - "requires": "1.6.4" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-savedstate-2.6.1.aar", - "url": "lifecycle-viewmodel-savedstate-2.6.1.aar", - "size": 39559, - "sha512": "6cefe9ad510a5d43412fe9a9ce5c0e6ebffa3086e31094675e389aeea285053a98f3516244ea92509c2724b848e3041ffa0c5d7cff4fc67e906165d417744195", - "sha256": "c82f89221adbe19df7c7adbab63f4ecc857fc746e3c9494256ab8fa5c20491b2", - "sha1": "7cac77a315e1c8235a1f0c7d041c3c5e565f0f4b", - "md5": "2ec5a2c5c6114f5882fc80bc7b8cfbea" - } - ] - }, - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-savedstate-2.6.1-sources.jar", - "url": "lifecycle-viewmodel-savedstate-2.6.1-sources.jar", - "size": 15704, - "sha512": "e2ba4aed991d3e67184876b2853c768d8e68486a47628d0e31e89d287b36bf585c6e82255f11cb534018cf3066bb2417e6a716c0d60870306332c755a52e58e5", - "sha256": "3d6849e0ae21524fee6fdf4c48bd577451734ed2dbfa354b43ae0cfed20b3f2a", - "sha1": "25b778ef25c3f95955b1cc1d67ca891d85a11f77", - "md5": "62afa36a6e35e4a5069fe38dd9d4f6a4" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.pom deleted file mode 100644 index d1f901b..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.pom +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.6.1 - aar - Android Lifecycle ViewModel with SavedState - Android Lifecycle ViewModel - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.6.1 - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.6.1 - - - androidx.lifecycle - lifecycle-common-java8 - 2.6.1 - - - androidx.lifecycle - lifecycle-compiler - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-ktx-lint - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-truth - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-process - 2.6.1 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.6.1 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-compose-samples - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-ktx-lint - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.6.1 - - - androidx.lifecycle - lifecycle-service - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-compose-samples - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.6.1 - - - - - - androidx.annotation - annotation - 1.0.0 - compile - - - androidx.core - core-ktx - 1.2.0 - compile - aar - - - androidx.lifecycle - lifecycle-livedata-core - [2.6.1] - compile - aar - - - androidx.lifecycle - lifecycle-viewmodel - [2.6.1] - compile - aar - - - androidx.savedstate - savedstate - 1.2.1 - compile - aar - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.10 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.6.4 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.aar deleted file mode 100644 index 6db112e..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.jar deleted file mode 100644 index c7490bc..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.module deleted file mode 100644 index 8c9a800..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.module +++ /dev/null @@ -1,1760 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": "2.10.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14428372" - } - }, - "variants": [ - { - "name": "metadataApiElements", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.platform.type": "common" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "org.jetbrains.androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": { - "requires": "2.9.5" - }, - "reason": "prevents symbols duplication" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-metadata-2.10.0.jar", - "url": "lifecycle-viewmodel-2.10.0.jar", - "size": 31692, - "sha512": "e7433ca937e837616f0c50ba5b09becdc5bde84c4369b6dd4fa5e13c869331f9e1064903b2743f1f6dbd35c9d5eb09f207b67f6c5d3fbf589d20acb15cc689cd", - "sha256": "508bf3284757169fc57f42b84bef0b8538c93af2bd0bec5ba3efe93d45a5bf79", - "sha1": "5f4afeab882b1aff0ac00bc245b8e7cfb11666e5", - "md5": "45b30da4ea1402674856ed74347d6d22" - } - ] - }, - { - "name": "metadataSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "common" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-kotlin-2.10.0-sources.jar", - "url": "lifecycle-viewmodel-2.10.0-sources.jar", - "size": 42513, - "sha512": "c5698c25b994eab901b42ad4a07c60bc3cc7e5c7467a1738d26f3f3d0489d3df352b868050848122c409a6795de2ead204981b900d66efb5918548b2b7f0b8c0", - "sha256": "f34e746386dc027b7756bc0d4712bd8c26e4e74ab3c16436ee4395a7feed08f9", - "sha1": "e22dbd71994754dfba7d76141949eda17be42490", - "md5": "77f1b84c2f7e4e6e588ecdbe9bcafd5e" - } - ] - }, - { - "name": "androidxSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "androidx-multiplatform-docs" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-2.10.0-multiplatform-sources.jar", - "url": "lifecycle-viewmodel-2.10.0-multiplatform-sources.jar", - "size": 63482, - "sha512": "897ddbdc2cfef7d272e13a8a7bfdbccd5af7d754fbc412d6eda973c27693c9a4f5c8853ab4110ee1a1aa0a353abac48c982b510833e938912c2505e7bdca55e0", - "sha256": "2c303719de61f06645bd5d23814e208c0dfc5b527c20561c33591b47062f2e77", - "sha1": "c6d0816eb3933b284eb7f32b6f6e71ca2945e6cc", - "md5": "56e9bab3eb393df7b0bcb2787eee0ead" - } - ] - }, - { - "name": "libraryVersionMetadata", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.usage": "library-version-metadata" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-testing", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-navigation3", - "version": { - "requires": "2.10.0" - }, - "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" - } - ], - "files": [ - { - "name": "apiLevels.json", - "url": "lifecycle-viewmodel-2.10.0-versionMetadata.json", - "size": 12266, - "sha512": "19caac7d559245e6f50e18e8f0bf799a9865323af10e72dc92e5c941f97ba4b4c43a8f852842b61f12dec0f18705d0f3dea0ed259d084356b77d0c8ec7f76b98", - "sha256": "33ab0830cf651d0ee92252d86c7a0923e75465df6b1a5a9cc26651e91fcd3e0f", - "sha1": "a7ced24c07832c16d4c1524a5024e4a076140ef8", - "md5": "06e4e591668e68dbb0929f17b29f7568" - } - ] - }, - { - "name": "androidApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-android", - "version": "2.10.0" - } - }, - { - "name": "androidRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-android", - "version": "2.10.0" - } - }, - { - "name": "androidSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-android", - "version": "2.10.0" - } - }, - { - "name": "desktopApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-desktop", - "version": "2.10.0" - } - }, - { - "name": "desktopRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-desktop", - "version": "2.10.0" - } - }, - { - "name": "desktopSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-desktop", - "version": "2.10.0" - } - }, - { - "name": "iosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-iosarm64/2.10.0/lifecycle-viewmodel-iosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-iosarm64", - "version": "2.10.0" - } - }, - { - "name": "iosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-iosarm64/2.10.0/lifecycle-viewmodel-iosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-iosarm64", - "version": "2.10.0" - } - }, - { - "name": "iosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-iosarm64/2.10.0/lifecycle-viewmodel-iosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-iosarm64", - "version": "2.10.0" - } - }, - { - "name": "iosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-iossimulatorarm64/2.10.0/lifecycle-viewmodel-iossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-iossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "iosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-iossimulatorarm64/2.10.0/lifecycle-viewmodel-iossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-iossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "iosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-iossimulatorarm64/2.10.0/lifecycle-viewmodel-iossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-iossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "iosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-iosx64/2.10.0/lifecycle-viewmodel-iosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-iosx64", - "version": "2.10.0" - } - }, - { - "name": "iosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-iosx64/2.10.0/lifecycle-viewmodel-iosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-iosx64", - "version": "2.10.0" - } - }, - { - "name": "iosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-iosx64/2.10.0/lifecycle-viewmodel-iosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-iosx64", - "version": "2.10.0" - } - }, - { - "name": "jsApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-js/2.10.0/lifecycle-viewmodel-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-js", - "version": "2.10.0" - } - }, - { - "name": "jsRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-js/2.10.0/lifecycle-viewmodel-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-js", - "version": "2.10.0" - } - }, - { - "name": "jsSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-js/2.10.0/lifecycle-viewmodel-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-js", - "version": "2.10.0" - } - }, - { - "name": "linuxArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "linux_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-linuxarm64/2.10.0/lifecycle-viewmodel-linuxarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-linuxarm64", - "version": "2.10.0" - } - }, - { - "name": "linuxArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "linux_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-linuxarm64/2.10.0/lifecycle-viewmodel-linuxarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-linuxarm64", - "version": "2.10.0" - } - }, - { - "name": "linuxX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "linux_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-linuxx64/2.10.0/lifecycle-viewmodel-linuxx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-linuxx64", - "version": "2.10.0" - } - }, - { - "name": "linuxX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "linux_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-linuxx64/2.10.0/lifecycle-viewmodel-linuxx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-linuxx64", - "version": "2.10.0" - } - }, - { - "name": "macosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-macosarm64/2.10.0/lifecycle-viewmodel-macosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-macosarm64", - "version": "2.10.0" - } - }, - { - "name": "macosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-macosarm64/2.10.0/lifecycle-viewmodel-macosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-macosarm64", - "version": "2.10.0" - } - }, - { - "name": "macosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-macosarm64/2.10.0/lifecycle-viewmodel-macosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-macosarm64", - "version": "2.10.0" - } - }, - { - "name": "macosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-macosx64/2.10.0/lifecycle-viewmodel-macosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-macosx64", - "version": "2.10.0" - } - }, - { - "name": "macosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-macosx64/2.10.0/lifecycle-viewmodel-macosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-macosx64", - "version": "2.10.0" - } - }, - { - "name": "macosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-macosx64/2.10.0/lifecycle-viewmodel-macosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-macosx64", - "version": "2.10.0" - } - }, - { - "name": "mingwX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "mingw_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-mingwx64/2.10.0/lifecycle-viewmodel-mingwx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-mingwx64", - "version": "2.10.0" - } - }, - { - "name": "mingwX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "mingw_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-mingwx64/2.10.0/lifecycle-viewmodel-mingwx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-mingwx64", - "version": "2.10.0" - } - }, - { - "name": "tvosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-tvosarm64/2.10.0/lifecycle-viewmodel-tvosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-tvosarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-tvosarm64/2.10.0/lifecycle-viewmodel-tvosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-tvosarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-tvosarm64/2.10.0/lifecycle-viewmodel-tvosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-tvosarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-tvossimulatorarm64/2.10.0/lifecycle-viewmodel-tvossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-tvossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-tvossimulatorarm64/2.10.0/lifecycle-viewmodel-tvossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-tvossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-tvossimulatorarm64/2.10.0/lifecycle-viewmodel-tvossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-tvossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "tvosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-tvosx64/2.10.0/lifecycle-viewmodel-tvosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-tvosx64", - "version": "2.10.0" - } - }, - { - "name": "tvosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-tvosx64/2.10.0/lifecycle-viewmodel-tvosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-tvosx64", - "version": "2.10.0" - } - }, - { - "name": "tvosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-tvosx64/2.10.0/lifecycle-viewmodel-tvosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-tvosx64", - "version": "2.10.0" - } - }, - { - "name": "wasmJsApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-wasm-js/2.10.0/lifecycle-viewmodel-wasm-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-wasm-js", - "version": "2.10.0" - } - }, - { - "name": "wasmJsRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-wasm-js/2.10.0/lifecycle-viewmodel-wasm-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-wasm-js", - "version": "2.10.0" - } - }, - { - "name": "wasmJsSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-wasm-js/2.10.0/lifecycle-viewmodel-wasm-js-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-wasm-js", - "version": "2.10.0" - } - }, - { - "name": "watchosArm32ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchosarm32/2.10.0/lifecycle-viewmodel-watchosarm32-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchosarm32", - "version": "2.10.0" - } - }, - { - "name": "watchosArm32SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchosarm32/2.10.0/lifecycle-viewmodel-watchosarm32-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchosarm32", - "version": "2.10.0" - } - }, - { - "name": "watchosArm32MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchosarm32/2.10.0/lifecycle-viewmodel-watchosarm32-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchosarm32", - "version": "2.10.0" - } - }, - { - "name": "watchosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchosarm64/2.10.0/lifecycle-viewmodel-watchosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchosarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchosarm64/2.10.0/lifecycle-viewmodel-watchosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchosarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchosarm64/2.10.0/lifecycle-viewmodel-watchosarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchosarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosDeviceArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchosdevicearm64/2.10.0/lifecycle-viewmodel-watchosdevicearm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchosdevicearm64", - "version": "2.10.0" - } - }, - { - "name": "watchosDeviceArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchosdevicearm64/2.10.0/lifecycle-viewmodel-watchosdevicearm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchosdevicearm64", - "version": "2.10.0" - } - }, - { - "name": "watchosDeviceArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchosdevicearm64/2.10.0/lifecycle-viewmodel-watchosdevicearm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchosdevicearm64", - "version": "2.10.0" - } - }, - { - "name": "watchosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchossimulatorarm64/2.10.0/lifecycle-viewmodel-watchossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchossimulatorarm64/2.10.0/lifecycle-viewmodel-watchossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchossimulatorarm64/2.10.0/lifecycle-viewmodel-watchossimulatorarm64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchossimulatorarm64", - "version": "2.10.0" - } - }, - { - "name": "watchosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchosx64/2.10.0/lifecycle-viewmodel-watchosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchosx64", - "version": "2.10.0" - } - }, - { - "name": "watchosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchosx64/2.10.0/lifecycle-viewmodel-watchosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchosx64", - "version": "2.10.0" - } - }, - { - "name": "watchosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../lifecycle-viewmodel-watchosx64/2.10.0/lifecycle-viewmodel-watchosx64-2.10.0.module", - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-watchosx64", - "version": "2.10.0" - } - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.pom deleted file mode 100644 index 4524da5..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.pom +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-viewmodel - 2.10.0 - aar - Lifecycle ViewModel - Android Lifecycle ViewModel - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 - 2017 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.10.0 - - - androidx.lifecycle - lifecycle-common-java8 - 2.10.0 - - - androidx.lifecycle - lifecycle-compiler - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-process - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.10.0 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-service - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-testing - 2.10.0 - - - androidx.lifecycle - lifecycle-viewmodel-navigation3 - 2.10.0 - - - org.jetbrains.androidx.lifecycle - lifecycle-viewmodel - 2.9.5 - - - - - - androidx.annotation - annotation - 1.9.1 - runtime - - - androidx.lifecycle - lifecycle-viewmodel-android - 2.10.0 - aar - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - runtime - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.9.0 - runtime - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.aar deleted file mode 100644 index cfd1a8a..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.module deleted file mode 100644 index 45600c9..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.module +++ /dev/null @@ -1,599 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel", - "version": "2.6.1", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "8.0-rc-2" - } - }, - "variants": [ - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.1.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-2.6.1.aar", - "url": "lifecycle-viewmodel-2.6.1.aar", - "size": 39793, - "sha512": "c43bff5e79fa146f2cfe0f71719113b7a0a19896128aecf9aec94a5d1186de4c77896c5c61dc3e6f3ba3ee297a1f72ecd6b4f2e58a42867724253f33f968d072", - "sha256": "e4ff4338999e1c6c9c724719f5d4aa7dd61bf6f545d5256a27a9d375df9f2330", - "sha1": "fa35bfdbbe0e7df1573e377cbdd15de35176141d", - "md5": "ca7006a38d89dbf4791160763bc88505" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.1.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-2.6.1.aar", - "url": "lifecycle-viewmodel-2.6.1.aar", - "size": 39793, - "sha512": "c43bff5e79fa146f2cfe0f71719113b7a0a19896128aecf9aec94a5d1186de4c77896c5c61dc3e6f3ba3ee297a1f72ecd6b4f2e58a42867724253f33f968d072", - "sha256": "e4ff4338999e1c6c9c724719f5d4aa7dd61bf6f545d5256a27a9d375df9f2330", - "sha1": "fa35bfdbbe0e7df1573e377cbdd15de35176141d", - "md5": "ca7006a38d89dbf4791160763bc88505" - } - ] - }, - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "dependencyConstraints": [ - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common-java8", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-compiler", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-core-truth", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-livedata-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-process", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-reactivestreams-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-ktx-lint", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-runtime-testing", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-service", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-compose-samples", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-ktx", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-viewmodel-savedstate", - "version": { - "requires": "2.6.1" - } - } - ], - "files": [ - { - "name": "lifecycle-viewmodel-2.6.1-sources.jar", - "url": "lifecycle-viewmodel-2.6.1-sources.jar", - "size": 16948, - "sha512": "bbb30f6445e60375a5fc87fcd7eb9e88143fb04a50f70a648620fa61ebebc4357ce40cdaaeceec4efdaf5b12da1cf2321b6ca8f561ec6effcccd5aa73bc2f3f0", - "sha256": "4eed85c3e86326da8b6949fd3964d2380aa5c56730de402e3c6f1c6d747596e0", - "sha1": "dc2aa94a7174f4b67e6923496dc195cbf726a63b", - "md5": "af7cb9f20450bc2d43f4fefc060cacb5" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.pom deleted file mode 100644 index d8bfbd5..0000000 --- a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.pom +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - - 4.0.0 - androidx.lifecycle - lifecycle-viewmodel - 2.6.1 - aar - Android Lifecycle ViewModel - Android Lifecycle ViewModel - https://developer.android.com/jetpack/androidx/releases/lifecycle#2.6.1 - 2017 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.lifecycle - lifecycle-common - 2.6.1 - - - androidx.lifecycle - lifecycle-common-java8 - 2.6.1 - - - androidx.lifecycle - lifecycle-compiler - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-ktx-lint - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-core-truth - 2.6.1 - - - androidx.lifecycle - lifecycle-livedata-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-process - 2.6.1 - - - androidx.lifecycle - lifecycle-reactivestreams - 2.6.1 - - - androidx.lifecycle - lifecycle-reactivestreams-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-compose - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-compose-samples - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-ktx-lint - 2.6.1 - - - androidx.lifecycle - lifecycle-runtime-testing - 2.6.1 - - - androidx.lifecycle - lifecycle-service - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-compose - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-compose-samples - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-ktx - 2.6.1 - - - androidx.lifecycle - lifecycle-viewmodel-savedstate - 2.6.1 - - - - - - androidx.annotation - annotation - 1.1.0 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.10 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/loader/loader/1.0.0/loader-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/loader/loader/1.0.0/loader-1.0.0.aar deleted file mode 100644 index 32c5774..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/loader/loader/1.0.0/loader-1.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/loader/loader/1.0.0/loader-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/loader/loader/1.0.0/loader-1.0.0.pom deleted file mode 100644 index 8bf9635..0000000 --- a/tauri_app/docker/offline-maven/androidx/loader/loader/1.0.0/loader-1.0.0.pom +++ /dev/null @@ -1,58 +0,0 @@ - - - 4.0.0 - androidx.loader - loader - 1.0.0 - aar - Android Support Library loader - The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. - http://developer.android.com/tools/extras/support-library.html - 2011 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.0.0 - compile - - - androidx.core - core - 1.0.0 - aar - compile - - - androidx.lifecycle - lifecycle-livedata - 2.0.0 - aar - compile - - - androidx.lifecycle - lifecycle-viewmodel - 2.0.0 - aar - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/localbroadcastmanager/localbroadcastmanager/1.0.0/localbroadcastmanager-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/localbroadcastmanager/localbroadcastmanager/1.0.0/localbroadcastmanager-1.0.0.aar deleted file mode 100644 index e9074ee..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/localbroadcastmanager/localbroadcastmanager/1.0.0/localbroadcastmanager-1.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/localbroadcastmanager/localbroadcastmanager/1.0.0/localbroadcastmanager-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/localbroadcastmanager/localbroadcastmanager/1.0.0/localbroadcastmanager-1.0.0.pom deleted file mode 100644 index abf4d6f..0000000 --- a/tauri_app/docker/offline-maven/androidx/localbroadcastmanager/localbroadcastmanager/1.0.0/localbroadcastmanager-1.0.0.pom +++ /dev/null @@ -1,37 +0,0 @@ - - - 4.0.0 - androidx.localbroadcastmanager - localbroadcastmanager - 1.0.0 - aar - Android Support Library Local Broadcast Manager - The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. - http://developer.android.com/tools/extras/support-library.html - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.0.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/print/print/1.0.0/print-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/print/print/1.0.0/print-1.0.0.aar deleted file mode 100644 index 7bb51fd..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/print/print/1.0.0/print-1.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/print/print/1.0.0/print-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/print/print/1.0.0/print-1.0.0.pom deleted file mode 100644 index 927140a..0000000 --- a/tauri_app/docker/offline-maven/androidx/print/print/1.0.0/print-1.0.0.pom +++ /dev/null @@ -1,37 +0,0 @@ - - - 4.0.0 - androidx.print - print - 1.0.0 - aar - Android Support Library Print - The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. - http://developer.android.com/tools/extras/support-library.html - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.0.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/profileinstaller/profileinstaller/1.4.0/profileinstaller-1.4.0.aar b/tauri_app/docker/offline-maven/androidx/profileinstaller/profileinstaller/1.4.0/profileinstaller-1.4.0.aar deleted file mode 100644 index 23a3cba..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/profileinstaller/profileinstaller/1.4.0/profileinstaller-1.4.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/profileinstaller/profileinstaller/1.4.0/profileinstaller-1.4.0.pom b/tauri_app/docker/offline-maven/androidx/profileinstaller/profileinstaller/1.4.0/profileinstaller-1.4.0.pom deleted file mode 100644 index 184bf8f..0000000 --- a/tauri_app/docker/offline-maven/androidx/profileinstaller/profileinstaller/1.4.0/profileinstaller-1.4.0.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - androidx.profileinstaller - profileinstaller - 1.4.0 - aar - Profile Installer - Allows libraries to prepopulate ahead of time compilation traces to be read by ART - https://developer.android.com/jetpack/androidx/releases/profileinstaller#1.4.0 - 2021 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - androidx.annotation - annotation - 1.8.1 - runtime - - - androidx.concurrent - concurrent-futures - 1.1.0 - runtime - - - androidx.startup - startup-runtime - 1.1.1 - compile - aar - - - com.google.guava - listenablefuture - 1.0 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/recyclerview/recyclerview/1.1.0/recyclerview-1.1.0.aar b/tauri_app/docker/offline-maven/androidx/recyclerview/recyclerview/1.1.0/recyclerview-1.1.0.aar deleted file mode 100644 index a3d2302..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/recyclerview/recyclerview/1.1.0/recyclerview-1.1.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/recyclerview/recyclerview/1.1.0/recyclerview-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/recyclerview/recyclerview/1.1.0/recyclerview-1.1.0.pom deleted file mode 100644 index 775c10b..0000000 --- a/tauri_app/docker/offline-maven/androidx/recyclerview/recyclerview/1.1.0/recyclerview-1.1.0.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - 4.0.0 - androidx.recyclerview - recyclerview - 1.1.0 - aar - Android Support RecyclerView v7 - Android Support RecyclerView v7 - https://developer.android.com/jetpack/androidx - 2014 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.1.0 - compile - - - androidx.core - core - 1.1.0 - aar - compile - - - androidx.customview - customview - 1.0.0 - aar - compile - - - androidx.collection - collection - 1.0.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/resourceinspection/resourceinspection-annotation/1.0.1/resourceinspection-annotation-1.0.1.jar b/tauri_app/docker/offline-maven/androidx/resourceinspection/resourceinspection-annotation/1.0.1/resourceinspection-annotation-1.0.1.jar deleted file mode 100644 index 21eb307..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/resourceinspection/resourceinspection-annotation/1.0.1/resourceinspection-annotation-1.0.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/resourceinspection/resourceinspection-annotation/1.0.1/resourceinspection-annotation-1.0.1.pom b/tauri_app/docker/offline-maven/androidx/resourceinspection/resourceinspection-annotation/1.0.1/resourceinspection-annotation-1.0.1.pom deleted file mode 100644 index 2df2368..0000000 --- a/tauri_app/docker/offline-maven/androidx/resourceinspection/resourceinspection-annotation/1.0.1/resourceinspection-annotation-1.0.1.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - 4.0.0 - androidx.resourceinspection - resourceinspection-annotation - 1.0.1 - Android Resource Inspection - Annotations - Annotation processors for Android resource and layout inspection - https://developer.android.com/jetpack/androidx/releases/resourceinspection#1.0.1 - 2021 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - androidx.annotation - annotation - 1.1.0 - runtime - - - diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.aar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.aar deleted file mode 100644 index 69e9803..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.module b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.module deleted file mode 100644 index 2551dab..0000000 --- a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.module +++ /dev/null @@ -1,283 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "url": "../../savedstate/1.4.0/savedstate-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate", - "version": "1.4.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14329657" - } - }, - "variants": [ - { - "name": "androidApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.8.1" - } - }, - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib" - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-serialization-core", - "version": { - "requires": "1.7.3" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate-compose", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-ktx", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-testing", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - } - ], - "files": [ - { - "name": "savedstate.aar", - "url": "savedstate-android-1.4.0.aar", - "size": 136412, - "sha512": "848bd45a9017e2ecfdd002faa6264fdab491e65c5d532513e5fcfb4808cd12e2b9704f8b14ffc18bb11d5577731f35151e177358216676702b2f31e3b8eb074c", - "sha256": "1656ce62cd233d488bdbbd42e533b80b22435b7a690acae6dbe7302392512c14", - "sha1": "8cf8663a8d810d4d50110ff135b3cd1d7227c867", - "md5": "a92dbdc46006ac0bccbb1edda5bccaef" - } - ] - }, - { - "name": "androidRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.8.1" - } - }, - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "androidx.core", - "module": "core-ktx", - "version": { - "requires": "1.13.1" - } - }, - { - "group": "androidx.core", - "module": "core-viewtree", - "version": { - "requires": "1.0.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.9.2" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib" - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-serialization-core", - "version": { - "requires": "1.7.3" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate-compose", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-ktx", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-testing", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "org.jetbrains.androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.3.2" - }, - "reason": "prevents symbols duplication" - } - ], - "files": [ - { - "name": "savedstate.aar", - "url": "savedstate-android-1.4.0.aar", - "size": 136412, - "sha512": "848bd45a9017e2ecfdd002faa6264fdab491e65c5d532513e5fcfb4808cd12e2b9704f8b14ffc18bb11d5577731f35151e177358216676702b2f31e3b8eb074c", - "sha256": "1656ce62cd233d488bdbbd42e533b80b22435b7a690acae6dbe7302392512c14", - "sha1": "8cf8663a8d810d4d50110ff135b3cd1d7227c867", - "md5": "a92dbdc46006ac0bccbb1edda5bccaef" - } - ] - }, - { - "name": "androidSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate-compose", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-ktx", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-testing", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - } - ], - "files": [ - { - "name": "savedstate-android-1.4.0-sources.jar", - "url": "savedstate-android-1.4.0-sources.jar", - "size": 57475, - "sha512": "0d91b7d3a022a47e8a521b126ad0dd003598f502392deaf29c10c6143617b5546a71d07ebb23d4c773731fddc9161dea71657eb47da3e34ccbb156e1ebfc591a", - "sha256": "ab5ddfcea3cf8507428183cac36144629aa9a5cd8631afdfbb762e844c8785d9", - "sha1": "fddb1b8f7f11f495560f3fb75088a4e5814411db", - "md5": "55818ade30bcfcf529bd01a356133f00" - }, - { - "name": "savedstate-1.4.0-samples-sources.jar", - "url": "savedstate-android-1.4.0-samples-sources.jar", - "size": 7330, - "sha512": "f1b77905da38cc98f6efcd3f9a440b2f2e91887e64fa966f707f4613163bbbc5893f32d235b4a5e6ecea3847264af93f898d4585eee2d1f4558ed0c0545de34d", - "sha256": "55d183dec7a7b59cfc754f1fde95262298a33ae1abc9a2554d7640ee1360ee1e", - "sha1": "45540714f2e54e94c96da6214912c134ffcd9d32", - "md5": "6cf2c87e40e1ebafa911b4df0300f2cb" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.pom b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.pom deleted file mode 100644 index 3d0122f..0000000 --- a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.pom +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - 4.0.0 - androidx.savedstate - savedstate-android - 1.4.0 - aar - Saved State - Android Lifecycle Saved State - https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0 - 2018 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.savedstate - savedstate-compose - 1.4.0 - - - androidx.savedstate - savedstate-ktx - 1.4.0 - - - androidx.savedstate - savedstate-testing - 1.4.0 - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - - - org.jetbrains.androidx.savedstate - savedstate - 1.3.2 - - - - - - androidx.annotation - annotation-jvm - 1.9.1 - compile - - - androidx.core - core-ktx - 1.13.1 - runtime - aar - - - androidx.core - core-viewtree - 1.0.0 - runtime - aar - - - androidx.lifecycle - lifecycle-common-jvm - 2.9.2 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.9.0 - compile - - - org.jetbrains.kotlinx - kotlinx-serialization-core-jvm - 1.7.3 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.jar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.jar deleted file mode 100644 index b75427e..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.pom b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.pom deleted file mode 100644 index caf7511..0000000 --- a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - 4.0.0 - androidx.savedstate - savedstate-desktop - 1.4.0 - Saved State - Android Lifecycle Saved State - https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0 - 2018 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.savedstate - savedstate-compose - 1.4.0 - - - androidx.savedstate - savedstate-ktx - 1.4.0 - - - androidx.savedstate - savedstate-testing - 1.4.0 - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - - - org.jetbrains.androidx.savedstate - savedstate - 1.3.2 - - - - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.9.0 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - compile - - - org.jetbrains.kotlinx - kotlinx-serialization-core-jvm - 1.7.3 - compile - - - androidx.lifecycle - lifecycle-common-jvm - 2.9.2 - runtime - - - androidx.annotation - annotation-jvm - 1.9.1 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.aar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.aar deleted file mode 100644 index e984fef..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.module b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.module deleted file mode 100644 index 958df2f..0000000 --- a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.module +++ /dev/null @@ -1,137 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.savedstate", - "module": "savedstate-ktx", - "version": "1.2.1", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "8.0" - } - }, - "variants": [ - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.2.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.2.1" - } - } - ], - "files": [ - { - "name": "savedstate-ktx-1.2.1.aar", - "url": "savedstate-ktx-1.2.1.aar", - "size": 3375, - "sha512": "eb4b1d681d59a1235c252f1b0ffe1b8295fa98508cc5245cb139a24cc25e1810bdda573eef0c7ca1d4025f2682b1f4eb94f6ec3a3614c905f05f6a34fe8a7958", - "sha256": "8553f87e7136c24ec5243560f48f1c32cba56daa77722f89589a5cafcb8f7894", - "sha1": "b86d338d91b1c26193a42b1d87be9bb02123fa16", - "md5": "232e75b56e6fea8591d591f98b2ecff2" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.2.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.2.1" - } - } - ], - "files": [ - { - "name": "savedstate-ktx-1.2.1.aar", - "url": "savedstate-ktx-1.2.1.aar", - "size": 3375, - "sha512": "eb4b1d681d59a1235c252f1b0ffe1b8295fa98508cc5245cb139a24cc25e1810bdda573eef0c7ca1d4025f2682b1f4eb94f6ec3a3614c905f05f6a34fe8a7958", - "sha256": "8553f87e7136c24ec5243560f48f1c32cba56daa77722f89589a5cafcb8f7894", - "sha1": "b86d338d91b1c26193a42b1d87be9bb02123fa16", - "md5": "232e75b56e6fea8591d591f98b2ecff2" - } - ] - }, - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.2.1" - } - } - ], - "files": [ - { - "name": "savedstate-ktx-1.2.1-sources.jar", - "url": "savedstate-ktx-1.2.1-sources.jar", - "size": 1225, - "sha512": "c22f31974b323e4490f052e34818283817c70764ae3f01aa98d61cce6f6713bfa72a512e7429f72885d3243cd2cd1b83090d7e9fa8cdbe1e7b43524173f9048d", - "sha256": "45f49fe9075235c62d409f2d11d795b3c7308bccb475ed43ed8312638119cc27", - "sha1": "396eb83ce13cac3986e1e8a8b60f60ac0447ffbf", - "md5": "0dd36a3a26c3ff2ccac7c085855f1176" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.pom b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.pom deleted file mode 100644 index cd8bdf8..0000000 --- a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - 4.0.0 - androidx.savedstate - savedstate-ktx - 1.2.1 - aar - SavedState Kotlin Extensions - Kotlin extensions for 'savedstate' artifact - https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.1 - 2020 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.savedstate - savedstate - 1.2.1 - - - - - - androidx.savedstate - savedstate - [1.2.1] - compile - aar - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.10 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.aar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.aar deleted file mode 100644 index 2620ace..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.module b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.module deleted file mode 100644 index ba25195..0000000 --- a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.module +++ /dev/null @@ -1,242 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.savedstate", - "module": "savedstate-ktx", - "version": "1.4.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14329657" - } - }, - "variants": [ - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate-ktx is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-compose", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate-ktx is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-testing", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate-ktx is in atomic group androidx.savedstate" - } - ], - "files": [ - { - "name": "savedstate-ktx-1.4.0-sources.jar", - "url": "savedstate-ktx-1.4.0-sources.jar", - "size": 4426, - "sha512": "470b68b1ba0bbefe5afcf0a072635a72e5080f040860d900c972c9797c1ab4c2402ad6a622477ea916ecc6ece19b0290e15a391f7f1a0ea00c612b1da3ea6d82", - "sha256": "b1e8d78600a68fb3c0029793146ac07ea0335819f813554e85c568caa35cb5e4", - "sha1": "d281a4d66d1b5ed25c21373dedb46a67918618d9", - "md5": "c7dd8c25948273de8256385c8a05e3d7" - } - ] - }, - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.4.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib" - } - ], - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate-ktx is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-compose", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate-ktx is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-testing", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate-ktx is in atomic group androidx.savedstate" - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - } - ], - "files": [ - { - "name": "savedstate-ktx-1.4.0.aar", - "url": "savedstate-ktx-1.4.0.aar", - "size": 5764, - "sha512": "b5ef95f1175b44c162b8f104d5885ff46aefe3c46ccabed67a5aa65a358295546fbdb3e751421ddf57276554c9cd0a4756cc4958c612f8947f51aae2d5adf0ff", - "sha256": "23593939446bc5a154a1e35fddd87b82f19e2adf072207f115bf29a8b431c1d3", - "sha1": "e41710c322b045e933fa8710d0c4540987574daa", - "md5": "da1726763178d846c8b4264fdc20a293" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.4.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib" - } - ], - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate-ktx is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-compose", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate-ktx is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-testing", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate-ktx is in atomic group androidx.savedstate" - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - } - ], - "files": [ - { - "name": "savedstate-ktx-1.4.0.aar", - "url": "savedstate-ktx-1.4.0.aar", - "size": 5764, - "sha512": "b5ef95f1175b44c162b8f104d5885ff46aefe3c46ccabed67a5aa65a358295546fbdb3e751421ddf57276554c9cd0a4756cc4958c612f8947f51aae2d5adf0ff", - "sha256": "23593939446bc5a154a1e35fddd87b82f19e2adf072207f115bf29a8b431c1d3", - "sha1": "e41710c322b045e933fa8710d0c4540987574daa", - "md5": "da1726763178d846c8b4264fdc20a293" - } - ] - }, - { - "name": "libraryVersionMetadata", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.usage": "library-version-metadata" - }, - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate-ktx is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-compose", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate-ktx is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-testing", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate-ktx is in atomic group androidx.savedstate" - } - ], - "files": [ - { - "name": "savedstate-ktx-1.4.0-versionMetadata.json", - "url": "savedstate-ktx-1.4.0-versionMetadata.json", - "size": 191, - "sha512": "225072cf1e54fc7479700f5339019ceafe1f9e4d514a8893a626190d42dfb31b35804c73597292ee864e5f3034bc73b4c5806109ed130eb268c531948a4be4b7", - "sha256": "ff1847220d3c526a133e4f76baed2060de09a72ac96f5b8e1fef2ab1d21ba85e", - "sha1": "a1a2692ed79fa0caa20fafeb33e56bd48993f6de", - "md5": "57c4eed7a9c15485d30d344fdc944a0a" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.pom b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.pom deleted file mode 100644 index 3599586..0000000 --- a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.pom +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - 4.0.0 - androidx.savedstate - savedstate-ktx - 1.4.0 - aar - SavedState Kotlin Extensions - Kotlin extensions for 'savedstate' artifact - https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0 - 2020 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.savedstate - savedstate - 1.4.0 - - - androidx.savedstate - savedstate-compose - 1.4.0 - - - androidx.savedstate - savedstate-testing - 1.4.0 - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - - - - - - androidx.savedstate - savedstate - [1.4.0] - compile - - - org.jetbrains.kotlin - kotlin-stdlib - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.aar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.aar deleted file mode 100644 index 51b4970..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.module b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.module deleted file mode 100644 index 3a1a33b..0000000 --- a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.module +++ /dev/null @@ -1,151 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.savedstate", - "module": "savedstate", - "version": "1.2.1", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "8.0" - } - }, - "variants": [ - { - "name": "releaseVariantReleaseApiPublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.1.0" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate-ktx", - "version": { - "requires": "1.2.1" - } - } - ], - "files": [ - { - "name": "savedstate-1.2.1.aar", - "url": "savedstate-1.2.1.aar", - "size": 20217, - "sha512": "847b0d39c56189b5ce459ac9408c9b24671917c2fe1529fc3e4e6b152d905d46fab39f98f4bc8cc654f162565b156895b8aae85442f0165418f236e3fb856b02", - "sha256": "21a7d4bcf6bdb94ad7b9283801529300b4fbb8808ca4f191e0cdce6fd8e4705a", - "sha1": "e364fc9dec32aa569d855f85864e50250318a093", - "md5": "86008fd3502c84e4343f040ea929c52a" - } - ] - }, - { - "name": "releaseVariantReleaseRuntimePublication", - "attributes": { - "org.gradle.category": "library", - "org.gradle.dependency.bundling": "external", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.1.0" - } - }, - { - "group": "androidx.arch.core", - "module": "core-common", - "version": { - "requires": "2.1.0" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.6.1" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "1.8.10" - } - } - ], - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate-ktx", - "version": { - "requires": "1.2.1" - } - } - ], - "files": [ - { - "name": "savedstate-1.2.1.aar", - "url": "savedstate-1.2.1.aar", - "size": 20217, - "sha512": "847b0d39c56189b5ce459ac9408c9b24671917c2fe1529fc3e4e6b152d905d46fab39f98f4bc8cc654f162565b156895b8aae85442f0165418f236e3fb856b02", - "sha256": "21a7d4bcf6bdb94ad7b9283801529300b4fbb8808ca4f191e0cdce6fd8e4705a", - "sha1": "e364fc9dec32aa569d855f85864e50250318a093", - "md5": "86008fd3502c84e4343f040ea929c52a" - } - ] - }, - { - "name": "sourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "java-runtime" - }, - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate-ktx", - "version": { - "requires": "1.2.1" - } - } - ], - "files": [ - { - "name": "savedstate-1.2.1-sources.jar", - "url": "savedstate-1.2.1-sources.jar", - "size": 8863, - "sha512": "e7fd1822fa56aaf70c1e5479a13214f2dc3aab87b73a69f961f839973b2ba71a53930a37147d86017cf9c4b2613caf539a4d39a1b269817b5e8b280a089330fb", - "sha256": "fd201fb9ea2d3e66262cb09bf1e33cbbe41050fcfcb96c9ce197f1780b614a73", - "sha1": "58d4c9fd35e826d3bce813974006451ee9ba4344", - "md5": "5ea0a7491fd6532e1dfee96c19fd73cc" - } - ] - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.pom b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.pom deleted file mode 100644 index 6ad5871..0000000 --- a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - 4.0.0 - androidx.savedstate - savedstate - 1.2.1 - aar - Saved State - Android Lifecycle Saved State - https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.1 - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.savedstate - savedstate-ktx - 1.2.1 - - - - - - androidx.annotation - annotation - 1.1.0 - compile - - - androidx.arch.core - core-common - 2.1.0 - runtime - - - androidx.lifecycle - lifecycle-common - 2.6.1 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.10 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.aar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.aar deleted file mode 100644 index 2af170f..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.jar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.jar deleted file mode 100644 index b2cf403..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.module b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.module deleted file mode 100644 index af4d1c2..0000000 --- a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.module +++ /dev/null @@ -1,1243 +0,0 @@ -{ - "formatVersion": "1.1", - "component": { - "group": "androidx.savedstate", - "module": "savedstate", - "version": "1.4.0", - "attributes": { - "org.gradle.status": "release" - } - }, - "createdBy": { - "gradle": { - "version": "9.1.0", - "buildId:": "14329657" - } - }, - "variants": [ - { - "name": "metadataApiElements", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.platform.type": "common" - }, - "dependencies": [ - { - "group": "androidx.annotation", - "module": "annotation", - "version": { - "requires": "1.9.1" - } - }, - { - "group": "androidx.lifecycle", - "module": "lifecycle-common", - "version": { - "requires": "2.9.2" - } - }, - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib" - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-coroutines-core", - "version": { - "requires": "1.9.0" - } - }, - { - "group": "org.jetbrains.kotlinx", - "module": "kotlinx-serialization-core", - "version": { - "requires": "1.7.3" - } - } - ], - "dependencyConstraints": [ - { - "group": "org.jetbrains.kotlin", - "module": "kotlin-stdlib", - "version": { - "requires": "2.0.21" - } - }, - { - "group": "androidx.savedstate", - "module": "savedstate-compose", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-ktx", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-testing", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "org.jetbrains.androidx.savedstate", - "module": "savedstate", - "version": { - "requires": "1.3.2" - }, - "reason": "prevents symbols duplication" - } - ], - "files": [ - { - "name": "savedstate-metadata-1.4.0.jar", - "url": "savedstate-1.4.0.jar", - "size": 36776, - "sha512": "9b6e64c126776e0b3cb16f86af0e4cac9a4e65fec434f746391ad8a9d0f115a835f23ff3cc2ae1db0e5c5504a1a4cccaf3d502f1c36a1fe0da023a819dfa2988", - "sha256": "098596c8dfba2bef44be037f3d3f89cdd011587505ed82fa625f2a83a22d6415", - "sha1": "eeda9569d1fdadab9a0a8e323910adafeee3b2ae", - "md5": "d13fd5324c2c16161161fb8a4d4c4ad0" - } - ] - }, - { - "name": "metadataSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "common" - }, - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate-compose", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-ktx", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-testing", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - } - ], - "files": [ - { - "name": "savedstate-kotlin-1.4.0-sources.jar", - "url": "savedstate-1.4.0-sources.jar", - "size": 52666, - "sha512": "1bbb90c6c669b301fdb8265100f4abc42ae0ad33c46e4cb685d7924e46fe1ec1ef8e948ef8dc0566967d8b09e113ab1d7bcb10e4bbbb00180ccecce270e3fa6f", - "sha256": "02cdc0f1b8f1313ba1e22193910618edc6f7877e542d2d83cbba5d2d68d16dd5", - "sha1": "0eaea653a0a2a8bdb6f3f8b15adcc1c9cbaf49c1", - "md5": "5094a35df0b069f1e600adecc4e827cd" - } - ] - }, - { - "name": "androidxSourcesElements", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.usage": "androidx-multiplatform-docs" - }, - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate-compose", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-ktx", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-testing", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - } - ], - "files": [ - { - "name": "savedstate-1.4.0-multiplatform-sources.jar", - "url": "savedstate-1.4.0-multiplatform-sources.jar", - "size": 76542, - "sha512": "1ac9daa0fa610bf3f1bf8ea9dd4856ce7141c30b513942c57a6baf02464f6e88d4f397af013443bf9a5695d1732c33ccb6d9dd6d8d698696c2d00df6659cb2df", - "sha256": "423d93fcfb218bd9bdd039e7733765ed881f43617493a719da7ed495211b2caf", - "sha1": "ae35b56a270a6f9688c2eb52a03abd36358ef466", - "md5": "06e55871c5c081166688b55732bd28aa" - }, - { - "name": "savedstate-1.4.0-samples-sources.jar", - "url": "savedstate-1.4.0-samples-sources.jar", - "size": 7330, - "sha512": "f1b77905da38cc98f6efcd3f9a440b2f2e91887e64fa966f707f4613163bbbc5893f32d235b4a5e6ecea3847264af93f898d4585eee2d1f4558ed0c0545de34d", - "sha256": "55d183dec7a7b59cfc754f1fde95262298a33ae1abc9a2554d7640ee1360ee1e", - "sha1": "45540714f2e54e94c96da6214912c134ffcd9d32", - "md5": "6cf2c87e40e1ebafa911b4df0300f2cb" - } - ] - }, - { - "name": "libraryVersionMetadata", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.usage": "library-version-metadata" - }, - "dependencyConstraints": [ - { - "group": "androidx.savedstate", - "module": "savedstate-compose", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-ktx", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - }, - { - "group": "androidx.savedstate", - "module": "savedstate-testing", - "version": { - "requires": "1.4.0" - }, - "reason": "savedstate is in atomic group androidx.savedstate" - } - ], - "files": [ - { - "name": "apiLevels.json", - "url": "savedstate-1.4.0-versionMetadata.json", - "size": 31596, - "sha512": "a825dbe1401ccfd30de170339b6c62c61efd307d66e454886423cfed961e72bf403edf6f8ada18d53c4d84daf4684c6c54e0faf816812ab919de84de79673fde", - "sha256": "f87c8b689c5106784c062cb9875108530e6a999802281d8f0bb7ec6daabec458", - "sha1": "b2ac690fd9ee106f2434d70320a6f6e62e0f4375", - "md5": "2b8c55bb4c880f9af36ca1dc63d23e1e" - } - ] - }, - { - "name": "androidApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../savedstate-android/1.4.0/savedstate-android-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-android", - "version": "1.4.0" - } - }, - { - "name": "androidRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "aar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../savedstate-android/1.4.0/savedstate-android-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-android", - "version": "1.4.0" - } - }, - { - "name": "androidSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "android", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../savedstate-android/1.4.0/savedstate-android-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-android", - "version": "1.4.0" - } - }, - { - "name": "desktopApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-api", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-desktop", - "version": "1.4.0" - } - }, - { - "name": "desktopRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-desktop", - "version": "1.4.0" - } - }, - { - "name": "desktopSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "standard-jvm", - "org.gradle.libraryelements": "jar", - "org.gradle.usage": "java-runtime", - "org.jetbrains.kotlin.platform.type": "jvm" - }, - "available-at": { - "url": "../../savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-desktop", - "version": "1.4.0" - } - }, - { - "name": "iosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-iosarm64/1.4.0/savedstate-iosarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-iosarm64", - "version": "1.4.0" - } - }, - { - "name": "iosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-iosarm64/1.4.0/savedstate-iosarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-iosarm64", - "version": "1.4.0" - } - }, - { - "name": "iosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-iosarm64/1.4.0/savedstate-iosarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-iosarm64", - "version": "1.4.0" - } - }, - { - "name": "iosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-iossimulatorarm64/1.4.0/savedstate-iossimulatorarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-iossimulatorarm64", - "version": "1.4.0" - } - }, - { - "name": "iosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-iossimulatorarm64/1.4.0/savedstate-iossimulatorarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-iossimulatorarm64", - "version": "1.4.0" - } - }, - { - "name": "iosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-iossimulatorarm64/1.4.0/savedstate-iossimulatorarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-iossimulatorarm64", - "version": "1.4.0" - } - }, - { - "name": "iosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-iosx64/1.4.0/savedstate-iosx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-iosx64", - "version": "1.4.0" - } - }, - { - "name": "iosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-iosx64/1.4.0/savedstate-iosx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-iosx64", - "version": "1.4.0" - } - }, - { - "name": "iosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "ios_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-iosx64/1.4.0/savedstate-iosx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-iosx64", - "version": "1.4.0" - } - }, - { - "name": "jsApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../savedstate-js/1.4.0/savedstate-js-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-js", - "version": "1.4.0" - } - }, - { - "name": "jsRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../savedstate-js/1.4.0/savedstate-js-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-js", - "version": "1.4.0" - } - }, - { - "name": "jsSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.js.compiler": "ir", - "org.jetbrains.kotlin.platform.type": "js" - }, - "available-at": { - "url": "../../savedstate-js/1.4.0/savedstate-js-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-js", - "version": "1.4.0" - } - }, - { - "name": "linuxArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "linux_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-linuxarm64/1.4.0/savedstate-linuxarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-linuxarm64", - "version": "1.4.0" - } - }, - { - "name": "linuxArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "linux_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-linuxarm64/1.4.0/savedstate-linuxarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-linuxarm64", - "version": "1.4.0" - } - }, - { - "name": "linuxX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "linux_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-linuxx64/1.4.0/savedstate-linuxx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-linuxx64", - "version": "1.4.0" - } - }, - { - "name": "linuxX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "linux_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-linuxx64/1.4.0/savedstate-linuxx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-linuxx64", - "version": "1.4.0" - } - }, - { - "name": "macosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-macosarm64/1.4.0/savedstate-macosarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-macosarm64", - "version": "1.4.0" - } - }, - { - "name": "macosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-macosarm64/1.4.0/savedstate-macosarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-macosarm64", - "version": "1.4.0" - } - }, - { - "name": "macosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "macos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-macosarm64/1.4.0/savedstate-macosarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-macosarm64", - "version": "1.4.0" - } - }, - { - "name": "macosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-macosx64/1.4.0/savedstate-macosx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-macosx64", - "version": "1.4.0" - } - }, - { - "name": "macosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-macosx64/1.4.0/savedstate-macosx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-macosx64", - "version": "1.4.0" - } - }, - { - "name": "macosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "macos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-macosx64/1.4.0/savedstate-macosx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-macosx64", - "version": "1.4.0" - } - }, - { - "name": "mingwX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "mingw_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-mingwx64/1.4.0/savedstate-mingwx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-mingwx64", - "version": "1.4.0" - } - }, - { - "name": "mingwX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "mingw_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-mingwx64/1.4.0/savedstate-mingwx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-mingwx64", - "version": "1.4.0" - } - }, - { - "name": "tvosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-tvosarm64/1.4.0/savedstate-tvosarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-tvosarm64", - "version": "1.4.0" - } - }, - { - "name": "tvosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-tvosarm64/1.4.0/savedstate-tvosarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-tvosarm64", - "version": "1.4.0" - } - }, - { - "name": "tvosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-tvosarm64/1.4.0/savedstate-tvosarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-tvosarm64", - "version": "1.4.0" - } - }, - { - "name": "tvosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-tvossimulatorarm64/1.4.0/savedstate-tvossimulatorarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-tvossimulatorarm64", - "version": "1.4.0" - } - }, - { - "name": "tvosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-tvossimulatorarm64/1.4.0/savedstate-tvossimulatorarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-tvossimulatorarm64", - "version": "1.4.0" - } - }, - { - "name": "tvosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-tvossimulatorarm64/1.4.0/savedstate-tvossimulatorarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-tvossimulatorarm64", - "version": "1.4.0" - } - }, - { - "name": "tvosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-tvosx64/1.4.0/savedstate-tvosx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-tvosx64", - "version": "1.4.0" - } - }, - { - "name": "tvosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-tvosx64/1.4.0/savedstate-tvosx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-tvosx64", - "version": "1.4.0" - } - }, - { - "name": "tvosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "tvos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-tvosx64/1.4.0/savedstate-tvosx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-tvosx64", - "version": "1.4.0" - } - }, - { - "name": "wasmJsApiElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../savedstate-wasm-js/1.4.0/savedstate-wasm-js-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-wasm-js", - "version": "1.4.0" - } - }, - { - "name": "wasmJsRuntimeElements-published", - "attributes": { - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../savedstate-wasm-js/1.4.0/savedstate-wasm-js-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-wasm-js", - "version": "1.4.0" - } - }, - { - "name": "wasmJsSourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.platform.type": "wasm", - "org.jetbrains.kotlin.wasm.target": "js" - }, - "available-at": { - "url": "../../savedstate-wasm-js/1.4.0/savedstate-wasm-js-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-wasm-js", - "version": "1.4.0" - } - }, - { - "name": "watchosArm32ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchosarm32/1.4.0/savedstate-watchosarm32-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchosarm32", - "version": "1.4.0" - } - }, - { - "name": "watchosArm32SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchosarm32/1.4.0/savedstate-watchosarm32-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchosarm32", - "version": "1.4.0" - } - }, - { - "name": "watchosArm32MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_arm32", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchosarm32/1.4.0/savedstate-watchosarm32-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchosarm32", - "version": "1.4.0" - } - }, - { - "name": "watchosArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchosarm64/1.4.0/savedstate-watchosarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchosarm64", - "version": "1.4.0" - } - }, - { - "name": "watchosArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchosarm64/1.4.0/savedstate-watchosarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchosarm64", - "version": "1.4.0" - } - }, - { - "name": "watchosArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchosarm64/1.4.0/savedstate-watchosarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchosarm64", - "version": "1.4.0" - } - }, - { - "name": "watchosDeviceArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchosdevicearm64/1.4.0/savedstate-watchosdevicearm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchosdevicearm64", - "version": "1.4.0" - } - }, - { - "name": "watchosDeviceArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchosdevicearm64/1.4.0/savedstate-watchosdevicearm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchosdevicearm64", - "version": "1.4.0" - } - }, - { - "name": "watchosDeviceArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_device_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchosdevicearm64/1.4.0/savedstate-watchosdevicearm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchosdevicearm64", - "version": "1.4.0" - } - }, - { - "name": "watchosSimulatorArm64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchossimulatorarm64/1.4.0/savedstate-watchossimulatorarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchossimulatorarm64", - "version": "1.4.0" - } - }, - { - "name": "watchosSimulatorArm64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchossimulatorarm64/1.4.0/savedstate-watchossimulatorarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchossimulatorarm64", - "version": "1.4.0" - } - }, - { - "name": "watchosSimulatorArm64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchossimulatorarm64/1.4.0/savedstate-watchossimulatorarm64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchossimulatorarm64", - "version": "1.4.0" - } - }, - { - "name": "watchosX64ApiElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-api", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchosx64/1.4.0/savedstate-watchosx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchosx64", - "version": "1.4.0" - } - }, - { - "name": "watchosX64SourcesElements-published", - "attributes": { - "org.gradle.category": "documentation", - "org.gradle.dependency.bundling": "external", - "org.gradle.docstype": "sources", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-runtime", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchosx64/1.4.0/savedstate-watchosx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchosx64", - "version": "1.4.0" - } - }, - { - "name": "watchosX64MetadataElements-published", - "attributes": { - "artifactType": "org.jetbrains.kotlin.klib", - "org.gradle.category": "library", - "org.gradle.jvm.environment": "non-jvm", - "org.gradle.usage": "kotlin-metadata", - "org.jetbrains.kotlin.native.target": "watchos_x64", - "org.jetbrains.kotlin.platform.type": "native" - }, - "available-at": { - "url": "../../savedstate-watchosx64/1.4.0/savedstate-watchosx64-1.4.0.module", - "group": "androidx.savedstate", - "module": "savedstate-watchosx64", - "version": "1.4.0" - } - } - ] -} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.pom b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.pom deleted file mode 100644 index 3206230..0000000 --- a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.pom +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - 4.0.0 - androidx.savedstate - savedstate - 1.4.0 - aar - Saved State - Android Lifecycle Saved State - https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0 - 2018 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.savedstate - savedstate-compose - 1.4.0 - - - androidx.savedstate - savedstate-ktx - 1.4.0 - - - androidx.savedstate - savedstate-testing - 1.4.0 - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - - - org.jetbrains.androidx.savedstate - savedstate - 1.3.2 - - - - - - org.jetbrains.kotlinx - kotlinx-serialization-core - 1.7.3 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - runtime - - - androidx.lifecycle - lifecycle-common - 2.9.2 - runtime - - - androidx.savedstate - savedstate-android - 1.4.0 - aar - compile - - - androidx.annotation - annotation - 1.9.1 - runtime - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.9.0 - runtime - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/startup/startup-runtime/1.1.1/startup-runtime-1.1.1.aar b/tauri_app/docker/offline-maven/androidx/startup/startup-runtime/1.1.1/startup-runtime-1.1.1.aar deleted file mode 100644 index adf44c4..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/startup/startup-runtime/1.1.1/startup-runtime-1.1.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/startup/startup-runtime/1.1.1/startup-runtime-1.1.1.pom b/tauri_app/docker/offline-maven/androidx/startup/startup-runtime/1.1.1/startup-runtime-1.1.1.pom deleted file mode 100644 index 37763ca..0000000 --- a/tauri_app/docker/offline-maven/androidx/startup/startup-runtime/1.1.1/startup-runtime-1.1.1.pom +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - 4.0.0 - androidx.startup - startup-runtime - 1.1.1 - aar - Android App Startup Runtime - Android App Startup Runtime - https://developer.android.com/jetpack/androidx/releases/startup#1.1.1 - 2020 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - androidx.annotation - annotation - 1.1.0 - runtime - - - androidx.tracing - tracing - 1.0.0 - runtime - aar - - - diff --git a/tauri_app/docker/offline-maven/androidx/tracing/tracing/1.0.0/tracing-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/tracing/tracing/1.0.0/tracing-1.0.0.aar deleted file mode 100644 index daec68b..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/tracing/tracing/1.0.0/tracing-1.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/tracing/tracing/1.0.0/tracing-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/tracing/tracing/1.0.0/tracing-1.0.0.pom deleted file mode 100644 index d1523ab..0000000 --- a/tauri_app/docker/offline-maven/androidx/tracing/tracing/1.0.0/tracing-1.0.0.pom +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - 4.0.0 - androidx.tracing - tracing - 1.0.0 - aar - Android Tracing - Android Tracing - https://developer.android.com/jetpack/androidx/releases/tracing#1.0.0 - 2020 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - androidx.annotation - annotation - 1.1.0 - runtime - - - diff --git a/tauri_app/docker/offline-maven/androidx/transition/transition/1.5.0/transition-1.5.0.aar b/tauri_app/docker/offline-maven/androidx/transition/transition/1.5.0/transition-1.5.0.aar deleted file mode 100644 index a6c44b9..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/transition/transition/1.5.0/transition-1.5.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/transition/transition/1.5.0/transition-1.5.0.pom b/tauri_app/docker/offline-maven/androidx/transition/transition/1.5.0/transition-1.5.0.pom deleted file mode 100644 index 53ee64c..0000000 --- a/tauri_app/docker/offline-maven/androidx/transition/transition/1.5.0/transition-1.5.0.pom +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - 4.0.0 - androidx.transition - transition - 1.5.0 - aar - Transition - Android Transition Support Library - https://developer.android.com/jetpack/androidx/releases/transition#1.5.0 - 2016 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - - androidx.transition - transition-ktx - 1.5.0 - - - - - - androidx.annotation - annotation - 1.2.0 - compile - - - androidx.collection - collection - 1.1.0 - runtime - - - androidx.core - core - 1.13.0 - compile - aar - - - androidx.dynamicanimation - dynamicanimation - 1.0.0 - runtime - aar - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable-animated/1.1.0/vectordrawable-animated-1.1.0.aar b/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable-animated/1.1.0/vectordrawable-animated-1.1.0.aar deleted file mode 100644 index bf88577..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable-animated/1.1.0/vectordrawable-animated-1.1.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable-animated/1.1.0/vectordrawable-animated-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable-animated/1.1.0/vectordrawable-animated-1.1.0.pom deleted file mode 100644 index ec234d3..0000000 --- a/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable-animated/1.1.0/vectordrawable-animated-1.1.0.pom +++ /dev/null @@ -1,51 +0,0 @@ - - - 4.0.0 - androidx.vectordrawable - vectordrawable-animated - 1.1.0 - aar - Android Support AnimatedVectorDrawable - Android Support AnimatedVectorDrawable - https://developer.android.com/jetpack/androidx - 2015 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.vectordrawable - vectordrawable - 1.1.0 - aar - compile - - - androidx.interpolator - interpolator - 1.0.0 - aar - compile - - - androidx.collection - collection - 1.1.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0.aar b/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0.aar deleted file mode 100644 index 0746c62..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0.pom deleted file mode 100644 index 80acd87..0000000 --- a/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - 4.0.0 - androidx.vectordrawable - vectordrawable - 1.1.0 - aar - Android Support VectorDrawable - Android Support VectorDrawable - https://developer.android.com/jetpack/androidx - 2015 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.1.0 - compile - - - androidx.core - core - 1.1.0 - aar - compile - - - androidx.collection - collection - 1.1.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/versionedparcelable/versionedparcelable/1.1.1/versionedparcelable-1.1.1.aar b/tauri_app/docker/offline-maven/androidx/versionedparcelable/versionedparcelable/1.1.1/versionedparcelable-1.1.1.aar deleted file mode 100644 index 4f5acaa..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/versionedparcelable/versionedparcelable/1.1.1/versionedparcelable-1.1.1.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/versionedparcelable/versionedparcelable/1.1.1/versionedparcelable-1.1.1.pom b/tauri_app/docker/offline-maven/androidx/versionedparcelable/versionedparcelable/1.1.1/versionedparcelable-1.1.1.pom deleted file mode 100644 index c834996..0000000 --- a/tauri_app/docker/offline-maven/androidx/versionedparcelable/versionedparcelable/1.1.1/versionedparcelable-1.1.1.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - 4.0.0 - androidx.versionedparcelable - versionedparcelable - 1.1.1 - aar - VersionedParcelable - Provides a stable but relatively compact binary serialization format that can be passed across processes or persisted safely. - http://developer.android.com/tools/extras/support-library.html - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.1.0 - compile - - - androidx.collection - collection - 1.0.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0.aar deleted file mode 100644 index a766729..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0.pom deleted file mode 100644 index c062095..0000000 --- a/tauri_app/docker/offline-maven/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0.pom +++ /dev/null @@ -1,51 +0,0 @@ - - - 4.0.0 - androidx.viewpager - viewpager - 1.0.0 - aar - Android Support Library View Pager - The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. - http://developer.android.com/tools/extras/support-library.html - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.0.0 - compile - - - androidx.core - core - 1.0.0 - aar - compile - - - androidx.customview - customview - 1.0.0 - aar - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0.aar deleted file mode 100644 index 51496d4..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0.pom deleted file mode 100644 index 6bf1732..0000000 --- a/tauri_app/docker/offline-maven/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0.pom +++ /dev/null @@ -1,64 +0,0 @@ - - - 4.0.0 - androidx.viewpager2 - viewpager2 - 1.0.0 - aar - AndroidX Widget ViewPager2 - AndroidX Widget ViewPager2 - https://developer.android.com/jetpack/androidx - 2017 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - http://source.android.com - - - - androidx.annotation - annotation - 1.1.0 - compile - - - androidx.fragment - fragment - 1.1.0 - aar - compile - - - androidx.recyclerview - recyclerview - 1.1.0 - aar - compile - - - androidx.core - core - 1.1.0 - aar - compile - - - androidx.collection - collection - 1.1.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/androidx/webkit/webkit/1.14.0/webkit-1.14.0.aar b/tauri_app/docker/offline-maven/androidx/webkit/webkit/1.14.0/webkit-1.14.0.aar deleted file mode 100644 index 341c393..0000000 Binary files a/tauri_app/docker/offline-maven/androidx/webkit/webkit/1.14.0/webkit-1.14.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/androidx/webkit/webkit/1.14.0/webkit-1.14.0.pom b/tauri_app/docker/offline-maven/androidx/webkit/webkit/1.14.0/webkit-1.14.0.pom deleted file mode 100644 index 277f9b8..0000000 --- a/tauri_app/docker/offline-maven/androidx/webkit/webkit/1.14.0/webkit-1.14.0.pom +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - 4.0.0 - androidx.webkit - webkit - 1.14.0 - aar - WebKit - The WebKit Support Library is a static library you can add to your Android application in order to use android.webkit APIs that are not available for older platform versions. - https://developer.android.com/jetpack/androidx/releases/webkit#1.14.0 - 2017 - - The Android Open Source Project - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - androidx.annotation - annotation-experimental - 1.4.1 - compile - aar - - - org.jspecify - jspecify - 1.0.0 - compile - - - androidx.core - core - 1.1.0 - compile - aar - - - androidx.annotation - annotation - 1.8.1 - compile - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/com/android/databinding/baseLibrary/8.11.0/baseLibrary-8.11.0.jar b/tauri_app/docker/offline-maven/com/android/databinding/baseLibrary/8.11.0/baseLibrary-8.11.0.jar deleted file mode 100644 index c455148..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/databinding/baseLibrary/8.11.0/baseLibrary-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/databinding/baseLibrary/8.11.0/baseLibrary-8.11.0.pom b/tauri_app/docker/offline-maven/com/android/databinding/baseLibrary/8.11.0/baseLibrary-8.11.0.pom deleted file mode 100644 index f43d59d..0000000 --- a/tauri_app/docker/offline-maven/com/android/databinding/baseLibrary/8.11.0/baseLibrary-8.11.0.pom +++ /dev/null @@ -1,23 +0,0 @@ - - - 4.0.0 - com.android.databinding - baseLibrary - 8.11.0 - com.android.databinding.baseLibrary - Shared library between Data Binding runtime lib and compiler - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - diff --git a/tauri_app/docker/offline-maven/com/android/signflinger/8.11.0/signflinger-8.11.0.jar b/tauri_app/docker/offline-maven/com/android/signflinger/8.11.0/signflinger-8.11.0.jar deleted file mode 100644 index b81e4e4..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/signflinger/8.11.0/signflinger-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/signflinger/8.11.0/signflinger-8.11.0.pom b/tauri_app/docker/offline-maven/com/android/signflinger/8.11.0/signflinger-8.11.0.pom deleted file mode 100644 index 572830b..0000000 --- a/tauri_app/docker/offline-maven/com/android/signflinger/8.11.0/signflinger-8.11.0.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - 4.0.0 - com.android - signflinger - 8.11.0 - com.android.signflinger - Library used to sign APKs - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools - annotations - 31.11.0 - runtime - - - com.android.tools.build - apksig - 8.11.0 - runtime - - - com.android - zipflinger - 8.11.0 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/crash/31.11.0/crash-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/analytics-library/crash/31.11.0/crash-31.11.0.jar deleted file mode 100644 index a9b1f40..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/crash/31.11.0/crash-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/crash/31.11.0/crash-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/analytics-library/crash/31.11.0/crash-31.11.0.pom deleted file mode 100644 index 156047d..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/crash/31.11.0/crash-31.11.0.pom +++ /dev/null @@ -1,55 +0,0 @@ - - - 4.0.0 - com.android.tools.analytics-library - crash - 31.11.0 - Android Tools Analytics Crash Library - Helper Library for uploading crash reports. - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools - annotations - 31.11.0 - runtime - - - com.google.guava - guava - 33.3.1-jre - runtime - - - org.apache.httpcomponents - httpclient - 4.5.14 - runtime - - - org.apache.httpcomponents - httpcore - 4.4.16 - runtime - - - org.apache.httpcomponents - httpmime - 4.5.6 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/protos/31.11.0/protos-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/analytics-library/protos/31.11.0/protos-31.11.0.jar deleted file mode 100644 index 0140861..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/protos/31.11.0/protos-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/protos/31.11.0/protos-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/analytics-library/protos/31.11.0/protos-31.11.0.pom deleted file mode 100644 index 5d7a68e..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/protos/31.11.0/protos-31.11.0.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - com.android.tools.analytics-library - protos - 31.11.0 - Android Tools Analytics Protobufs - Library containing protobufs for usage analytics. - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.google.protobuf - protobuf-java - 3.25.5 - compile - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/shared/31.11.0/shared-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/analytics-library/shared/31.11.0/shared-31.11.0.jar deleted file mode 100644 index cc85790..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/shared/31.11.0/shared-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/shared/31.11.0/shared-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/analytics-library/shared/31.11.0/shared-31.11.0.pom deleted file mode 100644 index d9d5d70..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/shared/31.11.0/shared-31.11.0.pom +++ /dev/null @@ -1,67 +0,0 @@ - - - 4.0.0 - com.android.tools.analytics-library - shared - 31.11.0 - Android Tools Analytics Shared Library - Helper Library for tracking usage analytics. - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools.analytics-library - protos - 31.11.0 - compile - - - com.android.tools - annotations - 31.11.0 - runtime - - - com.android.tools - common - 31.11.0 - runtime - - - com.google.code.gson - gson - 2.11.0 - runtime - - - com.google.guava - guava - 33.3.1-jre - runtime - - - net.java.dev.jna - jna-platform - 5.6.0 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 2.1.20 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/tracker/31.11.0/tracker-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/analytics-library/tracker/31.11.0/tracker-31.11.0.jar deleted file mode 100644 index 946cc6f..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/tracker/31.11.0/tracker-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/tracker/31.11.0/tracker-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/analytics-library/tracker/31.11.0/tracker-31.11.0.pom deleted file mode 100644 index 276ef0b..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/analytics-library/tracker/31.11.0/tracker-31.11.0.pom +++ /dev/null @@ -1,67 +0,0 @@ - - - 4.0.0 - com.android.tools.analytics-library - tracker - 31.11.0 - Android Tools Analytics Tracker - Library for tracking usage analytics. - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools.analytics-library - protos - 31.11.0 - compile - - - com.android.tools.analytics-library - shared - 31.11.0 - compile - - - com.android.tools - annotations - 31.11.0 - runtime - - - com.android.tools - common - 31.11.0 - runtime - - - com.google.guava - guava - 33.3.1-jre - runtime - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 2.1.20 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/annotations/31.11.0/annotations-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/annotations/31.11.0/annotations-31.11.0.jar deleted file mode 100644 index 8d7c063..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/annotations/31.11.0/annotations-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/annotations/31.11.0/annotations-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/annotations/31.11.0/annotations-31.11.0.pom deleted file mode 100644 index 9f766c3..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/annotations/31.11.0/annotations-31.11.0.pom +++ /dev/null @@ -1,22 +0,0 @@ - - - 4.0.0 - com.android.tools - annotations - 31.11.0 - com.android.tools.annotations - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/aapt2-proto/8.11.0-12782657/aapt2-proto-8.11.0-12782657.jar b/tauri_app/docker/offline-maven/com/android/tools/build/aapt2-proto/8.11.0-12782657/aapt2-proto-8.11.0-12782657.jar deleted file mode 100644 index 13f8256..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/aapt2-proto/8.11.0-12782657/aapt2-proto-8.11.0-12782657.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/aapt2-proto/8.11.0-12782657/aapt2-proto-8.11.0-12782657.pom b/tauri_app/docker/offline-maven/com/android/tools/build/aapt2-proto/8.11.0-12782657/aapt2-proto-8.11.0-12782657.pom deleted file mode 100644 index 94b155e..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/aapt2-proto/8.11.0-12782657/aapt2-proto-8.11.0-12782657.pom +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - 4.0.0 - com.android.tools.build - aapt2-proto - 8.11.0-12782657 - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - Android Asset Packaging Tool 2. Protocol Buffer Files - https://developer.android.com/studio/build - com.android.tools.build.aapt2-proto - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - git://android.googlesource.com/platform/tools/base.git - https://android.googlesource.com/platform/tools/base - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/aaptcompiler/8.11.0/aaptcompiler-8.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/build/aaptcompiler/8.11.0/aaptcompiler-8.11.0.jar deleted file mode 100644 index 1041d71..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/aaptcompiler/8.11.0/aaptcompiler-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/aaptcompiler/8.11.0/aaptcompiler-8.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/build/aaptcompiler/8.11.0/aaptcompiler-8.11.0.pom deleted file mode 100644 index 858865e..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/aaptcompiler/8.11.0/aaptcompiler-8.11.0.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - 4.0.0 - com.android.tools.build - aaptcompiler - 8.11.0 - - - com.android.tools.build - aapt2-proto - 8.11.0-12782657 - runtime - - - com.android.tools.layoutlib - layoutlib-api - 31.11.0 - runtime - - - com.android.tools - common - 31.11.0 - runtime - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - com.google.guava - guava - 33.3.1-jre - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - 2.1.20 - runtime - - - Compiler for Android Resources, to be used by AAPT2. - https://developer.android.com/studio/build - com.android.tools.build.aaptcompiler - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - git://android.googlesource.com/platform/tools/base.git - https://android.googlesource.com/platform/tools/base - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/apksig/8.11.0/apksig-8.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/build/apksig/8.11.0/apksig-8.11.0.jar deleted file mode 100644 index d8687a1..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/apksig/8.11.0/apksig-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/apksig/8.11.0/apksig-8.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/build/apksig/8.11.0/apksig-8.11.0.pom deleted file mode 100644 index 7d93a69..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/apksig/8.11.0/apksig-8.11.0.pom +++ /dev/null @@ -1,23 +0,0 @@ - - - 4.0.0 - com.android.tools.build - apksig - 8.11.0 - com.android.tools.build.apksig - Library for signing APKs and for checking that APK signatures verify on Android - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/apkzlib/8.11.0/apkzlib-8.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/build/apkzlib/8.11.0/apkzlib-8.11.0.jar deleted file mode 100644 index 9d72959..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/apkzlib/8.11.0/apkzlib-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/apkzlib/8.11.0/apkzlib-8.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/build/apkzlib/8.11.0/apkzlib-8.11.0.pom deleted file mode 100644 index a3a85c9..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/apkzlib/8.11.0/apkzlib-8.11.0.pom +++ /dev/null @@ -1,55 +0,0 @@ - - - 4.0.0 - com.android.tools.build - apkzlib - 8.11.0 - com.android.tools.build.apkzlib - Library used to incrementally build and sign APKs - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools.build - apksig - 8.11.0 - runtime - - - com.google.code.findbugs - jsr305 - 3.0.2 - runtime - - - com.google.guava - guava - 33.3.1-jre - runtime - - - org.bouncycastle - bcpkix-jdk18on - 1.79 - runtime - - - org.bouncycastle - bcprov-jdk18on - 1.79 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/builder-model/8.11.0/builder-model-8.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/build/builder-model/8.11.0/builder-model-8.11.0.jar deleted file mode 100644 index 9fea7dc..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/builder-model/8.11.0/builder-model-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/builder-model/8.11.0/builder-model-8.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/build/builder-model/8.11.0/builder-model-8.11.0.pom deleted file mode 100644 index 8af2fb9..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/builder-model/8.11.0/builder-model-8.11.0.pom +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - 4.0.0 - com.android.tools.build - builder-model - 8.11.0 - - - com.android.tools - annotations - 31.11.0 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - 2.1.20 - runtime - - - Model for the Builder library. - https://developer.android.com/studio/build - com.android.tools.build.builder-model - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - git://android.googlesource.com/platform/tools/base.git - https://android.googlesource.com/platform/tools/base - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/builder-test-api/8.11.0/builder-test-api-8.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/build/builder-test-api/8.11.0/builder-test-api-8.11.0.jar deleted file mode 100644 index 0aa77a7..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/builder-test-api/8.11.0/builder-test-api-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/builder-test-api/8.11.0/builder-test-api-8.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/build/builder-test-api/8.11.0/builder-test-api-8.11.0.pom deleted file mode 100644 index d718455..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/builder-test-api/8.11.0/builder-test-api-8.11.0.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - 4.0.0 - com.android.tools.build - builder-test-api - 8.11.0 - - - com.android.tools.ddms - ddmlib - 31.11.0 - runtime - - - com.android.tools - annotations - 31.11.0 - runtime - - - com.android.tools - common - 31.11.0 - runtime - - - com.google.guava - guava - 33.3.1-jre - runtime - - - API for the Test extension point in the Builder library. - https://developer.android.com/studio/build - com.android.tools.build.builder-test-api - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - git://android.googlesource.com/platform/tools/base.git - https://android.googlesource.com/platform/tools/base - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/builder/8.11.0/builder-8.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/build/builder/8.11.0/builder-8.11.0.jar deleted file mode 100644 index ec18190..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/builder/8.11.0/builder-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/builder/8.11.0/builder-8.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/build/builder/8.11.0/builder-8.11.0.pom deleted file mode 100644 index b3c36b4..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/builder/8.11.0/builder-8.11.0.pom +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - 4.0.0 - com.android.tools.build - builder - 8.11.0 - - - com.android.tools.build - manifest-merger - 31.11.0 - compile - - - com.android - zipflinger - 8.11.0 - compile - - - com.android.tools.build - apksig - 8.11.0 - compile - - - com.android.tools.build - apkzlib - 8.11.0 - compile - - - com.squareup - javawriter - 2.5.0 - compile - - - com.android.tools.build - builder-model - 8.11.0 - runtime - - - com.android.tools.build - builder-test-api - 8.11.0 - runtime - - - com.android.tools - sdklib - 31.11.0 - runtime - - - com.android.tools - sdk-common - 31.11.0 - runtime - - - com.android.tools - common - 31.11.0 - runtime - - - com.android.tools.ddms - ddmlib - 31.11.0 - runtime - - - com.android - signflinger - 8.11.0 - runtime - - - com.android.tools.analytics-library - protos - 31.11.0 - runtime - - - com.android.tools.analytics-library - tracker - 31.11.0 - runtime - - - com.android.tools.layoutlib - layoutlib-api - 31.11.0 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - 2.1.20 - runtime - - - org.bouncycastle - bcpkix-jdk18on - 1.79 - runtime - - - org.bouncycastle - bcprov-jdk18on - 1.79 - runtime - - - javax.inject - javax.inject - 1 - runtime - - - org.ow2.asm - asm-commons - 9.7.1 - runtime - - - Library to build Android applications. - https://developer.android.com/studio/build - com.android.tools.build.builder - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - git://android.googlesource.com/platform/tools/base.git - https://android.googlesource.com/platform/tools/base - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/bundletool/1.18.1/bundletool-1.18.1.jar b/tauri_app/docker/offline-maven/com/android/tools/build/bundletool/1.18.1/bundletool-1.18.1.jar deleted file mode 100644 index 3dd61a3..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/bundletool/1.18.1/bundletool-1.18.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/bundletool/1.18.1/bundletool-1.18.1.pom b/tauri_app/docker/offline-maven/com/android/tools/build/bundletool/1.18.1/bundletool-1.18.1.pom deleted file mode 100644 index 392fea9..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/bundletool/1.18.1/bundletool-1.18.1.pom +++ /dev/null @@ -1,82 +0,0 @@ - - - 4.0.0 - com.android.tools.build - bundletool - 1.18.1 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - com.android.tools.build - aapt2-proto - 7.3.0-alpha07-8248216 - runtime - - - com.google.auto.value - auto-value-annotations - 1.6.2 - runtime - - - com.google.errorprone - error_prone_annotations - 2.3.1 - runtime - - - com.google.guava - guava - 32.0.1-jre - runtime - - - com.google.protobuf - protobuf-java - 3.22.3 - runtime - - - com.google.protobuf - protobuf-java-util - 3.22.3 - runtime - - - com.google.dagger - dagger - 2.28.3 - runtime - - - javax.inject - javax.inject - 1 - runtime - - - org.bitbucket.b_c - jose4j - 0.9.5 - runtime - - - org.slf4j - slf4j-api - - - - - org.slf4j - slf4j-api - 1.7.30 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/gradle-api/8.11.0/gradle-api-8.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/build/gradle-api/8.11.0/gradle-api-8.11.0.jar deleted file mode 100644 index 41ef8c9..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/gradle-api/8.11.0/gradle-api-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/gradle-api/8.11.0/gradle-api-8.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/build/gradle-api/8.11.0/gradle-api-8.11.0.pom deleted file mode 100644 index 0506be0..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/gradle-api/8.11.0/gradle-api-8.11.0.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - 4.0.0 - com.android.tools.build - gradle-api - 8.11.0 - - - org.ow2.asm - asm - 9.7.1 - compile - - - com.android.tools.build - builder-test-api - 8.11.0 - runtime - - - com.google.guava - guava - 33.3.1-jre - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - 2.1.20 - runtime - - - APIs to customize Android Gradle Builds - https://developer.android.com/studio/build - com.android.tools.build.gradle-api - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - git://android.googlesource.com/platform/tools/base.git - https://android.googlesource.com/platform/tools/base - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/gradle-settings-api/8.11.0/gradle-settings-api-8.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/build/gradle-settings-api/8.11.0/gradle-settings-api-8.11.0.jar deleted file mode 100644 index cf8e148..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/gradle-settings-api/8.11.0/gradle-settings-api-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/gradle-settings-api/8.11.0/gradle-settings-api-8.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/build/gradle-settings-api/8.11.0/gradle-settings-api-8.11.0.pom deleted file mode 100644 index b576f65..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/gradle-settings-api/8.11.0/gradle-settings-api-8.11.0.pom +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - 4.0.0 - com.android.tools.build - gradle-settings-api - 8.11.0 - - - org.jetbrains.kotlin - kotlin-stdlib - 2.1.20 - runtime - - - Gradle Settings API to build Android applications. - https://developer.android.com/studio/build - com.android.tools.build.gradle-settings-api - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - git://android.googlesource.com/platform/tools/base.git - https://android.googlesource.com/platform/tools/base - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/gradle/8.11.0/gradle-8.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/build/gradle/8.11.0/gradle-8.11.0.jar deleted file mode 100644 index 1cac9e1..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/gradle/8.11.0/gradle-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/gradle/8.11.0/gradle-8.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/build/gradle/8.11.0/gradle-8.11.0.pom deleted file mode 100644 index d8cefa5..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/gradle/8.11.0/gradle-8.11.0.pom +++ /dev/null @@ -1,363 +0,0 @@ - - - - - - - - 4.0.0 - com.android.tools.build - gradle - 8.11.0 - - - com.android.tools.build - builder - 8.11.0 - compile - - - com.android.tools.build - builder-model - 8.11.0 - compile - - - com.android.tools.build - gradle-api - 8.11.0 - compile - - - com.android.tools.build - gradle-settings-api - 8.11.0 - runtime - - - com.android.tools - sdk-common - 31.11.0 - runtime - - - com.android.tools - sdklib - 31.11.0 - runtime - - - com.android.tools - repository - 31.11.0 - runtime - - - com.android.tools.ddms - ddmlib - 31.11.0 - runtime - - - com.android.tools.build - aapt2-proto - 8.11.0-12782657 - runtime - - - com.android.tools.build - aaptcompiler - 8.11.0 - runtime - - - com.android.tools.analytics-library - crash - 31.11.0 - runtime - - - com.android.tools.analytics-library - shared - 31.11.0 - runtime - - - com.android.tools.lint - lint-model - 31.11.0 - runtime - - - com.android.tools.lint - lint-typedef-remover - 31.11.0 - runtime - - - androidx.databinding - databinding-compiler-common - 8.11.0 - runtime - - - androidx.databinding - databinding-common - 8.11.0 - runtime - - - com.android.databinding - baseLibrary - 8.11.0 - runtime - - - com.android.tools.build - builder-test-api - 8.11.0 - runtime - - - com.android.tools.layoutlib - layoutlib-api - 31.11.0 - runtime - - - com.android.tools.utp - android-device-provider-ddmlib-proto - 31.11.0 - runtime - - - com.android.tools.utp - android-device-provider-gradle-proto - 31.11.0 - runtime - - - com.android.tools.utp - android-device-provider-profile-proto - 31.11.0 - runtime - - - com.android.tools.utp - android-test-plugin-host-additional-test-output-proto - 31.11.0 - runtime - - - com.android.tools.utp - android-test-plugin-host-coverage-proto - 31.11.0 - runtime - - - com.android.tools.utp - android-test-plugin-host-emulator-control-proto - 31.11.0 - runtime - - - com.android.tools.utp - android-test-plugin-host-logcat-proto - 31.11.0 - runtime - - - com.android.tools.utp - android-test-plugin-host-apk-installer-proto - 31.11.0 - runtime - - - com.android.tools.utp - android-test-plugin-result-listener-gradle-proto - 31.11.0 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - 2.1.20 - runtime - - - com.android.tools.build - transform-api - 2.0.0-deprecated-use-gradle-api - runtime - - - org.apache.httpcomponents - httpmime - 4.5.6 - runtime - - - commons-io - commons-io - 2.16.1 - runtime - - - org.ow2.asm - asm - 9.7.1 - runtime - - - org.ow2.asm - asm-analysis - 9.7.1 - runtime - - - org.ow2.asm - asm-commons - 9.7.1 - runtime - - - org.ow2.asm - asm-util - 9.7.1 - runtime - - - org.bouncycastle - bcpkix-jdk18on - 1.79 - runtime - - - org.glassfish.jaxb - jaxb-runtime - 2.3.2 - runtime - - - net.sf.jopt-simple - jopt-simple - 4.9 - runtime - - - com.android.tools.build - bundletool - 1.18.1 - runtime - - - com.android.tools.build.jetifier - jetifier-core - 1.0.0-beta10 - runtime - - - com.android.tools.build.jetifier - jetifier-processor - 1.0.0-beta10 - runtime - - - com.squareup - javapoet - 1.10.0 - runtime - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - com.google.protobuf - protobuf-java-util - 3.25.5 - runtime - - - com.google.code.gson - gson - 2.11.0 - runtime - - - io.grpc - grpc-core - 1.69.1 - runtime - - - io.grpc - grpc-netty - 1.69.1 - runtime - - - io.grpc - grpc-protobuf - 1.69.1 - runtime - - - io.grpc - grpc-stub - 1.69.1 - runtime - - - io.grpc - grpc-inprocess - 1.69.1 - runtime - - - com.google.crypto.tink - tink - 1.7.0 - runtime - - - com.google.testing.platform - core-proto - 0.0.9-alpha03 - runtime - - - com.google.flatbuffers - flatbuffers-java - 1.12.0 - runtime - - - org.tensorflow - tensorflow-lite-metadata - 0.2.0 - runtime - - - Gradle plug-in to build Android applications. - https://developer.android.com/studio/build - com.android.tools.build.gradle - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - git://android.googlesource.com/platform/tools/base.git - https://android.googlesource.com/platform/tools/base - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/jetifier/jetifier-core/1.0.0-beta10/jetifier-core-1.0.0-beta10.jar b/tauri_app/docker/offline-maven/com/android/tools/build/jetifier/jetifier-core/1.0.0-beta10/jetifier-core-1.0.0-beta10.jar deleted file mode 100644 index d389a38..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/jetifier/jetifier-core/1.0.0-beta10/jetifier-core-1.0.0-beta10.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/jetifier/jetifier-core/1.0.0-beta10/jetifier-core-1.0.0-beta10.pom b/tauri_app/docker/offline-maven/com/android/tools/build/jetifier/jetifier-core/1.0.0-beta10/jetifier-core-1.0.0-beta10.pom deleted file mode 100644 index a3c5f29..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/jetifier/jetifier-core/1.0.0-beta10/jetifier-core-1.0.0-beta10.pom +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - 4.0.0 - com.android.tools.build.jetifier - jetifier-core - 1.0.0-beta10 - Android Jetifier Core - Android Jetifier Core - https://developer.android.com/jetpack/androidx/releases/com-android-tools-build-jetifier#1.0.0-beta10 - 2017 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - com.google.code.gson - gson - 2.8.0 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 1.3.71 - compile - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/jetifier/jetifier-processor/1.0.0-beta10/jetifier-processor-1.0.0-beta10.jar b/tauri_app/docker/offline-maven/com/android/tools/build/jetifier/jetifier-processor/1.0.0-beta10/jetifier-processor-1.0.0-beta10.jar deleted file mode 100644 index b5d9b84..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/jetifier/jetifier-processor/1.0.0-beta10/jetifier-processor-1.0.0-beta10.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/jetifier/jetifier-processor/1.0.0-beta10/jetifier-processor-1.0.0-beta10.pom b/tauri_app/docker/offline-maven/com/android/tools/build/jetifier/jetifier-processor/1.0.0-beta10/jetifier-processor-1.0.0-beta10.pom deleted file mode 100644 index 21d7de6..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/jetifier/jetifier-processor/1.0.0-beta10/jetifier-processor-1.0.0-beta10.pom +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - 4.0.0 - com.android.tools.build.jetifier - jetifier-processor - 1.0.0-beta10 - Android Jetifier Processor - Android Jetifier Processor - https://developer.android.com/jetpack/androidx/releases/com-android-tools-build-jetifier#1.0.0-beta10 - 2018 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://android.googlesource.com/platform/frameworks/support - https://cs.android.com/androidx/platform/frameworks/support - - - - com.android.tools.build.jetifier - jetifier-core - 1.0.0-beta10 - compile - - - org.ow2.asm - asm - 8.0.1 - compile - - - org.ow2.asm - asm-util - 8.0.1 - compile - - - org.ow2.asm - asm-commons - 8.0.1 - compile - - - org.jdom - jdom2 - 2.0.6 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 1.3.71 - compile - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/manifest-merger/31.11.0/manifest-merger-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/build/manifest-merger/31.11.0/manifest-merger-31.11.0.jar deleted file mode 100644 index 69e8e9f..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/manifest-merger/31.11.0/manifest-merger-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/manifest-merger/31.11.0/manifest-merger-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/build/manifest-merger/31.11.0/manifest-merger-31.11.0.pom deleted file mode 100644 index 2c388d4..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/manifest-merger/31.11.0/manifest-merger-31.11.0.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - 4.0.0 - com.android.tools.build - manifest-merger - 31.11.0 - - - com.android.tools - common - 31.11.0 - runtime - - - com.android.tools - sdklib - 31.11.0 - runtime - - - com.android.tools - sdk-common - 31.11.0 - runtime - - - com.google.code.gson - gson - 2.11.0 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - 2.1.20 - runtime - - - A Library to merge Android manifests. - https://developer.android.com/studio/build - com.android.tools.build.manifest-merger - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - git://android.googlesource.com/platform/tools/base.git - https://android.googlesource.com/platform/tools/base - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/transform-api/2.0.0-deprecated-use-gradle-api/transform-api-2.0.0-deprecated-use-gradle-api.jar b/tauri_app/docker/offline-maven/com/android/tools/build/transform-api/2.0.0-deprecated-use-gradle-api/transform-api-2.0.0-deprecated-use-gradle-api.jar deleted file mode 100644 index 78324d6..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/build/transform-api/2.0.0-deprecated-use-gradle-api/transform-api-2.0.0-deprecated-use-gradle-api.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/build/transform-api/2.0.0-deprecated-use-gradle-api/transform-api-2.0.0-deprecated-use-gradle-api.pom b/tauri_app/docker/offline-maven/com/android/tools/build/transform-api/2.0.0-deprecated-use-gradle-api/transform-api-2.0.0-deprecated-use-gradle-api.pom deleted file mode 100644 index dc2d765..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/build/transform-api/2.0.0-deprecated-use-gradle-api/transform-api-2.0.0-deprecated-use-gradle-api.pom +++ /dev/null @@ -1,28 +0,0 @@ - - - 4.0.0 - com.android.tools.build - transform-api - 2.0.0-deprecated-use-gradle-api - Android Transform API - Deprecated, use gradle-api - http://tools.android.com - 2007 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - git://android.googlesource.com/platform/tools/base.git - https://android.googlesource.com/platform/tools/base - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/common/31.11.0/common-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/common/31.11.0/common-31.11.0.jar deleted file mode 100644 index 0f3a137..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/common/31.11.0/common-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/common/31.11.0/common-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/common/31.11.0/common-31.11.0.pom deleted file mode 100644 index 5841d9c..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/common/31.11.0/common-31.11.0.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - 4.0.0 - com.android.tools - common - 31.11.0 - com.android.tools.common - common library used by other Android tools libraries. - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools - annotations - 31.11.0 - compile - - - com.google.guava - guava - 33.3.1-jre - compile - - - net.java.dev.jna - jna-platform - 5.6.0 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 2.1.20 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/ddms/ddmlib/31.11.0/ddmlib-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/ddms/ddmlib/31.11.0/ddmlib-31.11.0.jar deleted file mode 100644 index b6573be..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/ddms/ddmlib/31.11.0/ddmlib-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/ddms/ddmlib/31.11.0/ddmlib-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/ddms/ddmlib/31.11.0/ddmlib-31.11.0.pom deleted file mode 100644 index 15939cd..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/ddms/ddmlib/31.11.0/ddmlib-31.11.0.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - 4.0.0 - com.android.tools.ddms - ddmlib - 31.11.0 - Android Tools ddmlib - Library providing APIs to talk to Android devices - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools - common - 31.11.0 - runtime - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - net.sf.kxml - kxml2 - 2.3.0 - runtime - - - org.jetbrains - annotations - 23.0.0 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/dvlib/31.11.0/dvlib-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/dvlib/31.11.0/dvlib-31.11.0.jar deleted file mode 100644 index be9dcaf..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/dvlib/31.11.0/dvlib-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/dvlib/31.11.0/dvlib-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/dvlib/31.11.0/dvlib-31.11.0.pom deleted file mode 100644 index bc893d4..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/dvlib/31.11.0/dvlib-31.11.0.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - com.android.tools - dvlib - 31.11.0 - com.android.tools.dvlib - A Library to manage the Android device database XML files. - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools - common - 31.11.0 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/layoutlib/layoutlib-api/31.11.0/layoutlib-api-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/layoutlib/layoutlib-api/31.11.0/layoutlib-api-31.11.0.jar deleted file mode 100644 index 874747b..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/layoutlib/layoutlib-api/31.11.0/layoutlib-api-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/layoutlib/layoutlib-api/31.11.0/layoutlib-api-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/layoutlib/layoutlib-api/31.11.0/layoutlib-api-31.11.0.pom deleted file mode 100644 index 8e97efd..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/layoutlib/layoutlib-api/31.11.0/layoutlib-api-31.11.0.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - 4.0.0 - com.android.tools.layoutlib - layoutlib-api - 31.11.0 - Android Tools layoutlib-api - Library to use the rendering library for Android layouts: layoutlib - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools - annotations - 31.11.0 - runtime - - - com.android.tools - common - 31.11.0 - runtime - - - net.sf.kxml - kxml2 - 2.3.0 - runtime - - - org.jetbrains - annotations - 23.0.0 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/lint/lint-model/31.11.0/lint-model-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/lint/lint-model/31.11.0/lint-model-31.11.0.jar deleted file mode 100644 index c9ab5e4..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/lint/lint-model/31.11.0/lint-model-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/lint/lint-model/31.11.0/lint-model-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/lint/lint-model/31.11.0/lint-model-31.11.0.pom deleted file mode 100644 index 99594e8..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/lint/lint-model/31.11.0/lint-model-31.11.0.pom +++ /dev/null @@ -1,67 +0,0 @@ - - - 4.0.0 - com.android.tools.lint - lint-model - 31.11.0 - com.android.tools.lint.lint-model - Lint build system model - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools.build - builder-model - 8.11.0 - runtime - - - com.android.tools - common - 31.11.0 - runtime - - - com.android.tools - repository - 31.11.0 - runtime - - - com.android.tools - sdk-common - 31.11.0 - runtime - - - com.android.tools - sdklib - 31.11.0 - runtime - - - net.sf.kxml - kxml2 - 2.3.0 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 2.1.20 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/lint/lint-typedef-remover/31.11.0/lint-typedef-remover-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/lint/lint-typedef-remover/31.11.0/lint-typedef-remover-31.11.0.jar deleted file mode 100644 index ab5e829..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/lint/lint-typedef-remover/31.11.0/lint-typedef-remover-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/lint/lint-typedef-remover/31.11.0/lint-typedef-remover-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/lint/lint-typedef-remover/31.11.0/lint-typedef-remover-31.11.0.pom deleted file mode 100644 index b47c58a..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/lint/lint-typedef-remover/31.11.0/lint-typedef-remover-31.11.0.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - 4.0.0 - com.android.tools.lint - lint-typedef-remover - 31.11.0 - com.android.tools.lint.lint-typedef-remover - Utility to remove typedef annotations from classes - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools - annotations - 31.11.0 - runtime - - - com.google.guava - guava - 33.3.1-jre - runtime - - - org.ow2.asm - asm - 9.7.1 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/repository/31.11.0/repository-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/repository/31.11.0/repository-31.11.0.jar deleted file mode 100644 index 572a8fb..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/repository/31.11.0/repository-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/repository/31.11.0/repository-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/repository/31.11.0/repository-31.11.0.pom deleted file mode 100644 index 01b3cc4..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/repository/31.11.0/repository-31.11.0.pom +++ /dev/null @@ -1,67 +0,0 @@ - - - 4.0.0 - com.android.tools - repository - 31.11.0 - com.android.tools.repository - A library for downloading and managing package repositories - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools.analytics-library - shared - 31.11.0 - runtime - - - com.android.tools - common - 31.11.0 - runtime - - - com.google.jimfs - jimfs - 1.1 - runtime - - - com.sun.activation - javax.activation - 1.2.0 - runtime - - - org.apache.commons - commons-compress - 1.21 - runtime - - - org.glassfish.jaxb - jaxb-runtime - 2.3.2 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 2.1.20 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/sdk-common/31.11.0/sdk-common-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/sdk-common/31.11.0/sdk-common-31.11.0.jar deleted file mode 100644 index bd5cc97..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/sdk-common/31.11.0/sdk-common-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/sdk-common/31.11.0/sdk-common-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/sdk-common/31.11.0/sdk-common-31.11.0.pom deleted file mode 100644 index fe9ad58..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/sdk-common/31.11.0/sdk-common-31.11.0.pom +++ /dev/null @@ -1,127 +0,0 @@ - - - 4.0.0 - com.android.tools - sdk-common - 31.11.0 - com.android.tools.sdk-common - sdk-common library used by other Android tools libraries. - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools.analytics-library - shared - 31.11.0 - runtime - - - com.android.tools.build - aapt2-proto - 8.11.0-12782657 - runtime - - - com.android.tools - common - 31.11.0 - runtime - - - com.android.tools.ddms - ddmlib - 31.11.0 - runtime - - - com.android.tools.layoutlib - layoutlib-api - 31.11.0 - runtime - - - com.android.tools - sdklib - 31.11.0 - runtime - - - com.google.code.gson - gson - 2.11.0 - runtime - - - com.google.guava - guava - 33.3.1-jre - runtime - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - javax.inject - javax.inject - 1 - runtime - - - net.sf.kxml - kxml2 - 2.3.0 - runtime - - - org.apache.commons - commons-compress - 1.21 - runtime - - - org.bouncycastle - bcpkix-jdk18on - 1.79 - runtime - - - org.bouncycastle - bcprov-jdk18on - 1.79 - runtime - - - org.glassfish.jaxb - jaxb-runtime - 2.3.2 - runtime - - - org.jetbrains.kotlin - kotlin-reflect - 2.1.20 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 2.1.20 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/sdklib/31.11.0/sdklib-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/sdklib/31.11.0/sdklib-31.11.0.jar deleted file mode 100644 index 60c3e36..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/sdklib/31.11.0/sdklib-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/sdklib/31.11.0/sdklib-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/sdklib/31.11.0/sdklib-31.11.0.pom deleted file mode 100644 index b10c35a..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/sdklib/31.11.0/sdklib-31.11.0.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - 4.0.0 - com.android.tools - sdklib - 31.11.0 - com.android.tools.sdklib - A library to parse and download the Android SDK. - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools - repository - 31.11.0 - compile - - - com.android.tools - common - 31.11.0 - runtime - - - com.android.tools - dvlib - 31.11.0 - runtime - - - com.android.tools.layoutlib - layoutlib-api - 31.11.0 - runtime - - - com.google.code.gson - gson - 2.11.0 - runtime - - - org.apache.commons - commons-compress - 1.21 - runtime - - - org.apache.httpcomponents - httpcore - 4.4.16 - runtime - - - org.apache.httpcomponents - httpmime - 4.5.6 - runtime - - - org.glassfish.jaxb - jaxb-runtime - 2.3.2 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-ddmlib-proto/31.11.0/android-device-provider-ddmlib-proto-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-ddmlib-proto/31.11.0/android-device-provider-ddmlib-proto-31.11.0.jar deleted file mode 100644 index 047c7ab..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-ddmlib-proto/31.11.0/android-device-provider-ddmlib-proto-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-ddmlib-proto/31.11.0/android-device-provider-ddmlib-proto-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-ddmlib-proto/31.11.0/android-device-provider-ddmlib-proto-31.11.0.pom deleted file mode 100644 index 634905f..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-ddmlib-proto/31.11.0/android-device-provider-ddmlib-proto-31.11.0.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - com.android.tools.utp - android-device-provider-ddmlib-proto - 31.11.0 - com.android.tools.utp.android-device-provider-ddmlib-proto - A protobuf messages used in a UTP plugin to provide Android device using ddmlib - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-gradle-proto/31.11.0/android-device-provider-gradle-proto-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-gradle-proto/31.11.0/android-device-provider-gradle-proto-31.11.0.jar deleted file mode 100644 index 4435a52..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-gradle-proto/31.11.0/android-device-provider-gradle-proto-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-gradle-proto/31.11.0/android-device-provider-gradle-proto-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-gradle-proto/31.11.0/android-device-provider-gradle-proto-31.11.0.pom deleted file mode 100644 index 4f529f7..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-gradle-proto/31.11.0/android-device-provider-gradle-proto-31.11.0.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - com.android.tools.utp - android-device-provider-gradle-proto - 31.11.0 - com.android.tools.utp.android-device-provider-gradle-proto - A protobuf messages used in a UTP plugin to provide a Gradle managed virtual Android devices - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-profile-proto/31.11.0/android-device-provider-profile-proto-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-profile-proto/31.11.0/android-device-provider-profile-proto-31.11.0.jar deleted file mode 100644 index 724153b..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-profile-proto/31.11.0/android-device-provider-profile-proto-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-profile-proto/31.11.0/android-device-provider-profile-proto-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-profile-proto/31.11.0/android-device-provider-profile-proto-31.11.0.pom deleted file mode 100644 index 4221278..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/utp/android-device-provider-profile-proto/31.11.0/android-device-provider-profile-proto-31.11.0.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - com.android.tools.utp - android-device-provider-profile-proto - 31.11.0 - com.android.tools.utp.android-device-provider-profile-proto - A protobuf messages used by device providers to give detailed profiling messages - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-additional-test-output-proto/31.11.0/android-test-plugin-host-additional-test-output-proto-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-additional-test-output-proto/31.11.0/android-test-plugin-host-additional-test-output-proto-31.11.0.jar deleted file mode 100644 index 6a2694e..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-additional-test-output-proto/31.11.0/android-test-plugin-host-additional-test-output-proto-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-additional-test-output-proto/31.11.0/android-test-plugin-host-additional-test-output-proto-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-additional-test-output-proto/31.11.0/android-test-plugin-host-additional-test-output-proto-31.11.0.pom deleted file mode 100644 index b82aca3..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-additional-test-output-proto/31.11.0/android-test-plugin-host-additional-test-output-proto-31.11.0.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - com.android.tools.utp - android-test-plugin-host-additional-test-output-proto - 31.11.0 - com.android.tools.utp.android-test-plugin-host-additional-test-output-proto - A protobuf messages used in a UTP plugin to export additional test outputs - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-apk-installer-proto/31.11.0/android-test-plugin-host-apk-installer-proto-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-apk-installer-proto/31.11.0/android-test-plugin-host-apk-installer-proto-31.11.0.jar deleted file mode 100644 index 088da6f..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-apk-installer-proto/31.11.0/android-test-plugin-host-apk-installer-proto-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-apk-installer-proto/31.11.0/android-test-plugin-host-apk-installer-proto-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-apk-installer-proto/31.11.0/android-test-plugin-host-apk-installer-proto-31.11.0.pom deleted file mode 100644 index ba614ff..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-apk-installer-proto/31.11.0/android-test-plugin-host-apk-installer-proto-31.11.0.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - com.android.tools.utp - android-test-plugin-host-apk-installer-proto - 31.11.0 - com.android.tools.utp.android-test-plugin-host-apk-installer-proto - A protobuf messages used in a UTP plugin to install APKs - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-coverage-proto/31.11.0/android-test-plugin-host-coverage-proto-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-coverage-proto/31.11.0/android-test-plugin-host-coverage-proto-31.11.0.jar deleted file mode 100644 index 07bc1ff..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-coverage-proto/31.11.0/android-test-plugin-host-coverage-proto-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-coverage-proto/31.11.0/android-test-plugin-host-coverage-proto-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-coverage-proto/31.11.0/android-test-plugin-host-coverage-proto-31.11.0.pom deleted file mode 100644 index 21aaaa0..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-coverage-proto/31.11.0/android-test-plugin-host-coverage-proto-31.11.0.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - com.android.tools.utp - android-test-plugin-host-coverage-proto - 31.11.0 - com.android.tools.utp.android-test-plugin-host-coverage-proto - A protobuf messages used in a UTP plugin to export test coverage data - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-emulator-control-proto/31.11.0/android-test-plugin-host-emulator-control-proto-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-emulator-control-proto/31.11.0/android-test-plugin-host-emulator-control-proto-31.11.0.jar deleted file mode 100644 index 9f900db..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-emulator-control-proto/31.11.0/android-test-plugin-host-emulator-control-proto-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-emulator-control-proto/31.11.0/android-test-plugin-host-emulator-control-proto-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-emulator-control-proto/31.11.0/android-test-plugin-host-emulator-control-proto-31.11.0.pom deleted file mode 100644 index 316878d..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-emulator-control-proto/31.11.0/android-test-plugin-host-emulator-control-proto-31.11.0.pom +++ /dev/null @@ -1,37 +0,0 @@ - - - 4.0.0 - com.android.tools.utp - android-test-plugin-host-emulator-control-proto - 31.11.0 - com.android.tools.utp.android-test-plugin-host-emulator-control-proto - A protobuf message used in UTP plugin to make the emulator gRPC endpoint . - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 2.1.20 - compile - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-logcat-proto/31.11.0/android-test-plugin-host-logcat-proto-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-logcat-proto/31.11.0/android-test-plugin-host-logcat-proto-31.11.0.jar deleted file mode 100644 index 0204a70..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-logcat-proto/31.11.0/android-test-plugin-host-logcat-proto-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-logcat-proto/31.11.0/android-test-plugin-host-logcat-proto-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-logcat-proto/31.11.0/android-test-plugin-host-logcat-proto-31.11.0.pom deleted file mode 100644 index f108a1c..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-host-logcat-proto/31.11.0/android-test-plugin-host-logcat-proto-31.11.0.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - com.android.tools.utp - android-test-plugin-host-logcat-proto - 31.11.0 - com.android.tools.utp.android-test-plugin-host-logcat-proto - A protobuf message used in a UTP plugin to export logcat information - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-result-listener-gradle-proto/31.11.0/android-test-plugin-result-listener-gradle-proto-31.11.0.jar b/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-result-listener-gradle-proto/31.11.0/android-test-plugin-result-listener-gradle-proto-31.11.0.jar deleted file mode 100644 index d962066..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-result-listener-gradle-proto/31.11.0/android-test-plugin-result-listener-gradle-proto-31.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-result-listener-gradle-proto/31.11.0/android-test-plugin-result-listener-gradle-proto-31.11.0.pom b/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-result-listener-gradle-proto/31.11.0/android-test-plugin-result-listener-gradle-proto-31.11.0.pom deleted file mode 100644 index 3b74200..0000000 --- a/tauri_app/docker/offline-maven/com/android/tools/utp/android-test-plugin-result-listener-gradle-proto/31.11.0/android-test-plugin-result-listener-gradle-proto-31.11.0.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - 4.0.0 - com.android.tools.utp - android-test-plugin-result-listener-gradle-proto - 31.11.0 - com.android.tools.utp.android-test-plugin-result-listener-gradle-proto - A protobuf messages used in a UTP plugin to listen test results - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.google.code.gson - gson - 2.11.0 - runtime - - - com.google.guava - guava - 33.3.1-jre - runtime - - - io.grpc - grpc-core - 1.69.1 - runtime - - - io.grpc - grpc-inprocess - 1.69.1 - runtime - - - io.grpc - grpc-netty - 1.69.1 - runtime - - - io.grpc - grpc-protobuf - 1.69.1 - runtime - - - io.grpc - grpc-stub - 1.69.1 - runtime - - - javax.annotation - javax.annotation-api - 1.3.2 - runtime - - - com.google.protobuf - protobuf-java - 3.25.5 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/android/zipflinger/8.11.0/zipflinger-8.11.0.jar b/tauri_app/docker/offline-maven/com/android/zipflinger/8.11.0/zipflinger-8.11.0.jar deleted file mode 100644 index f1a1f5b..0000000 Binary files a/tauri_app/docker/offline-maven/com/android/zipflinger/8.11.0/zipflinger-8.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/android/zipflinger/8.11.0/zipflinger-8.11.0.pom b/tauri_app/docker/offline-maven/com/android/zipflinger/8.11.0/zipflinger-8.11.0.pom deleted file mode 100644 index 1cb2bd9..0000000 --- a/tauri_app/docker/offline-maven/com/android/zipflinger/8.11.0/zipflinger-8.11.0.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - com.android - zipflinger - 8.11.0 - com.android.zipflinger - Library used to build and incrementally modify zip files - http://tools.android.com/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.android.tools - annotations - 31.11.0 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar b/tauri_app/docker/offline-maven/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar deleted file mode 100644 index 8cbf103..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.pom b/tauri_app/docker/offline-maven/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.pom deleted file mode 100644 index 84cbb43..0000000 --- a/tauri_app/docker/offline-maven/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.pom +++ /dev/null @@ -1,62 +0,0 @@ - - 4.0.0 - com.google.android - annotations - 4.1.1.4 - jar - - - org.sonatype.oss - oss-parent - 7 - - - Google Android Annotations Library - A library jar that provides annotations for the Google Android Platform. - http://source.android.com/ - 2008 - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - While the EULA for the Android SDK restricts distribution of those binaries, the source code - is licensed under Apache 2.0 which allows compiling binaries from source and then distributing - those versions. - - repo - - - - https://android.git.kernel.org/ - git://android.git.kernel.org/platform/manifest.git - - - - The Android Open Source Projects - - - - - jellybean-4.1 - android-16 - android-4.1.1_r4 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - 1.5 - 1.5 - - - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/android/material/material/1.12.0/material-1.12.0.aar b/tauri_app/docker/offline-maven/com/google/android/material/material/1.12.0/material-1.12.0.aar deleted file mode 100644 index 676d354..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/android/material/material/1.12.0/material-1.12.0.aar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/android/material/material/1.12.0/material-1.12.0.pom b/tauri_app/docker/offline-maven/com/google/android/material/material/1.12.0/material-1.12.0.pom deleted file mode 100644 index fd53fa8..0000000 --- a/tauri_app/docker/offline-maven/com/google/android/material/material/1.12.0/material-1.12.0.pom +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - 4.0.0 - com.google.android.material - material - 1.12.0 - aar - Material Components for Android - Material Components for Android is a static library that you can add to your Android application in order to use APIs that provide implementations of the Material Design specification. Compatible on devices running API 14 or later. - https://github.com/material-components/material-components-android - 2015 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - scm:git:https://github.com/material-components/material-components-android.git - https://github.com/material-components/material-components-android - - - - - org.jetbrains.kotlin - kotlin-bom - 1.8.22 - pom - import - - - - - - androidx.activity - activity - 1.8.0 - compile - - - androidx.annotation - annotation - 1.2.0 - compile - - - androidx.appcompat - appcompat - 1.6.1 - compile - - - androidx.cardview - cardview - 1.0.0 - compile - - - androidx.coordinatorlayout - coordinatorlayout - 1.1.0 - compile - - - androidx.constraintlayout - constraintlayout - 2.0.1 - compile - - - androidx.core - core - 1.6.0 - compile - - - androidx.drawerlayout - drawerlayout - 1.1.1 - compile - - - androidx.dynamicanimation - dynamicanimation - 1.0.0 - compile - - - androidx.annotation - annotation-experimental - 1.0.0 - compile - - - androidx.fragment - fragment - 1.2.5 - compile - - - androidx.lifecycle - lifecycle-runtime - 2.0.0 - compile - - - androidx.recyclerview - recyclerview - 1.0.0 - compile - - - androidx.resourceinspection - resourceinspection-annotation - 1.0.1 - compile - - - androidx.transition - transition - 1.5.0 - compile - - - androidx.vectordrawable - vectordrawable - 1.1.0 - compile - - - androidx.viewpager2 - viewpager2 - 1.0.0 - compile - - - com.google.errorprone - error_prone_annotations - 2.15.0 - runtime - - - diff --git a/tauri_app/docker/offline-maven/com/google/api/grpc/proto-google-common-protos/2.48.0/proto-google-common-protos-2.48.0.jar b/tauri_app/docker/offline-maven/com/google/api/grpc/proto-google-common-protos/2.48.0/proto-google-common-protos-2.48.0.jar deleted file mode 100644 index d1f8b60..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/api/grpc/proto-google-common-protos/2.48.0/proto-google-common-protos-2.48.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/api/grpc/proto-google-common-protos/2.48.0/proto-google-common-protos-2.48.0.pom b/tauri_app/docker/offline-maven/com/google/api/grpc/proto-google-common-protos/2.48.0/proto-google-common-protos-2.48.0.pom deleted file mode 100644 index c51df0e..0000000 --- a/tauri_app/docker/offline-maven/com/google/api/grpc/proto-google-common-protos/2.48.0/proto-google-common-protos-2.48.0.pom +++ /dev/null @@ -1,71 +0,0 @@ - - - 4.0.0 - com.google.api.grpc - proto-google-common-protos - 2.48.0 - proto-google-common-protos - PROTO library for proto-google-common-protos - https://github.com/googleapis/sdk-platform-java - - Google LLC - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - chingor - Jeff Ching - chingor@google.com - Google - - Developer - - - - - scm:git:git@github.com:googleapis/sdk-platform-java.git - scm:git:git@github.com:googleapis/sdk-platform-java.git - https://github.com/googleapis/sdk-platform-java - - - GitHub Issues - https://github.com/googleapis/sdk-platform-java/issues - - - - sonatype-nexus-staging - https://google.oss.sonatype.org/service/local/staging/deploy/maven2/ - - - sonatype-nexus-snapshots - https://google.oss.sonatype.org/content/repositories/snapshots - - - - - com.google.protobuf - protobuf-java - 3.25.5 - compile - false - - - - - google-maven-central-copy - Google Maven Central copy - https://maven-central.storage-download.googleapis.com/maven2 - - - maven-central - Maven Central - https://repo1.maven.org/maven2 - - - diff --git a/tauri_app/docker/offline-maven/com/google/auto/value/auto-value-annotations/1.6.2/auto-value-annotations-1.6.2.jar b/tauri_app/docker/offline-maven/com/google/auto/value/auto-value-annotations/1.6.2/auto-value-annotations-1.6.2.jar deleted file mode 100644 index 5f773d8..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/auto/value/auto-value-annotations/1.6.2/auto-value-annotations-1.6.2.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/auto/value/auto-value-annotations/1.6.2/auto-value-annotations-1.6.2.pom b/tauri_app/docker/offline-maven/com/google/auto/value/auto-value-annotations/1.6.2/auto-value-annotations-1.6.2.pom deleted file mode 100644 index f59f1b0..0000000 --- a/tauri_app/docker/offline-maven/com/google/auto/value/auto-value-annotations/1.6.2/auto-value-annotations-1.6.2.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - - 4.0.0 - - - com.google.auto.value - auto-value-parent - 1.6.2 - - - com.google.auto.value - auto-value-annotations - 1.6.2 - AutoValue Annotations - - Immutable value-type code generation for Java 1.6+. - - - - http://github.com/google/auto - scm:git:git://github.com/google/auto.git - scm:git:ssh://git@github.com/google/auto.git - HEAD - - - ../src/main/java - - - org.apache.maven.plugins - maven-compiler-plugin - - - com/google/auto/value/* - com/google/auto/value/extension/memoized/* - - - - - org.apache.maven.plugins - maven-jar-plugin - - - org.apache.maven.plugins - maven-invoker-plugin - - - - - - disable-java8-doclint - - [1.8,) - - - -Xdoclint:none - - - - diff --git a/tauri_app/docker/offline-maven/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar b/tauri_app/docker/offline-maven/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar deleted file mode 100644 index 59222d9..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom b/tauri_app/docker/offline-maven/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom deleted file mode 100644 index e89c2e5..0000000 --- a/tauri_app/docker/offline-maven/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom +++ /dev/null @@ -1,135 +0,0 @@ - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - - - - com.google.code.findbugs - jsr305 - 3.0.2 - jar - - http://findbugs.sourceforge.net/ - FindBugs-jsr305 - JSR305 Annotations for Findbugs - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - 3.0 - - - - scm:git:https://code.google.com/p/jsr-305/ - scm:git:https://code.google.com/p/jsr-305/ - https://code.google.com/p/jsr-305/ - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - package - - jar - - - true - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.0 - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - attach-sources - - jar-no-fork - - - - - - org.apache.felix - maven-bundle-plugin - 2.4.0 - true - - - bundle-manifest - process-classes - - manifest - - - - - - org.jsr-305 - ${project.name} - javax.annotation;javax.annotation.concurrent;javax.annotation.meta - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.3 - true - - ossrh - https://oss.sonatype.org/ - true - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - sign-artifacts - verify - - sign - - - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/code/gson/gson/2.11.0/gson-2.11.0.jar b/tauri_app/docker/offline-maven/com/google/code/gson/gson/2.11.0/gson-2.11.0.jar deleted file mode 100644 index 18e59c8..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/code/gson/gson/2.11.0/gson-2.11.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/code/gson/gson/2.11.0/gson-2.11.0.pom b/tauri_app/docker/offline-maven/com/google/code/gson/gson/2.11.0/gson-2.11.0.pom deleted file mode 100644 index 9914d07..0000000 --- a/tauri_app/docker/offline-maven/com/google/code/gson/gson/2.11.0/gson-2.11.0.pom +++ /dev/null @@ -1,310 +0,0 @@ - - - - 4.0.0 - - - com.google.code.gson - gson-parent - 2.11.0 - - - gson - Gson - - - - Apache-2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - 2024-05-19T18:53:38Z - - **/Java17* - - - - - - com.google.errorprone - error_prone_annotations - 2.27.0 - - - - junit - junit - test - - - com.google.truth - truth - test - - - com.google.guava - guava-testlib - 33.1.0-jre - test - - - - - - - - org.codehaus.mojo - templating-maven-plugin - 3.0.0 - - - filtering-java-templates - - filter-sources - - - ${project.basedir}/src/main/java-templates - ${project.build.directory}/generated-sources/java-templates - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - default-compile - - - - module-info.java - - - - - - default-testCompile - test-compile - - testCompile - - - - ${excludeTestCompilation} - - - - - - - biz.aQute.bnd - bnd-maven-plugin - 6.4.0 - - - - bnd-process - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - - --illegal-access=deny - - - - com.coderplus.maven.plugins - copy-rename-maven-plugin - 1.0.1 - - - pre-obfuscate-class - process-test-classes - - rename - - - - - ${project.build.directory}/test-classes/com/google/gson/functional/EnumWithObfuscatedTest.class - ${project.build.directory}/test-classes-obfuscated-injar/com/google/gson/functional/EnumWithObfuscatedTest.class - - - ${project.build.directory}/test-classes/com/google/gson/functional/EnumWithObfuscatedTest$Gender.class - ${project.build.directory}/test-classes-obfuscated-injar/com/google/gson/functional/EnumWithObfuscatedTest$Gender.class - - - - - - - - com.github.wvengen - proguard-maven-plugin - 2.6.1 - - - obfuscate-test-class - process-test-classes - - proguard - - - - - - - com.guardsquare - proguard-base - 7.4.2 - - - com.guardsquare - proguard-core - 9.1.3 - - - - true - test-classes-obfuscated-injar - test-classes-obfuscated-outjar - **/*.class - ${project.basedir}/src/test/resources/testcases-proguard.conf - - ${project.build.directory}/classes - ${java.home}/jmods/java.base.jmod - - - - - maven-resources-plugin - 3.3.1 - - - post-obfuscate-class - process-test-classes - - copy-resources - - - ${project.build.directory}/test-classes/com/google/gson/functional - - - ${project.build.directory}/test-classes-obfuscated-outjar/com/google/gson/functional - - EnumWithObfuscatedTest.class - EnumWithObfuscatedTest$Gender.class - - - - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - - org.moditect - moditect-maven-plugin - 1.2.1.Final - - - add-module-info - package - - add-module-info - - - 9 - - ${project.build.sourceDirectory}/module-info.java - - - true - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - com.google.gson.internal:com.google.gson.internal.bind - - - - - - - - JDK17 - - [17,) - - - 17 - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/crypto/tink/tink/1.7.0/tink-1.7.0.jar b/tauri_app/docker/offline-maven/com/google/crypto/tink/tink/1.7.0/tink-1.7.0.jar deleted file mode 100644 index 03668cd..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/crypto/tink/tink/1.7.0/tink-1.7.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/crypto/tink/tink/1.7.0/tink-1.7.0.pom b/tauri_app/docker/offline-maven/com/google/crypto/tink/tink/1.7.0/tink-1.7.0.pom deleted file mode 100644 index e136696..0000000 --- a/tauri_app/docker/offline-maven/com/google/crypto/tink/tink/1.7.0/tink-1.7.0.pom +++ /dev/null @@ -1,104 +0,0 @@ - - - - - 4.0.0 - Tink Cryptography API - Tink is a small cryptographic library that provides a safe, simple, agile and fast way to accomplish some common cryptographic tasks. - - - - org.sonatype.oss - oss-parent - 7 - - - com.google.crypto.tink - tink - 1.7.0 - jar - http://github.com/google/tink - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - GitHub - https://github.com/google/tink/issues - - - - - tink-users - tink-users+subscribe@googlegroups.com - tink-users+unsubscribe@googlegroups.com - tink-users@googlegroups.com - https://groups.google.com/group/tink-users - - - - - - Google Inc. - https://www.google.com - - - - - scm:git:git@github.com:google/tink.git - scm:git:git@github.com:google/tink.git - https://github.com/google/tink.git - HEAD - - - - 1.8 - 2.8.9 - 3.19.3 - - - - - com.google.protobuf - protobuf-java - ${protobuf.version} - - - com.google.code.gson - gson - ${gson.version} - - - diff --git a/tauri_app/docker/offline-maven/com/google/dagger/dagger/2.28.3/dagger-2.28.3.jar b/tauri_app/docker/offline-maven/com/google/dagger/dagger/2.28.3/dagger-2.28.3.jar deleted file mode 100644 index f86e4ba..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/dagger/dagger/2.28.3/dagger-2.28.3.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/dagger/dagger/2.28.3/dagger-2.28.3.pom b/tauri_app/docker/offline-maven/com/google/dagger/dagger/2.28.3/dagger-2.28.3.pom deleted file mode 100644 index e238fd7..0000000 --- a/tauri_app/docker/offline-maven/com/google/dagger/dagger/2.28.3/dagger-2.28.3.pom +++ /dev/null @@ -1,71 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - com.google.dagger - dagger - Dagger - 2.28.3 - A fast dependency injector for Android and Java. - https://github.com/google/dagger - jar - - - https://github.com/google/dagger/ - scm:git:git://github.com/google/dagger.git - scm:git:ssh://git@github.com/google/dagger.git - HEAD - - - - GitHub Issues - https://github.com/google/dagger/issues - - - - - Apache 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Google, Inc. - https://www.google.com - - - - - - - javax.inject - javax.inject - 1 - - - diff --git a/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.15.0/error_prone_annotations-2.15.0.jar b/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.15.0/error_prone_annotations-2.15.0.jar deleted file mode 100644 index ff3b59a..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.15.0/error_prone_annotations-2.15.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.15.0/error_prone_annotations-2.15.0.pom b/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.15.0/error_prone_annotations-2.15.0.pom deleted file mode 100644 index 1bdffd2..0000000 --- a/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.15.0/error_prone_annotations-2.15.0.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - - 4.0.0 - - - com.google.errorprone - error_prone_parent - 2.15.0 - - - error-prone annotations - error_prone_annotations - - - - junit - junit - ${junit.version} - test - - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.7 - 1.7 - - - - - maven-jar-plugin - - - - com.google.errorprone.annotations - - - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.30.0/error_prone_annotations-2.30.0.jar b/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.30.0/error_prone_annotations-2.30.0.jar deleted file mode 100644 index a8f5dfe..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.30.0/error_prone_annotations-2.30.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.30.0/error_prone_annotations-2.30.0.pom b/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.30.0/error_prone_annotations-2.30.0.pom deleted file mode 100644 index fc4510b..0000000 --- a/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.30.0/error_prone_annotations-2.30.0.pom +++ /dev/null @@ -1,129 +0,0 @@ - - - - - 4.0.0 - - - com.google.errorprone - error_prone_parent - 2.30.0 - - - error-prone annotations - error_prone_annotations - - - - junit - junit - ${junit.version} - test - - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - - - default-compile - - 1.8 - 1.8 - - module-info.java - - - - - compile-java9 - - compile - - - 9 - 9 - 9 - true - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - true - - - - /META-INF/versions/9/com/**/*.class - - - - - biz.aQute.bnd - bnd-maven-plugin - 6.4.0 - - - generate-OSGi-manifest - none - - - generate-OSGi-manifest-annotations - - bnd-process - - - - - - - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.jar b/tauri_app/docker/offline-maven/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.jar deleted file mode 100644 index b509a82..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.pom b/tauri_app/docker/offline-maven/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.pom deleted file mode 100644 index b915338..0000000 --- a/tauri_app/docker/offline-maven/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.pom +++ /dev/null @@ -1,144 +0,0 @@ - - - 4.0.0 - com.google.flatbuffers - flatbuffers-java - 1.12.0 - bundle - FlatBuffers Java API - - Memory Efficient Serialization Library - - - - Wouter van Oortmerssen - - - - UTF-8 - - https://github.com/google/flatbuffers - - - Apache License V2.0 - https://raw.githubusercontent.com/google/flatbuffers/master/LICENSE.txt - repo - - - - https://github.com/google/flatbuffers - - scm:git:https://github.com/google/flatbuffers.git - - HEAD - - - - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - - java - - - maven-compiler-plugin - - 1.8 - 1.8 - - 3.2 - - - maven-surefire-plugin - - - **/*Test.java - - - 2.18.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.3 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - -Xdoclint:none - -Xdoclint:none - - - - attach-javadocs - - jar - - - - - - org.apache.felix - maven-bundle-plugin - 3.0.1 - true - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.7 - true - - ossrh - https://oss.sonatype.org/ - true - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - --pinentry-mode - loopback - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - true - false - release - deploy - - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.jar b/tauri_app/docker/offline-maven/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.jar deleted file mode 100644 index d73ab80..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom b/tauri_app/docker/offline-maven/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom deleted file mode 100644 index 8886a4b..0000000 --- a/tauri_app/docker/offline-maven/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.pom +++ /dev/null @@ -1,100 +0,0 @@ - - - 4.0.0 - - com.google.guava - guava-parent - 26.0-android - - failureaccess - 1.0.2 - bundle - Guava InternalFutureFailureAccess and InternalFutures - - Contains - com.google.common.util.concurrent.internal.InternalFutureFailureAccess and - InternalFutures. Most users will never need to use this artifact. Its - classes are conceptually a part of Guava, but they're in this separate - artifact so that Android libraries can use them without pulling in all of - Guava (just as they can use ListenableFuture by depending on the - listenablefuture artifact). - - - - - maven-jar-plugin - - - - com.google.common.util.concurrent.internal - - - - - - maven-source-plugin - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - true - org.apache.felix - maven-bundle-plugin - 5.1.8 - - - bundle-manifest - process-classes - - manifest - - - - - - com.google.common.util.concurrent.internal - https://github.com/google/guava/ - - - - - maven-javadoc-plugin - - - attach-docs - - - generate-javadoc-site-report - site - javadoc - - - - - - - - sonatype-oss-release - - - - maven-gpg-plugin - 3.0.1 - - - sign-artifacts - verify - - sign - - - - - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/guava/guava/33.3.1-jre/guava-33.3.1-jre.jar b/tauri_app/docker/offline-maven/com/google/guava/guava/33.3.1-jre/guava-33.3.1-jre.jar deleted file mode 100644 index 9a88e16..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/guava/guava/33.3.1-jre/guava-33.3.1-jre.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/guava/guava/33.3.1-jre/guava-33.3.1-jre.pom b/tauri_app/docker/offline-maven/com/google/guava/guava/33.3.1-jre/guava-33.3.1-jre.pom deleted file mode 100644 index 8d31e64..0000000 --- a/tauri_app/docker/offline-maven/com/google/guava/guava/33.3.1-jre/guava-33.3.1-jre.pom +++ /dev/null @@ -1,232 +0,0 @@ - - - - 4.0.0 - - com.google.guava - guava-parent - 33.3.1-jre - - guava - bundle - Guava: Google Core Libraries for Java - https://github.com/google/guava - - Guava is a suite of core and expanded libraries that include - utility classes, Google's collections, I/O classes, and - much more. - - - - com.google.guava - failureaccess - 1.0.2 - - - com.google.guava - listenablefuture - 9999.0-empty-to-avoid-conflict-with-guava - - - com.google.code.findbugs - jsr305 - - - org.checkerframework - checker-qual - - - com.google.errorprone - error_prone_annotations - - - com.google.j2objc - j2objc-annotations - - - - - - .. - - LICENSE - proguard/* - - META-INF - - - - - org.mvnsearch - toolchains-maven-plugin - - - maven-toolchains-plugin - - - maven-jar-plugin - - - - com.google.common - - - - - - true - org.apache.felix - maven-bundle-plugin - 5.1.8 - - - bundle-manifest - process-classes - - manifest - - - - - - - !com.google.common.base.internal, - !com.google.common.util.concurrent.internal, - com.google.common.* - - - com.google.common.util.concurrent.internal, - javax.annotation;resolution:=optional, - javax.crypto.*;resolution:=optional, - sun.misc.*;resolution:=optional - - https://github.com/google/guava/ - - - - - maven-compiler-plugin - - - maven-source-plugin - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - maven-javadoc-plugin - - - - - com.azul.tooling.in,com.google.common.base.internal,com.google.common.base.internal.*,com.google.thirdparty.publicsuffix,com.google.thirdparty.publicsuffix.*,com.oracle.*,com.sun.*,java.*,javax.*,jdk,jdk.*,org.*,sun.* - - - - - apiNote - X - - - implNote - X - - - implSpec - X - - - jls - X - - - revised - X - - - spec - X - - - - - - false - - - - - https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/ - ${project.basedir}/javadoc-link/jsr305 - - - https://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/ - ${project.basedir}/javadoc-link/j2objc-annotations - - - - https://docs.oracle.com/javase/9/docs/api/ - https://docs.oracle.com/javase/9/docs/api/ - - - - https://checkerframework.org/api/ - ${project.basedir}/javadoc-link/checker-framework - - - - https://errorprone.info/api/latest/ - - ../overview.html - - - - maven-resources-plugin - - - gradle-module-metadata - compile - - copy-resources - - - target/publish - - - . - - module.json - - true - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - attach-gradle-module-metadata - - attach-artifact - - - - - target/publish/module.json - module - - - - - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/1.0/listenablefuture-1.0.jar b/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/1.0/listenablefuture-1.0.jar deleted file mode 100644 index 5e67692..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/1.0/listenablefuture-1.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/1.0/listenablefuture-1.0.pom b/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/1.0/listenablefuture-1.0.pom deleted file mode 100644 index 3bd8c01..0000000 --- a/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/1.0/listenablefuture-1.0.pom +++ /dev/null @@ -1,56 +0,0 @@ - - - 4.0.0 - - com.google.guava - guava-parent - 26.0-android - - listenablefuture - 1.0 - Guava ListenableFuture only - - Contains Guava's com.google.common.util.concurrent.ListenableFuture class, - without any of its other classes -- but is also available in a second - "version" that omits the class to avoid conflicts with the copy in Guava - itself. The idea is: - - - If users want only ListenableFuture, they depend on listenablefuture-1.0. - - - If users want all of Guava, they depend on guava, which, as of Guava - 27.0, depends on - listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-... - version number is enough for some build systems (notably, Gradle) to select - that empty artifact over the "real" listenablefuture-1.0 -- avoiding a - conflict with the copy of ListenableFuture in guava itself. If users are - using an older version of Guava or a build system other than Gradle, they - may see class conflicts. If so, they can solve them by manually excluding - the listenablefuture artifact or manually forcing their build systems to - use 9999.0-.... - - - - - maven-source-plugin - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - maven-javadoc-plugin - - - attach-docs - - - generate-javadoc-site-report - site - javadoc - - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar b/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar deleted file mode 100644 index 45832c0..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom b/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom deleted file mode 100644 index ad3f23e..0000000 --- a/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom +++ /dev/null @@ -1,56 +0,0 @@ - - - 4.0.0 - - com.google.guava - guava-parent - 26.0-android - - listenablefuture - 9999.0-empty-to-avoid-conflict-with-guava - Guava ListenableFuture only - - An empty artifact that Guava depends on to signal that it is providing - ListenableFuture -- but is also available in a second "version" that - contains com.google.common.util.concurrent.ListenableFuture class, without - any other Guava classes. The idea is: - - - If users want only ListenableFuture, they depend on listenablefuture-1.0. - - - If users want all of Guava, they depend on guava, which, as of Guava - 27.0, depends on - listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-... - version number is enough for some build systems (notably, Gradle) to select - that empty artifact over the "real" listenablefuture-1.0 -- avoiding a - conflict with the copy of ListenableFuture in guava itself. If users are - using an older version of Guava or a build system other than Gradle, they - may see class conflicts. If so, they can solve them by manually excluding - the listenablefuture artifact or manually forcing their build systems to - use 9999.0-.... - - - - - maven-source-plugin - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - maven-javadoc-plugin - - - attach-docs - - - generate-javadoc-site-report - site - javadoc - - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.jar b/tauri_app/docker/offline-maven/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.jar deleted file mode 100644 index c293336..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom b/tauri_app/docker/offline-maven/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom deleted file mode 100644 index 84abf47..0000000 --- a/tauri_app/docker/offline-maven/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.pom +++ /dev/null @@ -1,158 +0,0 @@ - - - - 4.0.0 - - - 1.7 - 1.7 - - - com.google.j2objc - j2objc-annotations - jar - 3.0.0 - - J2ObjC Annotations - - A set of annotations that provide additional information to the J2ObjC - translator to modify the result of translation. - - https://github.com/google/j2objc/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - http://github.com/google/j2objc - scm:git:git://github.com/google/j2objc.git - scm:git:ssh://git@github.com/google/j2objc.git - - - - - tomball - Tom Ball - tball@google.com - Google - https://www.google.com - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.12.1 - - - default-compile - - 1.8 - 1.8 - - module-info.java - - - - - compile-java9 - compile - - compile - - - 9 - true - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.3.0 - - - - true - - - - META-INF/versions/9/com/** - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.6.3 - - - generate-docs - package - jar - - - - - org.apache.maven.plugins - maven-source-plugin - 3.3.0 - - - generate-sources - package - jar-no-fork - - - - - org.apache.maven.plugins - maven-gpg-plugin - 3.1.0 - - - sign-artifacts - verify - sign - - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/jimfs/jimfs/1.1/jimfs-1.1.jar b/tauri_app/docker/offline-maven/com/google/jimfs/jimfs/1.1/jimfs-1.1.jar deleted file mode 100644 index e0b16a5..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/jimfs/jimfs/1.1/jimfs-1.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/jimfs/jimfs/1.1/jimfs-1.1.pom b/tauri_app/docker/offline-maven/com/google/jimfs/jimfs/1.1/jimfs-1.1.pom deleted file mode 100644 index 15740eb..0000000 --- a/tauri_app/docker/offline-maven/com/google/jimfs/jimfs/1.1/jimfs-1.1.pom +++ /dev/null @@ -1,134 +0,0 @@ - - - - - 4.0.0 - - com.google.jimfs - jimfs-parent - 1.1 - - - jimfs - - bundle - - Jimfs - - - Jimfs is an in-memory implementation of Java 7's java.nio.file abstract file system API. - - - - - - com.google.guava - guava - - - - - com.ibm.icu - icu4j - true - - - - - com.google.auto.service - auto-service - true - - - com.google.code.findbugs - jsr305 - true - - - - - junit - junit - - - com.google.guava - guava-testlib - - - com.google.truth - truth - - - - - - - maven-source-plugin - - - attach-sources - post-integration-test - - jar-no-fork - - - - - - - maven-javadoc-plugin - - UTF-8 - UTF-8 - UTF-8 - com.google.jimfs.internal - - http://docs.guava-libraries.googlecode.com/git-history/v${guava.version}/javadoc/ - http://jsr-305.googlecode.com/svn/trunk/javadoc/ - http://icu-project.org/apiref/icu4j/ - http://docs.oracle.com/javase/7/docs/api/ - - - - - attach-docs - post-integration-test - - jar - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - com.google.common.jimfs.* - - META-INF/services=target/classes/META-INF/services - - - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.jar b/tauri_app/docker/offline-maven/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.jar deleted file mode 100644 index 5f97266..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.pom b/tauri_app/docker/offline-maven/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.pom deleted file mode 100644 index a8a7156..0000000 --- a/tauri_app/docker/offline-maven/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.pom +++ /dev/null @@ -1,67 +0,0 @@ - - - 4.0.0 - - com.google.protobuf - protobuf-parent - 3.25.5 - - - protobuf-java-util - jar - - Protocol Buffers [Util] - Utilities for Protocol Buffers - - - com.google.protobuf - protobuf-java - 3.25.5 - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - com.google.code.gson - gson - 2.8.9 - - - com.google.errorprone - error_prone_annotations - 2.18.0 - - - com.google.guava - guava - 32.0.1-jre - - - com.google.j2objc - j2objc-annotations - 2.8 - - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - com.google.protobuf.util - https://developers.google.com/protocol-buffers/ - com.google.protobuf.util - com.google.protobuf.util;version=${project.version} - - - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.jar b/tauri_app/docker/offline-maven/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.jar deleted file mode 100644 index d766488..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.pom b/tauri_app/docker/offline-maven/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.pom deleted file mode 100644 index 6e71e7a..0000000 --- a/tauri_app/docker/offline-maven/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.pom +++ /dev/null @@ -1,41 +0,0 @@ - - - 4.0.0 - - com.google.protobuf - protobuf-parent - 3.25.5 - - - protobuf-java - jar - - Protocol Buffers [Core] - - Core Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an - efficient yet extensible format. - - - - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - com.google.protobuf - https://developers.google.com/protocol-buffers/ - com.google.protobuf - com.google.protobuf;version=${project.version} - sun.misc;resolution:=optional,* - - - - - - diff --git a/tauri_app/docker/offline-maven/com/google/testing/platform/core-proto/0.0.9-alpha03/core-proto-0.0.9-alpha03.jar b/tauri_app/docker/offline-maven/com/google/testing/platform/core-proto/0.0.9-alpha03/core-proto-0.0.9-alpha03.jar deleted file mode 100644 index a85eddf..0000000 Binary files a/tauri_app/docker/offline-maven/com/google/testing/platform/core-proto/0.0.9-alpha03/core-proto-0.0.9-alpha03.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/google/testing/platform/core-proto/0.0.9-alpha03/core-proto-0.0.9-alpha03.pom b/tauri_app/docker/offline-maven/com/google/testing/platform/core-proto/0.0.9-alpha03/core-proto-0.0.9-alpha03.pom deleted file mode 100644 index a7cc5cd..0000000 --- a/tauri_app/docker/offline-maven/com/google/testing/platform/core-proto/0.0.9-alpha03/core-proto-0.0.9-alpha03.pom +++ /dev/null @@ -1,35 +0,0 @@ - - - 4.0.0 - com.google.testing.platform - core-proto - 0.0.9-alpha03 - jar - AndroidX Test Library - The AndroidX Test Library provides an extensive framework for testing Android apps - https://developer.android.com/testing - 2015 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - The Android Open Source Project - - - - - com.google.protobuf - protobuf-java - 3.24.4 - compile - - - - diff --git a/tauri_app/docker/offline-maven/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3.jar b/tauri_app/docker/offline-maven/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3.jar deleted file mode 100644 index ef4d7af..0000000 Binary files a/tauri_app/docker/offline-maven/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3.pom b/tauri_app/docker/offline-maven/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3.pom deleted file mode 100644 index d4dacc5..0000000 --- a/tauri_app/docker/offline-maven/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3.pom +++ /dev/null @@ -1,46 +0,0 @@ - - - 4.0.0 - com.googlecode.juniversalchardet - juniversalchardet - 1.0.3 - jar - juniversalchardet - Java port of universalchardet - http://juniversalchardet.googlecode.com/ - - - Mozilla Public License 1.1 (MPL 1.1) - http://www.mozilla.org/MPL/MPL-1.1.html - repo - - - - scm:svn:http://juniversalchardet.googlecode.com/svn/trunk/ - http://code.google.com/p/juniversalchardet/source/browse/ - - - - takscape - takscape@gmail.com - - - - ${basedir}/src - - - maven-compiler-plugin - 2.3.2 - - 1.5 - 1.5 - - - - - - us-ascii - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/com/squareup/javapoet/1.10.0/javapoet-1.10.0.jar b/tauri_app/docker/offline-maven/com/squareup/javapoet/1.10.0/javapoet-1.10.0.jar deleted file mode 100644 index 1b595cc..0000000 Binary files a/tauri_app/docker/offline-maven/com/squareup/javapoet/1.10.0/javapoet-1.10.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/squareup/javapoet/1.10.0/javapoet-1.10.0.pom b/tauri_app/docker/offline-maven/com/squareup/javapoet/1.10.0/javapoet-1.10.0.pom deleted file mode 100644 index e3b4681..0000000 --- a/tauri_app/docker/offline-maven/com/squareup/javapoet/1.10.0/javapoet-1.10.0.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - com.squareup - javapoet - 1.10.0 - - JavaPoet - Use beautiful Java code to generate beautiful Java code. - http://github.com/square/javapoet/ - - - UTF-8 - - 1.8 - 4.12 - 0.39 - 0.15 - - - - http://github.com/square/javapoet/ - scm:git:git://github.com/square/javapoet.git - scm:git:ssh://git@github.com/square/javapoet.git - HEAD - - - - GitHub Issues - http://github.com/square/javapoet/issues - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Square, Inc. - http://squareup.com - - - - - com.google.truth - truth - ${truth.version} - test - - - com.google.testing.compile - compile-testing - ${compile-testing.version} - test - - - junit - junit - ${junit.version} - test - - - com.google.jimfs - jimfs - 1.1 - test - - - org.mockito - mockito-core - 2.13.0 - test - - - org.eclipse.jdt.core.compiler - ecj - 4.6.1 - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.7.0 - - javac-with-errorprone - true - ${java.version} - ${java.version} - - - - org.codehaus.plexus - plexus-compiler-javac-errorprone - 2.8.2 - - - com.google.errorprone - error_prone_core - 2.2.0 - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.17 - - - com.puppycrawl.tools - checkstyle - 8.7 - - - - true - checkstyle.xml - true - - - - verify - - checkstyle - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.0.2 - - - - com.squareup.javapoet - - - - - - - - diff --git a/tauri_app/docker/offline-maven/com/squareup/javawriter/2.5.0/javawriter-2.5.0.jar b/tauri_app/docker/offline-maven/com/squareup/javawriter/2.5.0/javawriter-2.5.0.jar deleted file mode 100644 index 74b4382..0000000 Binary files a/tauri_app/docker/offline-maven/com/squareup/javawriter/2.5.0/javawriter-2.5.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/squareup/javawriter/2.5.0/javawriter-2.5.0.pom b/tauri_app/docker/offline-maven/com/squareup/javawriter/2.5.0/javawriter-2.5.0.pom deleted file mode 100644 index 8d3ea96..0000000 --- a/tauri_app/docker/offline-maven/com/squareup/javawriter/2.5.0/javawriter-2.5.0.pom +++ /dev/null @@ -1,99 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - com.squareup - javawriter - 2.5.0 - - JavaWriter - A utility class which aids in generating Java source files. - http://github.com/square/javawriter/ - - - UTF-8 - - 1.6 - 4.10 - 2.0M8 - - - - http://github.com/square/javawriter/ - scm:git:git://github.com/square/javawriter.git - scm:git:ssh://git@github.com/square/javawriter.git - HEAD - - - - GitHub Issues - http://github.com/square/javawriter/issues - - - - - Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Square, Inc. - http://squareup.com - - - - - junit - junit - ${junit.version} - test - - - org.easytesting - fest-assert-core - ${fest.version} - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.0 - - ${java.version} - ${java.version} - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.9.1 - - true - checkstyle.xml - true - - - - verify - - checkstyle - - - - - - - diff --git a/tauri_app/docker/offline-maven/com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0.jar b/tauri_app/docker/offline-maven/com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0.jar deleted file mode 100644 index 9637479..0000000 Binary files a/tauri_app/docker/offline-maven/com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0.pom b/tauri_app/docker/offline-maven/com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0.pom deleted file mode 100644 index 7dbbb4b..0000000 --- a/tauri_app/docker/offline-maven/com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0.pom +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - com.sun.activation - all - 1.2.0 - - 4.0.0 - com.sun.activation - javax.activation - jar - JavaBeans Activation Framework - - - - javax.activation - - - java.activation - - - JavaBeans(TM) Activation Framework Specification - - - javax.activation - - - javax.activation.*; version=${activation.spec.version}, - com.sun.activation.*; version=${activation.osgiversion} - - - false - - - ${project.basedir}/exclude.xml - - - - - - - src/main/resources - true - - - - - - maven-compiler-plugin - - - default-compile - - 1.5 - 1.5 - true - - - - - - default-testCompile - - 1.5 - 1.5 - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Test.java - **/*TestSuite.java - - - - - - maven-javadoc-plugin - false - - - package - - javadoc - - - false - - JavaBeans Activation Framework API documentation - - - JavaBeans Activation Framework API documentation - - - JavaBeans Activation Framework API documentation - - true - true - true - true - true - -Oracle - and/or its affiliates. All Rights Reserved. - Use is subject to - license terms. -]]> - - - - JavaBeans Activation Framework API Packages - javax.* - - - javax.activation - - - http://docs.oracle.com/javase/1.5.0/docs/api/. - - - - - - - - - - - junit - junit - 4.7 - test - true - - - diff --git a/tauri_app/docker/offline-maven/com/sun/istack/istack-commons-runtime/3.0.8/istack-commons-runtime-3.0.8.jar b/tauri_app/docker/offline-maven/com/sun/istack/istack-commons-runtime/3.0.8/istack-commons-runtime-3.0.8.jar deleted file mode 100644 index 8f37e95..0000000 Binary files a/tauri_app/docker/offline-maven/com/sun/istack/istack-commons-runtime/3.0.8/istack-commons-runtime-3.0.8.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/sun/istack/istack-commons-runtime/3.0.8/istack-commons-runtime-3.0.8.pom b/tauri_app/docker/offline-maven/com/sun/istack/istack-commons-runtime/3.0.8/istack-commons-runtime-3.0.8.pom deleted file mode 100644 index 3900bb3..0000000 --- a/tauri_app/docker/offline-maven/com/sun/istack/istack-commons-runtime/3.0.8/istack-commons-runtime-3.0.8.pom +++ /dev/null @@ -1,98 +0,0 @@ - - - - - 4.0.0 - - com.sun.istack - istack-commons - 3.0.8 - ../pom.xml - - istack-commons-runtime - - istack common utility code runtime - - - - - org.apache.maven.plugins - maven-resources-plugin - - - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - - - jakarta.activation - jakarta.activation-api - - - junit - junit - - - - - - jdk9-setup - - [9,) - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - default-compile - - 9 - 9 - - - - base-compile - - compile - - - 1.7 - 1.7 - - module-info.java - - - - - - - org.apache.felix - maven-bundle-plugin - - - - - - - - diff --git a/tauri_app/docker/offline-maven/com/sun/xml/fastinfoset/FastInfoset/1.2.16/FastInfoset-1.2.16.jar b/tauri_app/docker/offline-maven/com/sun/xml/fastinfoset/FastInfoset/1.2.16/FastInfoset-1.2.16.jar deleted file mode 100644 index 6e91f1c..0000000 Binary files a/tauri_app/docker/offline-maven/com/sun/xml/fastinfoset/FastInfoset/1.2.16/FastInfoset-1.2.16.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/com/sun/xml/fastinfoset/FastInfoset/1.2.16/FastInfoset-1.2.16.pom b/tauri_app/docker/offline-maven/com/sun/xml/fastinfoset/FastInfoset/1.2.16/FastInfoset-1.2.16.pom deleted file mode 100644 index 4270e41..0000000 --- a/tauri_app/docker/offline-maven/com/sun/xml/fastinfoset/FastInfoset/1.2.16/FastInfoset-1.2.16.pom +++ /dev/null @@ -1,129 +0,0 @@ - - - - - com.sun.xml.fastinfoset - fastinfoset-project - 1.2.16 - ../pom.xml - - - 4.0.0 - com.sun.xml.fastinfoset - FastInfoset - jar - 1.2.16 - fastinfoset - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - test-jar - - - - - - org.apache.felix - maven-bundle-plugin - - - ITU-T Rec. X.891 | ISO/IEC 24824-1 (Fast Infoset) - 1.0 - Fast Infoset Implementation - ${vendor.name} - ${project.groupId} - com.sun.xml.fastinfoset - <_noee>true - - - - - bundle-manifest - process-classes - - manifest - - - - - - - - - - jdk9-setup - - [9,) - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - default-compile - - 9 - 9 - - - - base-compile - - compile - - - - 1.7 - - - module-info.java - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - none - - - - - - - - diff --git a/tauri_app/docker/offline-maven/commons-codec/commons-codec/1.11/commons-codec-1.11.jar b/tauri_app/docker/offline-maven/commons-codec/commons-codec/1.11/commons-codec-1.11.jar deleted file mode 100644 index 2245120..0000000 Binary files a/tauri_app/docker/offline-maven/commons-codec/commons-codec/1.11/commons-codec-1.11.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/commons-codec/commons-codec/1.11/commons-codec-1.11.pom b/tauri_app/docker/offline-maven/commons-codec/commons-codec/1.11/commons-codec-1.11.pom deleted file mode 100644 index f2cba18..0000000 --- a/tauri_app/docker/offline-maven/commons-codec/commons-codec/1.11/commons-codec-1.11.pom +++ /dev/null @@ -1,410 +0,0 @@ - - - - - 4.0.0 - - org.apache.commons - commons-parent - 42 - - commons-codec - commons-codec - - 1.11 - Apache Commons Codec - 2002 - - The Apache Commons Codec package contains simple encoder and decoders for - various formats such as Base64 and Hexadecimal. In addition to these - widely used encoders and decoders, the codec package also maintains a - collection of phonetic encoding utilities. - - - 3.0.0 - - http://commons.apache.org/proper/commons-codec/ - - jira - http://issues.apache.org/jira/browse/CODEC - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/codec/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/codec/trunk - http://svn.apache.org/viewvc/commons/proper/codec/trunk - - - - stagingSite - Apache Staging Website - ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid}/ - - - - - Henri Yandell - bayard - bayard@apache.org - - - Tim OBrien - tobrien - tobrien@apache.org - -6 - - - Scott Sanders - sanders - sanders@totalsync.com - - - Rodney Waldhoff - rwaldhoff - rwaldhoff@apache.org - - - Daniel Rall - dlr - dlr@finemaltcoding.com - - - Jon S. Stevens - jon - jon@collab.net - - - Gary Gregory - ggregory - ggregory@apache.org - http://www.garygregory.com - -8 - - - David Graham - dgraham - dgraham@apache.org - - - Julius Davies - julius - julius@apache.org - http://juliusdavies.ca/ - -8 - - - Thomas Neidhart - tn - tn@apache.org - - - - - Christopher O'Brien - siege@preoccupied.net - - hex - md5 - architecture - - - - Martin Redington - - Representing xml-rpc - - - - Jeffery Dever - - Representing http-client - - - - Steve Zimmermann - steve.zimmermann@heii.com - - Documentation - - - - Benjamin Walstrum - ben@walstrum.com - - - Oleg Kalnichevski - oleg@ural.ru - - Representing http-client - - - - Dave Dribin - apache@dave.dribin.org - - DigestUtil - - - - Alex Karasulu - aok123 at bellsouth.net - - Submitted Binary class and test - - - - Matthew Inger - mattinger at yahoo.com - - Submitted DIFFERENCE algorithm for Soundex and RefinedSoundex - - - - Jochen Wiedmann - jochen@apache.org - - Base64 code [CODEC-69] - - - - Sebastian Bazley - sebb@apache.org - - Streaming Base64 - - - - Matthew Pocock - turingatemyhamster@gmail.com - - Beider-Morse phonetic matching - - - - Colm Rice - colm_rice at hotmail dot com - - Submitted Match Rating Approach (MRA) phonetic encoder and tests [CODEC-161] - - - - - - - junit - junit - 4.12 - test - - - org.apache.commons - commons-lang3 - 3.5 - test - - - - 1.6 - 1.6 - codec - org.apache.commons.codec - 1.11 - - RC1 - CODEC - 12310464 - - UTF-8 - UTF-8 - UTF-8 - ${basedir}/LICENSE-header.txt - 2.17 - 2.8 - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - ${commons.scm-publish.version} - - - archive** - - - - - - - - - org.apache.rat - apache-rat-plugin - - - src/site/resources/.htaccess - - - - - - - maven-jar-plugin - - - - - ${commons.module.name} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*AbstractTest.java - **/*PerformanceTest.java - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${checkstyle.version} - - ${basedir}/checkstyle.xml - false - ${basedir}/LICENSE-header.txt - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${checkstyle.version} - - ${basedir}/checkstyle.xml - false - ${basedir}/LICENSE-header.txt - - - - - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.8 - - ${maven.compiler.target} - true - - ${basedir}/pmd.xml - - - - - org.codehaus.mojo - findbugs-maven-plugin - ${commons.findbugs.version} - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - TODO - NOPMD - NOTE - - - - - org.codehaus.mojo - javancss-maven-plugin - 2.1 - - - org.apache.rat - apache-rat-plugin - - - src/site/resources/.htaccess - - - - - - - - travis - - - env.TRAVIS - true - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - xml - - - - - org.eluder.coveralls - coveralls-maven-plugin - 4.3.0 - - - - - - diff --git a/tauri_app/docker/offline-maven/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar b/tauri_app/docker/offline-maven/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar deleted file mode 100644 index eb3c2b0..0000000 Binary files a/tauri_app/docker/offline-maven/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom b/tauri_app/docker/offline-maven/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom deleted file mode 100644 index 37b2226..0000000 --- a/tauri_app/docker/offline-maven/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom +++ /dev/null @@ -1,595 +0,0 @@ - - - - - org.apache.commons - commons-parent - 69 - - 4.0.0 - commons-io - commons-io - 2.16.1 - Apache Commons IO - - 2002 - -The Apache Commons IO library contains utility classes, stream implementations, file filters, -file comparators, endian transformation classes, and much more. - - - https://commons.apache.org/proper/commons-io/ - - - jira - https://issues.apache.org/jira/browse/IO - - - - - apache.website - Apache Commons Site - scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ - - - - - scm:git:https://gitbox.apache.org/repos/asf/commons-io.git - scm:git:https://gitbox.apache.org/repos/asf/commons-io.git - https://gitbox.apache.org/repos/asf?p=commons-io.git - rel/commons-io-2.15.1 - - - - - org.junit.jupiter - junit-jupiter - test - - - org.junit-pioneer - junit-pioneer - 1.9.1 - test - - - - net.bytebuddy - byte-buddy - ${commons.bytebuddy.version} - test - - - - net.bytebuddy - byte-buddy-agent - ${commons.bytebuddy.version} - test - - - org.mockito - mockito-inline - 4.11.0 - test - - - com.google.jimfs - jimfs - 1.3.0 - test - - - org.apache.commons - commons-lang3 - 3.14.0 - test - - - commons-codec - commons-codec - 1.16.1 - test - - - org.openjdk.jmh - jmh-core - ${jmh.version} - test - - - org.openjdk.jmh - jmh-generator-annprocess - ${jmh.version} - test - - - - - 1.8 - 1.8 - io - org.apache.commons.io - RC2 - 2.16.0 - 2.16.1 - 2.16.2 - 2024-04-04T20:10:16Z - (requires Java 8) - IO - 12310477 - - - org.apache.commons.io; - org.apache.commons.io.comparator; - org.apache.commons.io.filefilter; - org.apache.commons.io.input; - org.apache.commons.io.output;version=1.4.9999;-noimport:=true, - - org.apache.commons.io; - org.apache.commons.io.comparator; - org.apache.commons.io.filefilter; - org.apache.commons.io.input; - org.apache.commons.io.output; - org.apache.commons.io.*;version=${project.version};-noimport:=true - - - - sun.nio.ch;resolution:=optional, - sun.misc;resolution:=optional, - * - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ - site-content - ${commons.javadoc8.java.link} - 1.37 - 1.14.13 - false - ${env.JACOCO_SKIP} - true - - - - - clean verify apache-rat:check japicmp:cmp checkstyle:check spotbugs:check pmd:check javadoc:javadoc - - - - org.apache.rat - apache-rat-plugin - - - src/test/resources/**/*.bin - src/test/resources/dir-equals-tests/** - test/** - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - ${basedir}/src/conf/checkstyle.xml - ${basedir}/src/conf/checkstyle-suppressions.xml - false - true - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - ${commons.module.name} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - xerces:xercesImpl - - 1 - false - - - ${argLine} -Xmx25M - - - **/*Test*.class - - - **/*AbstractTestCase* - **/testtools/** - - **/*$* - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - com.github.spotbugs - spotbugs-maven-plugin - - ${basedir}/src/conf/spotbugs-exclude-filter.xml - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - org.apache.maven.plugins - maven-pmd-plugin - - - src/conf/maven-pmd-plugin.xml - - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - com.github.spotbugs - spotbugs-maven-plugin - - ${basedir}/src/conf/spotbugs-exclude-filter.xml - - - - com.github.siom79.japicmp - japicmp-maven-plugin - - - - - org.apache.commons.io.StreamIterator - - - - - - - - - setup-checkout - - - site-content - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 3.1.0 - - - prepare-checkout - pre-site - - run - - - - - - - - - - - - - - - - - - - - - - - - - java9-compile - - [9,) - - - 8 - - - - benchmark - - true - org.apache - - - - - org.codehaus.mojo - exec-maven-plugin - 3.2.0 - - - benchmark - test - - exec - - - test - java - - -classpath - - org.openjdk.jmh.Main - -rf - json - -rff - target/jmh-result.${benchmark}.json - ${benchmark} - - - - - - - - - - - - - Scott Sanders - sanders - sanders@apache.org - - - Java Developer - - - - dIon Gillard - - dion - dion@apache.org - - - Java Developer - - - - Nicola Ken Barozzi - nicolaken - nicolaken@apache.org - - - Java Developer - - - - Henri Yandell - bayard - bayard@apache.org - - - Java Developer - - - - Stephen Colebourne - scolebourne - - - Java Developer - - 0 - - - Jeremias Maerki - jeremias - jeremias@apache.org - - - Java Developer - - +1 - - - Matthew Hawthorne - matth - matth@apache.org - - - Java Developer - - - - Martin Cooper - martinc - martinc@apache.org - - - Java Developer - - - - Rob Oxspring - roxspring - roxspring@apache.org - - - Java Developer - - - - Jochen Wiedmann - jochen - jochen.wiedmann@gmail.com - - - Niall Pemberton - niallp - - Java Developer - - - - Jukka Zitting - jukka - - Java Developer - - - - ggregory - Gary Gregory - ggregory at apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - https://people.apache.org/~ggregory/img/garydgregory80.png - - - - Kristian Rosenvold - krosenvold - krosenvold@apache.org - +1 - - - - - - Rahul Akolkar - - - Jason Anderson - - - Nathan Beyer - - - Emmanuel Bourg - - - Chris Eldredge - - - Magnus Grimsell - - - Jim Harrington - - - Thomas Ledoux - - - Andy Lehane - - - Marcelo Liberato - - - Alban Peignier - alban.peignier at free.fr - - - Adam Retter - Evolved Binary - - - Ian Springer - - - Dominik Stadler - - - Masato Tezuka - - - James Urie - - - Frank W. Zammetti - - - Martin Grigorov - mgrigorov@apache.org - - - Arturo Bernal - - - Miguel Muñoz - - - - diff --git a/tauri_app/docker/offline-maven/commons-logging/commons-logging/1.2/commons-logging-1.2.jar b/tauri_app/docker/offline-maven/commons-logging/commons-logging/1.2/commons-logging-1.2.jar deleted file mode 100644 index 93a3b9f..0000000 Binary files a/tauri_app/docker/offline-maven/commons-logging/commons-logging/1.2/commons-logging-1.2.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/commons-logging/commons-logging/1.2/commons-logging-1.2.pom b/tauri_app/docker/offline-maven/commons-logging/commons-logging/1.2/commons-logging-1.2.pom deleted file mode 100644 index cdad31c..0000000 --- a/tauri_app/docker/offline-maven/commons-logging/commons-logging/1.2/commons-logging-1.2.pom +++ /dev/null @@ -1,547 +0,0 @@ - - - - - org.apache.commons - commons-parent - 34 - - 4.0.0 - commons-logging - commons-logging - Apache Commons Logging - 1.2 - Apache Commons Logging is a thin adapter allowing configurable bridging to other, - well known logging systems. - http://commons.apache.org/proper/commons-logging/ - - - JIRA - http://issues.apache.org/jira/browse/LOGGING - - - 2001 - - - - baliuka - Juozas Baliuka - baliuka@apache.org - - Java Developer - - - - morgand - Morgan Delagrange - morgand@apache.org - Apache - - Java Developer - - - - donaldp - Peter Donald - donaldp@apache.org - - - rdonkin - Robert Burrell Donkin - rdonkin@apache.org - The Apache Software Foundation - - - skitching - Simon Kitching - skitching@apache.org - The Apache Software Foundation - - - dennisl - Dennis Lundberg - dennisl@apache.org - The Apache Software Foundation - - - costin - Costin Manolache - costin@apache.org - The Apache Software Foundation - - - craigmcc - Craig McClanahan - craigmcc@apache.org - The Apache Software Foundation - - - tn - Thomas Neidhart - tn@apache.org - The Apache Software Foundation - - - sanders - Scott Sanders - sanders@apache.org - The Apache Software Foundation - - - rsitze - Richard Sitze - rsitze@apache.org - The Apache Software Foundation - - - bstansberry - Brian Stansberry - - - rwaldhoff - Rodney Waldhoff - rwaldhoff@apache.org - The Apache Software Foundation - - - - - Matthew P. Del Buono - - Provided patch - - - - Vince Eagen - vince256 at comcast dot net - - Lumberjack logging abstraction - - - - Peter Lawrey - - Provided patch - - - - Berin Loritsch - bloritsch at apache dot org - - Lumberjack logging abstraction - JDK 1.4 logging abstraction - - - - Philippe Mouawad - - Provided patch - - - - Neeme Praks - neeme at apache dot org - - Avalon logging abstraction - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/logging/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/logging/trunk - http://svn.apache.org/repos/asf/commons/proper/logging/trunk - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - testjar - package - - test-jar - - - commons-logging - - - - - apijar - package - - jar - - - ${project.artifactId}-api-${project.version} - - org/apache/commons/logging/*.class - org/apache/commons/logging/impl/LogFactoryImpl*.class - org/apache/commons/logging/impl/WeakHashtable*.class - org/apache/commons/logging/impl/SimpleLog*.class - org/apache/commons/logging/impl/NoOpLog*.class - org/apache/commons/logging/impl/Jdk14Logger.class - META-INF/LICENSE.txt - META-INF/NOTICE.txt - - - **/package.html - - - - - - adaptersjar - package - - jar - - - ${project.artifactId}-adapters-${project.version} - - org/apache/commons/logging/impl/**.class - META-INF/LICENSE.txt - META-INF/NOTICE.txt - - - org/apache/commons/logging/impl/WeakHashtable*.class - org/apache/commons/logging/impl/LogFactoryImpl*.class - - - - - - - fulljar - package - - jar - - - ${project.artifactId}-${project.version} - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - site.resources - site - - - - - - - - - - - run - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.0 - - - attach-artifacts - package - - attach-artifact - - - - - ${project.build.directory}/${project.artifactId}-adapters-${project.version}.jar - jar - adapters - - - ${project.build.directory}/${project.artifactId}-api-${project.version}.jar - jar - api - - - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - true - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - true - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - ${commons.surefire.version} - - - integration-test - - integration-test - verify - - - ${failsafe.runorder} - - **/*TestCase.java - - - - ${log4j:log4j:jar} - ${logkit:logkit:jar} - ${javax.servlet:servlet-api:jar} - target/${project.build.finalName}.jar - target/${project.artifactId}-api-${project.version}.jar - target/${project.artifactId}-adapters-${project.version}.jar - target/commons-logging-tests.jar - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.3 - - - src/main/assembly/bin.xml - src/main/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.4 - - - - properties - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - commons-logging-** - - - - - - - - - - junit - junit - 3.8.1 - test - - - log4j - log4j - 1.2.17 - true - - - logkit - logkit - 1.0.1 - true - - - avalon-framework - avalon-framework - 4.1.5 - true - - - javax.servlet - servlet-api - 2.3 - provided - true - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.7 - - ${basedir}/checkstyle.xml - false - ${basedir}/license-header.txt - - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-1 - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.2 - - true - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.0.1 - - - 1.3 - true - - ${basedir}/pmd.xml - - - - - - - - - apache.website - ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/logging/ - - - - - 1.2 - 1.2 - logging - 1.2 - LOGGING - 12310484 - - RC2 - 2.12 - true - - filesystem - - - javax.servlet;version="[2.1.0, 3.0.0)";resolution:=optional, - org.apache.avalon.framework.logger;version="[4.1.3, 4.1.5]";resolution:=optional, - org.apache.log;version="[1.0.1, 1.0.1]";resolution:=optional, - org.apache.log4j;version="[1.2.15, 2.0.0)";resolution:=optional - - - diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-api/1.69.1/grpc-api-1.69.1.jar b/tauri_app/docker/offline-maven/io/grpc/grpc-api/1.69.1/grpc-api-1.69.1.jar deleted file mode 100644 index f7f5367..0000000 Binary files a/tauri_app/docker/offline-maven/io/grpc/grpc-api/1.69.1/grpc-api-1.69.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-api/1.69.1/grpc-api-1.69.1.pom b/tauri_app/docker/offline-maven/io/grpc/grpc-api/1.69.1/grpc-api-1.69.1.pom deleted file mode 100644 index 7fc49ba..0000000 --- a/tauri_app/docker/offline-maven/io/grpc/grpc-api/1.69.1/grpc-api-1.69.1.pom +++ /dev/null @@ -1,52 +0,0 @@ - - - 4.0.0 - io.grpc - grpc-api - 1.69.1 - io.grpc:grpc-api - gRPC: API - https://github.com/grpc/grpc-java - - - Apache 2.0 - https://opensource.org/licenses/Apache-2.0 - - - - - grpc.io - gRPC Contributors - grpc-io@googlegroups.com - https://grpc.io/ - gRPC Authors - https://www.google.com - - - - scm:git:https://github.com/grpc/grpc-java.git - scm:git:git@github.com:grpc/grpc-java.git - https://github.com/grpc/grpc-java - - - - com.google.code.findbugs - jsr305 - 3.0.2 - compile - - - com.google.errorprone - error_prone_annotations - 2.30.0 - compile - - - com.google.guava - guava - 33.3.1-android - runtime - - - diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-context/1.69.1/grpc-context-1.69.1.jar b/tauri_app/docker/offline-maven/io/grpc/grpc-context/1.69.1/grpc-context-1.69.1.jar deleted file mode 100644 index 067df4d..0000000 Binary files a/tauri_app/docker/offline-maven/io/grpc/grpc-context/1.69.1/grpc-context-1.69.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-context/1.69.1/grpc-context-1.69.1.pom b/tauri_app/docker/offline-maven/io/grpc/grpc-context/1.69.1/grpc-context-1.69.1.pom deleted file mode 100644 index 14c1693..0000000 --- a/tauri_app/docker/offline-maven/io/grpc/grpc-context/1.69.1/grpc-context-1.69.1.pom +++ /dev/null @@ -1,54 +0,0 @@ - - - 4.0.0 - io.grpc - grpc-context - 1.69.1 - io.grpc:grpc-context - gRPC: Context - https://github.com/grpc/grpc-java - - - Apache 2.0 - https://opensource.org/licenses/Apache-2.0 - - - - - grpc.io - gRPC Contributors - grpc-io@googlegroups.com - https://grpc.io/ - gRPC Authors - https://www.google.com - - - - scm:git:https://github.com/grpc/grpc-java.git - scm:git:git@github.com:grpc/grpc-java.git - https://github.com/grpc/grpc-java - - - - io.grpc - grpc-api - 1.69.1 - runtime - - - com.google.code.findbugs - jsr305 - - - com.google.guava - guava - - - com.google.errorprone - error_prone_annotations - - - - - diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-core/1.69.1/grpc-core-1.69.1.jar b/tauri_app/docker/offline-maven/io/grpc/grpc-core/1.69.1/grpc-core-1.69.1.jar deleted file mode 100644 index 48225c9..0000000 Binary files a/tauri_app/docker/offline-maven/io/grpc/grpc-core/1.69.1/grpc-core-1.69.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-core/1.69.1/grpc-core-1.69.1.pom b/tauri_app/docker/offline-maven/io/grpc/grpc-core/1.69.1/grpc-core-1.69.1.pom deleted file mode 100644 index 5c2ddec..0000000 --- a/tauri_app/docker/offline-maven/io/grpc/grpc-core/1.69.1/grpc-core-1.69.1.pom +++ /dev/null @@ -1,82 +0,0 @@ - - - 4.0.0 - io.grpc - grpc-core - 1.69.1 - io.grpc:grpc-core - gRPC: Core - https://github.com/grpc/grpc-java - - - Apache 2.0 - https://opensource.org/licenses/Apache-2.0 - - - - - grpc.io - gRPC Contributors - grpc-io@googlegroups.com - https://grpc.io/ - gRPC Authors - https://www.google.com - - - - scm:git:https://github.com/grpc/grpc-java.git - scm:git:git@github.com:grpc/grpc-java.git - https://github.com/grpc/grpc-java - - - - io.grpc - grpc-api - 1.69.1 - compile - - - com.google.code.gson - gson - 2.11.0 - runtime - - - com.google.android - annotations - 4.1.1.4 - runtime - - - org.codehaus.mojo - animal-sniffer-annotations - 1.24 - runtime - - - com.google.errorprone - error_prone_annotations - 2.30.0 - runtime - - - com.google.guava - guava - 33.3.1-android - runtime - - - io.perfmark - perfmark-api - 0.27.0 - runtime - - - io.grpc - grpc-context - 1.69.1 - runtime - - - diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-inprocess/1.69.1/grpc-inprocess-1.69.1.jar b/tauri_app/docker/offline-maven/io/grpc/grpc-inprocess/1.69.1/grpc-inprocess-1.69.1.jar deleted file mode 100644 index 0ebb29f..0000000 Binary files a/tauri_app/docker/offline-maven/io/grpc/grpc-inprocess/1.69.1/grpc-inprocess-1.69.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-inprocess/1.69.1/grpc-inprocess-1.69.1.pom b/tauri_app/docker/offline-maven/io/grpc/grpc-inprocess/1.69.1/grpc-inprocess-1.69.1.pom deleted file mode 100644 index 7002b50..0000000 --- a/tauri_app/docker/offline-maven/io/grpc/grpc-inprocess/1.69.1/grpc-inprocess-1.69.1.pom +++ /dev/null @@ -1,52 +0,0 @@ - - - 4.0.0 - io.grpc - grpc-inprocess - 1.69.1 - io.grpc:grpc-inprocess - gRPC: Inprocess - https://github.com/grpc/grpc-java - - - Apache 2.0 - https://opensource.org/licenses/Apache-2.0 - - - - - grpc.io - gRPC Contributors - grpc-io@googlegroups.com - https://grpc.io/ - gRPC Authors - https://www.google.com - - - - scm:git:https://github.com/grpc/grpc-java.git - scm:git:git@github.com:grpc/grpc-java.git - https://github.com/grpc/grpc-java - - - - io.grpc - grpc-api - 1.69.1 - compile - - - io.grpc - grpc-core - 1.69.1 - runtime - - - com.google.guava - guava - 33.3.1-android - runtime - - - diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-netty/1.69.1/grpc-netty-1.69.1.jar b/tauri_app/docker/offline-maven/io/grpc/grpc-netty/1.69.1/grpc-netty-1.69.1.jar deleted file mode 100644 index acdc7af..0000000 Binary files a/tauri_app/docker/offline-maven/io/grpc/grpc-netty/1.69.1/grpc-netty-1.69.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-netty/1.69.1/grpc-netty-1.69.1.pom b/tauri_app/docker/offline-maven/io/grpc/grpc-netty/1.69.1/grpc-netty-1.69.1.pom deleted file mode 100644 index 067b397..0000000 --- a/tauri_app/docker/offline-maven/io/grpc/grpc-netty/1.69.1/grpc-netty-1.69.1.pom +++ /dev/null @@ -1,88 +0,0 @@ - - - 4.0.0 - io.grpc - grpc-netty - 1.69.1 - io.grpc:grpc-netty - gRPC: Netty - https://github.com/grpc/grpc-java - - - Apache 2.0 - https://opensource.org/licenses/Apache-2.0 - - - - - grpc.io - gRPC Contributors - grpc-io@googlegroups.com - https://grpc.io/ - gRPC Authors - https://www.google.com - - - - scm:git:https://github.com/grpc/grpc-java.git - scm:git:git@github.com:grpc/grpc-java.git - https://github.com/grpc/grpc-java - - - - io.grpc - grpc-api - 1.69.1 - compile - - - io.netty - netty-codec-http2 - 4.1.110.Final - compile - - - io.grpc - grpc-core - 1.69.1 - runtime - - - io.netty - netty-handler-proxy - 4.1.110.Final - runtime - - - com.google.guava - guava - 33.3.1-android - runtime - - - com.google.errorprone - error_prone_annotations - 2.30.0 - runtime - - - io.perfmark - perfmark-api - 0.27.0 - runtime - - - io.netty - netty-transport-native-unix-common - 4.1.110.Final - runtime - - - io.grpc - grpc-util - 1.69.1 - runtime - - - diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-protobuf-lite/1.69.1/grpc-protobuf-lite-1.69.1.jar b/tauri_app/docker/offline-maven/io/grpc/grpc-protobuf-lite/1.69.1/grpc-protobuf-lite-1.69.1.jar deleted file mode 100644 index 491219c..0000000 Binary files a/tauri_app/docker/offline-maven/io/grpc/grpc-protobuf-lite/1.69.1/grpc-protobuf-lite-1.69.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-protobuf-lite/1.69.1/grpc-protobuf-lite-1.69.1.pom b/tauri_app/docker/offline-maven/io/grpc/grpc-protobuf-lite/1.69.1/grpc-protobuf-lite-1.69.1.pom deleted file mode 100644 index 7548585..0000000 --- a/tauri_app/docker/offline-maven/io/grpc/grpc-protobuf-lite/1.69.1/grpc-protobuf-lite-1.69.1.pom +++ /dev/null @@ -1,58 +0,0 @@ - - - 4.0.0 - io.grpc - grpc-protobuf-lite - 1.69.1 - io.grpc:grpc-protobuf-lite - gRPC: Protobuf Lite - https://github.com/grpc/grpc-java - - - Apache 2.0 - https://opensource.org/licenses/Apache-2.0 - - - - - grpc.io - gRPC Contributors - grpc-io@googlegroups.com - https://grpc.io/ - gRPC Authors - https://www.google.com - - - - scm:git:https://github.com/grpc/grpc-java.git - scm:git:git@github.com:grpc/grpc-java.git - https://github.com/grpc/grpc-java - - - - io.grpc - grpc-api - 1.69.1 - compile - - - com.google.protobuf - protobuf-javalite - 3.25.5 - compile - - - com.google.code.findbugs - jsr305 - 3.0.2 - runtime - - - com.google.guava - guava - 33.3.1-android - runtime - - - diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-protobuf/1.69.1/grpc-protobuf-1.69.1.jar b/tauri_app/docker/offline-maven/io/grpc/grpc-protobuf/1.69.1/grpc-protobuf-1.69.1.jar deleted file mode 100644 index 853cf79..0000000 Binary files a/tauri_app/docker/offline-maven/io/grpc/grpc-protobuf/1.69.1/grpc-protobuf-1.69.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-protobuf/1.69.1/grpc-protobuf-1.69.1.pom b/tauri_app/docker/offline-maven/io/grpc/grpc-protobuf/1.69.1/grpc-protobuf-1.69.1.pom deleted file mode 100644 index 3d20967..0000000 --- a/tauri_app/docker/offline-maven/io/grpc/grpc-protobuf/1.69.1/grpc-protobuf-1.69.1.pom +++ /dev/null @@ -1,82 +0,0 @@ - - - 4.0.0 - io.grpc - grpc-protobuf - 1.69.1 - io.grpc:grpc-protobuf - gRPC: Protobuf - https://github.com/grpc/grpc-java - - - Apache 2.0 - https://opensource.org/licenses/Apache-2.0 - - - - - grpc.io - gRPC Contributors - grpc-io@googlegroups.com - https://grpc.io/ - gRPC Authors - https://www.google.com - - - - scm:git:https://github.com/grpc/grpc-java.git - scm:git:git@github.com:grpc/grpc-java.git - https://github.com/grpc/grpc-java - - - - io.grpc - grpc-api - 1.69.1 - compile - - - com.google.code.findbugs - jsr305 - 3.0.2 - compile - - - com.google.protobuf - protobuf-java - 3.25.5 - compile - - - com.google.api.grpc - proto-google-common-protos - 2.48.0 - compile - - - com.google.api - api-common - - - - - com.google.guava - guava - 33.3.1-android - runtime - - - io.grpc - grpc-protobuf-lite - 1.69.1 - runtime - - - com.google.protobuf - protobuf-javalite - - - - - diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-stub/1.69.1/grpc-stub-1.69.1.jar b/tauri_app/docker/offline-maven/io/grpc/grpc-stub/1.69.1/grpc-stub-1.69.1.jar deleted file mode 100644 index 743b028..0000000 Binary files a/tauri_app/docker/offline-maven/io/grpc/grpc-stub/1.69.1/grpc-stub-1.69.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-stub/1.69.1/grpc-stub-1.69.1.pom b/tauri_app/docker/offline-maven/io/grpc/grpc-stub/1.69.1/grpc-stub-1.69.1.pom deleted file mode 100644 index 0c791db..0000000 --- a/tauri_app/docker/offline-maven/io/grpc/grpc-stub/1.69.1/grpc-stub-1.69.1.pom +++ /dev/null @@ -1,52 +0,0 @@ - - - 4.0.0 - io.grpc - grpc-stub - 1.69.1 - io.grpc:grpc-stub - gRPC: Stub - https://github.com/grpc/grpc-java - - - Apache 2.0 - https://opensource.org/licenses/Apache-2.0 - - - - - grpc.io - gRPC Contributors - grpc-io@googlegroups.com - https://grpc.io/ - gRPC Authors - https://www.google.com - - - - scm:git:https://github.com/grpc/grpc-java.git - scm:git:git@github.com:grpc/grpc-java.git - https://github.com/grpc/grpc-java - - - - io.grpc - grpc-api - 1.69.1 - compile - - - com.google.guava - guava - 33.3.1-android - compile - - - com.google.errorprone - error_prone_annotations - 2.30.0 - runtime - - - diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-util/1.69.1/grpc-util-1.69.1.jar b/tauri_app/docker/offline-maven/io/grpc/grpc-util/1.69.1/grpc-util-1.69.1.jar deleted file mode 100644 index 43081be..0000000 Binary files a/tauri_app/docker/offline-maven/io/grpc/grpc-util/1.69.1/grpc-util-1.69.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/grpc/grpc-util/1.69.1/grpc-util-1.69.1.pom b/tauri_app/docker/offline-maven/io/grpc/grpc-util/1.69.1/grpc-util-1.69.1.pom deleted file mode 100644 index 7b7ab37..0000000 --- a/tauri_app/docker/offline-maven/io/grpc/grpc-util/1.69.1/grpc-util-1.69.1.pom +++ /dev/null @@ -1,58 +0,0 @@ - - - 4.0.0 - io.grpc - grpc-util - 1.69.1 - io.grpc:grpc-util - gRPC: Util - https://github.com/grpc/grpc-java - - - Apache 2.0 - https://opensource.org/licenses/Apache-2.0 - - - - - grpc.io - gRPC Contributors - grpc-io@googlegroups.com - https://grpc.io/ - gRPC Authors - https://www.google.com - - - - scm:git:https://github.com/grpc/grpc-java.git - scm:git:git@github.com:grpc/grpc-java.git - https://github.com/grpc/grpc-java - - - - io.grpc - grpc-api - 1.69.1 - compile - - - io.grpc - grpc-core - 1.69.1 - runtime - - - org.codehaus.mojo - animal-sniffer-annotations - 1.24 - runtime - - - com.google.guava - guava - 33.3.1-android - runtime - - - diff --git a/tauri_app/docker/offline-maven/io/netty/netty-buffer/4.1.110.Final/netty-buffer-4.1.110.Final.jar b/tauri_app/docker/offline-maven/io/netty/netty-buffer/4.1.110.Final/netty-buffer-4.1.110.Final.jar deleted file mode 100644 index c79eb88..0000000 Binary files a/tauri_app/docker/offline-maven/io/netty/netty-buffer/4.1.110.Final/netty-buffer-4.1.110.Final.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/netty/netty-buffer/4.1.110.Final/netty-buffer-4.1.110.Final.pom b/tauri_app/docker/offline-maven/io/netty/netty-buffer/4.1.110.Final/netty-buffer-4.1.110.Final.pom deleted file mode 100644 index 4c31f8c..0000000 --- a/tauri_app/docker/offline-maven/io/netty/netty-buffer/4.1.110.Final/netty-buffer-4.1.110.Final.pom +++ /dev/null @@ -1,46 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.110.Final - - - netty-buffer - jar - - Netty/Buffer - - - io.netty.buffer - - - - - ${project.groupId} - netty-common - ${project.version} - - - org.mockito - mockito-core - - - diff --git a/tauri_app/docker/offline-maven/io/netty/netty-codec-http/4.1.110.Final/netty-codec-http-4.1.110.Final.jar b/tauri_app/docker/offline-maven/io/netty/netty-codec-http/4.1.110.Final/netty-codec-http-4.1.110.Final.jar deleted file mode 100644 index 5da42f6..0000000 Binary files a/tauri_app/docker/offline-maven/io/netty/netty-codec-http/4.1.110.Final/netty-codec-http-4.1.110.Final.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/netty/netty-codec-http/4.1.110.Final/netty-codec-http-4.1.110.Final.pom b/tauri_app/docker/offline-maven/io/netty/netty-codec-http/4.1.110.Final/netty-codec-http-4.1.110.Final.pom deleted file mode 100644 index 4e04bcd..0000000 --- a/tauri_app/docker/offline-maven/io/netty/netty-codec-http/4.1.110.Final/netty-codec-http-4.1.110.Final.pom +++ /dev/null @@ -1,133 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.110.Final - - - netty-codec-http - jar - - Netty/Codec/HTTP - - - io.netty.codec.http - - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - ${project.groupId} - netty-codec - ${project.version} - - - ${project.groupId} - netty-handler - ${project.version} - - - com.jcraft - jzlib - true - - - org.mockito - mockito-core - - - commons-io - commons-io - - - com.aayushatharva.brotli4j - brotli4j - true - - - com.aayushatharva.brotli4j - native-linux-x86_64 - test - - - com.aayushatharva.brotli4j - native-linux-aarch64 - test - - - com.aayushatharva.brotli4j - native-linux-riscv64 - test - - - com.aayushatharva.brotli4j - native-osx-x86_64 - test - - - com.aayushatharva.brotli4j - native-osx-aarch64 - test - - - com.aayushatharva.brotli4j - native-windows-x86_64 - test - - - com.github.luben - zstd-jni - true - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - - diff --git a/tauri_app/docker/offline-maven/io/netty/netty-codec-http2/4.1.110.Final/netty-codec-http2-4.1.110.Final.jar b/tauri_app/docker/offline-maven/io/netty/netty-codec-http2/4.1.110.Final/netty-codec-http2-4.1.110.Final.jar deleted file mode 100644 index f004dd3..0000000 Binary files a/tauri_app/docker/offline-maven/io/netty/netty-codec-http2/4.1.110.Final/netty-codec-http2-4.1.110.Final.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/netty/netty-codec-http2/4.1.110.Final/netty-codec-http2-4.1.110.Final.pom b/tauri_app/docker/offline-maven/io/netty/netty-codec-http2/4.1.110.Final/netty-codec-http2-4.1.110.Final.pom deleted file mode 100644 index 3d33b0e..0000000 --- a/tauri_app/docker/offline-maven/io/netty/netty-codec-http2/4.1.110.Final/netty-codec-http2-4.1.110.Final.pom +++ /dev/null @@ -1,153 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.110.Final - - - netty-codec-http2 - jar - - Netty/Codec/HTTP2 - - - io.netty.codec.http2 - - --add-exports java.base/sun.security.x509=ALL-UNNAMED - - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - ${project.groupId} - netty-codec - ${project.version} - - - ${project.groupId} - netty-handler - ${project.version} - - - ${project.groupId} - netty-codec-http - ${project.version} - - - com.jcraft - jzlib - true - - - org.mockito - mockito-core - - - org.bouncycastle - bcpkix-jdk15on - test - - - ${project.groupId} - ${tcnative.artifactId} - ${tcnative.classifier} - test - true - - - com.aayushatharva.brotli4j - brotli4j - true - - - com.aayushatharva.brotli4j - native-linux-x86_64 - test - - - com.aayushatharva.brotli4j - native-linux-aarch64 - test - - - com.aayushatharva.brotli4j - native-linux-riscv64 - test - - - com.aayushatharva.brotli4j - native-linux-armv7 - test - - - com.aayushatharva.brotli4j - native-osx-x86_64 - test - - - com.aayushatharva.brotli4j - native-osx-aarch64 - test - - - com.aayushatharva.brotli4j - native-windows-x86_64 - test - - - com.github.luben - zstd-jni - true - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - - diff --git a/tauri_app/docker/offline-maven/io/netty/netty-codec-socks/4.1.110.Final/netty-codec-socks-4.1.110.Final.jar b/tauri_app/docker/offline-maven/io/netty/netty-codec-socks/4.1.110.Final/netty-codec-socks-4.1.110.Final.jar deleted file mode 100644 index c96ae3c..0000000 Binary files a/tauri_app/docker/offline-maven/io/netty/netty-codec-socks/4.1.110.Final/netty-codec-socks-4.1.110.Final.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/netty/netty-codec-socks/4.1.110.Final/netty-codec-socks-4.1.110.Final.pom b/tauri_app/docker/offline-maven/io/netty/netty-codec-socks/4.1.110.Final/netty-codec-socks-4.1.110.Final.pom deleted file mode 100644 index 75fa07b..0000000 --- a/tauri_app/docker/offline-maven/io/netty/netty-codec-socks/4.1.110.Final/netty-codec-socks-4.1.110.Final.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.110.Final - - - netty-codec-socks - jar - - Netty/Codec/Socks - - - io.netty.codec.socks - - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - ${project.groupId} - netty-codec - ${project.version} - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - - diff --git a/tauri_app/docker/offline-maven/io/netty/netty-codec/4.1.110.Final/netty-codec-4.1.110.Final.jar b/tauri_app/docker/offline-maven/io/netty/netty-codec/4.1.110.Final/netty-codec-4.1.110.Final.jar deleted file mode 100644 index aa8688c..0000000 Binary files a/tauri_app/docker/offline-maven/io/netty/netty-codec/4.1.110.Final/netty-codec-4.1.110.Final.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/netty/netty-codec/4.1.110.Final/netty-codec-4.1.110.Final.pom b/tauri_app/docker/offline-maven/io/netty/netty-codec/4.1.110.Final/netty-codec-4.1.110.Final.pom deleted file mode 100644 index 918ae0a..0000000 --- a/tauri_app/docker/offline-maven/io/netty/netty-codec/4.1.110.Final/netty-codec-4.1.110.Final.pom +++ /dev/null @@ -1,169 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.110.Final - - - netty-codec - jar - - Netty/Codec - - - io.netty.codec - - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - com.google.protobuf - protobuf-java - true - - - com.google.protobuf.nano - protobuf-javanano - true - - - org.jboss.marshalling - jboss-marshalling - true - - - com.jcraft - jzlib - true - - - com.ning - compress-lzf - true - - - net.jpountz.lz4 - lz4 - true - - - com.github.jponge - lzma-java - true - - - com.github.luben - zstd-jni - true - - - com.aayushatharva.brotli4j - brotli4j - true - - - com.aayushatharva.brotli4j - native-linux-x86_64 - true - - - com.aayushatharva.brotli4j - native-linux-aarch64 - true - - - com.aayushatharva.brotli4j - native-linux-riscv64 - true - - - com.aayushatharva.brotli4j - native-osx-x86_64 - true - - - com.aayushatharva.brotli4j - native-osx-aarch64 - true - - - com.aayushatharva.brotli4j - native-windows-x86_64 - true - - - - org.mockito - mockito-core - - - - - org.jboss.marshalling - jboss-marshalling-serial - test - - - org.jboss.marshalling - jboss-marshalling-river - test - - - - - org.apache.commons - commons-compress - test - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - - diff --git a/tauri_app/docker/offline-maven/io/netty/netty-common/4.1.110.Final/netty-common-4.1.110.Final.jar b/tauri_app/docker/offline-maven/io/netty/netty-common/4.1.110.Final/netty-common-4.1.110.Final.jar deleted file mode 100644 index d8793ed..0000000 Binary files a/tauri_app/docker/offline-maven/io/netty/netty-common/4.1.110.Final/netty-common-4.1.110.Final.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/netty/netty-common/4.1.110.Final/netty-common-4.1.110.Final.pom b/tauri_app/docker/offline-maven/io/netty/netty-common/4.1.110.Final/netty-common-4.1.110.Final.pom deleted file mode 100644 index f2fcffc..0000000 --- a/tauri_app/docker/offline-maven/io/netty/netty-common/4.1.110.Final/netty-common-4.1.110.Final.pom +++ /dev/null @@ -1,351 +0,0 @@ - - - - netty-parent - io.netty - 4.1.110.Final - - 4.0.0 - netty-common - Netty/Common - - - - maven-shade-plugin - - - package - - shade - - - - - org.jctools - - - - - org.jctools. - io.netty.util.internal.shaded.org.jctools. - - - true - true - true - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-source - generate-sources - - add-source - - - - ${collection.src.dir} - - - - - add-test-source - generate-test-sources - - add-test-source - - - - ${collection.testsrc.dir} - - - - - - - org.codehaus.gmaven - groovy-maven-plugin - 2.1.1 - - - generate-collections - generate-sources - - execute - - - ${project.basedir}/src/main/script/codegen.groovy - - - - - - org.codehaus.groovy - groovy - 3.0.9 - - - ant - ant-optional - 1.5.3-1 - - - - - org.apache.felix - maven-bundle-plugin - - - generate-manifest - process-classes - - manifest - - - - * - !org.jctools.*;sun.misc;resolution:=optional;* - - - - - - - - - - org.graalvm.nativeimage - svm - 19.3.6 - provided - - - svm-hosted-native-linux-amd64 - org.graalvm.nativeimage - - - svm-hosted-native-darwin-amd64 - org.graalvm.nativeimage - - - svm-hosted-native-windows-amd64 - org.graalvm.nativeimage - - - graal-sdk - org.graalvm.sdk - - - objectfile - org.graalvm.nativeimage - - - pointsto - org.graalvm.nativeimage - - - truffle-nfi - org.graalvm.truffle - - - compiler - org.graalvm.compiler - - - - - org.jetbrains - annotations-java5 - 23.0.0 - provided - - - org.slf4j - slf4j-api - 1.7.30 - compile - true - - - commons-logging - commons-logging - 1.2 - compile - true - - - org.apache.logging.log4j - log4j-1.2-api - 2.17.2 - compile - - - mail - javax.mail - - - jms - javax.jms - - - jmxtools - com.sun.jdmk - - - jmxri - com.sun.jmx - - - true - - - org.apache.logging.log4j - log4j-api - 2.17.2 - compile - true - - - org.apache.logging.log4j - log4j-core - 2.17.2 - test - - - io.projectreactor.tools - blockhound - 1.0.6.RELEASE - compile - true - - - org.mockito - mockito-core - 2.18.3 - test - - - byte-buddy - net.bytebuddy - - - byte-buddy-agent - net.bytebuddy - - - objenesis - org.objenesis - - - - - io.netty - netty-dev-tools - 4.1.110.Final - test - true - - - org.junit.jupiter - junit-jupiter-api - 5.9.0 - test - - - opentest4j - org.opentest4j - - - junit-platform-commons - org.junit.platform - - - apiguardian-api - org.apiguardian - - - - - org.junit.jupiter - junit-jupiter-engine - 5.9.0 - test - - - junit-platform-engine - org.junit.platform - - - apiguardian-api - org.apiguardian - - - - - org.junit.jupiter - junit-jupiter-params - 5.9.0 - test - - - apiguardian-api - org.apiguardian - - - - - io.netty - netty-build-common - 31 - test - - - checkstyle - com.puppycrawl.tools - - - - - org.hamcrest - hamcrest-library - 1.3 - test - - - hamcrest-core - org.hamcrest - - - - - org.assertj - assertj-core - 3.18.0 - test - - - ch.qos.logback - logback-classic - 1.2.13 - test - - - logback-core - ch.qos.logback - - - - - - ${project.basedir}/src/test/templates - ${project.build.directory}/generated-test-sources/collections/java - io.netty.common - ${project.basedir}/src/main/templates - ${project.build.directory}/generated-sources/collections/java - - diff --git a/tauri_app/docker/offline-maven/io/netty/netty-handler-proxy/4.1.110.Final/netty-handler-proxy-4.1.110.Final.jar b/tauri_app/docker/offline-maven/io/netty/netty-handler-proxy/4.1.110.Final/netty-handler-proxy-4.1.110.Final.jar deleted file mode 100644 index 531b188..0000000 Binary files a/tauri_app/docker/offline-maven/io/netty/netty-handler-proxy/4.1.110.Final/netty-handler-proxy-4.1.110.Final.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/netty/netty-handler-proxy/4.1.110.Final/netty-handler-proxy-4.1.110.Final.pom b/tauri_app/docker/offline-maven/io/netty/netty-handler-proxy/4.1.110.Final/netty-handler-proxy-4.1.110.Final.pom deleted file mode 100644 index cbd0ecb..0000000 --- a/tauri_app/docker/offline-maven/io/netty/netty-handler-proxy/4.1.110.Final/netty-handler-proxy-4.1.110.Final.pom +++ /dev/null @@ -1,104 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.110.Final - - - netty-handler-proxy - jar - - - io.netty.handler.proxy - - --add-exports java.base/sun.security.x509=ALL-UNNAMED - - - Netty/Handler/Proxy - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - ${project.groupId} - netty-codec - ${project.version} - - - ${project.groupId} - netty-codec-socks - ${project.version} - - - ${project.groupId} - netty-codec-http - ${project.version} - - - - ${project.groupId} - netty-handler - ${project.version} - test - - - org.mockito - mockito-core - - - - org.bouncycastle - bcpkix-jdk15on - test - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - - diff --git a/tauri_app/docker/offline-maven/io/netty/netty-handler/4.1.110.Final/netty-handler-4.1.110.Final.jar b/tauri_app/docker/offline-maven/io/netty/netty-handler/4.1.110.Final/netty-handler-4.1.110.Final.jar deleted file mode 100644 index 2f144b7..0000000 Binary files a/tauri_app/docker/offline-maven/io/netty/netty-handler/4.1.110.Final/netty-handler-4.1.110.Final.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/netty/netty-handler/4.1.110.Final/netty-handler-4.1.110.Final.pom b/tauri_app/docker/offline-maven/io/netty/netty-handler/4.1.110.Final/netty-handler-4.1.110.Final.pom deleted file mode 100644 index 709bd28..0000000 --- a/tauri_app/docker/offline-maven/io/netty/netty-handler/4.1.110.Final/netty-handler-4.1.110.Final.pom +++ /dev/null @@ -1,136 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.110.Final - - - netty-handler - jar - - - io.netty.handler - - --add-exports java.base/sun.security.x509=ALL-UNNAMED - - - Netty/Handler - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-resolver - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-transport - ${project.version} - - - ${project.groupId} - netty-transport-native-unix-common - ${project.version} - - - ${project.groupId} - netty-codec - ${project.version} - - - ${project.groupId} - netty-tcnative-classes - true - - - ${project.groupId} - ${tcnative.artifactId} - ${tcnative.classifier} - true - - - org.bouncycastle - bcpkix-jdk15on - true - - - org.bouncycastle - bctls-jdk15on - true - - - org.eclipse.jetty.npn - npn-api - true - - - org.eclipse.jetty.alpn - alpn-api - true - - - ${conscrypt.groupId} - ${conscrypt.artifactId} - ${conscrypt.classifier} - true - - - org.mockito - mockito-core - - - - software.amazon.cryptools - AmazonCorrettoCryptoProvider - 1.1.0 - linux-x86_64 - test - - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - ${project.groupId} - netty-transport - ${project.version} - test-jar - test - - - - diff --git a/tauri_app/docker/offline-maven/io/netty/netty-resolver/4.1.110.Final/netty-resolver-4.1.110.Final.jar b/tauri_app/docker/offline-maven/io/netty/netty-resolver/4.1.110.Final/netty-resolver-4.1.110.Final.jar deleted file mode 100644 index 269a05d..0000000 Binary files a/tauri_app/docker/offline-maven/io/netty/netty-resolver/4.1.110.Final/netty-resolver-4.1.110.Final.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/netty/netty-resolver/4.1.110.Final/netty-resolver-4.1.110.Final.pom b/tauri_app/docker/offline-maven/io/netty/netty-resolver/4.1.110.Final/netty-resolver-4.1.110.Final.pom deleted file mode 100644 index 338093b..0000000 --- a/tauri_app/docker/offline-maven/io/netty/netty-resolver/4.1.110.Final/netty-resolver-4.1.110.Final.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.110.Final - - - netty-resolver - jar - - Netty/Resolver - - - io.netty.resolver - - - - - ${project.groupId} - netty-common - ${project.version} - - - org.mockito - mockito-core - - - - diff --git a/tauri_app/docker/offline-maven/io/netty/netty-transport-native-unix-common/4.1.110.Final/netty-transport-native-unix-common-4.1.110.Final.jar b/tauri_app/docker/offline-maven/io/netty/netty-transport-native-unix-common/4.1.110.Final/netty-transport-native-unix-common-4.1.110.Final.jar deleted file mode 100644 index 383425e..0000000 Binary files a/tauri_app/docker/offline-maven/io/netty/netty-transport-native-unix-common/4.1.110.Final/netty-transport-native-unix-common-4.1.110.Final.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/netty/netty-transport-native-unix-common/4.1.110.Final/netty-transport-native-unix-common-4.1.110.Final.pom b/tauri_app/docker/offline-maven/io/netty/netty-transport-native-unix-common/4.1.110.Final/netty-transport-native-unix-common-4.1.110.Final.pom deleted file mode 100644 index 156e6fe..0000000 --- a/tauri_app/docker/offline-maven/io/netty/netty-transport-native-unix-common/4.1.110.Final/netty-transport-native-unix-common-4.1.110.Final.pom +++ /dev/null @@ -1,698 +0,0 @@ - - - - 4.0.0 - - io.netty - netty-parent - 4.1.110.Final - - netty-transport-native-unix-common - - Netty/Transport/Native/Unix/Common - jar - - Static library which contains common unix utilities. - - - - io.netty.transport.unix.common - - make - gcc - ar - libnetty-unix-common - ${project.basedir}/src/main/c - ${project.build.directory}/netty-jni-util/ - ${project.build.directory}/native-jar-work - ${project.build.directory}/native-objs-only - ${project.build.directory}/native-lib-only - ${project.build.directory}/${project.build.finalName}.jar - ${project.build.directory}/${project.build.finalName}-${jni.classifier}.jar - - -Xcheck:jni - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - - unpack - generate-sources - - unpack-dependencies - - - io.netty - netty-jni-util - sources - ${jniUtilIncludeDir} - **.h,**.c - false - true - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - generate-sources - - add-source - - - - ${nativeIncludeDir} - - - - - - - - - - - mac - - - mac - - - - clang - darwin - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - - - mac-m1-cross-compile - - clang - darwin - - ${os.detected.name}-aarch_64 - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - - mac-intel-cross-compile - - clang - darwin - - ${os.detected.name}-x86_64 - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - - linux - - - linux - - - - linux - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - linux-aarch64 - - - ${os.detected.name}-aarch_64 - linux - aarch64-none-linux-gnu-gcc - aarch64-none-linux-gnu-ar - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - linux-riscv64 - - - ${os.detected.name}-riscv64 - linux - riscv64-linux-gnu-gcc - riscv64-linux-gnu-ar - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - freebsd - - - unix - freebsd - - - - clang - gmake - freebsd - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - openbsd - - - unix - openbsd - - - - clang - gmake - openbsd - - - - - maven-antrun-plugin - - - - native-jar - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - build-native-lib - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - - - - - - io.netty - netty-jni-util - sources - true - - - io.netty - netty-common - ${project.version} - - - io.netty - netty-buffer - ${project.version} - - - io.netty - netty-transport - ${project.version} - - - diff --git a/tauri_app/docker/offline-maven/io/netty/netty-transport/4.1.110.Final/netty-transport-4.1.110.Final.jar b/tauri_app/docker/offline-maven/io/netty/netty-transport/4.1.110.Final/netty-transport-4.1.110.Final.jar deleted file mode 100644 index 676e808..0000000 Binary files a/tauri_app/docker/offline-maven/io/netty/netty-transport/4.1.110.Final/netty-transport-4.1.110.Final.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/netty/netty-transport/4.1.110.Final/netty-transport-4.1.110.Final.pom b/tauri_app/docker/offline-maven/io/netty/netty-transport/4.1.110.Final/netty-transport-4.1.110.Final.pom deleted file mode 100644 index 5183cde..0000000 --- a/tauri_app/docker/offline-maven/io/netty/netty-transport/4.1.110.Final/netty-transport-4.1.110.Final.pom +++ /dev/null @@ -1,66 +0,0 @@ - - - - - 4.0.0 - - io.netty - netty-parent - 4.1.110.Final - - - netty-transport - jar - - Netty/Transport - - - io.netty.transport - - - - - ${project.groupId} - netty-common - ${project.version} - - - ${project.groupId} - netty-buffer - ${project.version} - - - ${project.groupId} - netty-resolver - ${project.version} - - - org.mockito - mockito-core - - - - org.reflections - reflections - - - com.google.code.gson - gson - - - - diff --git a/tauri_app/docker/offline-maven/io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.jar b/tauri_app/docker/offline-maven/io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.jar deleted file mode 100644 index f9d28d9..0000000 Binary files a/tauri_app/docker/offline-maven/io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.pom b/tauri_app/docker/offline-maven/io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.pom deleted file mode 100644 index 457e789..0000000 --- a/tauri_app/docker/offline-maven/io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.pom +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - 4.0.0 - io.perfmark - perfmark-api - 0.27.0 - perfmark:perfmark-api - PerfMark API - https://github.com/perfmark/perfmark - - - Apache 2.0 - https://opensource.org/licenses/Apache-2.0 - - - - - carl-mastrangelo - Carl Mastrangelo - carl@carlmastrangelo.com - https://www.perfmark.io/ - - - - scm:git:https://github.com/perfmark/perfmark.git - scm:git@github.com:perfmark/perfmark.git - https://github.com/perfmark/perfmark - - diff --git a/tauri_app/docker/offline-maven/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar b/tauri_app/docker/offline-maven/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar deleted file mode 100644 index bbfb52f..0000000 Binary files a/tauri_app/docker/offline-maven/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom b/tauri_app/docker/offline-maven/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom deleted file mode 100644 index 09697c4..0000000 --- a/tauri_app/docker/offline-maven/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - com.sun.activation - all - 1.2.1 - - 4.0.0 - jakarta.activation - jakarta.activation-api - jar - JavaBeans Activation Framework API jar - - - jakarta.activation - - - jakarta.activation - - - javax.activation.*; version=${activation.spec.version} - - - jakarta.activation-api - - - - - - maven-dependency-plugin - - - - get-binaries - process-sources - - unpack - - - - - get-sources - process-sources - - unpack - - - - - com.sun.activation - jakarta.activation - ${project.version} - sources - - ${project.build.directory}/sources - - - - - - - - - - com.sun.activation - jakarta.activation - ${project.version} - - - - ${project.build.outputDirectory} - - - javax/**, - META-INF/LICENSE.txt - - - - - maven-jar-plugin - - ${project.artifactId} - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - diff --git a/tauri_app/docker/offline-maven/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.jar b/tauri_app/docker/offline-maven/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.jar deleted file mode 100644 index b16236d..0000000 Binary files a/tauri_app/docker/offline-maven/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom b/tauri_app/docker/offline-maven/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom deleted file mode 100644 index 9415ef6..0000000 --- a/tauri_app/docker/offline-maven/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom +++ /dev/null @@ -1,341 +0,0 @@ - - - - - - jakarta.xml.bind-api-parent - jakarta.xml.bind - 2.3.2 - - 4.0.0 - - jakarta.xml.bind-api - jar - - - ${project.basedir}/../etc/config - ${project.basedir}/.. - - - - - jakarta.activation - jakarta.activation-api - - - - - - - - - maven-enforcer-plugin - - - - [1.8,) - - - [3.0.3,) - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.7 - - - xml - - - 45 - 45 - true - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - ${project.basedir}/copyright.txt - ${project.basedir}/copyright-exclude - - true - - true - - false - - false - - - - maven-jar-plugin - 3.1.0 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - true - {0,date,yyyy-MM-dd'T'HH:mm:ssZ} - 7 - false - - - - org.apache.felix - maven-bundle-plugin - 3.5.1 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - <_noee>true - ${project.version} - ${extension.name} - ${spec.version}.${impl.version} - ${spec.version} - ${api.package}.*; version=${spec.version}.${impl.version} - - javax.activation;version=!, - javax.xml.bind;version="[${spec.version},3)", - javax.xml.bind.annotation;version="[${spec.version},3)", - javax.xml.bind.annotation.adapters;version="[${spec.version},3)", - javax.xml.bind.attachment;version="[${spec.version},3)", - javax.xml.bind.helpers;version="[${spec.version},3)", - javax.xml.bind.util;version="[${spec.version},3)", - javax.xml.datatype, - javax.xml.namespace, - javax.xml.parsers, - javax.xml.stream, - javax.xml.transform, - javax.xml.transform.dom, - javax.xml.transform.sax, - javax.xml.transform.stream, - javax.xml.validation, - org.w3c.dom, - org.xml.sax, - org.xml.sax.ext, - org.xml.sax.helpers - - ${extension.name}-api - org.glassfish.hk2.osgiresourcelocator - ${vendor.name} - ${scmBranch}-${buildNumber}, ${timestamp} - true - - - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - ${findbugs.skip} - ${findbugs.threshold} - true - - ${findbugs.exclude} - - true - -Xms64m -Xmx256m - - - - org.glassfish.findbugs - findbugs - 1.0 - - - - - maven-javadoc-plugin - - none - false - false - true - true - -JAXB ${project.version} API Library -${project.name} specification, ${release.spec.date}
-Comments to: ${release.spec.feedback}
-More information at: https://projects.eclipse.org/projects/ee4j.jaxb

 

${project.name}


-
 
]]> -
-
v${project.version}]]> -
- - Copyright © {inceptionYear}–{currentYear} Oracle and/or its affiliates. - All rights reserved.
Comments to : ${release.spec.feedback}.]]> -
- false - - - apiNote - - a - API Note: - - - implSpec - - a - Implementation Requirements: - - - implNote - - a - Implementation Note: - - -
-
-
-
- - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-legal-resource - generate-resources - - add-resource - - - - - ${legal.doc.source} - - NOTICE.md - LICENSE.md - - META-INF - - - - - - add-mr-resource - prepare-package - - add-resource - - - - - ${project.basedir}/src/main/mr-jar - META-INF/versions/9 - - - - - - - - maven-enforcer-plugin - - - enforce-versions - - enforce - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - validate - - create - - - - - - maven-compiler-plugin - - - default-compile - - 8 - - module-info.java - - - - - module-info-compile - - compile - - - 9 - - module-info.java - - - - - default-compile-mr - - compile - - - 9 - - ${project.basedir}/src/main/mr-jar - - ${project.build.outputDirectory}/META-INF/versions/9 - - - - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - - - - -
-
diff --git a/tauri_app/docker/offline-maven/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar b/tauri_app/docker/offline-maven/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar deleted file mode 100644 index a8a470a..0000000 Binary files a/tauri_app/docker/offline-maven/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom b/tauri_app/docker/offline-maven/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom deleted file mode 100644 index 0c982b4..0000000 --- a/tauri_app/docker/offline-maven/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom +++ /dev/null @@ -1,338 +0,0 @@ - - - - - 4.0.0 - - net.java - jvnet-parent - 3 - - - javax.annotation - javax.annotation-api - 1.3.2 - - - false - 1.3 - javax.annotation - javax.annotation-api - Oracle Corporation - org.glassfish - 2.3.1 - exclude.xml - Low - - ${extension.name} API - Common Annotations for the JavaTM Platform API - - http://jcp.org/en/jsr/detail?id=250 - - - - ldemichiel - Linda De Michiel - Oracle Corp. - - lead - - - - - - GlassFish Community - https://javaee.github.io/glassfish - - - - CDDL + GPLv2 with classpath exception - https://github.com/javaee/javax.annotation/blob/master/LICENSE - repo - A business-friendly OSS license - - - - GitHub - https://github.com/javaee/javax.annotation/issues - - - - GlassFish Developer - javaee-spec@javaee.groups.io - - - - scm:git:https://github.com/javaee/javax.annotation.git - scm:git:git@github.com:javaee/javax.annotation.git - https://github.com/javaee/javax.annotation - 1.3.2 - - - - - - src/main/java - - **/*.properties - **/*.html - - - - src/main/resources - - META-INF/README - - - - - - maven-compiler-plugin - 2.5.1 - - 1.8 - 1.8 - -Xlint:unchecked - - - - org.glassfish.build - spec-version-maven-plugin - 1.2 - - - ${non.final} - api - ${spec.build} - ${spec.version} - ${new.spec.version} - ${project.version} - ${extension.name} - - - - - - set-spec-properties - check-module - - - - - - org.apache.felix - maven-bundle-plugin - 1.4.3 - - - jar - - - ${spec.bundle.version} - ${spec.bundle.symbolic-name} - ${spec.extension.name} - ${spec.implementation.version} - ${spec.specification.version} - - Java(TM) Common Annotations ${spec.version} API Design Specification - - ${vendor.name} - ${project.organization.name} - ${implementation.vendor.id} - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - java.annotation - - - - - **/*.java - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.2.1 - - - - process - - - - org.glassfish:legal:1.1 - - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1 - - true - - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8 - - - attach-javadocs - - jar - - - - javadoc - - javadoc - - - - - Common Annotations API Documentation - javax.annotation - - - -Oracle - and/or its affiliates. All Rights Reserved. - Use is subject to - license terms. -]]> - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - ${findbugs.version} - - ${findbugs.threshold} - ${findbugs.exclude} - true - true - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - forked-path - false - ${release.arguments} - @{project.version} - - - - org.apache.maven.plugins - maven-site-plugin - 3.1 - - - - - org.codehaus.mojo - findbugs-maven-plugin - ${findbugs.version} - - ${findbugs.threshold} - ${findbugs.exclude} - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - diff --git a/tauri_app/docker/offline-maven/javax/inject/javax.inject/1/javax.inject-1.jar b/tauri_app/docker/offline-maven/javax/inject/javax.inject/1/javax.inject-1.jar deleted file mode 100644 index b2a9d0b..0000000 Binary files a/tauri_app/docker/offline-maven/javax/inject/javax.inject/1/javax.inject-1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/javax/inject/javax.inject/1/javax.inject-1.pom b/tauri_app/docker/offline-maven/javax/inject/javax.inject/1/javax.inject-1.pom deleted file mode 100644 index 79c0cca..0000000 --- a/tauri_app/docker/offline-maven/javax/inject/javax.inject/1/javax.inject-1.pom +++ /dev/null @@ -1,20 +0,0 @@ - - 4.0.0 - javax.inject - javax.inject - jar - javax.inject - 1 - The javax.inject API - http://code.google.com/p/atinject/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - http://code.google.com/p/atinject/source/checkout - - diff --git a/tauri_app/docker/offline-maven/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar b/tauri_app/docker/offline-maven/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar deleted file mode 100644 index 91b2635..0000000 Binary files a/tauri_app/docker/offline-maven/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.pom b/tauri_app/docker/offline-maven/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.pom deleted file mode 100644 index 8709a96..0000000 --- a/tauri_app/docker/offline-maven/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.pom +++ /dev/null @@ -1,61 +0,0 @@ - - 4.0.0 - - net.java.dev.jna - jna-platform - 5.6.0 - jar - - Java Native Access Platform - Java Native Access Platform - https://github.com/java-native-access/jna - - - - LGPL, version 2.1 - http://www.gnu.org/licenses/licenses.html - repo - - - Apache License v2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:https://github.com/java-native-access/jna - scm:git:ssh://git@github.com/java-native-access/jna.git - https://github.com/java-native-access/jna - - - - - twall - Timothy Wall - - Owner - - - - mblaesing@doppel-helix.eu - Matthias Bläsing - https://github.com/matthiasblaesing/ - - Developer - - - - - - - net.java.dev.jna - jna - 5.6.0 - - - - diff --git a/tauri_app/docker/offline-maven/net/java/dev/jna/jna/5.6.0/jna-5.6.0.jar b/tauri_app/docker/offline-maven/net/java/dev/jna/jna/5.6.0/jna-5.6.0.jar deleted file mode 100644 index fda5aa4..0000000 Binary files a/tauri_app/docker/offline-maven/net/java/dev/jna/jna/5.6.0/jna-5.6.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/net/java/dev/jna/jna/5.6.0/jna-5.6.0.pom b/tauri_app/docker/offline-maven/net/java/dev/jna/jna/5.6.0/jna-5.6.0.pom deleted file mode 100644 index 5d02859..0000000 --- a/tauri_app/docker/offline-maven/net/java/dev/jna/jna/5.6.0/jna-5.6.0.pom +++ /dev/null @@ -1,53 +0,0 @@ - - 4.0.0 - - net.java.dev.jna - jna - 5.6.0 - jar - - Java Native Access - Java Native Access - https://github.com/java-native-access/jna - - - - LGPL, version 2.1 - http://www.gnu.org/licenses/licenses.html - repo - - - Apache License v2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:git:https://github.com/java-native-access/jna - scm:git:ssh://git@github.com/java-native-access/jna.git - https://github.com/java-native-access/jna - - - - - twall - Timothy Wall - - Owner - - - - mblaesing@doppel-helix.eu - Matthias Bläsing - https://github.com/matthiasblaesing/ - - Developer - - - - - diff --git a/tauri_app/docker/offline-maven/net/sf/jopt-simple/jopt-simple/4.9/jopt-simple-4.9.jar b/tauri_app/docker/offline-maven/net/sf/jopt-simple/jopt-simple/4.9/jopt-simple-4.9.jar deleted file mode 100644 index 7c580a9..0000000 Binary files a/tauri_app/docker/offline-maven/net/sf/jopt-simple/jopt-simple/4.9/jopt-simple-4.9.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/net/sf/jopt-simple/jopt-simple/4.9/jopt-simple-4.9.pom b/tauri_app/docker/offline-maven/net/sf/jopt-simple/jopt-simple/4.9/jopt-simple-4.9.pom deleted file mode 100644 index 6ea5c22..0000000 --- a/tauri_app/docker/offline-maven/net/sf/jopt-simple/jopt-simple/4.9/jopt-simple-4.9.pom +++ /dev/null @@ -1,344 +0,0 @@ - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - - net.sf.jopt-simple - jopt-simple - 4.9 - jar - JOpt Simple - http://pholser.github.com/jopt-simple - A Java library for parsing command line options - - - The MIT License - http://www.opensource.org/licenses/mit-license.php - repo - - - - scm:git:git://github.com/pholser/jopt-simple.git - scm:git:ssh://git@github.com/pholser/jopt-simple.git - http://github.com/pholser/jopt-simple - - - GitHub - http://github.com/pholser/jopt-simple/issues - - - - pholser - Paul Holser - pholser@alumni.rice.edu - http://www.pholser.com - - - - UTF-8 - UTF-8 - UTF-8 - - - - joda-time - joda-time - 2.3 - test - - - org.apache.ant - ant - 1.8.4 - test - - - - com.googlecode.jmockit - jmockit - 1.6 - test - - - org.hamcrest - hamcrest-all - 1.3 - test - - - junit - junit - 4.12 - test - - - org.infinitest - continuous-testing-toolkit - 1.0 - test - - - org.hamcrest - hamcrest-all - - - - - - - - org.apache.maven.scm - maven-scm-provider-gitexe - 1.9.2 - - - org.apache.maven.scm - maven-scm-manager-plexus - 1.9.2 - - - org.kathrynhuxtable.maven.wagon - wagon-gitsite - 0.3.1 - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.2 - - 1.5 - 1.5 - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.13 - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - check-signature - - check - - - - - - - org.apache.felix - maven-bundle-plugin - 2.3.7 - true - - - ${project.groupId}.${project.artifactId} - ${project.artifactId} - ${project.version} - ${project.name} - joptsimple,joptsimple.util - joptsimple.internal - - - - - package - - bundle - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.4 - - - true - 97 - 99 - - - - - - clean - check - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.4 - - 40 - 1.5 - - - - compile - - cpd-check - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - paste-examples - post-site - - - - - - - - - - - run - - - - - - maven-site-plugin - 3.3 - - UTF-8 - - - - org.pitest - pitest-maven - 1.1.4 - - - joptsimple* - - - *Test - - - equals - hashCode - - - joptsimple.examples* - *EqualsHash*Test - *TestCase - *Fixture - *Harness - *Matchers - *Ctor - *Problematic - *ValueOfHaver - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - ${disable-doclint} - 1.5 - public - joptsimple.examples:joptsimple.internal:joptsimple.internal.* - - http://download.oracle.com/javase/1.5.0/docs/api - - © Copyright 2004-2015 Paul R. Holser, Jr. All rights reserved. Licensed under The MIT License. pholser@alumni.rice.edu]]> - - - - - javadoc - - - - - - org.codehaus.mojo - javancss-maven-plugin - 2.0 - - - org.codehaus.mojo - cobertura-maven-plugin - 2.4 - - - xml - html - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.5 - - Low - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.4 - - 40 - 1.5 - - - - - - - github-project-site - gitsite:git@github.com/pholser/jopt-simple.git - - - - - - javadoc-8-broken - - 1.8 - - - -Xdoclint:none - - - - diff --git a/tauri_app/docker/offline-maven/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.jar b/tauri_app/docker/offline-maven/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.jar deleted file mode 100644 index 6470952..0000000 Binary files a/tauri_app/docker/offline-maven/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.pom b/tauri_app/docker/offline-maven/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.pom deleted file mode 100644 index 0877547..0000000 --- a/tauri_app/docker/offline-maven/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.pom +++ /dev/null @@ -1,32 +0,0 @@ - - 4.0.0 - net.sf.kxml - kxml2 - 2.3.0 - jar - kXML 2 is a small XML pull parser based on the common XML pull API - http://kxml.sourceforge.net/ - kXML is a small XML pull parser, specially designed for constrained environments such as Applets, Personal Java or MIDP devices. In contrast to kXML 1, kXML 2 is based on the common XML pull API. - - - BSD style - http://kxml.cvs.sourceforge.net/viewvc/kxml/kxml2/license.txt?view=markup - repo - The license applies to the kXML2 classes (all classes below the org.kxml2 package). - - - Public Domain - http://creativecommons.org/licenses/publicdomain - repo - The license applies to the XmlPull API (all classes directly in the org.xmlpull.v1 package) - - - - http://kxml.cvs.sourceforge.net/viewvc/kxml/kxml2/ - - - Stefan Haustein, Oberhausen, Rhld., Germany - http://kxml.sourceforge.net/ - - - diff --git a/tauri_app/docker/offline-maven/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar b/tauri_app/docker/offline-maven/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar deleted file mode 100644 index 4892334..0000000 Binary files a/tauri_app/docker/offline-maven/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom b/tauri_app/docker/offline-maven/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom deleted file mode 100644 index 757312c..0000000 --- a/tauri_app/docker/offline-maven/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom +++ /dev/null @@ -1,586 +0,0 @@ - - - - 4.0.0 - - org.apache.commons - commons-parent - 52 - - - commons-compress - 1.21 - Apache Commons Compress - https://commons.apache.org/proper/commons-compress/ - 2002 - - -Apache Commons Compress software defines an API for working with -compression and archive formats. These include: bzip2, gzip, pack200, -lzma, xz, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4, -Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj. - - - - 1.8 - 1.8 - - 5.1.2 - - compress - org.apache.commons.compress - COMPRESS - 12310904 - - ${project.version} - RC1 - - 1.20 - 3.11.1 - 3.14.0 - - ${project.build.outputDirectory}/META-INF - ${commons.manifestlocation}/MANIFEST.MF - - org.tukaani.xz;resolution:=optional, - org.brotli.dec;resolution:=optional, - com.github.luben.zstd;resolution:=optional, - org.objectweb.asm;resolution:=optional, - javax.crypto.*;resolution:=optional, - * - - - - true - - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} - false - - 4.13.1 - 1.7.30 - 0.8.7 - 0.15.3 - 3.3.0 - - - - jira - https://issues.apache.org/jira/browse/COMPRESS - - - - - org.hamcrest - hamcrest - 2.2 - test - - - junit - junit - 4.13.2 - test - - - com.github.luben - zstd-jni - 1.5.0-2 - true - - - org.brotli - dec - 0.1.2 - true - - - org.tukaani - xz - 1.9 - true - - - - - asm - asm - 3.2 - true - - - - - org.mockito - mockito-core - ${mockito.version} - test - - - com.github.marschall - memoryfilesystem - 2.1.0 - test - - - - - org.ops4j.pax.exam - pax-exam-container-native - ${pax.exam.version} - test - - - org.ops4j.pax.exam - pax-exam-junit4 - ${pax.exam.version} - test - - - org.ops4j.pax.exam - pax-exam-cm - ${pax.exam.version} - test - - - org.ops4j.pax.exam - pax-exam-link-mvn - ${pax.exam.version} - test - - - org.apache.felix - org.apache.felix.framework - 7.0.0 - test - - - javax.inject - javax.inject - 1 - test - - - org.slf4j - slf4j-api - ${slf4j.version} - test - - - - org.osgi - org.osgi.core - 6.0.0 - provided - - - - - - Torsten Curdt - tcurdt - tcurdt at apache.org - - - Stefan Bodewig - bodewig - bodewig at apache.org - - - Sebastian Bazley - sebb - sebb at apache.org - - - Christian Grobmeier - grobmeier - grobmeier at apache.org - - - Julius Davies - julius - julius at apache.org - - - Damjan Jovanovic - damjan - damjan at apache.org - - - Emmanuel Bourg - ebourg - ebourg at apache.org - - - ggregory - Gary Gregory - ggregory at apache.org - https://www.garygregory.com - The Apache Software Foundation - https://www.apache.org/ - - PMC Member - - America/New_York - - https://people.apache.org/~ggregory/img/garydgregory80.png - - - - Rob Tompkins - chtompki - chtompki at apache.org - - - Peter Alfred Lee - peterlee - peterlee at apache.org - - - - - - Wolfgang Glas - wolfgang.glas at ev-i.at - - - Christian Kohlschütte - ck@newsclub.de - - - Bear Giles - bgiles@coyotesong.com - - - Michael Kuss - mail at michael minus kuss.de - - - Lasse Collin - lasse.collin@tukaani.org - - - John Kodis - - - BELUGA BEHR - - - Simon Spero - sesuncedu@gmail.com - - - Michael Hausegger - hausegger.michael@googlemail.com - - - - - scm:git:https://gitbox.apache.org/repos/asf/commons-compress.git - scm:git:https://gitbox.apache.org/repos/asf/commons-compress.git - https://gitbox.apache.org/repos/asf?p=commons-compress.git - - - - clean package apache-rat:check japicmp:cmp javadoc:javadoc - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${commons.javadoc.version} - - ${maven.compiler.source} - true - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - Immutable - a - This class is immutable - - - NotThreadSafe - a - This class is not thread-safe - - - ThreadSafe - a - This class is thread-safe - - - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - src/test/resources/** - .pmd - .projectile - .mvn/** - - - - - org.eluder.coveralls - coveralls-maven-plugin - - false - - - - org.apache.felix - maven-bundle-plugin - ${commons.felix.version} - - - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - maven-jar-plugin - - - - org.apache.commons.compress.archivers.Lister - org.apache.commons.compress - ${commons.module.name} - - - - - - org.apache.felix - maven-bundle-plugin - - ${commons.manifestlocation} - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - org.apache.maven.plugins - maven-pmd-plugin - ${commons.pmd-plugin.version} - - - org.apache.maven.plugins - maven-antrun-plugin - - - process-test-resources - - - - - - - run - - - - - - maven-surefire-plugin - - - ${karaf.version} - ${project.version} - - - - - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - ${commons.pmd-plugin.version} - - 200 - ${maven.compiler.source} - - ${basedir}/pmd-ruleset.xml - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${maven.compiler.source} - true - ${commons.encoding} - ${commons.docEncoding} - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - Immutable - a - This class is immutable - - - NotThreadSafe - a - This class is not thread-safe - - - ThreadSafe - a - This class is thread-safe - - - - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - Normal - Default - ${basedir}/findbugs-exclude-filter.xml - - - - - - - - - run-zipit - - - - org.apache.maven.plugins - maven-antrun-plugin - - - process-test-resources - - - - - - - run - - - - - - maven-surefire-plugin - - - **/zip/*IT.java - - - - - - - - run-tarit - - - - maven-surefire-plugin - - - **/tar/*IT.java - - - - - - - - java11+ - - [11,) - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 8 - - - - - - - java9+ - - [9,) - - - 9 - true - - true - - - - - - diff --git a/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar b/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar deleted file mode 100644 index 2bb7c07..0000000 Binary files a/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.pom b/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.pom deleted file mode 100644 index 44fac92..0000000 --- a/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.pom +++ /dev/null @@ -1,207 +0,0 @@ - - - 4.0.0 - - org.apache.httpcomponents - httpcomponents-client - 4.5.14 - - httpclient - Apache HttpClient - - Apache HttpComponents Client - - http://hc.apache.org/httpcomponents-client-ga - jar - - - - org.apache.httpcomponents - httpcore - compile - - - commons-logging - commons-logging - compile - - - commons-codec - commons-codec - compile - - - junit - junit - test - - - org.mockito - mockito-core - test - - - - - - - src/main/resources - true - - **/*.properties - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-source - generate-sources - - add-source - - - - src/main/java-deprecated - - - - - - - com.googlecode.maven-download-plugin - download-maven-plugin - 1.2.1 - - - download-public-suffix-list - generate-sources - - wget - - - https://publicsuffix.org/list/effective_tld_names.dat - ${project.build.outputDirectory}/mozilla - public-suffix-list.txt - - - - - - maven-jar-plugin - - - default-jar - package - - jar - test-jar - - - - - org.apache.httpcomponents.httpclient - - - - - - - - - - - - - - maven-javadoc-plugin - ${hc.javadoc.version} - - - true - ${maven.compiler.source} - - http://docs.oracle.com/javase/6/docs/api/ - https://hc.apache.org/httpcomponents-core-4.4.x/current/httpcore/apidocs/ - - - - - - javadoc - - - - - - - maven-project-info-reports-plugin - false - - - - dependencies - dependency-info - summary - - - - - - - maven-jxr-plugin - - - - maven-surefire-report-plugin - - - - - - - - release - - - - com.googlecode.maven-download-plugin - download-maven-plugin - - true - true - - - - - - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar b/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar deleted file mode 100644 index f0bdebe..0000000 Binary files a/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.pom b/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.pom deleted file mode 100644 index e0f720e..0000000 --- a/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.pom +++ /dev/null @@ -1,157 +0,0 @@ - - - 4.0.0 - - org.apache.httpcomponents - httpcomponents-core - 4.4.16 - - httpcore - Apache HttpCore - 2005 - - Apache HttpComponents Core (blocking I/O) - - http://hc.apache.org/httpcomponents-core-ga - jar - - - - junit - junit - test - - - org.mockito - mockito-core - test - - - commons-logging - commons-logging - test - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-source - generate-sources - - add-source - - - - src/main/java-deprecated - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - org.apache.httpcomponents.httpcore - - - - - - - - src/main/resources - true - - **/*.properties - - - - - - - - - - maven-javadoc-plugin - - - true - ${maven.compiler.source} - - http://docs.oracle.com/javase/6/docs/api/ - - - - - - javadoc - - - - - - - maven-project-info-reports-plugin - false - - - - dependencies - dependency-info - summary - - - - - - - maven-jxr-plugin - - - - maven-surefire-report-plugin - - - - - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6.jar b/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6.jar deleted file mode 100644 index df5a7d1..0000000 Binary files a/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6.pom b/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6.pom deleted file mode 100644 index 28f459f..0000000 --- a/tauri_app/docker/offline-maven/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6.pom +++ /dev/null @@ -1,163 +0,0 @@ - - - 4.0.0 - - org.apache.httpcomponents - httpcomponents-client - 4.5.6 - - httpmime - Apache HttpClient Mime - - Apache HttpComponents HttpClient - MIME coded entities - - http://hc.apache.org/httpcomponents-client - jar - - - - org.apache.httpcomponents - httpclient - ${project.version} - compile - - - - junit - junit - test - - - - - - - src/main/resources - true - - **/*.properties - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.8 - - - add-source - generate-sources - - add-source - - - - src/main/java-deprecated - - - - - - - maven-jar-plugin - - - default-jar - package - - jar - - - - - org.apache.httpcomponents.httpmime - - - - - - - - - - - - - - maven-javadoc-plugin - ${hc.javadoc.version} - - - true - ${maven.compiler.source} - - http://docs.oracle.com/javase/6/docs/api/ - http://hc.apache.org/httpcomponents-core-ga/httpcore/apidocs/ - - - - - - javadoc - - - - - - - maven-project-info-reports-plugin - false - - - - dependencies - dependency-info - summary - - - - - - - maven-jxr-plugin - - - - maven-surefire-report-plugin - - - - - - diff --git a/tauri_app/docker/offline-maven/org/bitbucket/b_c/jose4j/0.9.5/jose4j-0.9.5.jar b/tauri_app/docker/offline-maven/org/bitbucket/b_c/jose4j/0.9.5/jose4j-0.9.5.jar deleted file mode 100644 index ee3b65c..0000000 Binary files a/tauri_app/docker/offline-maven/org/bitbucket/b_c/jose4j/0.9.5/jose4j-0.9.5.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/bitbucket/b_c/jose4j/0.9.5/jose4j-0.9.5.pom b/tauri_app/docker/offline-maven/org/bitbucket/b_c/jose4j/0.9.5/jose4j-0.9.5.pom deleted file mode 100644 index 06db368..0000000 --- a/tauri_app/docker/offline-maven/org/bitbucket/b_c/jose4j/0.9.5/jose4j-0.9.5.pom +++ /dev/null @@ -1,263 +0,0 @@ - - - - 4.0.0 - - org.bitbucket.b_c - jose4j - 0.9.5 - jar - jose4j - - The jose.4.j library is a robust and easy to use open source implementation of JSON Web Token (JWT) and the JOSE specification suite (JWS, JWE, and JWK). - It is written in Java and relies solely on the JCA APIs for cryptography. - Please see https://bitbucket.org/b_c/jose4j/wiki/Home for more info, examples, etc.. - - https://bitbucket.org/b_c/jose4j/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - Brian Campbell - brian.d.campbell@gmail.com - https://plus.google.com/109358381977638517286/about - - - - - UTF-8 - - - - - org.slf4j - slf4j-api - 1.7.36 - - - - junit - junit - 4.13.2 - test - - - - ch.qos.logback - logback-classic - 1.2.11 - test - - - - org.bouncycastle - bcprov-jdk15on - 1.70 - test - - - - org.mockito - mockito-core - 2.28.2 - test - - - - - - - sonatype-nexus-snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - sonatype-nexus-staging - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 1.7 - 1.7 - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - true - false - release - deploy - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.1 - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - sonatype-nexus-staging - https://oss.sonatype.org/ - true - - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - org.jose4j - - - - - - org.apache.felix - maven-bundle-plugin - 2.3.5 - true - - - bundle-manifest - process-classes - - manifest - - - - - - - - - - release - - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.5.2 - - - - - - scm:git:https://bitbucket.org/b_c/jose4j.git - scm:git:ssh://git@bitbucket.org/b_c/jose4j.git - https://bitbucket.org/b_c/jose4j - jose4j-0.9.5 - - diff --git a/tauri_app/docker/offline-maven/org/bouncycastle/bcpkix-jdk18on/1.79/bcpkix-jdk18on-1.79.jar b/tauri_app/docker/offline-maven/org/bouncycastle/bcpkix-jdk18on/1.79/bcpkix-jdk18on-1.79.jar deleted file mode 100644 index 1ef15b5..0000000 Binary files a/tauri_app/docker/offline-maven/org/bouncycastle/bcpkix-jdk18on/1.79/bcpkix-jdk18on-1.79.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/bouncycastle/bcpkix-jdk18on/1.79/bcpkix-jdk18on-1.79.pom b/tauri_app/docker/offline-maven/org/bouncycastle/bcpkix-jdk18on/1.79/bcpkix-jdk18on-1.79.pom deleted file mode 100644 index b46007f..0000000 --- a/tauri_app/docker/offline-maven/org/bouncycastle/bcpkix-jdk18on/1.79/bcpkix-jdk18on-1.79.pom +++ /dev/null @@ -1,46 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcpkix-jdk18on - jar - Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs - 1.79 - The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar contains APIs for JDK 1.8 and up. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs. - https://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - https://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - - - org.bouncycastle - bcprov-jdk18on - 1.79 - jar - - - org.bouncycastle - bcutil-jdk18on - 1.79 - jar - - - diff --git a/tauri_app/docker/offline-maven/org/bouncycastle/bcprov-jdk18on/1.79/bcprov-jdk18on-1.79.jar b/tauri_app/docker/offline-maven/org/bouncycastle/bcprov-jdk18on/1.79/bcprov-jdk18on-1.79.jar deleted file mode 100644 index ce7a6a3..0000000 Binary files a/tauri_app/docker/offline-maven/org/bouncycastle/bcprov-jdk18on/1.79/bcprov-jdk18on-1.79.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/bouncycastle/bcprov-jdk18on/1.79/bcprov-jdk18on-1.79.pom b/tauri_app/docker/offline-maven/org/bouncycastle/bcprov-jdk18on/1.79/bcprov-jdk18on-1.79.pom deleted file mode 100644 index f35201a..0000000 --- a/tauri_app/docker/offline-maven/org/bouncycastle/bcprov-jdk18on/1.79/bcprov-jdk18on-1.79.pom +++ /dev/null @@ -1,32 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcprov-jdk18on - jar - Bouncy Castle Provider - 1.79 - The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.8 and up. - https://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - https://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - diff --git a/tauri_app/docker/offline-maven/org/bouncycastle/bcutil-jdk18on/1.79/bcutil-jdk18on-1.79.jar b/tauri_app/docker/offline-maven/org/bouncycastle/bcutil-jdk18on/1.79/bcutil-jdk18on-1.79.jar deleted file mode 100644 index ca067e7..0000000 Binary files a/tauri_app/docker/offline-maven/org/bouncycastle/bcutil-jdk18on/1.79/bcutil-jdk18on-1.79.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/bouncycastle/bcutil-jdk18on/1.79/bcutil-jdk18on-1.79.pom b/tauri_app/docker/offline-maven/org/bouncycastle/bcutil-jdk18on/1.79/bcutil-jdk18on-1.79.pom deleted file mode 100644 index 49dad6d..0000000 --- a/tauri_app/docker/offline-maven/org/bouncycastle/bcutil-jdk18on/1.79/bcutil-jdk18on-1.79.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - 4.0.0 - org.bouncycastle - bcutil-jdk18on - jar - Bouncy Castle ASN.1 Extension and Utility APIs - 1.79 - The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.8 and up. - https://www.bouncycastle.org/java.html - - - Bouncy Castle Licence - https://www.bouncycastle.org/licence.html - repo - - - - https://github.com/bcgit/bc-java - - - GitHub - https://github.com/bcgit/bc-java/issues - - - - feedback-crypto - The Legion of the Bouncy Castle Inc. - feedback-crypto@bouncycastle.org - - - - - org.bouncycastle - bcprov-jdk18on - 1.79 - jar - - - diff --git a/tauri_app/docker/offline-maven/org/checkerframework/checker-qual/3.43.0/checker-qual-3.43.0.jar b/tauri_app/docker/offline-maven/org/checkerframework/checker-qual/3.43.0/checker-qual-3.43.0.jar deleted file mode 100644 index cbb34f8..0000000 Binary files a/tauri_app/docker/offline-maven/org/checkerframework/checker-qual/3.43.0/checker-qual-3.43.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/checkerframework/checker-qual/3.43.0/checker-qual-3.43.0.pom b/tauri_app/docker/offline-maven/org/checkerframework/checker-qual/3.43.0/checker-qual-3.43.0.pom deleted file mode 100644 index a707187..0000000 --- a/tauri_app/docker/offline-maven/org/checkerframework/checker-qual/3.43.0/checker-qual-3.43.0.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - 4.0.0 - org.checkerframework - checker-qual - 3.43.0 - Checker Qual - checker-qual contains annotations (type qualifiers) that a programmer -writes to specify Java code for type-checking by the Checker Framework. - - https://checkerframework.org/ - - - The MIT License - http://opensource.org/licenses/MIT - repo - - - - - mernst - Michael Ernst - mernst@cs.washington.edu - https://homes.cs.washington.edu/~mernst/ - University of Washington - https://www.cs.washington.edu/ - - - smillst - Suzanne Millstein - smillst@cs.washington.edu - University of Washington - https://www.cs.washington.edu/ - - - - scm:git:https://github.com/typetools/checker-framework.git - scm:git:ssh://git@github.com/typetools/checker-framework.git - https://github.com/typetools/checker-framework.git - - diff --git a/tauri_app/docker/offline-maven/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.jar b/tauri_app/docker/offline-maven/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.jar deleted file mode 100644 index 2ae1a72..0000000 Binary files a/tauri_app/docker/offline-maven/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.pom b/tauri_app/docker/offline-maven/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.pom deleted file mode 100644 index fc89d01..0000000 --- a/tauri_app/docker/offline-maven/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.pom +++ /dev/null @@ -1,37 +0,0 @@ - - - - 4.0.0 - - - org.codehaus.mojo - animal-sniffer-parent - 1.24 - - - animal-sniffer-annotations - Animal Sniffer Annotations - - diff --git a/tauri_app/docker/offline-maven/org/glassfish/jaxb/jaxb-runtime/2.3.2/jaxb-runtime-2.3.2.jar b/tauri_app/docker/offline-maven/org/glassfish/jaxb/jaxb-runtime/2.3.2/jaxb-runtime-2.3.2.jar deleted file mode 100644 index 62f8719..0000000 Binary files a/tauri_app/docker/offline-maven/org/glassfish/jaxb/jaxb-runtime/2.3.2/jaxb-runtime-2.3.2.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/glassfish/jaxb/jaxb-runtime/2.3.2/jaxb-runtime-2.3.2.pom b/tauri_app/docker/offline-maven/org/glassfish/jaxb/jaxb-runtime/2.3.2/jaxb-runtime-2.3.2.pom deleted file mode 100644 index 46ff243..0000000 --- a/tauri_app/docker/offline-maven/org/glassfish/jaxb/jaxb-runtime/2.3.2/jaxb-runtime-2.3.2.pom +++ /dev/null @@ -1,141 +0,0 @@ - - - - - 4.0.0 - - - com.sun.xml.bind.mvn - jaxb-runtime-parent - 2.3.2 - ../pom.xml - - - org.glassfish.jaxb - jaxb-runtime - - jar - JAXB Runtime - JAXB (JSR 222) Reference Implementation - - - ${project.basedir}/exclude-runtime.xml - - - - - jakarta.xml.bind - jakarta.xml.bind-api - - - ${project.groupId} - txw2 - ${project.version} - - - com.sun.istack - istack-commons-runtime - - - org.jvnet.staxex - stax-ex - - - com.sun.xml.fastinfoset - FastInfoset - - - junit - junit - test - - - jakarta.activation - jakarta.activation-api - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - target/test-out - 1 - true - - --add-opens com.sun.xml.bind/com.sun.xml.bind.v2=java.xml.bind - --add-opens com.sun.xml.bind/com.sun.xml.bind.v2.schemagen=java.xml.bind - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - prepare-module-path - validate - - copy-dependencies - - - ${module.path} - false - txw2,istack-commons-runtime,stax-ex,FastInfoset,jakarta.xml.bind-api - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - default-compile - - ${upper.java.level} - ${upper.java.level} - - - - base-compile - - compile - - - ${base.java.level} - - module-info.java - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - --add-modules - jakarta.activation - --module-path - ${module.path} - - - - - - diff --git a/tauri_app/docker/offline-maven/org/glassfish/jaxb/txw2/2.3.2/txw2-2.3.2.jar b/tauri_app/docker/offline-maven/org/glassfish/jaxb/txw2/2.3.2/txw2-2.3.2.jar deleted file mode 100644 index 0d5ac01..0000000 Binary files a/tauri_app/docker/offline-maven/org/glassfish/jaxb/txw2/2.3.2/txw2-2.3.2.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/glassfish/jaxb/txw2/2.3.2/txw2-2.3.2.pom b/tauri_app/docker/offline-maven/org/glassfish/jaxb/txw2/2.3.2/txw2-2.3.2.pom deleted file mode 100644 index 01d8d90..0000000 --- a/tauri_app/docker/offline-maven/org/glassfish/jaxb/txw2/2.3.2/txw2-2.3.2.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - - 4.0.0 - - - com.sun.xml.bind.mvn - jaxb-txw-parent - 2.3.2 - ../pom.xml - - - org.glassfish.jaxb - txw2 - jar - TXW2 Runtime - - - TXW is a library that allows you to write XML documents. - - - - ${project.basedir}/exclude-txw-runtime.xml - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - TXW Runtime - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - default-compile - - ${upper.java.level} - ${upper.java.level} - - - - base-compile - - compile - - - ${base.java.level} - - module-info.java - - - - - - - - - - diff --git a/tauri_app/docker/offline-maven/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar b/tauri_app/docker/offline-maven/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar deleted file mode 100644 index 2850ca1..0000000 Binary files a/tauri_app/docker/offline-maven/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom b/tauri_app/docker/offline-maven/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom deleted file mode 100644 index 38d06a2..0000000 --- a/tauri_app/docker/offline-maven/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom +++ /dev/null @@ -1,140 +0,0 @@ - - 4.0.0 - org.jdom - jdom2 - jar - - JDOM - 2.0.6 - - - A complete, Java-based solution for accessing, manipulating, - and outputting XML data - - http://www.jdom.org - - - JDOM - http://www.jdom.org - - - - - JDOM-interest Mailing List - jdom-interest@jdom.org - http://jdom.markmail.org/ - - - - - - Similar to Apache License but with the acknowledgment clause removed - https://raw.github.com/hunterhacker/jdom/master/LICENSE.txt - repo - . - - 4. Products derived from this software may not be called "JDOM", nor - may "JDOM" appear in their name, without prior written permission - from the JDOM Project Management . - - In addition, we request (but do not require) that you include in the - end-user documentation provided with the redistribution and/or in the - software itself an acknowledgement equivalent to the following: - "This product includes software developed by the - JDOM Project (http://www.jdom.org/)." - Alternatively, the acknowledgment may be graphical using the logos - available at http://www.jdom.org/images/logos. - - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - This software consists of voluntary contributions made by many - individuals on behalf of the JDOM Project and was originally - created by Jason Hunter and - Brett McLaughlin . For more information - on the JDOM Project, please see . - - */ - - - - ]]> - - - - - git@github.com:/hunterhacker/jdom - scm:git:git@github.com:hunterhacker/jdom - scm:git:git@github.com:hunterhacker/jdom - - - - - hunterhacker - Jason Hunter - jhunter@servlets.com - - - rolfl - Rolf Lear - jdom@tuis.net - - - - - - jaxen - jaxen - 1.1.6 - true - - - xerces - xercesImpl - 2.11.0 - true - - - xalan - xalan - 2.7.2 - true - - - - - - 1.5 - - \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/org/jetbrains/annotations/13.0/annotations-13.0.jar b/tauri_app/docker/offline-maven/org/jetbrains/annotations/13.0/annotations-13.0.jar deleted file mode 100644 index fb794be..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/annotations/13.0/annotations-13.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/annotations/13.0/annotations-13.0.pom b/tauri_app/docker/offline-maven/org/jetbrains/annotations/13.0/annotations-13.0.pom deleted file mode 100644 index ab9b560..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/annotations/13.0/annotations-13.0.pom +++ /dev/null @@ -1,139 +0,0 @@ - - - - 4.0.0 - - org.jetbrains - annotations - 13.0 - jar - - IntelliJ IDEA Annotations - A set of annotations used for code inspection support and code documentation. - http://www.jetbrains.org - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - A business-friendly OSS license - - - - - https://github.com/JetBrains/intellij-community - scm:git:https://github.com/JetBrains/intellij-community.git - - - - - JetBrains - JetBrains Team - JetBrains - http://www.jetbrains.com - - - - - UTF-8 - - - - - - maven-antrun-plugin - 1.7 - - - generate-sources - - - - - - - - - - - run - - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - - attach-sources - - jar - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - 1.5 - 1.5 - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - attach-javadocs - - jar - - - - - - - maven-gpg-plugin - 1.4 - - 66770193 - ${basedir}/.gnupg - - - - sign-artifacts - verify - - sign - - - - - - - - - - - sonatype-nexus-staging - http://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - sonatype-nexus-snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/annotations/23.0.0/annotations-23.0.0.jar b/tauri_app/docker/offline-maven/org/jetbrains/annotations/23.0.0/annotations-23.0.0.jar deleted file mode 100644 index 5119f5e..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/annotations/23.0.0/annotations-23.0.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/annotations/23.0.0/annotations-23.0.0.pom b/tauri_app/docker/offline-maven/org/jetbrains/annotations/23.0.0/annotations-23.0.0.pom deleted file mode 100644 index f6b1377..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/annotations/23.0.0/annotations-23.0.0.pom +++ /dev/null @@ -1,30 +0,0 @@ - - - 4.0.0 - org.jetbrains - annotations - 23.0.0 - JetBrains Java Annotations - A set of annotations used for code inspection support and code documentation. - https://github.com/JetBrains/java-annotations - - https://github.com/JetBrains/java-annotations - scm:git:git://github.com/JetBrains/java-annotations.git - scm:git:ssh://github.com:JetBrains/java-annotations.git - - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - JetBrains - JetBrains Team - JetBrains - https://www.jetbrains.com - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/intellij/deps/trove4j/1.0.20200330/trove4j-1.0.20200330.jar b/tauri_app/docker/offline-maven/org/jetbrains/intellij/deps/trove4j/1.0.20200330/trove4j-1.0.20200330.jar deleted file mode 100644 index 0b174bf..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/intellij/deps/trove4j/1.0.20200330/trove4j-1.0.20200330.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/intellij/deps/trove4j/1.0.20200330/trove4j-1.0.20200330.pom b/tauri_app/docker/offline-maven/org/jetbrains/intellij/deps/trove4j/1.0.20200330/trove4j-1.0.20200330.pom deleted file mode 100644 index 8a03ca8..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/intellij/deps/trove4j/1.0.20200330/trove4j-1.0.20200330.pom +++ /dev/null @@ -1,30 +0,0 @@ - - - 4.0.0 - org.jetbrains.intellij.deps - trove4j - 1.0.20200330 - Trove4J - Fork of trove4j library used in IntelliJ Platform. - https://github.com/JetBrains/intellij-deps-trove4j - - https://github.com/JetBrains/intellij-deps-trove4j - scm:git:git://github.com/JetBrains/intellij-deps-trove4j.git - scm:git:ssh://github.com:JetBrains/intellij-deps-trove4j.git - - - - GNU LESSER GENERAL PUBLIC LICENSE 2.1 - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html - repo - - - - - JetBrains - JetBrains Team - JetBrains - https://www.jetbrains.com - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-android-extensions/1.9.25/kotlin-android-extensions-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-android-extensions/1.9.25/kotlin-android-extensions-1.9.25.jar deleted file mode 100644 index 35cc549..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-android-extensions/1.9.25/kotlin-android-extensions-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-android-extensions/1.9.25/kotlin-android-extensions-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-android-extensions/1.9.25/kotlin-android-extensions-1.9.25.pom deleted file mode 100644 index a3b7dd8..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-android-extensions/1.9.25/kotlin-android-extensions-1.9.25.pom +++ /dev/null @@ -1,36 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-android-extensions - 1.9.25 - Kotlin Android Extensions - Kotlin Android Extensions Compiler - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-compiler-embeddable - 1.9.25 - runtime - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-build-tools-api/1.9.25/kotlin-build-tools-api-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-build-tools-api/1.9.25/kotlin-build-tools-api-1.9.25.jar deleted file mode 100644 index a27a7a5..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-build-tools-api/1.9.25/kotlin-build-tools-api-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-build-tools-api/1.9.25/kotlin-build-tools-api-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-build-tools-api/1.9.25/kotlin-build-tools-api-1.9.25.pom deleted file mode 100644 index d31ff52..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-build-tools-api/1.9.25/kotlin-build-tools-api-1.9.25.pom +++ /dev/null @@ -1,28 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-build-tools-api - 1.9.25 - Kotlin Build Tools Api - Kotlin Build Tools Api - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.9.25/kotlin-compiler-embeddable-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.9.25/kotlin-compiler-embeddable-1.9.25.jar deleted file mode 100644 index 83cf761..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.9.25/kotlin-compiler-embeddable-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.9.25/kotlin-compiler-embeddable-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.9.25/kotlin-compiler-embeddable-1.9.25.pom deleted file mode 100644 index c04af3b..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.9.25/kotlin-compiler-embeddable-1.9.25.pom +++ /dev/null @@ -1,66 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-compiler-embeddable - 1.9.25 - Kotlin Compiler Embeddable - Kotlin Compiler (embeddable) - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - runtime - - - org.jetbrains.kotlin - kotlin-script-runtime - 1.9.25 - runtime - - - org.jetbrains.kotlin - kotlin-reflect - 1.6.10 - runtime - - - * - * - - - - - org.jetbrains.kotlin - kotlin-daemon-embeddable - 1.9.25 - runtime - - - org.jetbrains.intellij.deps - trove4j - 1.0.20200330 - runtime - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-compiler-runner/1.9.25/kotlin-compiler-runner-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-compiler-runner/1.9.25/kotlin-compiler-runner-1.9.25.jar deleted file mode 100644 index 8fde070..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-compiler-runner/1.9.25/kotlin-compiler-runner-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-compiler-runner/1.9.25/kotlin-compiler-runner-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-compiler-runner/1.9.25/kotlin-compiler-runner-1.9.25.pom deleted file mode 100644 index a82eb46..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-compiler-runner/1.9.25/kotlin-compiler-runner-1.9.25.pom +++ /dev/null @@ -1,60 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-compiler-runner - 1.9.25 - Kotlin Compiler Runner - Compiler runner + daemon client - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-build-common - 1.9.25 - compile - - - org.jetbrains.kotlin - kotlin-daemon-client - 1.9.25 - compile - - - org.jetbrains.kotlinx - kotlinx-coroutines-core-jvm - 1.5.0 - compile - - - * - * - - - - - org.jetbrains.kotlin - kotlin-compiler-embeddable - 1.9.25 - runtime - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-daemon-client/1.9.25/kotlin-daemon-client-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-daemon-client/1.9.25/kotlin-daemon-client-1.9.25.jar deleted file mode 100644 index ff8b2f0..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-daemon-client/1.9.25/kotlin-daemon-client-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-daemon-client/1.9.25/kotlin-daemon-client-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-daemon-client/1.9.25/kotlin-daemon-client-1.9.25.pom deleted file mode 100644 index d516e35..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-daemon-client/1.9.25/kotlin-daemon-client-1.9.25.pom +++ /dev/null @@ -1,28 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-daemon-client - 1.9.25 - Kotlin Daemon Client - Kotlin Daemon Client - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.9.25/kotlin-daemon-embeddable-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.9.25/kotlin-daemon-embeddable-1.9.25.jar deleted file mode 100644 index 1335a05..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.9.25/kotlin-daemon-embeddable-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.9.25/kotlin-daemon-embeddable-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.9.25/kotlin-daemon-embeddable-1.9.25.pom deleted file mode 100644 index c3499c4..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.9.25/kotlin-daemon-embeddable-1.9.25.pom +++ /dev/null @@ -1,29 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-daemon-embeddable - 1.9.25 - Kotlin Daemon Embeddable - Kotlin Daemon (for using with embeddable compiler) - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-annotations/1.9.25/kotlin-gradle-plugin-annotations-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-annotations/1.9.25/kotlin-gradle-plugin-annotations-1.9.25.jar deleted file mode 100644 index 62d3bc9..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-annotations/1.9.25/kotlin-gradle-plugin-annotations-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-annotations/1.9.25/kotlin-gradle-plugin-annotations-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-annotations/1.9.25/kotlin-gradle-plugin-annotations-1.9.25.pom deleted file mode 100644 index c6b8528..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-annotations/1.9.25/kotlin-gradle-plugin-annotations-1.9.25.pom +++ /dev/null @@ -1,39 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-gradle-plugin-annotations - 1.9.25 - Kotlin Gradle Plugin Annotations - Kotlin Gradle Plugin Annotations - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - - org.jetbrains.kotlin - kotlin-gradle-plugins-bom - 1.9.25 - pom - import - - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.9.25/kotlin-gradle-plugin-api-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.9.25/kotlin-gradle-plugin-api-1.9.25.jar deleted file mode 100644 index 72d5672..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.9.25/kotlin-gradle-plugin-api-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.9.25/kotlin-gradle-plugin-api-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.9.25/kotlin-gradle-plugin-api-1.9.25.pom deleted file mode 100644 index 1f7b329..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.9.25/kotlin-gradle-plugin-api-1.9.25.pom +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - 4.0.0 - org.jetbrains.kotlin - kotlin-gradle-plugin-api - 1.9.25 - Kotlin Gradle Plugin Api - Kotlin Gradle Plugin Api - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - - org.jetbrains.kotlin - kotlin-gradle-plugins-bom - 1.9.25 - pom - import - - - - - - org.jetbrains.kotlin - kotlin-gradle-plugin-annotations - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-native-utils - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-project-model - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-tooling-core - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.9.25/kotlin-gradle-plugin-idea-proto-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.9.25/kotlin-gradle-plugin-idea-proto-1.9.25.jar deleted file mode 100644 index 8e13fde..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.9.25/kotlin-gradle-plugin-idea-proto-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.9.25/kotlin-gradle-plugin-idea-proto-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.9.25/kotlin-gradle-plugin-idea-proto-1.9.25.pom deleted file mode 100644 index 4ae8da8..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.9.25/kotlin-gradle-plugin-idea-proto-1.9.25.pom +++ /dev/null @@ -1,36 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-gradle-plugin-idea-proto - 1.9.25 - Kotlin Gradle Plugin Idea Proto - Kotlin Gradle Plugin Idea Proto - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-gradle-plugin-idea - 1.9.25 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.9.25/kotlin-gradle-plugin-idea-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.9.25/kotlin-gradle-plugin-idea-1.9.25.jar deleted file mode 100644 index 9dffb92..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.9.25/kotlin-gradle-plugin-idea-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.9.25/kotlin-gradle-plugin-idea-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.9.25/kotlin-gradle-plugin-idea-1.9.25.pom deleted file mode 100644 index 2dd75de..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.9.25/kotlin-gradle-plugin-idea-1.9.25.pom +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - 4.0.0 - org.jetbrains.kotlin - kotlin-gradle-plugin-idea - 1.9.25 - Kotlin Gradle Plugin Idea - Kotlin Gradle Plugin Idea - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-tooling-core - 1.9.25 - compile - - - org.jetbrains.kotlin - kotlin-gradle-plugin-annotations - 1.9.25 - compile - - - org.jetbrains.kotlin - kotlin-gradle-plugin-idea-proto - 1.9.25 - runtime - true - - - org.jetbrains.kotlin - kotlin-test-junit - 1.9.25 - runtime - true - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.9.25/kotlin-gradle-plugin-model-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.9.25/kotlin-gradle-plugin-model-1.9.25.jar deleted file mode 100644 index 48db405..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.9.25/kotlin-gradle-plugin-model-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.9.25/kotlin-gradle-plugin-model-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.9.25/kotlin-gradle-plugin-model-1.9.25.pom deleted file mode 100644 index 739977c..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.9.25/kotlin-gradle-plugin-model-1.9.25.pom +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - 4.0.0 - org.jetbrains.kotlin - kotlin-gradle-plugin-model - 1.9.25 - Kotlin Gradle Plugin Model - Kotlin Gradle Plugin Model - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - - org.jetbrains.kotlin - kotlin-gradle-plugins-bom - 1.9.25 - pom - import - - - - - - org.jetbrains.kotlin - kotlin-gradle-plugin-api - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-gradle-plugin-api - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - true - - - org.jetbrains.kotlin - kotlin-gradle-plugin-api - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - true - - - org.jetbrains.kotlin - kotlin-gradle-plugin-api - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - true - - - org.jetbrains.kotlin - kotlin-gradle-plugin-api - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - true - - - org.jetbrains.kotlin - kotlin-gradle-plugin-api - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - true - - - org.jetbrains.kotlin - kotlin-gradle-plugin-api - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - true - - - org.jetbrains.kotlin - kotlin-gradle-plugin-api - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - true - - - org.jetbrains.kotlin - kotlin-gradle-plugin-api - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - true - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin/1.9.25/kotlin-gradle-plugin-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin/1.9.25/kotlin-gradle-plugin-1.9.25.jar deleted file mode 100644 index c84ba7b..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin/1.9.25/kotlin-gradle-plugin-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin/1.9.25/kotlin-gradle-plugin-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin/1.9.25/kotlin-gradle-plugin-1.9.25.pom deleted file mode 100644 index 1aba93d..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-gradle-plugin/1.9.25/kotlin-gradle-plugin-1.9.25.pom +++ /dev/null @@ -1,434 +0,0 @@ - - - - - - - - 4.0.0 - org.jetbrains.kotlin - kotlin-gradle-plugin - 1.9.25 - Kotlin Gradle Plugin - Kotlin Gradle Plugin - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - - org.jetbrains.kotlin - kotlin-gradle-plugins-bom - 1.9.25 - pom - import - - - - - - org.jetbrains.kotlin - kotlin-gradle-plugin-api - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-gradle-plugin-model - 1.9.25 - compile - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-gradle-plugin-idea - 1.9.25 - runtime - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-gradle-plugin-idea-proto - 1.9.25 - runtime - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-util-klib - 1.9.25 - runtime - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-klib-commonizer-api - 1.9.25 - runtime - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-build-tools-api - 1.9.25 - runtime - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-compiler-embeddable - 1.9.25 - runtime - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-android-extensions - 1.9.25 - runtime - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-compiler-runner - 1.9.25 - runtime - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-build-common - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-scripting-compiler-embeddable - 1.9.25 - runtime - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - org.jetbrains.kotlin - kotlin-scripting-compiler-impl-embeddable - 1.9.25 - runtime - - - kotlin-reflect - org.jetbrains.kotlin - - - kotlin-stdlib-jdk8 - org.jetbrains.kotlin - - - kotlin-stdlib-jdk7 - org.jetbrains.kotlin - - - kotlin-stdlib - org.jetbrains.kotlin - - - kotlin-script-runtime - org.jetbrains.kotlin - - - kotlin-stdlib-common - org.jetbrains.kotlin - - - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-klib-commonizer-api/1.9.25/kotlin-klib-commonizer-api-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-klib-commonizer-api/1.9.25/kotlin-klib-commonizer-api-1.9.25.jar deleted file mode 100644 index 318f3a4..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-klib-commonizer-api/1.9.25/kotlin-klib-commonizer-api-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-klib-commonizer-api/1.9.25/kotlin-klib-commonizer-api-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-klib-commonizer-api/1.9.25/kotlin-klib-commonizer-api-1.9.25.pom deleted file mode 100644 index df59a76..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-klib-commonizer-api/1.9.25/kotlin-klib-commonizer-api-1.9.25.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-klib-commonizer-api - 1.9.25 - Kotlin Klib Commonizer Api - Kotlin KLIB Library Commonizer API - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - runtime - - - org.jetbrains.kotlin - kotlin-native-utils - 1.9.25 - runtime - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-native-utils/1.9.25/kotlin-native-utils-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-native-utils/1.9.25/kotlin-native-utils-1.9.25.jar deleted file mode 100644 index 240397c..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-native-utils/1.9.25/kotlin-native-utils-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-native-utils/1.9.25/kotlin-native-utils-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-native-utils/1.9.25/kotlin-native-utils-1.9.25.pom deleted file mode 100644 index d668a09..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-native-utils/1.9.25/kotlin-native-utils-1.9.25.pom +++ /dev/null @@ -1,53 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-native-utils - 1.9.25 - Kotlin Native Utils - Kotlin/Native utils - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - - org.jetbrains.kotlin - kotlin-gradle-plugins-bom - 1.9.25 - pom - import - - - - - - org.jetbrains.kotlin - kotlin-util-io - 1.9.25 - compile - - - org.jetbrains.kotlin - kotlin-util-klib - 1.9.25 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-project-model/1.9.25/kotlin-project-model-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-project-model/1.9.25/kotlin-project-model-1.9.25.jar deleted file mode 100644 index c59eacf..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-project-model/1.9.25/kotlin-project-model-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-project-model/1.9.25/kotlin-project-model-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-project-model/1.9.25/kotlin-project-model-1.9.25.pom deleted file mode 100644 index b6055c1..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-project-model/1.9.25/kotlin-project-model-1.9.25.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-project-model - 1.9.25 - Kotlin Project Model - Kotlin Project Model - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - runtime - - - org.jetbrains.kotlin - kotlin-tooling-core - 1.9.25 - runtime - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-reflect/2.1.20/kotlin-reflect-2.1.20.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-reflect/2.1.20/kotlin-reflect-2.1.20.jar deleted file mode 100644 index 2dbdfd6..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-reflect/2.1.20/kotlin-reflect-2.1.20.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-reflect/2.1.20/kotlin-reflect-2.1.20.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-reflect/2.1.20/kotlin-reflect-2.1.20.pom deleted file mode 100644 index 230d2ad..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-reflect/2.1.20/kotlin-reflect-2.1.20.pom +++ /dev/null @@ -1,37 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-reflect - 2.1.20 - Kotlin Reflect - Kotlin Full Reflection Library - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-stdlib - 2.1.20 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-common/1.9.25/kotlin-scripting-common-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-common/1.9.25/kotlin-scripting-common-1.9.25.jar deleted file mode 100644 index 504d785..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-common/1.9.25/kotlin-scripting-common-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-common/1.9.25/kotlin-scripting-common-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-common/1.9.25/kotlin-scripting-common-1.9.25.pom deleted file mode 100644 index 6ffcec4..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-common/1.9.25/kotlin-scripting-common-1.9.25.pom +++ /dev/null @@ -1,36 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-scripting-common - 1.9.25 - Kotlin Scripting Common - Kotlin Scripting Common - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.9.25/kotlin-scripting-compiler-embeddable-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.9.25/kotlin-scripting-compiler-embeddable-1.9.25.jar deleted file mode 100644 index 19cf977..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.9.25/kotlin-scripting-compiler-embeddable-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.9.25/kotlin-scripting-compiler-embeddable-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.9.25/kotlin-scripting-compiler-embeddable-1.9.25.pom deleted file mode 100644 index 3fbdda8..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.9.25/kotlin-scripting-compiler-embeddable-1.9.25.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-scripting-compiler-embeddable - 1.9.25 - Kotlin Scripting Compiler Embeddable - Kotlin Scripting Compiler Plugin for embeddable compiler - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-scripting-compiler-impl-embeddable - 1.9.25 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - runtime - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.9.25/kotlin-scripting-compiler-impl-embeddable-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.9.25/kotlin-scripting-compiler-impl-embeddable-1.9.25.jar deleted file mode 100644 index b51699b..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.9.25/kotlin-scripting-compiler-impl-embeddable-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.9.25/kotlin-scripting-compiler-impl-embeddable-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.9.25/kotlin-scripting-compiler-impl-embeddable-1.9.25.pom deleted file mode 100644 index 1d3c370..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.9.25/kotlin-scripting-compiler-impl-embeddable-1.9.25.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-scripting-compiler-impl-embeddable - 1.9.25 - Kotlin Scripting Compiler Impl Embeddable - Kotlin Compiler Infrastructure for Scripting for embeddable compiler - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-scripting-common - 1.9.25 - runtime - - - org.jetbrains.kotlin - kotlin-scripting-jvm - 1.9.25 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - runtime - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-jvm/1.9.25/kotlin-scripting-jvm-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-jvm/1.9.25/kotlin-scripting-jvm-1.9.25.jar deleted file mode 100644 index 8e4d3f0..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-jvm/1.9.25/kotlin-scripting-jvm-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-jvm/1.9.25/kotlin-scripting-jvm-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-jvm/1.9.25/kotlin-scripting-jvm-1.9.25.pom deleted file mode 100644 index b8e2440..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-scripting-jvm/1.9.25/kotlin-scripting-jvm-1.9.25.pom +++ /dev/null @@ -1,48 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-scripting-jvm - 1.9.25 - Kotlin Scripting Jvm - Kotlin Scripting Jvm - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-script-runtime - 1.9.25 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - compile - - - org.jetbrains.kotlin - kotlin-scripting-common - 1.9.25 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib-jdk7/2.1.20/kotlin-stdlib-jdk7-2.1.20.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib-jdk7/2.1.20/kotlin-stdlib-jdk7-2.1.20.jar deleted file mode 100644 index 3e90fe4..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib-jdk7/2.1.20/kotlin-stdlib-jdk7-2.1.20.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib-jdk7/2.1.20/kotlin-stdlib-jdk7-2.1.20.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib-jdk7/2.1.20/kotlin-stdlib-jdk7-2.1.20.pom deleted file mode 100644 index b7153ef..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib-jdk7/2.1.20/kotlin-stdlib-jdk7-2.1.20.pom +++ /dev/null @@ -1,36 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-stdlib-jdk7 - 2.1.20 - Kotlin Stdlib Jdk7 - Kotlin Standard Library JDK 7 extension - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-stdlib - 2.1.20 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib-jdk8/2.1.20/kotlin-stdlib-jdk8-2.1.20.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib-jdk8/2.1.20/kotlin-stdlib-jdk8-2.1.20.jar deleted file mode 100644 index e83dd91..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib-jdk8/2.1.20/kotlin-stdlib-jdk8-2.1.20.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib-jdk8/2.1.20/kotlin-stdlib-jdk8-2.1.20.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib-jdk8/2.1.20/kotlin-stdlib-jdk8-2.1.20.pom deleted file mode 100644 index b267718..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib-jdk8/2.1.20/kotlin-stdlib-jdk8-2.1.20.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 2.1.20 - Kotlin Stdlib Jdk8 - Kotlin Standard Library JDK 8 extension - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-stdlib - 2.1.20 - compile - - - org.jetbrains.kotlin - kotlin-stdlib-jdk7 - 2.1.20 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar deleted file mode 100644 index 3fc1bfd..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.pom deleted file mode 100644 index 996693a..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.pom +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - 4.0.0 - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - Kotlin Stdlib - Kotlin Standard Library - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.9.25 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk7 - 1.8.0 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 1.8.0 - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.9.25 - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.9.25 - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.9.25 - - - - - - org.jetbrains - annotations - 13.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.jar deleted file mode 100644 index 9b7f2a8..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.pom deleted file mode 100644 index c86dea1..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.pom +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - 4.0.0 - org.jetbrains.kotlin - kotlin-stdlib - 2.0.21 - Kotlin Stdlib - Kotlin Standard Library - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - - org.jetbrains.kotlin - kotlin-stdlib-common - 2.0.21 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk7 - 1.8.0 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 1.8.0 - - - - - - org.jetbrains - annotations - 13.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.1.20/kotlin-stdlib-2.1.20.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.1.20/kotlin-stdlib-2.1.20.jar deleted file mode 100644 index 6967976..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.1.20/kotlin-stdlib-2.1.20.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.1.20/kotlin-stdlib-2.1.20.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.1.20/kotlin-stdlib-2.1.20.pom deleted file mode 100644 index 91103aa..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.1.20/kotlin-stdlib-2.1.20.pom +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - 4.0.0 - org.jetbrains.kotlin - kotlin-stdlib - 2.1.20 - Kotlin Stdlib - Kotlin Standard Library - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - - org.jetbrains.kotlin - kotlin-stdlib-common - 2.1.20 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk7 - 1.8.0 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 1.8.0 - - - - - - org.jetbrains - annotations - 13.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-tooling-core/1.9.25/kotlin-tooling-core-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-tooling-core/1.9.25/kotlin-tooling-core-1.9.25.jar deleted file mode 100644 index 157a456..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-tooling-core/1.9.25/kotlin-tooling-core-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-tooling-core/1.9.25/kotlin-tooling-core-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-tooling-core/1.9.25/kotlin-tooling-core-1.9.25.pom deleted file mode 100644 index ca2bd90..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-tooling-core/1.9.25/kotlin-tooling-core-1.9.25.pom +++ /dev/null @@ -1,39 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-tooling-core - 1.9.25 - Kotlin Tooling Core - Kotlin Tooling Core - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - - org.jetbrains.kotlin - kotlin-gradle-plugins-bom - 1.9.25 - pom - import - - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-util-io/1.9.25/kotlin-util-io-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-util-io/1.9.25/kotlin-util-io-1.9.25.jar deleted file mode 100644 index c90d155..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-util-io/1.9.25/kotlin-util-io-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-util-io/1.9.25/kotlin-util-io-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-util-io/1.9.25/kotlin-util-io-1.9.25.pom deleted file mode 100644 index dc456ac..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-util-io/1.9.25/kotlin-util-io-1.9.25.pom +++ /dev/null @@ -1,36 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-util-io - 1.9.25 - Kotlin Util Io - Kotlin Util Io - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - runtime - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-util-klib/1.9.25/kotlin-util-klib-1.9.25.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-util-klib/1.9.25/kotlin-util-klib-1.9.25.jar deleted file mode 100644 index 7039b49..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-util-klib/1.9.25/kotlin-util-klib-1.9.25.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-util-klib/1.9.25/kotlin-util-klib-1.9.25.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-util-klib/1.9.25/kotlin-util-klib-1.9.25.pom deleted file mode 100644 index 1e91978..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-util-klib/1.9.25/kotlin-util-klib-1.9.25.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - 4.0.0 - org.jetbrains.kotlin - kotlin-util-klib - 1.9.25 - Kotlin Util Klib - Common klib reader and writer - https://kotlinlang.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - Kotlin Team - JetBrains - https://www.jetbrains.com - - - - scm:git:https://github.com/JetBrains/kotlin.git - scm:git:https://github.com/JetBrains/kotlin.git - https://github.com/JetBrains/kotlin - - - - org.jetbrains.kotlin - kotlin-stdlib - 1.9.25 - compile - - - org.jetbrains.kotlin - kotlin-util-io - 1.9.25 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-android/1.9.0/kotlinx-coroutines-android-1.9.0.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-android/1.9.0/kotlinx-coroutines-android-1.9.0.jar deleted file mode 100644 index 4cc6249..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-android/1.9.0/kotlinx-coroutines-android-1.9.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-android/1.9.0/kotlinx-coroutines-android-1.9.0.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-android/1.9.0/kotlinx-coroutines-android-1.9.0.pom deleted file mode 100644 index b5c77b8..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-android/1.9.0/kotlinx-coroutines-android-1.9.0.pom +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - 4.0.0 - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.9.0 - kotlinx-coroutines-android - Coroutines support libraries for Kotlin - https://github.com/Kotlin/kotlinx.coroutines - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - JetBrains - JetBrains Team - JetBrains - https://www.jetbrains.com - - - - https://github.com/Kotlin/kotlinx.coroutines - - - - - org.jetbrains.kotlinx - kotlinx-coroutines-bom - 1.9.0 - pom - import - - - - - - org.jetbrains.kotlinx - kotlinx-coroutines-core-jvm - 1.9.0 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.5.0/kotlinx-coroutines-core-jvm-1.5.0.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.5.0/kotlinx-coroutines-core-jvm-1.5.0.jar deleted file mode 100644 index cfb2698..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.5.0/kotlinx-coroutines-core-jvm-1.5.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.5.0/kotlinx-coroutines-core-jvm-1.5.0.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.5.0/kotlinx-coroutines-core-jvm-1.5.0.pom deleted file mode 100644 index 304018c..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.5.0/kotlinx-coroutines-core-jvm-1.5.0.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - 4.0.0 - org.jetbrains.kotlinx - kotlinx-coroutines-core-jvm - 1.5.0 - kotlinx-coroutines-core - Coroutines support libraries for Kotlin - https://github.com/Kotlin/kotlinx.coroutines - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - JetBrains - JetBrains Team - JetBrains - https://www.jetbrains.com - - - - https://github.com/Kotlin/kotlinx.coroutines - - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 1.5.0 - compile - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.5.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.9.0/kotlinx-coroutines-core-jvm-1.9.0.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.9.0/kotlinx-coroutines-core-jvm-1.9.0.jar deleted file mode 100644 index 9c7d0f7..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.9.0/kotlinx-coroutines-core-jvm-1.9.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.9.0/kotlinx-coroutines-core-jvm-1.9.0.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.9.0/kotlinx-coroutines-core-jvm-1.9.0.pom deleted file mode 100644 index cf97132..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.9.0/kotlinx-coroutines-core-jvm-1.9.0.pom +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - 4.0.0 - org.jetbrains.kotlinx - kotlinx-coroutines-core-jvm - 1.9.0 - kotlinx-coroutines-core - Coroutines support libraries for Kotlin - https://github.com/Kotlin/kotlinx.coroutines - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - JetBrains - JetBrains Team - JetBrains - https://www.jetbrains.com - - - - https://github.com/Kotlin/kotlinx.coroutines - - - - - org.jetbrains.kotlinx - kotlinx-coroutines-bom - 1.9.0 - pom - import - - - - - - org.jetbrains - annotations - 23.0.0 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.0 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.7.3/kotlinx-serialization-core-jvm-1.7.3.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.7.3/kotlinx-serialization-core-jvm-1.7.3.jar deleted file mode 100644 index 96a1308..0000000 Binary files a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.7.3/kotlinx-serialization-core-jvm-1.7.3.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.7.3/kotlinx-serialization-core-jvm-1.7.3.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.7.3/kotlinx-serialization-core-jvm-1.7.3.pom deleted file mode 100644 index 72e77da..0000000 --- a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.7.3/kotlinx-serialization-core-jvm-1.7.3.pom +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - 4.0.0 - org.jetbrains.kotlinx - kotlinx-serialization-core-jvm - 1.7.3 - kotlinx-serialization-core - Kotlin multiplatform serialization runtime library - https://github.com/Kotlin/kotlinx.serialization - - - The Apache Software License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - JetBrains - JetBrains Team - JetBrains - https://www.jetbrains.com - - - - https://github.com/Kotlin/kotlinx.serialization - - - - - org.jetbrains.kotlinx - kotlinx-serialization-bom - 1.7.3 - pom - import - - - - - - org.jetbrains.kotlin - kotlin-stdlib - 2.0.20 - compile - - - diff --git a/tauri_app/docker/offline-maven/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar b/tauri_app/docker/offline-maven/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar deleted file mode 100644 index 466b875..0000000 Binary files a/tauri_app/docker/offline-maven/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.pom b/tauri_app/docker/offline-maven/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.pom deleted file mode 100644 index ad13f32..0000000 --- a/tauri_app/docker/offline-maven/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.pom +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - 4.0.0 - org.jspecify - jspecify - 1.0.0 - JSpecify annotations - An artifact of well-named and well-specified annotations to power static analysis checks - http://jspecify.org/ - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - kevinb9n - Kevin Bourrillion - kevinb9n@gmail.com - - - - scm:git:git@github.com:jspecify/jspecify.git - scm:git:git@github.com:jspecify/jspecify.git - https://github.com/jspecify/jspecify/ - - diff --git a/tauri_app/docker/offline-maven/org/jvnet/staxex/stax-ex/1.8.1/stax-ex-1.8.1.jar b/tauri_app/docker/offline-maven/org/jvnet/staxex/stax-ex/1.8.1/stax-ex-1.8.1.jar deleted file mode 100644 index a200db5..0000000 Binary files a/tauri_app/docker/offline-maven/org/jvnet/staxex/stax-ex/1.8.1/stax-ex-1.8.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/jvnet/staxex/stax-ex/1.8.1/stax-ex-1.8.1.pom b/tauri_app/docker/offline-maven/org/jvnet/staxex/stax-ex/1.8.1/stax-ex-1.8.1.pom deleted file mode 100644 index 088a378..0000000 --- a/tauri_app/docker/offline-maven/org/jvnet/staxex/stax-ex/1.8.1/stax-ex-1.8.1.pom +++ /dev/null @@ -1,373 +0,0 @@ - - - - 4.0.0 - - - org.eclipse.ee4j - project - 1.0.5 - - - org.jvnet.staxex - stax-ex - 1.8.1 - jar - Extended StAX API - Extensions to JSR-173 StAX API. - - - scm:git:ssh://git@github.com/eclipse-ee4j/jaxb-stax-ex.git - scm:git:ssh://git@github.com/eclipse-ee4j/jaxb-stax-ex.git - https://github.com/eclipse-ee4j/jaxb-stax-ex - HEAD - - - - - Eclipse Distribution License - v 1.0 - http://www.eclipse.org/org/documents/edl-v10.php - repo - - - - - - bravehorsie - Roman Grigoriadi - Roman.Grigoriadi@oracle.com - - - zhengjl - Zheng Jun Li - Zheng.Jun.Li@oracle.com - - - - - IssueTracker - https://github.com/eclipse-ee4j/jaxb-stax-ex/issues - - - - - Eclipse Implementation of JAXB mailing list - jaxb-impl-dev@eclipse.org - https://dev.eclipse.org/mailman/listinfo/jaxb-impl-dev - https://dev.eclipse.org/mailman/listinfo/jaxb-impl-dev - https://dev.eclipse.org/mhonarc/lists/jaxb-impl-dev - - - - - - false - Low - ${project.basedir}/etc/config - ${project.basedir} - - - - - jakarta.activation - jakarta.activation-api - 1.2.1 - - - jakarta.xml.bind - jakarta.xml.bind-api - 2.3.2 - - - junit - junit - 4.12 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.0.0 - - - maven-compiler-plugin - 3.8.0 - - - maven-release-plugin - 2.5.3 - - - maven-javadoc-plugin - 3.0.1 - - - maven-enforcer-plugin - 3.0.0-M2 - - - maven-jar-plugin - 3.1.0 - - - maven-deploy-plugin - 2.8.2 - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.5 - - - org.glassfish.findbugs - findbugs - 1.7 - - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - 1.50 - - - org.codehaus.mojo - cobertura-maven-plugin - 2.7 - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - - org.apache.felix - maven-bundle-plugin - 3.5.1 - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - - - - - maven-enforcer-plugin - - - enforce-versions - - enforce - - - - - - - [1.7,) - - - [3.0.3,) - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-legal-resource - generate-resources - - add-resource - - - - - ${legal.doc.source} - - NOTICE.md - LICENSE.md - - META-INF - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - - default-compile - - compile - - - 9 - 9 - - - - - base-compile - - compile - - - 7 - 7 - - module-info.java - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - -Xdoclint:none - - - - org.codehaus.mojo - findbugs-maven-plugin - - ${findbugs.skip} - ${findbugs.threshold} - true - - exclude-common.xml,${findbugs.exclude} - - true - -Xms64m -Xmx256m - - - - org.glassfish.copyright - glassfish-copyright-maven-plugin - - ${config.dir}/edl-copyright.txt - ${config.dir}/copyright-exclude - git - - true - - true - - false - - false - - - - validate - - copyright - - - - - - org.codehaus.mojo - cobertura-maven-plugin - - - xml - - - 0 - 0 - true - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - true - {0,date,yyyy-MM-dd'T'HH:mm:ssZ} - true - false - 7 - - - - validate - - create - - - - - - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - true - - - - - - org.apache.felix - maven-bundle-plugin - - - bundle-manifest - process-classes - - manifest - - > - - ${project.version}-${buildNumber}, ${timestamp} - <_noee>true - - - - - - - org.apache.maven.plugins - maven-deploy-plugin - - 10 - - - - - diff --git a/tauri_app/docker/offline-maven/org/ow2/asm/asm-analysis/9.7.1/asm-analysis-9.7.1.jar b/tauri_app/docker/offline-maven/org/ow2/asm/asm-analysis/9.7.1/asm-analysis-9.7.1.jar deleted file mode 100644 index 5267700..0000000 Binary files a/tauri_app/docker/offline-maven/org/ow2/asm/asm-analysis/9.7.1/asm-analysis-9.7.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/ow2/asm/asm-analysis/9.7.1/asm-analysis-9.7.1.pom b/tauri_app/docker/offline-maven/org/ow2/asm/asm-analysis/9.7.1/asm-analysis-9.7.1.pom deleted file mode 100644 index 15f5d29..0000000 --- a/tauri_app/docker/offline-maven/org/ow2/asm/asm-analysis/9.7.1/asm-analysis-9.7.1.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm-analysis - 9.7.1 - asm-analysis - Static code analysis API of ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.io/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD-3-Clause - https://asm.ow2.io/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - org.ow2.asm - asm-tree - 9.7.1 - compile - - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/tauri_app/docker/offline-maven/org/ow2/asm/asm-commons/9.7.1/asm-commons-9.7.1.jar b/tauri_app/docker/offline-maven/org/ow2/asm/asm-commons/9.7.1/asm-commons-9.7.1.jar deleted file mode 100644 index 4175f17..0000000 Binary files a/tauri_app/docker/offline-maven/org/ow2/asm/asm-commons/9.7.1/asm-commons-9.7.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/ow2/asm/asm-commons/9.7.1/asm-commons-9.7.1.pom b/tauri_app/docker/offline-maven/org/ow2/asm/asm-commons/9.7.1/asm-commons-9.7.1.pom deleted file mode 100644 index 27a9234..0000000 --- a/tauri_app/docker/offline-maven/org/ow2/asm/asm-commons/9.7.1/asm-commons-9.7.1.pom +++ /dev/null @@ -1,89 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm-commons - 9.7.1 - asm-commons - Usefull class adapters based on ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.io/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD-3-Clause - https://asm.ow2.io/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - org.ow2.asm - asm - 9.7.1 - compile - - - org.ow2.asm - asm-tree - 9.7.1 - compile - - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/tauri_app/docker/offline-maven/org/ow2/asm/asm-tree/9.7.1/asm-tree-9.7.1.jar b/tauri_app/docker/offline-maven/org/ow2/asm/asm-tree/9.7.1/asm-tree-9.7.1.jar deleted file mode 100644 index a1004da..0000000 Binary files a/tauri_app/docker/offline-maven/org/ow2/asm/asm-tree/9.7.1/asm-tree-9.7.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/ow2/asm/asm-tree/9.7.1/asm-tree-9.7.1.pom b/tauri_app/docker/offline-maven/org/ow2/asm/asm-tree/9.7.1/asm-tree-9.7.1.pom deleted file mode 100644 index b3257be..0000000 --- a/tauri_app/docker/offline-maven/org/ow2/asm/asm-tree/9.7.1/asm-tree-9.7.1.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm-tree - 9.7.1 - asm-tree - Tree API of ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.io/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD-3-Clause - https://asm.ow2.io/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - org.ow2.asm - asm - 9.7.1 - compile - - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/tauri_app/docker/offline-maven/org/ow2/asm/asm-util/9.7.1/asm-util-9.7.1.jar b/tauri_app/docker/offline-maven/org/ow2/asm/asm-util/9.7.1/asm-util-9.7.1.jar deleted file mode 100644 index 5fad1cb..0000000 Binary files a/tauri_app/docker/offline-maven/org/ow2/asm/asm-util/9.7.1/asm-util-9.7.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/ow2/asm/asm-util/9.7.1/asm-util-9.7.1.pom b/tauri_app/docker/offline-maven/org/ow2/asm/asm-util/9.7.1/asm-util-9.7.1.pom deleted file mode 100644 index ba37879..0000000 --- a/tauri_app/docker/offline-maven/org/ow2/asm/asm-util/9.7.1/asm-util-9.7.1.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm-util - 9.7.1 - asm-util - Utilities for ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.io/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD-3-Clause - https://asm.ow2.io/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - - org.ow2.asm - asm - 9.7.1 - compile - - - org.ow2.asm - asm-tree - 9.7.1 - compile - - - org.ow2.asm - asm-analysis - 9.7.1 - compile - - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/tauri_app/docker/offline-maven/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar b/tauri_app/docker/offline-maven/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar deleted file mode 100644 index fe3d001..0000000 Binary files a/tauri_app/docker/offline-maven/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/ow2/asm/asm/9.7.1/asm-9.7.1.pom b/tauri_app/docker/offline-maven/org/ow2/asm/asm/9.7.1/asm-9.7.1.pom deleted file mode 100644 index 103a5ce..0000000 --- a/tauri_app/docker/offline-maven/org/ow2/asm/asm/9.7.1/asm-9.7.1.pom +++ /dev/null @@ -1,75 +0,0 @@ - - - 4.0.0 - org.ow2.asm - asm - 9.7.1 - asm - ASM, a very small and fast Java bytecode manipulation framework - http://asm.ow2.io/ - 2000 - - OW2 - http://www.ow2.org/ - - - - BSD-3-Clause - https://asm.ow2.io/license.html - - - - - ebruneton - Eric Bruneton - ebruneton@free.fr - - Creator - Java Developer - - - - eu - Eugene Kuleshov - eu@javatx.org - - Java Developer - - - - forax - Remi Forax - forax@univ-mlv.fr - - Java Developer - - - - - - ASM Users List - https://mail.ow2.org/wws/subscribe/asm - asm@objectweb.org - https://mail.ow2.org/wws/arc/asm/ - - - ASM Team List - https://mail.ow2.org/wws/subscribe/asm-team - asm-team@objectweb.org - https://mail.ow2.org/wws/arc/asm-team/ - - - - scm:git:https://gitlab.ow2.org/asm/asm/ - scm:git:https://gitlab.ow2.org/asm/asm/ - https://gitlab.ow2.org/asm/asm/ - - - https://gitlab.ow2.org/asm/asm/issues - - - org.ow2 - ow2 - 1.5.1 - - diff --git a/tauri_app/docker/offline-maven/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar b/tauri_app/docker/offline-maven/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar deleted file mode 100644 index 29ac26f..0000000 Binary files a/tauri_app/docker/offline-maven/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom b/tauri_app/docker/offline-maven/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom deleted file mode 100644 index 78e96a9..0000000 --- a/tauri_app/docker/offline-maven/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom +++ /dev/null @@ -1,120 +0,0 @@ - - - - 4.0.0 - - - org.slf4j - slf4j-parent - 1.7.30 - - - slf4j-api - - jar - SLF4J API Module - The slf4j API - - http://www.slf4j.org - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - - org.slf4j.impl.StaticMDCBinder - org.slf4j.impl.StaticLoggerBinder - org.slf4j.impl.StaticMarkerBinder - - - - - org.apache.maven.plugins - maven-surefire-plugin - - once - plain - false - - **/AllTest.java - **/PackageTest.java - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - bundle-test-jar - package - - jar - test-jar - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - process-classes - - run - - - - - - Removing slf4j-api's dummy StaticLoggerBinder and StaticMarkerBinder - - - - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.apache.maven.plugins - - - maven-antrun-plugin - - [1.3,) - - run - - - - - - - - - - - - - - - diff --git a/tauri_app/docker/offline-maven/org/tensorflow/tensorflow-lite-metadata/0.2.0/tensorflow-lite-metadata-0.2.0.jar b/tauri_app/docker/offline-maven/org/tensorflow/tensorflow-lite-metadata/0.2.0/tensorflow-lite-metadata-0.2.0.jar deleted file mode 100644 index d4273a4..0000000 Binary files a/tauri_app/docker/offline-maven/org/tensorflow/tensorflow-lite-metadata/0.2.0/tensorflow-lite-metadata-0.2.0.jar and /dev/null differ diff --git a/tauri_app/docker/offline-maven/org/tensorflow/tensorflow-lite-metadata/0.2.0/tensorflow-lite-metadata-0.2.0.pom b/tauri_app/docker/offline-maven/org/tensorflow/tensorflow-lite-metadata/0.2.0/tensorflow-lite-metadata-0.2.0.pom deleted file mode 100644 index f4da88c..0000000 --- a/tauri_app/docker/offline-maven/org/tensorflow/tensorflow-lite-metadata/0.2.0/tensorflow-lite-metadata-0.2.0.pom +++ /dev/null @@ -1,64 +0,0 @@ - - 4.0.0 - - org.tensorflow - tensorflow-lite-metadata - 0.2.0 - jar - - TensorFlow Lite Metadata - https://tensorflow.org/lite/ - A util library to extract Model Metadata from TFLite Models - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - TensorFlow Authors - TensorFlow - https://tensorflow.org - - - - - scm:git:git://github.com/tensorflow/tflite-support.git - scm:git:ssh://github.com:tensorflow/tflite-support.git - https://github.com/tensorflow/tflite-support/tree/master - - - - - - com.simpligility.maven.plugins - android-maven-plugin - 4.1.0 - true - - - false - - - - - - - - org.checkerframework - checker-qual - 2.5.8 - - - com.google.flatbuffers - flatbuffers-java - 1.12.0 - - - diff --git a/tauri_app/docker/patch-android-gradle-repos.sh b/tauri_app/docker/patch-android-gradle-repos.sh deleted file mode 100644 index 4afe194..0000000 --- a/tauri_app/docker/patch-android-gradle-repos.sh +++ /dev/null @@ -1,103 +0,0 @@ -#!/usr/bin/env bash -# Adds reliable Google Maven mirrors for Android Gradle Plugin resolution. -set -euo pipefail - -ANDROID_GEN="${1:-/workspace/tauri_app/src-tauri/gen/android}" - -if [ ! -d "${ANDROID_GEN}" ]; then - echo "Android project not found: ${ANDROID_GEN}" >&2 - exit 1 -fi - -GRADLE_USER_HOME="${GRADLE_USER_HOME:-/root/.gradle}" -LOCAL_REPO="${ANDROID_AGP_LOCAL_REPO:-/opt/android-agp-maven}" -mkdir -p "${GRADLE_USER_HOME}/init.d" - -cat > "${GRADLE_USER_HOME}/init.d/agp-repos.gradle" < - settings.pluginManagement { - repositories { - googleMirrors.each { url -> - maven { setUrl(url) } - } - google() - mavenCentral() - gradlePluginPortal() - } - } -} - -allprojects { - buildscript { - repositories { - googleMirrors.each { url -> - maven { setUrl(url) } - } - google() - mavenCentral() - } - } - repositories { - googleMirrors.each { url -> - maven { setUrl(url) } - } - google() - mavenCentral() - } -} -EOF - -insert_maven_repos() { - local file="$1" - [ -f "${file}" ] || return 0 - if grep -q 'maven.google.com' "${file}"; then - return 0 - fi - - awk ' - /repositories[[:space:]]*\{/ { - print - print " maven { url = uri(\"https://maven.google.com\") }" - print " maven { url = uri(\"https://dl.google.com/android/maven2/\") }" - print " maven { url = uri(\"file:///opt/android-agp-maven\") }" - next - } - { print } - ' "${file}" > "${file}.tmp" && mv "${file}.tmp" "${file}" -} - -insert_maven_repos "${ANDROID_GEN}/build.gradle.kts" -insert_maven_repos "${ANDROID_GEN}/buildSrc/build.gradle.kts" -insert_maven_repos "${ANDROID_GEN}/app/build.gradle.kts" 2>/dev/null || true - -if [ -f "${ANDROID_GEN}/settings.gradle" ] && ! grep -q 'pluginManagement' "${ANDROID_GEN}/settings.gradle"; then - { - cat <<'EOF' -pluginManagement { - repositories { - maven { url = uri("file:///opt/android-agp-maven") } - maven { url = uri("https://maven.google.com") } - maven { url = uri("https://dl.google.com/android/maven2/") } - google() - mavenCentral() - gradlePluginPortal() - } -} - -EOF - cat "${ANDROID_GEN}/settings.gradle" - } > "${ANDROID_GEN}/settings.gradle.tmp" && mv "${ANDROID_GEN}/settings.gradle.tmp" "${ANDROID_GEN}/settings.gradle" -fi - -echo "==> Gradle repositories patched for AGP (${ANDROID_GEN})" diff --git a/tauri_app/docker/patch-android-sdk.sh b/tauri_app/docker/patch-android-sdk.sh deleted file mode 100644 index c570afb..0000000 --- a/tauri_app/docker/patch-android-sdk.sh +++ /dev/null @@ -1,110 +0,0 @@ -#!/usr/bin/env bash -# Align Tauri Android project with locally installed SDK (offline builds). -set -euo pipefail - -ANDROID_GEN="${1:-/workspace/tauri_app/src-tauri/gen/android}" -ANDROID_HOME="${ANDROID_HOME:-/opt/android-sdk}" -ANDROID_SDK_ROOT="${ANDROID_SDK_ROOT:-${ANDROID_HOME}}" -GRADLE_USER_HOME="${GRADLE_USER_HOME:-/root/.gradle}" - -if [ ! -d "${ANDROID_GEN}" ]; then - echo "Android project not found: ${ANDROID_GEN}" >&2 - exit 1 -fi - -if [ ! -d "${ANDROID_HOME}/platforms" ] && [ -d /opt/android-sdk-linux/platforms ]; then - ANDROID_HOME="/opt/android-sdk-linux" - ANDROID_SDK_ROOT="${ANDROID_HOME}" -fi - -if [ ! -d "${ANDROID_HOME}/platforms" ]; then - echo "Android platforms not found in ${ANDROID_HOME}/platforms" >&2 - exit 1 -fi - -SDK_LEVEL="$( - find "${ANDROID_HOME}/platforms" -mindepth 1 -maxdepth 1 -type d -name 'android-*' \ - | sed 's|.*/android-||' \ - | sort -n \ - | tail -n 1 -)" - -if [ -z "${SDK_LEVEL}" ]; then - echo "Не удалось определить установленный Android SDK platform" >&2 - exit 1 -fi - -export ANDROID_COMPILE_SDK="${SDK_LEVEL}" - -PLATFORM_DIR="${ANDROID_HOME}/platforms" -# Tauri 2.x templates/plugins request android-36 while the SDK image ships android-35. -for requested in 36 35 34; do - if [ ! -e "${PLATFORM_DIR}/android-${requested}" ] && [ -d "${PLATFORM_DIR}/android-${SDK_LEVEL}" ]; then - ln -sfn "android-${SDK_LEVEL}" "${PLATFORM_DIR}/android-${requested}" - echo "==> Platform symlink: android-${requested} -> android-${SDK_LEVEL}" - fi -done - -while IFS= read -r -d '' gradle_file; do - sed -i -E "s/compileSdk = [0-9]+/compileSdk = ${SDK_LEVEL}/g" "${gradle_file}" - sed -i -E "s/targetSdk = [0-9]+/targetSdk = ${SDK_LEVEL}/g" "${gradle_file}" - sed -i -E "s/compileSdkVersion = [0-9]+/compileSdkVersion = ${SDK_LEVEL}/g" "${gradle_file}" - sed -i -E "s/compileSdkVersion [0-9]+/compileSdkVersion ${SDK_LEVEL}/g" "${gradle_file}" - sed -i -E "s/targetSdkVersion = [0-9]+/targetSdkVersion = ${SDK_LEVEL}/g" "${gradle_file}" - sed -i -E "s/targetSdkVersion [0-9]+/targetSdkVersion ${SDK_LEVEL}/g" "${gradle_file}" -done < <(find "${ANDROID_GEN}" \( -name 'build.gradle.kts' -o -name 'build.gradle' \) -print0 2>/dev/null || true) - -GRADLE_PROPS="${ANDROID_GEN}/gradle.properties" -touch "${GRADLE_PROPS}" -if ! grep -q '^android.builder.sdkDownload=' "${GRADLE_PROPS}"; then - printf '\n# Offline / isolated network: do not download SDK packages from Google\nandroid.builder.sdkDownload=false\n' >> "${GRADLE_PROPS}" -else - sed -i 's/^android.builder.sdkDownload=.*/android.builder.sdkDownload=false/' "${GRADLE_PROPS}" -fi - -if ! grep -q '^android.compileSdk=' "${GRADLE_PROPS}"; then - printf 'android.compileSdk=%s\n' "${SDK_LEVEL}" >> "${GRADLE_PROPS}" -else - sed -i "s/^android.compileSdk=.*/android.compileSdk=${SDK_LEVEL}/" "${GRADLE_PROPS}" -fi - -cat > "${ANDROID_GEN}/local.properties" < "${GRADLE_USER_HOME}/init.d/force-android-sdk.gradle" < - project.afterEvaluate { - def androidExt = project.extensions.findByName('android') - if (androidExt == null) { - return - } - try { - androidExt.compileSdk = offlineCompileSdk - } catch (ignored) { - try { - androidExt.compileSdkVersion offlineCompileSdk - } catch (ignored2) { - // ignore non-Android projects - } - } - try { - if (androidExt.metaClass.hasProperty(androidExt, 'defaultConfig') && androidExt.defaultConfig != null) { - androidExt.defaultConfig.targetSdk = offlineCompileSdk - } - } catch (ignored) { - try { - androidExt.defaultConfig.targetSdkVersion offlineCompileSdk - } catch (ignored2) { - // ignore library modules without targetSdk - } - } - } -} -EOF - -echo "==> Android SDK patched: compileSdk/targetSdk=${SDK_LEVEL}, sdk.dir=${ANDROID_HOME}, sdkDownload=false" diff --git a/tauri_app/docker/patch-android-signing.sh b/tauri_app/docker/patch-android-signing.sh deleted file mode 100644 index cd49f25..0000000 --- a/tauri_app/docker/patch-android-signing.sh +++ /dev/null @@ -1,85 +0,0 @@ -#!/usr/bin/env bash -# Подключает release-подпись APK через keystore.properties + Gradle script. -set -euo pipefail - -ANDROID_GEN="${1:-/workspace/tauri_app/src-tauri/gen/android}" -SECRETS_DIR="${ANDROID_SECRETS_DIR:-/workspace/tauri_app/.secrets}" -KEYSTORE_FILE="${ANDROID_KEYSTORE_FILE:-${SECRETS_DIR}/lendry-id-release.keystore}" -APP_GRADLE="${ANDROID_GEN}/app/build.gradle.kts" -KEYSTORE_PROPS="${ANDROID_GEN}/keystore.properties" -SIGNING_SCRIPT="${ANDROID_GEN}/app/release-signing.gradle.kts" -PROPS_TEMPLATE="${SECRETS_DIR}/keystore.properties.template" - -if [[ ! -d "${ANDROID_GEN}" ]]; then - echo "Android project not found: ${ANDROID_GEN}" >&2 - exit 1 -fi - -if [[ ! -f "${KEYSTORE_FILE}" ]]; then - echo "Keystore не найден: ${KEYSTORE_FILE}. Запустите ensure-android-keystore.sh" >&2 - exit 1 -fi - -if [[ -f "${PROPS_TEMPLATE}" ]]; then - cp "${PROPS_TEMPLATE}" "${KEYSTORE_PROPS}" -else - echo "keystore.properties.template не найден в ${SECRETS_DIR}" >&2 - exit 1 -fi - -# Абсолютный путь надёжнее относительного при Gradle rootProject.file(). -if grep -q '^storeFile=' "${KEYSTORE_PROPS}"; then - sed -i "s|^storeFile=.*|storeFile=${KEYSTORE_FILE}|" "${KEYSTORE_PROPS}" -else - printf '\nstoreFile=%s\n' "${KEYSTORE_FILE}" >> "${KEYSTORE_PROPS}" -fi - -STORE_PASSWORD="$(grep -E '^storePassword=' "${KEYSTORE_PROPS}" | head -n1 | cut -d= -f2- || true)" -KEY_ALIAS_PROP="$(grep -E '^keyAlias=' "${KEYSTORE_PROPS}" | head -n1 | cut -d= -f2- || true)" -KEY_ALIAS_PROP="${KEY_ALIAS_PROP:-lendry-id}" - -if [[ -z "${STORE_PASSWORD}" ]]; then - echo "storePassword не найден в ${KEYSTORE_PROPS}" >&2 - exit 1 -fi - -if ! keytool -list -keystore "${KEYSTORE_FILE}" -storepass "${STORE_PASSWORD}" -alias "${KEY_ALIAS_PROP}" >/dev/null 2>&1; then - echo "Keystore не читается с паролями из ${KEYSTORE_PROPS}." >&2 - echo "Удалите tauri_app/.secrets и пересоберите APK, либо задайте ANDROID_KEYSTORE_FORCE_REGENERATE=1." >&2 - exit 1 -fi - -chmod 600 "${KEYSTORE_PROPS}" || true - -cat > "${SIGNING_SCRIPT}" <<'EOF' -import com.android.build.api.dsl.ApplicationExtension -import java.io.File -import java.util.Properties - -val keystoreProperties = Properties().apply { - rootProject.file("keystore.properties").inputStream().use { load(it) } -} - -extensions.configure("android") { - signingConfigs { - create("release") { - val storePasswordValue = keystoreProperties.getProperty("storePassword") - keyAlias = keystoreProperties.getProperty("keyAlias") - keyPassword = keystoreProperties.getProperty("keyPassword") - storeFile = File(keystoreProperties.getProperty("storeFile")) - storePassword = storePasswordValue - } - } - buildTypes { - getByName("release") { - signingConfig = signingConfigs.getByName("release") - } - } -} -EOF - -if ! grep -q 'release-signing.gradle.kts' "${APP_GRADLE}"; then - printf '\napply(from = "release-signing.gradle.kts")\n' >> "${APP_GRADLE}" -fi - -echo "==> Android release signing patched (${KEYSTORE_PROPS})" diff --git a/tauri_app/docker/populate-offline-agp.sh b/tauri_app/docker/populate-offline-agp.sh deleted file mode 100644 index cbad27d..0000000 --- a/tauri_app/docker/populate-offline-agp.sh +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/env bash -# Download AGP + AndroidX runtime deps into offline-maven for isolated LAN builds. -# Run once on a machine with internet, then commit tauri_app/docker/offline-maven/. -set -euo pipefail - -ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" -AGP_VERSION="${ANDROID_GRADLE_PLUGIN_VERSION:-8.11.0}" -RESOLVER="${ROOT}/docker/agp-resolver" -OFFLINE="${ROOT}/docker/offline-maven" - -if [ ! -x "${RESOLVER}/gradlew" ]; then - echo "Gradle wrapper not found in ${RESOLVER}" >&2 - exit 1 -fi - -run_export() { - cd "${RESOLVER}" - chmod +x ./gradlew - sed -i 's/\r$//' ./gradlew 2>/dev/null || true - if [ -n "${ANDROID_HOME:-}" ]; then - printf 'sdk.dir=%s\n' "${ANDROID_HOME}" > local.properties - fi - ./gradlew exportAllOfflineMaven --no-daemon -PagpVersion="${AGP_VERSION}" - "${ROOT}/docker/ensure-tauri-androidx-offline.sh" -} - -echo "==> Resolving AGP ${AGP_VERSION} + Android runtime deps into ${OFFLINE}" - -for script in "${ROOT}/docker/populate-offline-agp.sh" "${ROOT}/docker/ensure-tauri-androidx-offline.sh"; do - sed -i 's/\r$//' "${script}" 2>/dev/null || true -done - -if [ -n "${ANDROID_HOME:-}" ] && [ -d "${ANDROID_HOME}/platforms" ]; then - run_export -elif command -v docker >/dev/null 2>&1; then - echo "==> ANDROID_HOME not set; using Docker (ghcr.io/cirruslabs/android-sdk:35-ndk)" - docker run --rm \ - -v "${ROOT}/..:/workspace" \ - -w /workspace/tauri_app/docker/agp-resolver \ - -e ANDROID_HOME=/opt/android-sdk \ - -e ANDROID_SDK_ROOT=/opt/android-sdk \ - -e JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64 \ - ghcr.io/cirruslabs/android-sdk:35-ndk \ - bash -lc "echo sdk.dir=\${ANDROID_HOME} > local.properties && ./gradlew exportAllOfflineMaven --no-daemon -PagpVersion=${AGP_VERSION} && /workspace/tauri_app/docker/ensure-tauri-androidx-offline.sh" -else - echo "Set ANDROID_HOME or install Docker to populate the offline AndroidX cache." >&2 - exit 1 -fi - -required=( - "${OFFLINE}/com/android/tools/build/builder/${AGP_VERSION}/builder-${AGP_VERSION}.pom" - "${OFFLINE}/androidx/webkit/webkit/1.14.0/webkit-1.14.0.pom" - "${OFFLINE}/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.pom" - "${OFFLINE}/androidx/browser/browser/1.8.0/browser-1.8.0.pom" - "${OFFLINE}/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom" - "${OFFLINE}/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.pom" - "${OFFLINE}/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.pom" - "${OFFLINE}/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.pom" - "${OFFLINE}/org/jetbrains/kotlin/kotlin-gradle-plugin/1.9.25/kotlin-gradle-plugin-1.9.25.pom" -) - -for file in "${required[@]}"; do - if [ ! -f "${file}" ]; then - echo "Missing required offline artifact: ${file}" >&2 - exit 1 - fi -done - -TOTAL_SIZE="$(du -sh "${OFFLINE}" 2>/dev/null | awk '{print $1}' || echo '?')" -ARTIFACTS="$(find "${OFFLINE}" \( -name '*.jar' -o -name '*.aar' \) 2>/dev/null | wc -l | tr -d ' ')" -echo "==> Offline Maven cache ready: ${ARTIFACTS} jar/aar, total ${TOTAL_SIZE}" -echo "==> Commit tauri_app/docker/offline-maven/ and push to the server" diff --git a/tauri_app/docker/populate-offline-all.sh b/tauri_app/docker/populate-offline-all.sh deleted file mode 100644 index f14bdcd..0000000 --- a/tauri_app/docker/populate-offline-all.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash -# Populate all offline artifacts required for isolated LAN APK builds. -set -euo pipefail - -ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" - -echo "==> [1/2] Android Maven (AGP + AndroidX + Kotlin Gradle plugin)" -"${ROOT}/docker/populate-offline-agp.sh" - -echo "==> [2/2] Gradle wrapper distribution" -"${ROOT}/docker/populate-offline-gradle.sh" - -echo "==> Offline cache complete. Commit:" -echo " tauri_app/docker/offline-maven/" -echo " tauri_app/docker/offline-gradle/" diff --git a/tauri_app/docker/populate-offline-gradle.sh b/tauri_app/docker/populate-offline-gradle.sh deleted file mode 100644 index 9192d10..0000000 --- a/tauri_app/docker/populate-offline-gradle.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash -# Download Gradle wrapper distribution for offline Docker/APK builds. -set -euo pipefail - -ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" -GRADLE_VERSION="${GRADLE_VERSION:-8.14.3}" -DEST="${ROOT}/docker/offline-gradle" -ZIP="${DEST}/gradle-${GRADLE_VERSION}-bin.zip" -URL="https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip" - -mkdir -p "${DEST}" -curl -fsSL "${URL}" -o "${ZIP}" -echo "==> Gradle ${GRADLE_VERSION} saved to ${ZIP} ($(du -h "${ZIP}" | awk '{print $1}'))" diff --git a/tauri_app/docker/prefetch-android-agp.sh b/tauri_app/docker/prefetch-android-agp.sh deleted file mode 100644 index 2e50d7c..0000000 --- a/tauri_app/docker/prefetch-android-agp.sh +++ /dev/null @@ -1,82 +0,0 @@ -#!/usr/bin/env bash -# Pre-download Android Gradle Plugin into a local Maven repo inside the image. -set -euo pipefail - -AGP_VERSION="${ANDROID_GRADLE_PLUGIN_VERSION:-8.11.0}" -LOCAL_REPO="${ANDROID_AGP_LOCAL_REPO:-/opt/android-agp-maven}" -BUNDLED_REPO="${ANDROID_AGP_BUNDLED_REPO:-/workspace/tauri_app/docker/offline-maven}" -BUNDLED_ARTIFACT="${BUNDLED_REPO}/com/android/tools/build/gradle/${AGP_VERSION}/gradle-${AGP_VERSION}.jar" - -copy_bundled() { - if [ ! -f "${BUNDLED_ARTIFACT}" ]; then - return 1 - fi - if [ ! -f "${BUNDLED_REPO}/com/android/tools/build/builder/${AGP_VERSION}/builder-${AGP_VERSION}.pom" ]; then - echo "Bundled AGP cache is incomplete (missing builder:${AGP_VERSION}). Run populate-offline-agp.sh on a machine with internet." >&2 - return 1 - fi - if [ ! -f "${BUNDLED_REPO}/androidx/webkit/webkit/1.14.0/webkit-1.14.0.pom" ]; then - echo "Bundled AndroidX cache is incomplete (missing webkit:1.14.0). Run populate-offline-agp.sh on a machine with internet." >&2 - return 1 - fi - if [ ! -f "${BUNDLED_REPO}/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom" ]; then - echo "Bundled AndroidX cache is incomplete (missing annotation:1.9.1). Run populate-offline-agp.sh on a machine with internet." >&2 - return 1 - fi - if [ ! -f "${BUNDLED_REPO}/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.aar" ]; then - echo "Bundled AndroidX cache is incomplete (missing lifecycle-runtime:2.10.0). Run populate-offline-agp.sh on a machine with internet." >&2 - return 1 - fi - mkdir -p "${LOCAL_REPO}" - cp -a "${BUNDLED_REPO}/." "${LOCAL_REPO}/" - echo "==> AGP ${AGP_VERSION} copied from bundled offline cache (${BUNDLED_REPO})" - return 0 -} - -try_download() { - local base_url="$1" - local dest_dir="${LOCAL_REPO}/com/android/tools/build/gradle/${AGP_VERSION}" - mkdir -p "${dest_dir}" - - if curl -fsSL --connect-timeout 20 --max-time 120 \ - "${base_url}/com/android/tools/build/gradle/${AGP_VERSION}/gradle-${AGP_VERSION}.pom" \ - -o "${dest_dir}/gradle-${AGP_VERSION}.pom"; then - curl -fsSL --connect-timeout 20 --max-time 600 \ - "${base_url}/com/android/tools/build/gradle/${AGP_VERSION}/gradle-${AGP_VERSION}.jar" \ - -o "${dest_dir}/gradle-${AGP_VERSION}.jar" - echo "${base_url}" - return 0 - fi - return 1 -} - -echo "==> Prefetch Android Gradle Plugin ${AGP_VERSION}" - -if copy_bundled; then - exit 0 -fi - -MIRROR="" -for base in \ - "https://maven.google.com" \ - "https://dl.google.com/android/maven2" \ - "https://dl.google.com/dl/android/maven2"; do - if MIRROR="$(try_download "${base}")"; then - echo "==> AGP ${AGP_VERSION} cached from ${MIRROR}" - break - fi -done - -if [ -z "${MIRROR}" ]; then - echo "Не удалось получить Android Gradle Plugin ${AGP_VERSION}." >&2 - echo "Нет bundled-кэша в ${BUNDLED_REPO} и Google Maven недоступен (404/сеть)." >&2 - echo "На машине с интернетом выполните: tauri_app/docker/populate-offline-agp.sh" >&2 - exit 1 -fi - -cat > "${LOCAL_REPO}/README.txt" < Local AGP repo: ${LOCAL_REPO}" diff --git a/tauri_app/docker/verify-apk-signature.sh b/tauri_app/docker/verify-apk-signature.sh deleted file mode 100644 index 8d2d742..0000000 --- a/tauri_app/docker/verify-apk-signature.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail - -APK_PATH="${1:-}" -ANDROID_HOME="${ANDROID_HOME:-/opt/android-sdk}" - -if [[ -z "${APK_PATH}" || ! -f "${APK_PATH}" ]]; then - echo "APK не найден для проверки подписи: ${APK_PATH}" >&2 - exit 1 -fi - -APKSIGNER="$(find "${ANDROID_HOME}/build-tools" -name apksigner -type f 2>/dev/null | sort -V | tail -n 1 || true)" - -if [[ -z "${APKSIGNER}" ]]; then - echo "apksigner не найден в ${ANDROID_HOME}/build-tools" >&2 - exit 1 -fi - -echo "==> Проверка подписи APK: ${APK_PATH}" -"${APKSIGNER}" verify --verbose "${APK_PATH}" -echo "==> Подпись APK подтверждена (apksigner verify)" diff --git a/tauri_app/docker/verify-offline-agp.sh b/tauri_app/docker/verify-offline-agp.sh deleted file mode 100644 index 671e037..0000000 --- a/tauri_app/docker/verify-offline-agp.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env bash -# Validate bundled Android Gradle Plugin cache inside the Docker image. -set -euo pipefail - -AGP_VERSION="${ANDROID_GRADLE_PLUGIN_VERSION:-8.11.0}" -LOCAL_REPO="${ANDROID_AGP_LOCAL_REPO:-/opt/android-agp-maven}" -BUNDLED_REPO="${ANDROID_AGP_BUNDLED_REPO:-/workspace/tauri_app/docker/offline-maven}" - -required=( - "${LOCAL_REPO}/com/android/tools/build/gradle/${AGP_VERSION}/gradle-${AGP_VERSION}.jar" - "${LOCAL_REPO}/com/android/tools/build/builder/${AGP_VERSION}/builder-${AGP_VERSION}.pom" - "${LOCAL_REPO}/com/android/tools/build/builder-model/${AGP_VERSION}/builder-model-${AGP_VERSION}.pom" - "${LOCAL_REPO}/com/android/tools/build/gradle-api/${AGP_VERSION}/gradle-api-${AGP_VERSION}.pom" - "${LOCAL_REPO}/androidx/webkit/webkit/1.14.0/webkit-1.14.0.pom" - "${LOCAL_REPO}/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.pom" - "${LOCAL_REPO}/androidx/browser/browser/1.8.0/browser-1.8.0.pom" - "${LOCAL_REPO}/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom" - "${LOCAL_REPO}/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.aar" - "${LOCAL_REPO}/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.aar" - "${LOCAL_REPO}/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.aar" - "${LOCAL_REPO}/org/jetbrains/kotlin/kotlin-gradle-plugin/1.9.25/kotlin-gradle-plugin-1.9.25.pom" -) - -for file in "${required[@]}"; do - if [ ! -f "${file}" ]; then - echo "Неполный offline-кэш AGP, отсутствует: ${file}" >&2 - exit 1 - fi -done - -echo "==> Offline AGP ${AGP_VERSION} validated in ${LOCAL_REPO}" - -if [ -d "${BUNDLED_REPO}" ]; then - rm -rf "${BUNDLED_REPO}" - echo "==> Удалён дубликат offline-кэша из ${BUNDLED_REPO} (экономия места в образе)" -fi diff --git a/tauri_app/docker/warm-gradle-cache.sh b/tauri_app/docker/warm-gradle-cache.sh deleted file mode 100644 index 26eb861..0000000 --- a/tauri_app/docker/warm-gradle-cache.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/env bash -# Warm Gradle cache for Tauri Android buildSrc during Docker image build. -set -euo pipefail - -cd /workspace/tauri_app - -export ANDROID_HOME="${ANDROID_HOME:-/opt/android-sdk}" -export ANDROID_SDK_ROOT="${ANDROID_SDK_ROOT:-${ANDROID_HOME}}" -export GRADLE_USER_HOME="${GRADLE_USER_HOME:-/root/.gradle}" -export ANDROID_AGP_LOCAL_REPO="${ANDROID_AGP_LOCAL_REPO:-/opt/android-agp-maven}" - -if [ -z "${ANDROID_NDK_HOME:-}" ]; then - NDK_DIR="$(find "${ANDROID_HOME}/ndk" -mindepth 1 -maxdepth 1 -type d 2>/dev/null | sort -V | tail -n 1 || true)" - [ -n "${NDK_DIR}" ] && export ANDROID_NDK_HOME="${NDK_DIR}" && export NDK_HOME="${NDK_DIR}" -fi - -npm run build -rm -rf src-tauri/gen/android -npm run android:init -- --ci - -/workspace/tauri_app/docker/patch-android-gradle-repos.sh /workspace/tauri_app/src-tauri/gen/android - -ANDROID_GEN="/workspace/tauri_app/src-tauri/gen/android" -if [ ! -f "${ANDROID_GEN}/tauri.settings.gradle" ]; then - echo '// Gradle warmup stub; Tauri overwrites this during android build' > "${ANDROID_GEN}/tauri.settings.gradle" -fi -if [ ! -f "${ANDROID_GEN}/app/tauri.build.gradle.kts" ]; then - echo '// Gradle warmup stub; Tauri overwrites this during android build' > "${ANDROID_GEN}/app/tauri.build.gradle.kts" -fi - -cd "${ANDROID_GEN}" -set +e -./gradlew :buildSrc:compileKotlin --no-daemon --stacktrace -GRADLE_EXIT=$? -set -e - -if [ -d "${GRADLE_USER_HOME}/caches/modules-2/files-2.1/com.android.tools.build/gradle/8.11.0" ]; then - echo "==> Android Gradle Plugin cached in ${GRADLE_USER_HOME}" - exit 0 -fi - -exit "${GRADLE_EXIT}" diff --git a/tauri_app/index.html b/tauri_app/index.html deleted file mode 100644 index fab44d8..0000000 --- a/tauri_app/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - IDP App - - -
- - - diff --git a/tauri_app/package.json b/tauri_app/package.json deleted file mode 100644 index 66a3e05..0000000 --- a/tauri_app/package.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "@lendry/tauri-app", - "version": "0.1.0", - "private": true, - "type": "module", - "scripts": { - "dev": "vite --host 0.0.0.0", - "build": "tsc --noEmit && vite build", - "preview": "vite preview", - "tauri": "tauri", - "tauri:dev": "tauri dev", - "tauri:build": "tauri build", - "android:init": "tauri android init", - "android:dev": "tauri android dev", - "ios:init": "tauri ios init", - "ios:dev": "tauri ios dev" - }, - "dependencies": { - "@radix-ui/react-avatar": "^1.1.11", - "@radix-ui/react-dialog": "^1.1.15", - "@radix-ui/react-slot": "^1.2.4", - "@tauri-apps/api": "^2.9.0", - "@tauri-apps/plugin-opener": "^2.5.0", - "@tauri-apps/plugin-stronghold": "^2.3.0", - "@zxing/browser": "^0.1.5", - "class-variance-authority": "^0.7.1", - "clsx": "^2.1.1", - "lucide-react": "^0.561.0", - "react": "^19.2.1", - "react-dom": "^19.2.1", - "tailwind-merge": "^3.4.0", - "zod": "^4.2.1" - }, - "devDependencies": { - "@tailwindcss/vite": "^4.1.18", - "@tauri-apps/cli": "^2.9.0", - "@types/node": "^24.10.1", - "@types/react": "^19.2.7", - "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^5.1.2", - "tailwindcss": "^4.1.18", - "typescript": "^5.9.3", - "vite": "^7.3.0" - } -} diff --git a/tauri_app/src-tauri/Cargo.toml b/tauri_app/src-tauri/Cargo.toml deleted file mode 100644 index 1a57df1..0000000 --- a/tauri_app/src-tauri/Cargo.toml +++ /dev/null @@ -1,29 +0,0 @@ -[package] -name = "lendry_id_super_app" -version = "0.1.0" -description = "Lendry ID Super App" -authors = ["Lendry"] -edition = "2021" -rust-version = "1.77" - -[lib] -name = "lendry_id_super_app_lib" -crate-type = ["staticlib", "cdylib", "rlib"] - -[build-dependencies] -tauri-build = { version = "2", features = [] } - -[dependencies] -serde = { version = "1", features = ["derive"] } -serde_json = "1" -tauri = { version = "2", features = [] } -tauri-plugin-opener = "2" -tauri-plugin-stronghold = "2" -url = "2" - -[profile.release] -panic = "abort" -codegen-units = 1 -lto = true -opt-level = "s" -strip = true diff --git a/tauri_app/src-tauri/build.rs b/tauri_app/src-tauri/build.rs deleted file mode 100644 index 261851f..0000000 --- a/tauri_app/src-tauri/build.rs +++ /dev/null @@ -1,3 +0,0 @@ -fn main() { - tauri_build::build(); -} diff --git a/tauri_app/src-tauri/capabilities/default.json b/tauri_app/src-tauri/capabilities/default.json deleted file mode 100644 index ff33ca2..0000000 --- a/tauri_app/src-tauri/capabilities/default.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "$schema": "../gen/schemas/desktop-schema.json", - "identifier": "default", - "description": "Основные разрешения Lendry ID Super App", - "windows": ["main"], - "permissions": [ - "core:default", - "opener:default", - "stronghold:default" - ] -} diff --git a/tauri_app/src-tauri/gen/android/.editorconfig b/tauri_app/src-tauri/gen/android/.editorconfig deleted file mode 100644 index ebe51d3..0000000 --- a/tauri_app/src-tauri/gen/android/.editorconfig +++ /dev/null @@ -1,12 +0,0 @@ -# EditorConfig is awesome: https://EditorConfig.org - -# top-most EditorConfig file -root = true - -[*] -indent_style = space -indent_size = 2 -end_of_line = lf -charset = utf-8 -trim_trailing_whitespace = false -insert_final_newline = false \ No newline at end of file diff --git a/tauri_app/src-tauri/gen/android/.gitignore b/tauri_app/src-tauri/gen/android/.gitignore deleted file mode 100644 index 1c636c3..0000000 --- a/tauri_app/src-tauri/gen/android/.gitignore +++ /dev/null @@ -1,20 +0,0 @@ -*.iml -.gradle -/local.properties -/.idea/caches -/.idea/libraries -/.idea/modules.xml -/.idea/workspace.xml -/.idea/navEditor.xml -/.idea/assetWizardSettings.xml -.DS_Store -build -/captures -.externalNativeBuild -.cxx -local.properties -key.properties -keystore.properties - -/.tauri -/tauri.settings.gradle \ No newline at end of file diff --git a/tauri_app/src-tauri/gen/android/app/.gitignore b/tauri_app/src-tauri/gen/android/app/.gitignore deleted file mode 100644 index 6c4d56b..0000000 --- a/tauri_app/src-tauri/gen/android/app/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -/src/main/**/generated -/src/main/jniLibs/**/*.so -/src/main/assets/tauri.conf.json -/tauri.build.gradle.kts -/proguard-tauri.pro -/tauri.properties \ No newline at end of file diff --git a/tauri_app/src-tauri/gen/android/app/build.gradle.kts b/tauri_app/src-tauri/gen/android/app/build.gradle.kts deleted file mode 100644 index 1f8b444..0000000 --- a/tauri_app/src-tauri/gen/android/app/build.gradle.kts +++ /dev/null @@ -1,71 +0,0 @@ -import java.util.Properties - -plugins { - id("com.android.application") - id("org.jetbrains.kotlin.android") - id("rust") -} - -val tauriProperties = Properties().apply { - val propFile = file("tauri.properties") - if (propFile.exists()) { - propFile.inputStream().use { load(it) } - } -} - -android { - compileSdk = 36 - namespace = "ru.lendry.id.superapp" - defaultConfig { - manifestPlaceholders["usesCleartextTraffic"] = "false" - applicationId = "ru.lendry.id.superapp" - minSdk = 24 - targetSdk = 36 - versionCode = tauriProperties.getProperty("tauri.android.versionCode", "1").toInt() - versionName = tauriProperties.getProperty("tauri.android.versionName", "1.0") - } - buildTypes { - getByName("debug") { - manifestPlaceholders["usesCleartextTraffic"] = "true" - isDebuggable = true - isJniDebuggable = true - isMinifyEnabled = false - packaging { jniLibs.keepDebugSymbols.add("*/arm64-v8a/*.so") - jniLibs.keepDebugSymbols.add("*/armeabi-v7a/*.so") - jniLibs.keepDebugSymbols.add("*/x86/*.so") - jniLibs.keepDebugSymbols.add("*/x86_64/*.so") - } - } - getByName("release") { - isMinifyEnabled = true - proguardFiles( - *fileTree(".") { include("**/*.pro") } - .plus(getDefaultProguardFile("proguard-android-optimize.txt")) - .toList().toTypedArray() - ) - } - } - kotlinOptions { - jvmTarget = "1.8" - } - buildFeatures { - buildConfig = true - } -} - -rust { - rootDirRel = "../../../" -} - -dependencies { - implementation("androidx.webkit:webkit:1.14.0") - implementation("androidx.appcompat:appcompat:1.7.1") - implementation("androidx.activity:activity-ktx:1.10.1") - implementation("com.google.android.material:material:1.12.0") - implementation("androidx.lifecycle:lifecycle-process:2.10.0") - testImplementation("junit:junit:4.13.2") - androidTestImplementation("androidx.test.ext:junit:1.1.4") - androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0") -} - -apply(from = "tauri.build.gradle.kts") \ No newline at end of file diff --git a/tauri_app/src-tauri/gen/android/app/proguard-rules.pro b/tauri_app/src-tauri/gen/android/app/proguard-rules.pro deleted file mode 100644 index 481bb43..0000000 --- a/tauri_app/src-tauri/gen/android/app/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/tauri_app/src-tauri/gen/android/app/src/main/AndroidManifest.xml b/tauri_app/src-tauri/gen/android/app/src/main/AndroidManifest.xml deleted file mode 100644 index 4823088..0000000 --- a/tauri_app/src-tauri/gen/android/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/tauri_app/src-tauri/gen/android/app/src/main/java/ru/lendry/id/superapp/MainActivity.kt b/tauri_app/src-tauri/gen/android/app/src/main/java/ru/lendry/id/superapp/MainActivity.kt deleted file mode 100644 index 3b5cffe..0000000 --- a/tauri_app/src-tauri/gen/android/app/src/main/java/ru/lendry/id/superapp/MainActivity.kt +++ /dev/null @@ -1,11 +0,0 @@ -package ru.lendry.id.superapp - -import android.os.Bundle -import androidx.activity.enableEdgeToEdge - -class MainActivity : TauriActivity() { - override fun onCreate(savedInstanceState: Bundle?) { - enableEdgeToEdge() - super.onCreate(savedInstanceState) - } -} diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/tauri_app/src-tauri/gen/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml deleted file mode 100644 index 2b068d1..0000000 --- a/tauri_app/src-tauri/gen/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/drawable/ic_launcher_background.xml b/tauri_app/src-tauri/gen/android/app/src/main/res/drawable/ic_launcher_background.xml deleted file mode 100644 index 07d5da9..0000000 --- a/tauri_app/src-tauri/gen/android/app/src/main/res/drawable/ic_launcher_background.xml +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/layout/activity_main.xml b/tauri_app/src-tauri/gen/android/app/src/main/res/layout/activity_main.xml deleted file mode 100644 index 4fc2444..0000000 --- a/tauri_app/src-tauri/gen/android/app/src/main/res/layout/activity_main.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index 28f1aa1..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png deleted file mode 100644 index 85d0c88..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png deleted file mode 100644 index 28f1aa1..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 73e48db..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png deleted file mode 100644 index 13dd214..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png deleted file mode 100644 index 73e48db..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 1d98044..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png deleted file mode 100644 index a888b33..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png deleted file mode 100644 index 1d98044..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index 0818324..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png deleted file mode 100644 index a2a838e..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png deleted file mode 100644 index 0818324..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index b18bceb..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png deleted file mode 100644 index 3f8a57f..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png deleted file mode 100644 index b18bceb..0000000 Binary files a/tauri_app/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/values-night/themes.xml b/tauri_app/src-tauri/gen/android/app/src/main/res/values-night/themes.xml deleted file mode 100644 index 780d7fb..0000000 --- a/tauri_app/src-tauri/gen/android/app/src/main/res/values-night/themes.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/values/colors.xml b/tauri_app/src-tauri/gen/android/app/src/main/res/values/colors.xml deleted file mode 100644 index f8c6127..0000000 --- a/tauri_app/src-tauri/gen/android/app/src/main/res/values/colors.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - #FFBB86FC - #FF6200EE - #FF3700B3 - #FF03DAC5 - #FF018786 - #FF000000 - #FFFFFFFF - \ No newline at end of file diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/values/strings.xml b/tauri_app/src-tauri/gen/android/app/src/main/res/values/strings.xml deleted file mode 100644 index a40566e..0000000 --- a/tauri_app/src-tauri/gen/android/app/src/main/res/values/strings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - "Lendry ID" - "Lendry ID" - \ No newline at end of file diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/values/themes.xml b/tauri_app/src-tauri/gen/android/app/src/main/res/values/themes.xml deleted file mode 100644 index 780d7fb..0000000 --- a/tauri_app/src-tauri/gen/android/app/src/main/res/values/themes.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/tauri_app/src-tauri/gen/android/app/src/main/res/xml/file_paths.xml b/tauri_app/src-tauri/gen/android/app/src/main/res/xml/file_paths.xml deleted file mode 100644 index 782d63b..0000000 --- a/tauri_app/src-tauri/gen/android/app/src/main/res/xml/file_paths.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/tauri_app/src-tauri/gen/android/build.gradle.kts b/tauri_app/src-tauri/gen/android/build.gradle.kts deleted file mode 100644 index 607240b..0000000 --- a/tauri_app/src-tauri/gen/android/build.gradle.kts +++ /dev/null @@ -1,22 +0,0 @@ -buildscript { - repositories { - google() - mavenCentral() - } - dependencies { - classpath("com.android.tools.build:gradle:8.11.0") - classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25") - } -} - -allprojects { - repositories { - google() - mavenCentral() - } -} - -tasks.register("clean").configure { - delete("build") -} - diff --git a/tauri_app/src-tauri/gen/android/buildSrc/build.gradle.kts b/tauri_app/src-tauri/gen/android/buildSrc/build.gradle.kts deleted file mode 100644 index 5c55bba..0000000 --- a/tauri_app/src-tauri/gen/android/buildSrc/build.gradle.kts +++ /dev/null @@ -1,23 +0,0 @@ -plugins { - `kotlin-dsl` -} - -gradlePlugin { - plugins { - create("pluginsForCoolKids") { - id = "rust" - implementationClass = "RustPlugin" - } - } -} - -repositories { - google() - mavenCentral() -} - -dependencies { - compileOnly(gradleApi()) - implementation("com.android.tools.build:gradle:8.11.0") -} - diff --git a/tauri_app/src-tauri/gen/android/buildSrc/src/main/java/ru/lendry/id/superapp/kotlin/BuildTask.kt b/tauri_app/src-tauri/gen/android/buildSrc/src/main/java/ru/lendry/id/superapp/kotlin/BuildTask.kt deleted file mode 100644 index a3de125..0000000 --- a/tauri_app/src-tauri/gen/android/buildSrc/src/main/java/ru/lendry/id/superapp/kotlin/BuildTask.kt +++ /dev/null @@ -1,68 +0,0 @@ -import java.io.File -import org.apache.tools.ant.taskdefs.condition.Os -import org.gradle.api.DefaultTask -import org.gradle.api.GradleException -import org.gradle.api.logging.LogLevel -import org.gradle.api.tasks.Input -import org.gradle.api.tasks.TaskAction - -open class BuildTask : DefaultTask() { - @Input - var rootDirRel: String? = null - @Input - var target: String? = null - @Input - var release: Boolean? = null - - @TaskAction - fun assemble() { - val executable = """npm"""; - try { - runTauriCli(executable) - } catch (e: Exception) { - if (Os.isFamily(Os.FAMILY_WINDOWS)) { - // Try different Windows-specific extensions - val fallbacks = listOf( - "$executable.exe", - "$executable.cmd", - "$executable.bat", - ) - - var lastException: Exception = e - for (fallback in fallbacks) { - try { - runTauriCli(fallback) - return - } catch (fallbackException: Exception) { - lastException = fallbackException - } - } - throw lastException - } else { - throw e; - } - } - } - - fun runTauriCli(executable: String) { - val rootDirRel = rootDirRel ?: throw GradleException("rootDirRel cannot be null") - val target = target ?: throw GradleException("target cannot be null") - val release = release ?: throw GradleException("release cannot be null") - val args = listOf("run", "--", "tauri", "android", "android-studio-script"); - - project.exec { - workingDir(File(project.projectDir, rootDirRel)) - executable(executable) - args(args) - if (project.logger.isEnabled(LogLevel.DEBUG)) { - args("-vv") - } else if (project.logger.isEnabled(LogLevel.INFO)) { - args("-v") - } - if (release) { - args("--release") - } - args(listOf("--target", target)) - }.assertNormalExitValue() - } -} \ No newline at end of file diff --git a/tauri_app/src-tauri/gen/android/buildSrc/src/main/java/ru/lendry/id/superapp/kotlin/RustPlugin.kt b/tauri_app/src-tauri/gen/android/buildSrc/src/main/java/ru/lendry/id/superapp/kotlin/RustPlugin.kt deleted file mode 100644 index 4aa7fca..0000000 --- a/tauri_app/src-tauri/gen/android/buildSrc/src/main/java/ru/lendry/id/superapp/kotlin/RustPlugin.kt +++ /dev/null @@ -1,85 +0,0 @@ -import com.android.build.api.dsl.ApplicationExtension -import org.gradle.api.DefaultTask -import org.gradle.api.Plugin -import org.gradle.api.Project -import org.gradle.kotlin.dsl.configure -import org.gradle.kotlin.dsl.get - -const val TASK_GROUP = "rust" - -open class Config { - lateinit var rootDirRel: String -} - -open class RustPlugin : Plugin { - private lateinit var config: Config - - override fun apply(project: Project) = with(project) { - config = extensions.create("rust", Config::class.java) - - val defaultAbiList = listOf("arm64-v8a", "armeabi-v7a", "x86", "x86_64"); - val abiList = (findProperty("abiList") as? String)?.split(',') ?: defaultAbiList - - val defaultArchList = listOf("arm64", "arm", "x86", "x86_64"); - val archList = (findProperty("archList") as? String)?.split(',') ?: defaultArchList - - val targetsList = (findProperty("targetList") as? String)?.split(',') ?: listOf("aarch64", "armv7", "i686", "x86_64") - - extensions.configure { - @Suppress("UnstableApiUsage") - flavorDimensions.add("abi") - productFlavors { - create("universal") { - dimension = "abi" - ndk { - abiFilters += abiList - } - } - defaultArchList.forEachIndexed { index, arch -> - create(arch) { - dimension = "abi" - ndk { - abiFilters.add(defaultAbiList[index]) - } - } - } - } - } - - afterEvaluate { - for (profile in listOf("debug", "release")) { - val profileCapitalized = profile.replaceFirstChar { it.uppercase() } - val buildTask = tasks.maybeCreate( - "rustBuildUniversal$profileCapitalized", - DefaultTask::class.java - ).apply { - group = TASK_GROUP - description = "Build dynamic library in $profile mode for all targets" - } - - tasks["mergeUniversal${profileCapitalized}JniLibFolders"].dependsOn(buildTask) - - for (targetPair in targetsList.withIndex()) { - val targetName = targetPair.value - val targetArch = archList[targetPair.index] - val targetArchCapitalized = targetArch.replaceFirstChar { it.uppercase() } - val targetBuildTask = project.tasks.maybeCreate( - "rustBuild$targetArchCapitalized$profileCapitalized", - BuildTask::class.java - ).apply { - group = TASK_GROUP - description = "Build dynamic library in $profile mode for $targetArch" - rootDirRel = config.rootDirRel - target = targetName - release = profile == "release" - } - - buildTask.dependsOn(targetBuildTask) - tasks["merge$targetArchCapitalized${profileCapitalized}JniLibFolders"].dependsOn( - targetBuildTask - ) - } - } - } - } -} \ No newline at end of file diff --git a/tauri_app/src-tauri/gen/android/gradle.properties b/tauri_app/src-tauri/gen/android/gradle.properties deleted file mode 100644 index 2a7ec69..0000000 --- a/tauri_app/src-tauri/gen/android/gradle.properties +++ /dev/null @@ -1,24 +0,0 @@ -# Project-wide Gradle settings. -# IDE (e.g. Android Studio) users: -# Gradle settings configured through the IDE *will override* -# any settings specified in this file. -# For more details on how to configure your build environment visit -# http://www.gradle.org/docs/current/userguide/build_environment.html -# Specifies the JVM arguments used for the daemon process. -# The setting is particularly useful for tweaking memory settings. -org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 -# When configured, Gradle will run in incubating parallel mode. -# This option should only be used with decoupled projects. More details, visit -# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects -# org.gradle.parallel=true -# AndroidX package structure to make it clearer which packages are bundled with the -# Android operating system, and which are packaged with your app"s APK -# https://developer.android.com/topic/libraries/support-library/androidx-rn -android.useAndroidX=true -# Kotlin code style for this project: "official" or "obsolete": -kotlin.code.style=official -# Enables namespacing of each library's R class so that its R class includes only the -# resources declared in the library itself and none from the library's dependencies, -# thereby reducing the size of the R class for that library -android.nonTransitiveRClass=true -android.nonFinalResIds=false \ No newline at end of file diff --git a/tauri_app/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.jar b/tauri_app/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index e708b1c..0000000 Binary files a/tauri_app/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/tauri_app/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.properties b/tauri_app/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index c5f9a53..0000000 --- a/tauri_app/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,6 +0,0 @@ -#Tue May 10 19:22:52 CST 2022 -distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip -distributionPath=wrapper/dists -zipStorePath=wrapper/dists -zipStoreBase=GRADLE_USER_HOME diff --git a/tauri_app/src-tauri/gen/android/gradlew b/tauri_app/src-tauri/gen/android/gradlew deleted file mode 100644 index 4f906e0..0000000 --- a/tauri_app/src-tauri/gen/android/gradlew +++ /dev/null @@ -1,185 +0,0 @@ -#!/usr/bin/env sh - -# -# Copyright 2015 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -############################################################################## -## -## Gradle start up script for UN*X -## -############################################################################## - -# Attempt to set APP_HOME -# Resolve links: $0 may be a link -PRG="$0" -# Need this for relative symlinks. -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG=`dirname "$PRG"`"/$link" - fi -done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null - -APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - -# Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD="maximum" - -warn () { - echo "$*" -} - -die () { - echo - echo "$*" - echo - exit 1 -} - -# OS specific support (must be 'true' or 'false'). -cygwin=false -msys=false -darwin=false -nonstop=false -case "`uname`" in - CYGWIN* ) - cygwin=true - ;; - Darwin* ) - darwin=true - ;; - MINGW* ) - msys=true - ;; - NONSTOP* ) - nonstop=true - ;; -esac - -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar - - -# Determine the Java command to use to start the JVM. -if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" - else - JAVACMD="$JAVA_HOME/bin/java" - fi - if [ ! -x "$JAVACMD" ] ; then - die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -else - JAVACMD="java" - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." -fi - -# Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then - MAX_FD_LIMIT=`ulimit -H -n` - if [ $? -eq 0 ] ; then - if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then - MAX_FD="$MAX_FD_LIMIT" - fi - ulimit -n $MAX_FD - if [ $? -ne 0 ] ; then - warn "Could not set maximum file descriptor limit: $MAX_FD" - fi - else - warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" - fi -fi - -# For Darwin, add options to specify how the application appears in the dock -if $darwin; then - GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" -fi - -# For Cygwin or MSYS, switch paths to Windows format before running java -if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then - APP_HOME=`cygpath --path --mixed "$APP_HOME"` - CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - - JAVACMD=`cygpath --unix "$JAVACMD"` - - # We build the pattern for arguments to be converted via cygpath - ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` - SEP="" - for dir in $ROOTDIRSRAW ; do - ROOTDIRS="$ROOTDIRS$SEP$dir" - SEP="|" - done - OURCYGPATTERN="(^($ROOTDIRS))" - # Add a user-defined pattern to the cygpath arguments - if [ "$GRADLE_CYGPATTERN" != "" ] ; then - OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" - fi - # Now convert the arguments - kludge to limit ourselves to /bin/sh - i=0 - for arg in "$@" ; do - CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` - CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option - - if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition - eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` - else - eval `echo args$i`="\"$arg\"" - fi - i=`expr $i + 1` - done - case $i in - 0) set -- ;; - 1) set -- "$args0" ;; - 2) set -- "$args0" "$args1" ;; - 3) set -- "$args0" "$args1" "$args2" ;; - 4) set -- "$args0" "$args1" "$args2" "$args3" ;; - 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; - esac -fi - -# Escape application args -save () { - for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done - echo " " -} -APP_ARGS=`save "$@"` - -# Collect all arguments for the java command, following the shell quoting and substitution rules -eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" - -exec "$JAVACMD" "$@" diff --git a/tauri_app/src-tauri/gen/android/gradlew.bat b/tauri_app/src-tauri/gen/android/gradlew.bat deleted file mode 100644 index 107acd3..0000000 --- a/tauri_app/src-tauri/gen/android/gradlew.bat +++ /dev/null @@ -1,89 +0,0 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega diff --git a/tauri_app/src-tauri/gen/android/settings.gradle b/tauri_app/src-tauri/gen/android/settings.gradle deleted file mode 100644 index 3939116..0000000 --- a/tauri_app/src-tauri/gen/android/settings.gradle +++ /dev/null @@ -1,3 +0,0 @@ -include ':app' - -apply from: 'tauri.settings.gradle' diff --git a/tauri_app/src-tauri/icons/icon.png b/tauri_app/src-tauri/icons/icon.png deleted file mode 100644 index f854216..0000000 Binary files a/tauri_app/src-tauri/icons/icon.png and /dev/null differ diff --git a/tauri_app/src-tauri/mobile-permissions.md b/tauri_app/src-tauri/mobile-permissions.md deleted file mode 100644 index 728d865..0000000 --- a/tauri_app/src-tauri/mobile-permissions.md +++ /dev/null @@ -1,30 +0,0 @@ -# Mobile Permissions - -После генерации native-проектов командами: - -```bash -npm run android:init -npm run ios:init -``` - -проверьте, что Tauri CLI добавил разрешения. Если нет, внесите их вручную. - -## Android - -`src-tauri/gen/android/app/src/main/AndroidManifest.xml`: - -```xml - - -``` - -## iOS - -`src-tauri/gen/apple//Info.plist`: - -```xml -NSCameraUsageDescription -Камера нужна для сканирования QR-кода входа Lendry ID. -``` - -QR-сканер использует HTML5 WebRTC внутри WebView. TOTP-секреты сохраняются через `tauri-plugin-stronghold`, а не в LocalStorage. diff --git a/tauri_app/src-tauri/src/lib.rs b/tauri_app/src-tauri/src/lib.rs deleted file mode 100644 index c61cbd8..0000000 --- a/tauri_app/src-tauri/src/lib.rs +++ /dev/null @@ -1,141 +0,0 @@ -use serde::{Deserialize, Serialize}; -use tauri::Manager; -use url::Url; - -const MAX_LABEL_LEN: usize = 80; -const MAX_ISSUER_LEN: usize = 80; -const MIN_TOTP_SECRET_LEN: usize = 16; -const MAX_TOTP_SECRET_LEN: usize = 256; - -#[derive(Debug, Serialize)] -#[serde(rename_all = "camelCase")] -struct ValidationResult { - ok: bool, - value: String, -} - -#[derive(Debug, Deserialize)] -#[serde(rename_all = "camelCase")] -struct TotpProfileInput { - issuer: String, - label: String, - secret: String, - digits: Option, - period: Option, -} - -#[tauri::command] -fn validate_qr_session_payload(payload: String) -> Result { - let trimmed = payload.trim(); - if trimmed.is_empty() { - return Err("QR-код пустой".into()); - } - - let session_id = match Url::parse(trimmed) { - Ok(url) => url - .query_pairs() - .find(|(key, _)| key == "sessionId" || key == "session_id") - .map(|(_, value)| value.to_string()) - .or_else(|| { - url.path_segments() - .and_then(|segments| segments.last().map(ToString::to_string)) - }) - .unwrap_or_default(), - Err(_) => trimmed.to_string(), - }; - - validate_uuid_like(&session_id)?; - Ok(ValidationResult { - ok: true, - value: session_id, - }) -} - -#[tauri::command] -fn validate_api_base_url(url: String) -> Result { - let parsed = Url::parse(url.trim()).map_err(|_| "Некорректный URL API".to_string())?; - match parsed.scheme() { - "http" | "https" => Ok(ValidationResult { - ok: true, - value: parsed.as_str().trim_end_matches('/').to_string(), - }), - _ => Err("URL API должен начинаться с http:// или https://".into()), - } -} - -#[tauri::command] -fn validate_totp_profile_input(input: TotpProfileInput) -> Result { - let issuer = input.issuer.trim(); - let label = input.label.trim(); - let secret = normalize_base32_secret(&input.secret); - let digits = input.digits.unwrap_or(6); - let period = input.period.unwrap_or(30); - - if issuer.is_empty() || issuer.len() > MAX_ISSUER_LEN { - return Err("Название сервиса должно содержать от 1 до 80 символов".into()); - } - if label.is_empty() || label.len() > MAX_LABEL_LEN { - return Err("Название аккаунта должно содержать от 1 до 80 символов".into()); - } - if secret.len() < MIN_TOTP_SECRET_LEN || secret.len() > MAX_TOTP_SECRET_LEN { - return Err("TOTP secret должен содержать от 16 до 256 символов base32".into()); - } - if !secret.chars().all(|ch| matches!(ch, 'A'..='Z' | '2'..='7' | '=')) { - return Err("TOTP secret должен быть в формате base32".into()); - } - if digits != 6 && digits != 8 { - return Err("TOTP поддерживает только 6 или 8 цифр".into()); - } - if !(15..=120).contains(&period) { - return Err("Период TOTP должен быть от 15 до 120 секунд".into()); - } - - Ok(ValidationResult { - ok: true, - value: secret, - }) -} - -fn validate_uuid_like(value: &str) -> Result<(), String> { - let normalized = value.trim(); - if normalized.len() != 36 { - return Err("QR-код не содержит корректный UUID сессии".into()); - } - for (index, ch) in normalized.chars().enumerate() { - let dash = matches!(index, 8 | 13 | 18 | 23); - if dash && ch != '-' { - return Err("QR-код не содержит корректный UUID сессии".into()); - } - if !dash && !ch.is_ascii_hexdigit() { - return Err("QR-код не содержит корректный UUID сессии".into()); - } - } - Ok(()) -} - -fn normalize_base32_secret(secret: &str) -> String { - secret - .trim() - .chars() - .filter(|ch| !ch.is_whitespace() && *ch != '-') - .map(|ch| ch.to_ascii_uppercase()) - .collect() -} - -#[cfg_attr(mobile, tauri::mobile_entry_point)] -pub fn run() { - tauri::Builder::default() - .plugin(tauri_plugin_opener::init()) - .plugin(tauri_plugin_stronghold::Builder::new(|password| password.as_bytes().to_vec()).build()) - .invoke_handler(tauri::generate_handler![ - validate_qr_session_payload, - validate_api_base_url, - validate_totp_profile_input - ]) - .setup(|app| { - let _ = app.path().app_data_dir().map(std::fs::create_dir_all); - Ok(()) - }) - .run(tauri::generate_context!()) - .expect("ошибка запуска Lendry ID Super App"); -} diff --git a/tauri_app/src-tauri/src/main.rs b/tauri_app/src-tauri/src/main.rs deleted file mode 100644 index 942f14c..0000000 --- a/tauri_app/src-tauri/src/main.rs +++ /dev/null @@ -1,3 +0,0 @@ -fn main() { - lendry_id_super_app_lib::run(); -} diff --git a/tauri_app/src-tauri/tauri.conf.json b/tauri_app/src-tauri/tauri.conf.json deleted file mode 100644 index b84891f..0000000 --- a/tauri_app/src-tauri/tauri.conf.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "$schema": "https://schema.tauri.app/config/2", - "productName": "Lendry ID", - "version": "0.1.0", - "identifier": "ru.lendry.id.superapp", - "build": { - "beforeDevCommand": "npm run dev", - "devUrl": "http://localhost:1420", - "beforeBuildCommand": "npm run build", - "frontendDist": "../dist" - }, - "app": { - "withGlobalTauri": false, - "windows": [ - { - "title": "Lendry ID", - "width": 1180, - "height": 820, - "minWidth": 390, - "minHeight": 720, - "resizable": true, - "fullscreen": false - } - ], - "security": { - "csp": "default-src 'self'; connect-src 'self' http://localhost:* https://* ws://localhost:* wss://*; img-src 'self' data: blob: https://*; media-src 'self' blob:; style-src 'self' 'unsafe-inline'; script-src 'self';" - } - }, - "bundle": { - "active": true, - "targets": ["dmg", "app", "msi", "deb", "rpm"], - "category": "Productivity", - "shortDescription": "Мессенджер, SSO-аутентификатор и TOTP в одном приложении", - "longDescription": "Lendry ID Super App объединяет семейный мессенджер, QR-подтверждение входа и безопасное хранилище TOTP-кодов." - }, - "plugins": { - "opener": {} - } -} diff --git a/tauri_app/src/App.tsx b/tauri_app/src/App.tsx deleted file mode 100644 index a623732..0000000 --- a/tauri_app/src/App.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import { useState } from 'react'; -import { MobileShell, type MobileTab } from './components/mobile-shell'; -import { LoginScreen } from './features/auth/login-screen'; -import { ChatsScreen } from './features/chat/chats-screen'; -import { SecurityScreen } from './features/security/security-screen'; -import { TotpScreen } from './features/totp/totp-screen'; -import { MobileAuthProvider, useMobileAuth } from './lib/auth'; - -function AppContent() { - const { isAuthenticated } = useMobileAuth(); - const [activeTab, setActiveTab] = useState('security'); - - if (!isAuthenticated) { - return ; - } - - return ( - - {activeTab === 'chats' ? : null} - {activeTab === 'totp' ? : null} - {activeTab === 'security' ? : null} - - ); -} - -export function App() { - return ( - - - - ); -} diff --git a/tauri_app/src/components/mobile-shell.tsx b/tauri_app/src/components/mobile-shell.tsx deleted file mode 100644 index 48e9eb7..0000000 --- a/tauri_app/src/components/mobile-shell.tsx +++ /dev/null @@ -1,76 +0,0 @@ -import { KeyRound, MessageCircle, ShieldCheck } from 'lucide-react'; -import { cn } from '@/lib/utils'; - -export type MobileTab = 'chats' | 'totp' | 'security'; - -const tabs: Array<{ id: MobileTab; label: string; icon: React.ComponentType<{ className?: string }> }> = [ - { id: 'chats', label: 'Чаты', icon: MessageCircle }, - { id: 'totp', label: 'Коды', icon: KeyRound }, - { id: 'security', label: 'Защита', icon: ShieldCheck } -]; - -export function MobileShell({ - activeTab, - onTabChange, - children -}: { - activeTab: MobileTab; - onTabChange: (tab: MobileTab) => void; - children: React.ReactNode; -}) { - return ( -
-
- - -
{children}
-
- - -
- ); -} diff --git a/tauri_app/src/features/auth/login-screen.tsx b/tauri_app/src/features/auth/login-screen.tsx deleted file mode 100644 index d0e39cc..0000000 --- a/tauri_app/src/features/auth/login-screen.tsx +++ /dev/null @@ -1,159 +0,0 @@ -import { useState } from 'react'; -import { invoke } from '@tauri-apps/api/core'; -import { KeyRound, Loader2, ShieldCheck } from 'lucide-react'; -import { BrandLogo, ProjectTagline } from '@/components/id/brand-logo'; -import { Button } from '@/components/ui/button'; -import { Input } from '@/components/ui/input'; -import { beginTotpLogin, getMobileApiUrl, loginWithPassword, setMobileApiUrl, verifyTotpLogin } from '~/lib/mobile-api'; -import { useMobileAuth } from '~/lib/auth'; -import { getErrorMessage } from '~/lib/errors'; - -export function LoginScreen() { - const { applyAuth } = useMobileAuth(); - const [apiUrl, setApiUrl] = useState(getMobileApiUrl()); - const [loginValue, setLoginValue] = useState(''); - const [password, setPassword] = useState(''); - const [totpCode, setTotpCode] = useState(''); - const [totpChallengeToken, setTotpChallengeToken] = useState(null); - const [submitting, setSubmitting] = useState(false); - const [error, setError] = useState(null); - - async function submit() { - setSubmitting(true); - setError(null); - try { - const validated = await invoke<{ value: string }>('validate_api_base_url', { url: apiUrl }); - setMobileApiUrl(validated.value); - const auth = await loginWithPassword(loginValue.trim(), password); - if ('requiresTotp' in auth) { - if (!auth.totpChallengeToken) { - throw new Error('Сервер не вернул TOTP challenge'); - } - setTotpChallengeToken(auth.totpChallengeToken); - setError(null); - return; - } - applyAuth(auth); - } catch (err) { - setError(getErrorMessage(err, 'Не удалось войти')); - } finally { - setSubmitting(false); - } - } - - async function startTotpLogin() { - if (!loginValue.trim()) { - setError('Укажите почту, телефон или логин'); - return; - } - setSubmitting(true); - setError(null); - try { - const validated = await invoke<{ value: string }>('validate_api_base_url', { url: apiUrl }); - setMobileApiUrl(validated.value); - const response = await beginTotpLogin(loginValue.trim()); - setTotpChallengeToken(response.totpChallengeToken); - } catch (err) { - setError(getErrorMessage(err, 'Не удалось начать TOTP-вход')); - } finally { - setSubmitting(false); - } - } - - async function submitTotp() { - if (!totpChallengeToken) return; - setSubmitting(true); - setError(null); - try { - const auth = await verifyTotpLogin(totpChallengeToken, totpCode.trim()); - applyAuth(auth); - } catch (err) { - setError(getErrorMessage(err, 'Неверный код аутентификатора')); - } finally { - setSubmitting(false); - } - } - - return ( -
-
-
- -

Войдите с ID

-

Мессенджер, QR-вход и TOTP-коды в одном приложении

-
- -
-
- - setApiUrl(event.target.value)} - placeholder="https://sso.example.ru/idp-api" - className="h-[54px] border-[#555762] bg-transparent text-white placeholder:text-[#8f92a0]" - /> -
-
- - setLoginValue(event.target.value)} - autoComplete="username" - className="h-[54px] border-[#555762] bg-transparent text-white placeholder:text-[#8f92a0]" - /> -
- {totpChallengeToken ? ( -
- - setTotpCode(event.target.value.replace(/\D/g, '').slice(0, 8))} - inputMode="numeric" - autoComplete="one-time-code" - className="h-[58px] border-[#555762] bg-transparent text-center text-2xl tracking-[0.35em] text-white placeholder:text-[#8f92a0]" - placeholder="000000" - /> -
- ) : ( -
- - setPassword(event.target.value)} - type="password" - autoComplete="current-password" - className="h-[54px] border-[#555762] bg-transparent text-white placeholder:text-[#8f92a0]" - /> -
- )} -
- - {error ?

{error}

: null} - - {totpChallengeToken ? ( - <> - - - - ) : ( - <> - - - - )} - -
-
- ); -} diff --git a/tauri_app/src/features/auth/qr-scanner.tsx b/tauri_app/src/features/auth/qr-scanner.tsx deleted file mode 100644 index cb45940..0000000 --- a/tauri_app/src/features/auth/qr-scanner.tsx +++ /dev/null @@ -1,107 +0,0 @@ -import { useEffect, useRef, useState } from 'react'; -import { BrowserMultiFormatReader, type IScannerControls } from '@zxing/browser'; -import { invoke } from '@tauri-apps/api/core'; -import { Camera, CheckCircle2, Loader2, QrCode, XCircle } from 'lucide-react'; -import { Button } from '@/components/ui/button'; -import { approveQrLogin } from '~/lib/mobile-api'; -import { useMobileAuth } from '~/lib/auth'; -import { getErrorMessage } from '~/lib/errors'; - -export function QrScanner() { - const { token } = useMobileAuth(); - const videoRef = useRef(null); - const controlsRef = useRef(null); - const [scanning, setScanning] = useState(false); - const [status, setStatus] = useState(null); - const [approving, setApproving] = useState(false); - - useEffect(() => { - return () => { - controlsRef.current?.stop(); - }; - }, []); - - async function approvePayload(payload: string) { - if (!token || approving) return; - setApproving(true); - setStatus('Проверяем QR-код...'); - try { - const validated = await invoke<{ value: string }>('validate_qr_session_payload', { payload }); - await approveQrLogin(validated.value, token); - setStatus('Вход на сайте подтверждён'); - controlsRef.current?.stop(); - setScanning(false); - } catch (error) { - setStatus(getErrorMessage(error, 'Не удалось подтвердить вход')); - } finally { - setApproving(false); - } - } - - async function startScan() { - if (!videoRef.current) return; - setStatus(null); - setScanning(true); - const reader = new BrowserMultiFormatReader(); - try { - controlsRef.current = await reader.decodeFromVideoDevice(undefined, videoRef.current, (result, error) => { - if (result?.getText()) { - void approvePayload(result.getText()); - } else if (error) { - setStatus('Камера активна, наведите её на QR-код'); - } - }); - } catch (error) { - setStatus(getErrorMessage(error, 'Не удалось открыть камеру')); - setScanning(false); - } - } - - function stopScan() { - controlsRef.current?.stop(); - setScanning(false); - } - - return ( -
-
-
-

QR-вход

-

Сканируйте QR-код на сайте, чтобы мгновенно подтвердить вход.

-
-
- -
-
- -
-
- - {status ? ( -
- {status.includes('подтвержд') ? : } - {status} -
- ) : null} - -
- {scanning ? ( - - ) : ( - - )} - {approving ? ( - - ) : null} -
-
- ); -} diff --git a/tauri_app/src/features/chat/chats-screen.tsx b/tauri_app/src/features/chat/chats-screen.tsx deleted file mode 100644 index 08cab15..0000000 --- a/tauri_app/src/features/chat/chats-screen.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import { openUrl } from '@tauri-apps/plugin-opener'; -import { ExternalLink, MessageCircle } from 'lucide-react'; -import { Button } from '@/components/ui/button'; - -const FRONTEND_URL = (import.meta.env.VITE_FRONTEND_URL ?? 'http://localhost:3002').replace(/\/$/, ''); - -export function ChatsScreen() { - const familyUrl = `${FRONTEND_URL}/family`; - - return ( -
-
-
-
-

Messenger

-

Чаты

-

Вкладка использует web UI семьи, чтобы дизайн и поведение совпадали с сайтом.

-
-
- -
-
-
- -
-