diff --git a/.gitignore b/.gitignore index 02fa36e0bc..638761f4f6 100644 --- a/.gitignore +++ b/.gitignore @@ -190,5 +190,5 @@ status-modules/resources trace.edn -app -project.clj +/app/ +project.clj \ No newline at end of file diff --git a/android/app/build.gradle b/android/app/build.gradle index 0bdc479c40..d46695b735 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -199,6 +199,10 @@ android { exclude '/lib/mips64/**' exclude '/lib/armeabi/**' + pickFirst "lib/armeabi-v7a/libc++_shared.so" + pickFirst "lib/arm64-v8a/libc++_shared.so" + pickFirst "lib/x86/libc++_shared.so" + pickFirst "lib/x86_64/libc++_shared.so" /** Fix for: Execution failed for task ':app:transformNativeLibsWithStripDebugSymbolForDebug'. * with recent version of ndk (17.0.4754217) @@ -287,6 +291,18 @@ dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation "com.facebook.react:react-native:+" // From node_modules + implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" + + debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") { + exclude group:'com.facebook.fbjni' + } + debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") { + exclude group:'com.facebook.flipper' + } + debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") { + exclude group:'com.facebook.flipper' + } + if (enableHermes) { def hermesPath = "../../node_modules/hermes-engine/android/"; debugImplementation files(hermesPath + "hermes-debug.aar") diff --git a/android/app/proguard-rules.pro b/android/app/proguard-rules.pro index 19a307421d..7b19d94f58 100644 --- a/android/app/proguard-rules.pro +++ b/android/app/proguard-rules.pro @@ -15,6 +15,9 @@ # React Native +-keep class com.facebook.hermes.unicode.** { *; } +-keep class com.facebook.jni.** { *; } + # Keep our interfaces so they can be used by other ProGuard rules. # See http://sourceforge.net/p/proguard/bugs/466/ -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip diff --git a/android/app/src/debug/java/im/status/ethereum/ReactNativeFlipper.java b/android/app/src/debug/java/im/status/ethereum/ReactNativeFlipper.java new file mode 100644 index 0000000000..7f6be832b8 --- /dev/null +++ b/android/app/src/debug/java/im/status/ethereum/ReactNativeFlipper.java @@ -0,0 +1,72 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. + * + *

This source code is licensed under the MIT license found in the LICENSE file in the root + * directory of this source tree. + */ +package im.status.ethereum; + +import android.content.Context; +import com.facebook.flipper.android.AndroidFlipperClient; +import com.facebook.flipper.android.utils.FlipperUtils; +import com.facebook.flipper.core.FlipperClient; +import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin; +import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin; +import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin; +import com.facebook.flipper.plugins.inspector.DescriptorMapping; +import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin; +import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor; +import com.facebook.flipper.plugins.network.NetworkFlipperPlugin; +import com.facebook.flipper.plugins.react.ReactFlipperPlugin; +import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin; +import com.facebook.react.ReactInstanceManager; +import com.facebook.react.bridge.ReactContext; +import com.facebook.react.modules.network.NetworkingModule; +import okhttp3.OkHttpClient; + +public class ReactNativeFlipper { + public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) { + if (FlipperUtils.shouldEnableFlipper(context)) { + final FlipperClient client = AndroidFlipperClient.getInstance(context); + + client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); + client.addPlugin(new ReactFlipperPlugin()); + client.addPlugin(new DatabasesFlipperPlugin(context)); + client.addPlugin(new SharedPreferencesFlipperPlugin(context)); + client.addPlugin(CrashReporterPlugin.getInstance()); + + NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin(); + NetworkingModule.setCustomClientBuilder( + new NetworkingModule.CustomClientBuilder() { + @Override + public void apply(OkHttpClient.Builder builder) { + builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin)); + } + }); + client.addPlugin(networkFlipperPlugin); + client.start(); + + // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized + // Hence we run if after all native modules have been initialized + ReactContext reactContext = reactInstanceManager.getCurrentReactContext(); + if (reactContext == null) { + reactInstanceManager.addReactInstanceEventListener( + new ReactInstanceManager.ReactInstanceEventListener() { + @Override + public void onReactContextInitialized(ReactContext reactContext) { + reactInstanceManager.removeReactInstanceEventListener(this); + reactContext.runOnNativeModulesQueueThread( + new Runnable() { + @Override + public void run() { + client.addPlugin(new FrescoFlipperPlugin()); + } + }); + } + }); + } else { + client.addPlugin(new FrescoFlipperPlugin()); + } + } + } +} diff --git a/android/app/src/main/java/im/status/ethereum/MainApplication.java b/android/app/src/main/java/im/status/ethereum/MainApplication.java index 2b975985b3..f37feea64b 100644 --- a/android/app/src/main/java/im/status/ethereum/MainApplication.java +++ b/android/app/src/main/java/im/status/ethereum/MainApplication.java @@ -2,15 +2,16 @@ package im.status.ethereum; import androidx.multidex.MultiDexApplication; import android.util.Log; +import android.content.Context; +import java.lang.reflect.InvocationTargetException; import com.facebook.react.PackageList; -import com.facebook.hermes.reactexecutor.HermesExecutorFactory; -import com.facebook.react.bridge.JavaScriptExecutorFactory; import com.aakashns.reactnativedialogs.ReactNativeDialogsPackage; import com.facebook.react.ReactApplication; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; import com.facebook.soloader.SoLoader; +import com.facebook.react.ReactInstanceManager; import java.util.List; @@ -50,5 +51,36 @@ public class MainApplication extends MultiDexApplication implements ReactApplica public void onCreate() { super.onCreate(); SoLoader.init(this, /* native exopackage */ false); + initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); + } + /** + * Loads Flipper in React Native templates. Call this in the onCreate method with something like + * initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); + * + * @param context + * @param reactInstanceManager + */ + private static void initializeFlipper( + Context context, ReactInstanceManager reactInstanceManager) { + if (BuildConfig.DEBUG) { + try { + /* + We use reflection here to pick up the class that initializes Flipper, + since Flipper library is not available in release mode + */ + Class aClass = Class.forName("im.status.ethereum.ReactNativeFlipper"); + aClass + .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class) + .invoke(null, context, reactInstanceManager); + } catch (ClassNotFoundException e) { + e.printStackTrace(); + } catch (NoSuchMethodException e) { + e.printStackTrace(); + } catch (IllegalAccessException e) { + e.printStackTrace(); + } catch (InvocationTargetException e) { + e.printStackTrace(); + } + } } } diff --git a/android/gradle.properties b/android/gradle.properties index f25055b9e8..73a73e54cb 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -46,3 +46,6 @@ ANDROID_ABI_INCLUDE=armeabi-v7a;arm64-v8a;x86 org.gradle.jvmargs=-Xmx8704M versionCode=9999 + +# Flipper +FLIPPER_VERSION=0.33.1 \ No newline at end of file diff --git a/ios/Dummy.swift b/ios/Dummy.swift new file mode 100644 index 0000000000..ee5c8184cd --- /dev/null +++ b/ios/Dummy.swift @@ -0,0 +1,9 @@ +// +// Dummy.swift +// StatusIm +// +// Created by Gheorghe on 01.05.2020. +// Copyright © 2020 Status. All rights reserved. +// + +import Foundation diff --git a/ios/Podfile b/ios/Podfile index 80d04b8ed3..9985db62d5 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -1,14 +1,51 @@ -# Uncomment the next line to define a global platform for your project -# platform :ios, '9.0' +platform :ios, '9.0' +require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' -source 'https://github.com/CocoaPods/Specs.git' +def add_flipper_pods!(versions = {}) + versions['Flipper'] ||= '~> 0.33.1' + versions['DoubleConversion'] ||= '1.1.7' + versions['Flipper-Folly'] ||= '~> 2.1' + versions['Flipper-Glog'] ||= '0.3.6' + versions['Flipper-PeerTalk'] ||= '~> 0.0.4' + versions['Flipper-RSocket'] ||= '~> 1.0' + + pod 'FlipperKit', versions['Flipper'], :configuration => 'Debug' + pod 'FlipperKit/FlipperKitLayoutPlugin', versions['Flipper'], :configuration => 'Debug' + pod 'FlipperKit/SKIOSNetworkPlugin', versions['Flipper'], :configuration => 'Debug' + pod 'FlipperKit/FlipperKitUserDefaultsPlugin', versions['Flipper'], :configuration => 'Debug' + pod 'FlipperKit/FlipperKitReactPlugin', versions['Flipper'], :configuration => 'Debug' + + # List all transitive dependencies for FlipperKit pods + # to avoid them being linked in Release builds + pod 'Flipper', versions['Flipper'], :configuration => 'Debug' + pod 'Flipper-DoubleConversion', versions['DoubleConversion'], :configuration => 'Debug' + pod 'Flipper-Folly', versions['Flipper-Folly'], :configuration => 'Debug' + pod 'Flipper-Glog', versions['Flipper-Glog'], :configuration => 'Debug' + pod 'Flipper-PeerTalk', versions['Flipper-PeerTalk'], :configuration => 'Debug' + pod 'Flipper-RSocket', versions['Flipper-RSocket'], :configuration => 'Debug' + pod 'FlipperKit/Core', versions['Flipper'], :configuration => 'Debug' + pod 'FlipperKit/CppBridge', versions['Flipper'], :configuration => 'Debug' + pod 'FlipperKit/FBCxxFollyDynamicConvert', versions['Flipper'], :configuration => 'Debug' + pod 'FlipperKit/FBDefines', versions['Flipper'], :configuration => 'Debug' + pod 'FlipperKit/FKPortForwarding', versions['Flipper'], :configuration => 'Debug' + pod 'FlipperKit/FlipperKitHighlightOverlay', versions['Flipper'], :configuration => 'Debug' + pod 'FlipperKit/FlipperKitLayoutTextSearchable', versions['Flipper'], :configuration => 'Debug' + pod 'FlipperKit/FlipperKitNetworkPlugin', versions['Flipper'], :configuration => 'Debug' +end + +# Post Install processing for Flipper +def flipper_post_install(installer) + installer.pods_project.targets.each do |target| + if target.name == 'YogaKit' + target.build_configurations.each do |config| + config.build_settings['SWIFT_VERSION'] = '4.1' + end + end + end +end target 'StatusIm' do - platform :ios, '9.0' - # Uncomment the next line if you're using Swift or would like to use dynamic frameworks - # use_frameworks! - require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' - # Pods for StatusIm + # Pods for StatusQuo pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector" pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec" pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired" @@ -32,11 +69,10 @@ target 'StatusIm' do pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi' pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor' pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector' - pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon" + pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon" pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon" - pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga' + pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga', :modular_headers => true - # when removing svg pod, RCTImage is needed to be removed from React subspecs pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec' pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec' pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec' @@ -45,9 +81,12 @@ target 'StatusIm' do pod 'SQLCipher', '~>3.0' pod 'SSZipArchive' - + add_flipper_pods! + post_install do |installer| + flipper_post_install(installer) + end target 'StatusImTests' do - inherit! :search_paths + inherit! :complete # Pods for testing end diff --git a/ios/Podfile.lock b/ios/Podfile.lock index eb840d64a1..752a6411af 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -1,14 +1,62 @@ PODS: - boost-for-react-native (1.63.0) + - CocoaAsyncSocket (7.6.4) + - CocoaLibEvent (1.0.0) - DoubleConversion (1.1.6) - - FBLazyVector (0.61.5) - - FBReactNativeSpec (0.61.5): + - FBLazyVector (0.62.2) + - FBReactNativeSpec (0.62.2): - Folly (= 2018.10.22.00) - - RCTRequired (= 0.61.5) - - RCTTypeSafety (= 0.61.5) - - React-Core (= 0.61.5) - - React-jsi (= 0.61.5) - - ReactCommon/turbomodule/core (= 0.61.5) + - RCTRequired (= 0.62.2) + - RCTTypeSafety (= 0.62.2) + - React-Core (= 0.62.2) + - React-jsi (= 0.62.2) + - ReactCommon/turbomodule/core (= 0.62.2) + - Flipper (0.33.1): + - Flipper-Folly (~> 2.1) + - Flipper-RSocket (~> 1.0) + - Flipper-DoubleConversion (1.1.7) + - Flipper-Folly (2.2.0): + - boost-for-react-native + - CocoaLibEvent (~> 1.0) + - Flipper-DoubleConversion + - Flipper-Glog + - OpenSSL-Universal (= 1.0.2.19) + - Flipper-Glog (0.3.6) + - Flipper-PeerTalk (0.0.4) + - Flipper-RSocket (1.1.0): + - Flipper-Folly (~> 2.2) + - FlipperKit (0.33.1): + - FlipperKit/Core (= 0.33.1) + - FlipperKit/Core (0.33.1): + - Flipper (~> 0.33.1) + - FlipperKit/CppBridge + - FlipperKit/FBCxxFollyDynamicConvert + - FlipperKit/FBDefines + - FlipperKit/FKPortForwarding + - FlipperKit/CppBridge (0.33.1): + - Flipper (~> 0.33.1) + - FlipperKit/FBCxxFollyDynamicConvert (0.33.1): + - Flipper-Folly (~> 2.1) + - FlipperKit/FBDefines (0.33.1) + - FlipperKit/FKPortForwarding (0.33.1): + - CocoaAsyncSocket (~> 7.6) + - Flipper-PeerTalk (~> 0.0.4) + - FlipperKit/FlipperKitHighlightOverlay (0.33.1) + - FlipperKit/FlipperKitLayoutPlugin (0.33.1): + - FlipperKit/Core + - FlipperKit/FlipperKitHighlightOverlay + - FlipperKit/FlipperKitLayoutTextSearchable + - YogaKit (~> 1.18) + - FlipperKit/FlipperKitLayoutTextSearchable (0.33.1) + - FlipperKit/FlipperKitNetworkPlugin (0.33.1): + - FlipperKit/Core + - FlipperKit/FlipperKitReactPlugin (0.33.1): + - FlipperKit/Core + - FlipperKit/FlipperKitUserDefaultsPlugin (0.33.1): + - FlipperKit/Core + - FlipperKit/SKIOSNetworkPlugin (0.33.1): + - FlipperKit/Core + - FlipperKit/FlipperKitNetworkPlugin - Folly (2018.10.22.00): - boost-for-react-native - DoubleConversion @@ -19,170 +67,173 @@ PODS: - DoubleConversion - glog - glog (0.3.5) + - OpenSSL-Universal (1.0.2.19): + - OpenSSL-Universal/Static (= 1.0.2.19) + - OpenSSL-Universal/Static (1.0.2.19) - QBImagePickerController (3.4.0) - - RCTRequired (0.61.5) - - RCTTypeSafety (0.61.5): - - FBLazyVector (= 0.61.5) + - RCTRequired (0.62.2) + - RCTTypeSafety (0.62.2): + - FBLazyVector (= 0.62.2) - Folly (= 2018.10.22.00) - - RCTRequired (= 0.61.5) - - React-Core (= 0.61.5) - - React (0.61.5): - - React-Core (= 0.61.5) - - React-Core/DevSupport (= 0.61.5) - - React-Core/RCTWebSocket (= 0.61.5) - - React-RCTActionSheet (= 0.61.5) - - React-RCTAnimation (= 0.61.5) - - React-RCTBlob (= 0.61.5) - - React-RCTImage (= 0.61.5) - - React-RCTLinking (= 0.61.5) - - React-RCTNetwork (= 0.61.5) - - React-RCTSettings (= 0.61.5) - - React-RCTText (= 0.61.5) - - React-RCTVibration (= 0.61.5) - - React-Core (0.61.5): + - RCTRequired (= 0.62.2) + - React-Core (= 0.62.2) + - React (0.62.2): + - React-Core (= 0.62.2) + - React-Core/DevSupport (= 0.62.2) + - React-Core/RCTWebSocket (= 0.62.2) + - React-RCTActionSheet (= 0.62.2) + - React-RCTAnimation (= 0.62.2) + - React-RCTBlob (= 0.62.2) + - React-RCTImage (= 0.62.2) + - React-RCTLinking (= 0.62.2) + - React-RCTNetwork (= 0.62.2) + - React-RCTSettings (= 0.62.2) + - React-RCTText (= 0.62.2) + - React-RCTVibration (= 0.62.2) + - React-Core (0.62.2): - Folly (= 2018.10.22.00) - glog - - React-Core/Default (= 0.61.5) - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) + - React-Core/Default (= 0.62.2) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) - Yoga - - React-Core/CoreModulesHeaders (0.61.5): + - React-Core/CoreModulesHeaders (0.62.2): - Folly (= 2018.10.22.00) - glog - React-Core/Default - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) - Yoga - - React-Core/Default (0.61.5): + - React-Core/Default (0.62.2): - Folly (= 2018.10.22.00) - glog - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) - Yoga - - React-Core/DevSupport (0.61.5): + - React-Core/DevSupport (0.62.2): - Folly (= 2018.10.22.00) - glog - - React-Core/Default (= 0.61.5) - - React-Core/RCTWebSocket (= 0.61.5) - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) - - React-jsinspector (= 0.61.5) + - React-Core/Default (= 0.62.2) + - React-Core/RCTWebSocket (= 0.62.2) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) + - React-jsinspector (= 0.62.2) - Yoga - - React-Core/RCTActionSheetHeaders (0.61.5): + - React-Core/RCTActionSheetHeaders (0.62.2): - Folly (= 2018.10.22.00) - glog - React-Core/Default - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) - Yoga - - React-Core/RCTAnimationHeaders (0.61.5): + - React-Core/RCTAnimationHeaders (0.62.2): - Folly (= 2018.10.22.00) - glog - React-Core/Default - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) - Yoga - - React-Core/RCTBlobHeaders (0.61.5): + - React-Core/RCTBlobHeaders (0.62.2): - Folly (= 2018.10.22.00) - glog - React-Core/Default - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) - Yoga - - React-Core/RCTImageHeaders (0.61.5): + - React-Core/RCTImageHeaders (0.62.2): - Folly (= 2018.10.22.00) - glog - React-Core/Default - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) - Yoga - - React-Core/RCTLinkingHeaders (0.61.5): + - React-Core/RCTLinkingHeaders (0.62.2): - Folly (= 2018.10.22.00) - glog - React-Core/Default - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) - Yoga - - React-Core/RCTNetworkHeaders (0.61.5): + - React-Core/RCTNetworkHeaders (0.62.2): - Folly (= 2018.10.22.00) - glog - React-Core/Default - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) - Yoga - - React-Core/RCTSettingsHeaders (0.61.5): + - React-Core/RCTSettingsHeaders (0.62.2): - Folly (= 2018.10.22.00) - glog - React-Core/Default - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) - Yoga - - React-Core/RCTTextHeaders (0.61.5): + - React-Core/RCTTextHeaders (0.62.2): - Folly (= 2018.10.22.00) - glog - React-Core/Default - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) - Yoga - - React-Core/RCTVibrationHeaders (0.61.5): + - React-Core/RCTVibrationHeaders (0.62.2): - Folly (= 2018.10.22.00) - glog - React-Core/Default - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) - Yoga - - React-Core/RCTWebSocket (0.61.5): + - React-Core/RCTWebSocket (0.62.2): - Folly (= 2018.10.22.00) - glog - - React-Core/Default (= 0.61.5) - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsiexecutor (= 0.61.5) + - React-Core/Default (= 0.62.2) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsiexecutor (= 0.62.2) - Yoga - - React-CoreModules (0.61.5): - - FBReactNativeSpec (= 0.61.5) + - React-CoreModules (0.62.2): + - FBReactNativeSpec (= 0.62.2) - Folly (= 2018.10.22.00) - - RCTTypeSafety (= 0.61.5) - - React-Core/CoreModulesHeaders (= 0.61.5) - - React-RCTImage (= 0.61.5) - - ReactCommon/turbomodule/core (= 0.61.5) - - React-cxxreact (0.61.5): + - RCTTypeSafety (= 0.62.2) + - React-Core/CoreModulesHeaders (= 0.62.2) + - React-RCTImage (= 0.62.2) + - ReactCommon/turbomodule/core (= 0.62.2) + - React-cxxreact (0.62.2): - boost-for-react-native (= 1.63.0) - DoubleConversion - Folly (= 2018.10.22.00) - glog - - React-jsinspector (= 0.61.5) - - React-jsi (0.61.5): + - React-jsinspector (= 0.62.2) + - React-jsi (0.62.2): - boost-for-react-native (= 1.63.0) - DoubleConversion - Folly (= 2018.10.22.00) - glog - - React-jsi/Default (= 0.61.5) - - React-jsi/Default (0.61.5): + - React-jsi/Default (= 0.62.2) + - React-jsi/Default (0.62.2): - boost-for-react-native (= 1.63.0) - DoubleConversion - Folly (= 2018.10.22.00) - glog - - React-jsiexecutor (0.61.5): + - React-jsiexecutor (0.62.2): - DoubleConversion - Folly (= 2018.10.22.00) - glog - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - React-jsinspector (0.61.5) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - React-jsinspector (0.62.2) - react-native-background-timer (2.2.0): - React - react-native-camera (3.23.1): @@ -207,41 +258,65 @@ PODS: - React - react-native-webview (8.0.7): - React - - React-RCTActionSheet (0.61.5): - - React-Core/RCTActionSheetHeaders (= 0.61.5) - - React-RCTAnimation (0.61.5): - - React-Core/RCTAnimationHeaders (= 0.61.5) - - React-RCTBlob (0.61.5): - - React-Core/RCTBlobHeaders (= 0.61.5) - - React-Core/RCTWebSocket (= 0.61.5) - - React-jsi (= 0.61.5) - - React-RCTNetwork (= 0.61.5) - - React-RCTImage (0.61.5): - - React-Core/RCTImageHeaders (= 0.61.5) - - React-RCTNetwork (= 0.61.5) - - React-RCTLinking (0.61.5): - - React-Core/RCTLinkingHeaders (= 0.61.5) - - React-RCTNetwork (0.61.5): - - React-Core/RCTNetworkHeaders (= 0.61.5) - - React-RCTSettings (0.61.5): - - React-Core/RCTSettingsHeaders (= 0.61.5) - - React-RCTText (0.61.5): - - React-Core/RCTTextHeaders (= 0.61.5) - - React-RCTVibration (0.61.5): - - React-Core/RCTVibrationHeaders (= 0.61.5) - - ReactCommon/jscallinvoker (0.61.5): + - React-RCTActionSheet (0.62.2): + - React-Core/RCTActionSheetHeaders (= 0.62.2) + - React-RCTAnimation (0.62.2): + - FBReactNativeSpec (= 0.62.2) + - Folly (= 2018.10.22.00) + - RCTTypeSafety (= 0.62.2) + - React-Core/RCTAnimationHeaders (= 0.62.2) + - ReactCommon/turbomodule/core (= 0.62.2) + - React-RCTBlob (0.62.2): + - FBReactNativeSpec (= 0.62.2) + - Folly (= 2018.10.22.00) + - React-Core/RCTBlobHeaders (= 0.62.2) + - React-Core/RCTWebSocket (= 0.62.2) + - React-jsi (= 0.62.2) + - React-RCTNetwork (= 0.62.2) + - ReactCommon/turbomodule/core (= 0.62.2) + - React-RCTImage (0.62.2): + - FBReactNativeSpec (= 0.62.2) + - Folly (= 2018.10.22.00) + - RCTTypeSafety (= 0.62.2) + - React-Core/RCTImageHeaders (= 0.62.2) + - React-RCTNetwork (= 0.62.2) + - ReactCommon/turbomodule/core (= 0.62.2) + - React-RCTLinking (0.62.2): + - FBReactNativeSpec (= 0.62.2) + - React-Core/RCTLinkingHeaders (= 0.62.2) + - ReactCommon/turbomodule/core (= 0.62.2) + - React-RCTNetwork (0.62.2): + - FBReactNativeSpec (= 0.62.2) + - Folly (= 2018.10.22.00) + - RCTTypeSafety (= 0.62.2) + - React-Core/RCTNetworkHeaders (= 0.62.2) + - ReactCommon/turbomodule/core (= 0.62.2) + - React-RCTSettings (0.62.2): + - FBReactNativeSpec (= 0.62.2) + - Folly (= 2018.10.22.00) + - RCTTypeSafety (= 0.62.2) + - React-Core/RCTSettingsHeaders (= 0.62.2) + - ReactCommon/turbomodule/core (= 0.62.2) + - React-RCTText (0.62.2): + - React-Core/RCTTextHeaders (= 0.62.2) + - React-RCTVibration (0.62.2): + - FBReactNativeSpec (= 0.62.2) + - Folly (= 2018.10.22.00) + - React-Core/RCTVibrationHeaders (= 0.62.2) + - ReactCommon/turbomodule/core (= 0.62.2) + - ReactCommon/callinvoker (0.62.2): - DoubleConversion - Folly (= 2018.10.22.00) - glog - - React-cxxreact (= 0.61.5) - - ReactCommon/turbomodule/core (0.61.5): + - React-cxxreact (= 0.62.2) + - ReactCommon/turbomodule/core (0.62.2): - DoubleConversion - Folly (= 2018.10.22.00) - glog - - React-Core (= 0.61.5) - - React-cxxreact (= 0.61.5) - - React-jsi (= 0.61.5) - - ReactCommon/jscallinvoker (= 0.61.5) + - React-Core (= 0.62.2) + - React-cxxreact (= 0.62.2) + - React-jsi (= 0.62.2) + - ReactCommon/callinvoker (= 0.62.2) - ReactNativeDarkMode (0.2.2): - React - RNCMaskedView (0.1.9): @@ -277,11 +352,32 @@ PODS: - TouchID (4.4.1): - React - Yoga (1.14.0) + - YogaKit (1.18.1): + - Yoga (~> 1.14) DEPENDENCIES: - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) - FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`) + - Flipper (~> 0.33.1) + - Flipper-DoubleConversion (= 1.1.7) + - Flipper-Folly (~> 2.1) + - Flipper-Glog (= 0.3.6) + - Flipper-PeerTalk (~> 0.0.4) + - Flipper-RSocket (~> 1.0) + - FlipperKit (~> 0.33.1) + - FlipperKit/Core (~> 0.33.1) + - FlipperKit/CppBridge (~> 0.33.1) + - FlipperKit/FBCxxFollyDynamicConvert (~> 0.33.1) + - FlipperKit/FBDefines (~> 0.33.1) + - FlipperKit/FKPortForwarding (~> 0.33.1) + - FlipperKit/FlipperKitHighlightOverlay (~> 0.33.1) + - FlipperKit/FlipperKitLayoutPlugin (~> 0.33.1) + - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.33.1) + - FlipperKit/FlipperKitNetworkPlugin (~> 0.33.1) + - FlipperKit/FlipperKitReactPlugin (~> 0.33.1) + - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.33.1) + - FlipperKit/SKIOSNetworkPlugin (~> 0.33.1) - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`) - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) @@ -313,7 +409,7 @@ DEPENDENCIES: - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) - React-RCTText (from `../node_modules/react-native/Libraries/Text`) - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) - - ReactCommon/jscallinvoker (from `../node_modules/react-native/ReactCommon`) + - ReactCommon/callinvoker (from `../node_modules/react-native/ReactCommon`) - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) - ReactNativeDarkMode (from `../node_modules/react-native-dark-mode`) - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" @@ -338,6 +434,18 @@ SPEC REPOS: - RSKImageCropper - SQLCipher - SSZipArchive + trunk: + - CocoaAsyncSocket + - CocoaLibEvent + - Flipper + - Flipper-DoubleConversion + - Flipper-Folly + - Flipper-Glog + - Flipper-PeerTalk + - Flipper-RSocket + - FlipperKit + - OpenSSL-Universal + - YogaKit EXTERNAL SOURCES: DoubleConversion: @@ -435,21 +543,31 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c + CocoaAsyncSocket: 694058e7c0ed05a9e217d1b3c7ded962f4180845 + CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2 - FBLazyVector: aaeaf388755e4f29cd74acbc9e3b8da6d807c37f - FBReactNativeSpec: 118d0d177724c2d67f08a59136eb29ef5943ec75 + FBLazyVector: 4aab18c93cd9546e4bfed752b4084585eca8b245 + FBReactNativeSpec: 5465d51ccfeecb7faa12f9ae0024f2044ce4044e + Flipper: 6c1f484f9a88d30ab3e272800d53688439e50f69 + Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41 + Flipper-Folly: c12092ea368353b58e992843a990a3225d4533c3 + Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6 + Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 + Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7 + FlipperKit: 6dc9b8f4ef60d9e5ded7f0264db299c91f18832e Folly: 30e7936e1c45c08d884aa59369ed951a8e68cf51 glog: 682164e7ac67e41afd8f7b6a37a96d04caf61cc0 + OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355 QBImagePickerController: d54cf93db6decf26baf6ed3472f336ef35cae022 - RCTRequired: b153add4da6e7dbc44aebf93f3cf4fcae392ddf1 - RCTTypeSafety: 9aa1b91d7f9310fc6eadc3cf95126ffe818af320 - React: b6a59ef847b2b40bb6e0180a97d0ca716969ac78 - React-Core: 688b451f7d616cc1134ac95295b593d1b5158a04 - React-CoreModules: d04f8494c1a328b69ec11db9d1137d667f916dcb - React-cxxreact: d0f7bcafa196ae410e5300736b424455e7fb7ba7 - React-jsi: cb2cd74d7ccf4cffb071a46833613edc79cdf8f7 - React-jsiexecutor: d5525f9ed5f782fdbacb64b9b01a43a9323d2386 - React-jsinspector: fa0ecc501688c3c4c34f28834a76302233e29dc0 + RCTRequired: cec6a34b3ac8a9915c37e7e4ad3aa74726ce4035 + RCTTypeSafety: 93006131180074cffa227a1075802c89a49dd4ce + React: 29a8b1a02bd764fb7644ef04019270849b9a7ac3 + React-Core: b12bffb3f567fdf99510acb716ef1abd426e0e05 + React-CoreModules: 4a9b87bbe669d6c3173c0132c3328e3b000783d0 + React-cxxreact: e65f9c2ba0ac5be946f53548c1aaaee5873a8103 + React-jsi: b6dc94a6a12ff98e8877287a0b7620d365201161 + React-jsiexecutor: 1540d1c01bb493ae3124ed83351b1b6a155db7da + React-jsinspector: 512e560d0e985d0e8c479a54a4e5c147a9c83493 react-native-background-timer: 1f7d560647b40e6a60b01c452ba29c54bf581fc4 react-native-camera: 1b52abea404d04e040edb3e74b7c5523c01a3089 react-native-image-resizer: 4516052af6ae0248caf4ccf356caecefe60072d7 @@ -459,16 +577,16 @@ SPEC CHECKSUMS: react-native-shake: de052eaa3eadc4a326b8ddd7ac80c06e8d84528c react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 react-native-webview: f51a7a42278b01b07464a65c586aa0086c1e741e - React-RCTActionSheet: 600b4d10e3aea0913b5a92256d2719c0cdd26d76 - React-RCTAnimation: 791a87558389c80908ed06cc5dfc5e7920dfa360 - React-RCTBlob: d89293cc0236d9cb0933d85e430b0bbe81ad1d72 - React-RCTImage: 6b8e8df449eb7c814c99a92d6b52de6fe39dea4e - React-RCTLinking: 121bb231c7503cf9094f4d8461b96a130fabf4a5 - React-RCTNetwork: fb353640aafcee84ca8b78957297bd395f065c9a - React-RCTSettings: 8db258ea2a5efee381fcf7a6d5044e2f8b68b640 - React-RCTText: 9ccc88273e9a3aacff5094d2175a605efa854dbe - React-RCTVibration: a49a1f42bf8f5acf1c3e297097517c6b3af377ad - ReactCommon: 198c7c8d3591f975e5431bec1b0b3b581aa1c5dd + React-RCTActionSheet: f41ea8a811aac770e0cc6e0ad6b270c644ea8b7c + React-RCTAnimation: 49ab98b1c1ff4445148b72a3d61554138565bad0 + React-RCTBlob: a332773f0ebc413a0ce85942a55b064471587a71 + React-RCTImage: e70be9b9c74fe4e42d0005f42cace7981c994ac3 + React-RCTLinking: c1b9739a88d56ecbec23b7f63650e44672ab2ad2 + React-RCTNetwork: 73138b6f45e5a2768ad93f3d57873c2a18d14b44 + React-RCTSettings: 6e3738a87e21b39a8cb08d627e68c44acf1e325a + React-RCTText: fae545b10cfdb3d247c36c56f61a94cfd6dba41d + React-RCTVibration: 4356114dbcba4ce66991096e51a66e61eda51256 + ReactCommon: ed4e11d27609d571e7eee8b65548efc191116eb3 ReactNativeDarkMode: 0178ffca3b10f6a7c9f49d6f9810232b328fa949 RNCMaskedView: 71fc32d971f03b7f03d6ab6b86b730c4ee64f5b6 RNFS: 2bd9eb49dc82fa9676382f0585b992c424cd59df @@ -484,8 +602,9 @@ SPEC CHECKSUMS: SQLCipher: f9fcf29b2e59ced7defc2a2bdd0ebe79b40d4990 SSZipArchive: fa16b8cc4cdeceb698e5e5d9f67e9558532fbf23 TouchID: ba4c656d849cceabc2e4eef722dea5e55959ecf4 - Yoga: f2a7cd4280bfe2cca5a7aed98ba0eb3d1310f18b + Yoga: 3ebccbdd559724312790e7742142d062476b698e + YogaKit: f782866e155069a2cca2517aafea43200b01fd5a -PODFILE CHECKSUM: 37924c57abbfcd77aec07d65c45ecba137cdf289 +PODFILE CHECKSUM: bc8f0f0e39d12dd833cb71ca1abb6959b5f46885 -COCOAPODS: 1.9.1 +COCOAPODS: 1.8.4 diff --git a/ios/StatusIm-Bridging-Header.h b/ios/StatusIm-Bridging-Header.h new file mode 100644 index 0000000000..1b2cb5d6d0 --- /dev/null +++ b/ios/StatusIm-Bridging-Header.h @@ -0,0 +1,4 @@ +// +// Use this file to import your target's public headers that you would like to expose to Swift. +// + diff --git a/ios/StatusIm.xcodeproj/project.pbxproj b/ios/StatusIm.xcodeproj/project.pbxproj index d8667414e1..c5fc1bfec9 100644 --- a/ios/StatusIm.xcodeproj/project.pbxproj +++ b/ios/StatusIm.xcodeproj/project.pbxproj @@ -12,13 +12,14 @@ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 20AB9EC61D47CC0300E7FD9C /* libRCTStatus.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 201067C41D4789F700FA83B6 /* libRCTStatus.a */; }; 25DC9C9DC25846BD8D084888 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 8B9A886A2CB448B1ABA0EB62 /* libc++.tbd */; }; + 34996D7B9E61544498C6F21B /* libPods-StatusIm-StatusImTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BD217B00F08543249C27E827 /* libPods-StatusIm-StatusImTests.a */; }; 3870E1E692E24133A80B07DE /* Inter-SemiBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = 693A62DB37BC4CD5A30E5C96 /* Inter-SemiBold.otf */; }; 393D26E3080B443A998F4A2F /* Inter-Italic.otf in Resources */ = {isa = PBXBuildFile; fileRef = B07176ACDAA1422E8F0A3D6B /* Inter-Italic.otf */; }; 3ABC7AF8245FF85900612C45 /* InterStatus-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = 9C76AF5A418D4D65A4CAD1D9 /* InterStatus-Regular.otf */; }; + 3A2626CF245C3F2200D5F94B /* Dummy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A2626CE245C3F2200D5F94B /* Dummy.swift */; }; 57C854A7993C47A3B1AECD32 /* Inter-MediumItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = C6B1215047604CD59A4C74D6 /* Inter-MediumItalic.otf */; }; 70ADBB5ECF934DCF8A0E4919 /* Inter-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = 1426DF592BA248FC81D955CB /* Inter-Regular.otf */; }; 74B758FC20D7C00B003343C3 /* launch-image-universal.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 74B758FB20D7C00B003343C3 /* launch-image-universal.storyboard */; }; - 81C6E6AE0AA739BE9D87C1D0 /* libPods-StatusImTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FC1CBCFE6C906043D6CCEEE1 /* libPods-StatusImTests.a */; }; 8391E8E0E93C41A98AAA6631 /* Inter-SemiBoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = A4F2BBE8D4DD4140A6CCAC39 /* Inter-SemiBoldItalic.otf */; }; 8E55E6877F950B81C8D711C5 /* libPods-StatusIm.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 101A4045637A2ADF57D28EF5 /* libPods-StatusIm.a */; }; 925C1F4C1F7B73B20063DFA0 /* (null) in Frameworks */ = {isa = PBXBuildFile; }; @@ -91,9 +92,12 @@ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = StatusIm/main.m; sourceTree = ""; }; 1426DF592BA248FC81D955CB /* Inter-Regular.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-Regular.otf"; path = "../resources/fonts/Inter-Regular.otf"; sourceTree = ""; }; 38A44830EC5708E89387F641 /* Pods-StatusIm.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-StatusIm.release.xcconfig"; path = "Pods/Target Support Files/Pods-StatusIm/Pods-StatusIm.release.xcconfig"; sourceTree = ""; }; + 3A2626CE245C3F2200D5F94B /* Dummy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Dummy.swift; sourceTree = ""; }; + 3AB1C3AD245C043900098F67 /* StatusIm-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "StatusIm-Bridging-Header.h"; sourceTree = ""; }; 439B6B4B407A4E2AACAFE5BE /* RCTStatus.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTStatus.xcodeproj; path = "../modules/react-native-status/ios/RCTStatus/RCTStatus.xcodeproj"; sourceTree = ""; }; 4C16DE0B1F89508700AA10DB /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 4E586E1B0E544F64AA9F5BD1 /* libz.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; + 5E9C2936B3890356C5BE1078 /* Pods-StatusIm-StatusImTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-StatusIm-StatusImTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-StatusIm-StatusImTests/Pods-StatusIm-StatusImTests.debug.xcconfig"; sourceTree = ""; }; 693A62DB37BC4CD5A30E5C96 /* Inter-SemiBold.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-SemiBold.otf"; path = "../resources/fonts/Inter-SemiBold.otf"; sourceTree = ""; }; 74B758FB20D7C00B003343C3 /* launch-image-universal.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = "launch-image-universal.storyboard"; sourceTree = ""; }; 8B9A886A2CB448B1ABA0EB62 /* libc++.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; }; @@ -101,6 +105,7 @@ 9C76AF5A418D4D65A4CAD1D9 /* InterStatus-Regular.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "InterStatus-Regular.otf"; path = "../resources/fonts/InterStatus-Regular.otf"; sourceTree = ""; }; 9EC0135C1E06FB1900155B5C /* RCTWKWebView.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWKWebView.xcodeproj; path = "../node_modules/react-native-wkwebview-reborn/ios/RCTWKWebView.xcodeproj"; sourceTree = ""; }; 9EF083381F3B538A00876A8F /* ReactNativeConfig.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ReactNativeConfig.xcodeproj; path = "../node_modules/react-native-config/ios/ReactNativeConfig.xcodeproj"; sourceTree = ""; }; + A08FD367B3239F901A12B5F4 /* Pods-StatusIm-StatusImTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-StatusIm-StatusImTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-StatusIm-StatusImTests/Pods-StatusIm-StatusImTests.release.xcconfig"; sourceTree = ""; }; A4F2BBE8D4DD4140A6CCAC39 /* Inter-SemiBoldItalic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-SemiBoldItalic.otf"; path = "../resources/fonts/Inter-SemiBoldItalic.otf"; sourceTree = ""; }; ACA66A8F16CD2FE21F38738B /* Pods-StatusIm.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-StatusIm.debug.xcconfig"; path = "Pods/Target Support Files/Pods-StatusIm/Pods-StatusIm.debug.xcconfig"; sourceTree = ""; }; B07176ACDAA1422E8F0A3D6B /* Inter-Italic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-Italic.otf"; path = "../resources/fonts/Inter-Italic.otf"; sourceTree = ""; }; @@ -109,11 +114,11 @@ B2A38FC3D3954DE7B2B171F8 /* Inter-Medium.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-Medium.otf"; path = "../resources/fonts/Inter-Medium.otf"; sourceTree = ""; }; B2F2D1BB1D9D531B00B7B453 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = StatusIm/Images.xcassets; sourceTree = ""; }; B321D25F4493470980039457 /* Inter-BoldItalic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-BoldItalic.otf"; path = "../resources/fonts/Inter-BoldItalic.otf"; sourceTree = ""; }; + BD217B00F08543249C27E827 /* libPods-StatusIm-StatusImTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-StatusIm-StatusImTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; C6B1215047604CD59A4C74D6 /* Inter-MediumItalic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-MediumItalic.otf"; path = "../resources/fonts/Inter-MediumItalic.otf"; sourceTree = ""; }; CD4A2C27D6D5473184DC1F7E /* Inter-Bold.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-Bold.otf"; path = "../resources/fonts/Inter-Bold.otf"; sourceTree = ""; }; CE4E31B21D8695250033ED64 /* Statusgo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Statusgo.framework; path = "../modules/react-native-status/ios/RCTStatus/Statusgo.framework"; sourceTree = ""; }; D489EE8D5F52DA10AC715727 /* Pods-StatusImTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-StatusImTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-StatusImTests/Pods-StatusImTests.release.xcconfig"; sourceTree = ""; }; - FC1CBCFE6C906043D6CCEEE1 /* libPods-StatusImTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-StatusImTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -121,7 +126,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 81C6E6AE0AA739BE9D87C1D0 /* libPods-StatusImTests.a in Frameworks */, + 34996D7B9E61544498C6F21B /* libPods-StatusIm-StatusImTests.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -171,6 +176,8 @@ 13B07FB01A68108700A75B9A /* AppDelegate.m */, 13B07FB61A68108700A75B9A /* Info.plist */, 13B07FB71A68108700A75B9A /* main.m */, + 3AB1C3AD245C043900098F67 /* StatusIm-Bridging-Header.h */, + 3A2626CE245C3F2200D5F94B /* Dummy.swift */, ); name = StatusIm; sourceTree = ""; @@ -207,6 +214,8 @@ 38A44830EC5708E89387F641 /* Pods-StatusIm.release.xcconfig */, 064351D2FD901F8B6C9AE2A5 /* Pods-StatusImTests.debug.xcconfig */, D489EE8D5F52DA10AC715727 /* Pods-StatusImTests.release.xcconfig */, + 5E9C2936B3890356C5BE1078 /* Pods-StatusIm-StatusImTests.debug.xcconfig */, + A08FD367B3239F901A12B5F4 /* Pods-StatusIm-StatusImTests.release.xcconfig */, ); name = Pods; sourceTree = ""; @@ -272,7 +281,7 @@ 8B9A886A2CB448B1ABA0EB62 /* libc++.tbd */, 4E586E1B0E544F64AA9F5BD1 /* libz.tbd */, 101A4045637A2ADF57D28EF5 /* libPods-StatusIm.a */, - FC1CBCFE6C906043D6CCEEE1 /* libPods-StatusImTests.a */, + BD217B00F08543249C27E827 /* libPods-StatusIm-StatusImTests.a */, ); name = Frameworks; sourceTree = ""; @@ -288,6 +297,7 @@ 00E356EA1AD99517003FC87E /* Sources */, 00E356EB1AD99517003FC87E /* Frameworks */, 00E356EC1AD99517003FC87E /* Resources */, + AFAB37B70B6EB1B7D2E869AD /* [CP] Copy Pods Resources */, ); buildRules = ( ); @@ -327,8 +337,8 @@ 83CBB9F71A601CBA00E9B192 /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 940; - ORGANIZATIONNAME = Facebook; + LastUpgradeCheck = 1140; + ORGANIZATIONNAME = Status; TargetAttributes = { 00E356ED1AD99517003FC87E = { CreatedOnToolsVersion = 6.2; @@ -338,6 +348,7 @@ }; 13B07F861A680F5B00A75B9A = { DevelopmentTeam = DTX7Z4U3YA; + LastSwiftMigration = 1140; ProvisioningStyle = Manual; SystemCapabilities = { com.apple.BackgroundModes = { @@ -358,10 +369,9 @@ }; buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "StatusIm" */; compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; + developmentRegion = en; hasScannedForEncodings = 0; knownRegions = ( - English, en, Base, ); @@ -514,13 +524,33 @@ outputFileListPaths = ( ); outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-StatusImTests-checkManifestLockResult.txt", + "$(DERIVED_FILE_DIR)/Pods-StatusIm-StatusImTests-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; + AFAB37B70B6EB1B7D2E869AD /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-StatusIm-StatusImTests/Pods-StatusIm-StatusImTests-resources.sh", + "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController/QBImagePicker.bundle", + "${PODS_ROOT}/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle", + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RSKImageCropperStrings.bundle", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-StatusIm-StatusImTests/Pods-StatusIm-StatusImTests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; E3914A731DF919ED00EBB515 /* Run Script */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 8; @@ -551,6 +581,7 @@ buildActionMask = 2147483647; files = ( 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, + 3A2626CF245C3F2200D5F94B /* Dummy.swift in Sources */, 13B07FC11A68108700A75B9A /* main.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -568,8 +599,9 @@ /* Begin XCBuildConfiguration section */ 00E356F61AD99517003FC87E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 064351D2FD901F8B6C9AE2A5 /* Pods-StatusImTests.debug.xcconfig */; + baseConfigurationReference = 5E9C2936B3890356C5BE1078 /* Pods-StatusIm-StatusImTests.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; BUNDLE_ID_SUFFIX = .debug; BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -596,8 +628,9 @@ }; 00E356F71AD99517003FC87E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D489EE8D5F52DA10AC715727 /* Pods-StatusImTests.release.xcconfig */; + baseConfigurationReference = A08FD367B3239F901A12B5F4 /* Pods-StatusIm-StatusImTests.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; BUNDLE_ID_SUFFIX = ""; BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_IDENTITY = "iPhone Distribution"; @@ -625,12 +658,13 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon$(BUNDLE_ID_SUFFIX)"; BUNDLE_ID_SUFFIX = .debug; + CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = StatusIm/StatusIm.entitlements; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; CUSTOM_PRODUCT_NAME = "Status Debug"; - DEAD_CODE_STRIPPING = NO; + DEAD_CODE_STRIPPING = YES; DEVELOPMENT_TEAM = DTX7Z4U3YA; FRAMEWORK_SEARCH_PATHS = ( "$(PROJECT_DIR)/../modules/react-native-status/ios/RCTStatus", @@ -640,6 +674,13 @@ ); GCC_PRECOMPILE_PREFIX_HEADER = NO; GCC_PREFIX_HEADER = ""; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "COCOAPODS=1", + "$(inherited)", + "SQLITE_HAS_CODEC=1", + "ENABLE_FLIPPER=0", + ); HEADER_SEARCH_PATHS = ( "$(inherited)", /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, @@ -656,7 +697,7 @@ ); INFOPLIST_FILE = StatusIm/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited) @executable_path/Frameworks"; LIBRARY_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)", @@ -670,6 +711,9 @@ PRODUCT_NAME = StatusIm; PROVISIONING_PROFILE = "9da75626-9594-43d9-a827-0f6d43c28f54"; PROVISIONING_PROFILE_SPECIFIER = "match Development im.status.ethereum"; + SWIFT_OBJC_BRIDGING_HEADER = "StatusIm-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 1; VALID_ARCHS = "arm64 armv7 armv7s"; }; @@ -681,12 +725,13 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon$(BUNDLE_ID_SUFFIX)"; BUNDLE_ID_SUFFIX = ""; + CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = StatusIm/StatusIm.entitlements; CODE_SIGN_IDENTITY = "iPhone Distribution"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; CUSTOM_PRODUCT_NAME = Status; - DEAD_CODE_STRIPPING = NO; + DEAD_CODE_STRIPPING = YES; DEVELOPMENT_TEAM = DTX7Z4U3YA; FRAMEWORK_SEARCH_PATHS = ( "$(PROJECT_DIR)/../modules/react-native-status/ios/RCTStatus", @@ -712,7 +757,7 @@ ); INFOPLIST_FILE = StatusIm/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited) @executable_path/Frameworks"; LIBRARY_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)", @@ -726,6 +771,8 @@ PRODUCT_NAME = StatusIm; PROVISIONING_PROFILE = "e2202b12-7a66-4ff7-af3c-a52e35f32dc1"; PROVISIONING_PROFILE_SPECIFIER = "match AdHoc im.status.ethereum"; + SWIFT_OBJC_BRIDGING_HEADER = "StatusIm-Bridging-Header.h"; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 1; VALID_ARCHS = "armv7 armv7s arm64"; }; @@ -734,7 +781,9 @@ 83CBBA201A601CBA00E9B192 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; @@ -774,6 +823,7 @@ GCC_PREFIX_HEADER = ""; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", + "FB_SONARKIT_ENABLED=1", "$(inherited)", ); GCC_SYMBOLS_PRIVATE_EXTERN = NO; @@ -796,6 +846,11 @@ "$(SRCROOT)/../node_modules/react-native-splash-screen/ios/**", ); IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LIBRARY_SEARCH_PATHS = ( + "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", + "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", + "\"$(inherited)\"", + ); MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; @@ -805,7 +860,9 @@ 83CBBA211A601CBA00E9B192 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; @@ -860,6 +917,11 @@ "$(SRCROOT)/../node_modules/react-native-splash-screen/ios/**", ); IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LIBRARY_SEARCH_PATHS = ( + "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", + "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", + "\"$(inherited)\"", + ); MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; VALIDATE_PRODUCT = YES; diff --git a/ios/StatusIm.xcodeproj/xcshareddata/xcschemes/StatusIm.xcscheme b/ios/StatusIm.xcodeproj/xcshareddata/xcschemes/StatusIm.xcscheme index 7ef910400b..399f89fdd6 100644 --- a/ios/StatusIm.xcodeproj/xcshareddata/xcschemes/StatusIm.xcscheme +++ b/ios/StatusIm.xcodeproj/xcshareddata/xcschemes/StatusIm.xcscheme @@ -1,6 +1,6 @@ + + + + @@ -67,17 +76,6 @@ - - - - - - - - +#import +#import + +#if ENABLE_FLIPPER +#import +#import +#import +#import +#import +#import + +static void InitializeFlipper(UIApplication *application) { + FlipperClient *client = [FlipperClient sharedClient]; + SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults]; + [client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]]; + [client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]]; + [client addPlugin:[FlipperKitReactPlugin new]]; + [client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]]; + [client start]; +} +#endif + @implementation AppDelegate { UIView *_blankView; @@ -24,6 +46,9 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { + #if ENABLE_FLIPPER + InitializeFlipper(application); + #endif signal(SIGPIPE, SIG_IGN); NSURL *jsCodeLocation; diff --git a/mobile/js_files/package.json b/mobile/js_files/package.json index 78af9dedb3..60205e05b7 100644 --- a/mobile/js_files/package.json +++ b/mobile/js_files/package.json @@ -10,6 +10,7 @@ "app:android": "react-native run-android" }, "dependencies": { + "@react-native-community/clipboard": "^1.2.2", "@react-native-community/masked-view": "^0.1.6", "@react-native-community/netinfo": "^4.4.0", "@react-navigation/bottom-tabs": "^5.1.1", @@ -22,13 +23,12 @@ "emojilib": "^2.4.0", "eth-phishing-detect": "^1.1.13", "functional-red-black-tree": "^1.0.1", - "hermes-engine": "0.2.1", "hi-base32": "^0.5.0", "i18n-js": "^3.3.0", "qrcode": "^1.4.1", - "react": "16.9.0", + "react": "16.11.0", "react-dom": "^16.4.2", - "react-native": "0.61.5", + "react-native": "0.62.2", "react-native-background-timer": "^2.1.1", "react-native-camera": "^3.3.3", "react-native-config": "git+https://github.com/status-im/react-native-config.git#v0.11.2-3-status", diff --git a/mobile/js_files/yarn.lock b/mobile/js_files/yarn.lock index 5b808e9c6f..de9d4377a6 100644 --- a/mobile/js_files/yarn.lock +++ b/mobile/js_files/yarn.lock @@ -42,7 +42,7 @@ source-map "^0.5.0" trim-right "^1.0.1" -"@babel/generator@^7.0.0", "@babel/generator@^7.4.0", "@babel/generator@^7.9.0", "@babel/generator@^7.9.5": +"@babel/generator@^7.4.0", "@babel/generator@^7.9.0", "@babel/generator@^7.9.5": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.5.tgz#27f0917741acc41e6eaaced6d68f96c3fa9afaf9" integrity sha512-GbNIxVB3ZJe3tLeDm1HSn2AhuD/mVcyLDpgtLXa5tplmWrJdF/elxB56XNqCuD6szyNkDi6wuoKXln3QeBmCHQ== @@ -52,6 +52,16 @@ lodash "^4.17.13" source-map "^0.5.0" +"@babel/generator@^7.5.0", "@babel/generator@^7.9.6": + version "7.9.6" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.6.tgz#5408c82ac5de98cda0d77d8124e99fa1f2170a43" + integrity sha512-+htwWKJbH2bL72HRluF8zumBxzuX0ZZUFl3JLNyoUjM/Ho8wnVpPXM6aUz8cfKDqQ/h7zHqKt4xzJteUosckqQ== + dependencies: + "@babel/types" "^7.9.6" + jsesc "^2.5.1" + lodash "^4.17.13" + source-map "^0.5.0" + "@babel/helper-annotate-as-pure@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee" @@ -104,6 +114,18 @@ "@babel/helper-replace-supers" "^7.8.6" "@babel/helper-split-export-declaration" "^7.8.3" +"@babel/helper-create-class-features-plugin@^7.9.6": + version "7.9.6" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.9.6.tgz#965c8b0a9f051801fd9d3b372ca0ccf200a90897" + integrity sha512-6N9IeuyHvMBRyjNYOMJHrhwtu4WJMrYf8hVbEHD3pbbbmNOk1kmXSQs7bA4dYDUaIx4ZEzdnvo6NwC3WHd/Qow== + dependencies: + "@babel/helper-function-name" "^7.9.5" + "@babel/helper-member-expression-to-functions" "^7.8.3" + "@babel/helper-optimise-call-expression" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-replace-supers" "^7.9.6" + "@babel/helper-split-export-declaration" "^7.8.3" + "@babel/helper-create-regexp-features-plugin@^7.8.3", "@babel/helper-create-regexp-features-plugin@^7.8.8": version "7.8.8" resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz#5d84180b588f560b7864efaeea89243e58312087" @@ -220,6 +242,16 @@ "@babel/traverse" "^7.8.6" "@babel/types" "^7.8.6" +"@babel/helper-replace-supers@^7.9.6": + version "7.9.6" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.9.6.tgz#03149d7e6a5586ab6764996cd31d6981a17e1444" + integrity sha512-qX+chbxkbArLyCImk3bWV+jB5gTNU/rsze+JlcF6Nf8tVTigPJSI1o1oBow/9Resa1yehUO9lIipsmu9oG4RzA== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.8.3" + "@babel/helper-optimise-call-expression" "^7.8.3" + "@babel/traverse" "^7.9.6" + "@babel/types" "^7.9.6" + "@babel/helper-simple-access@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae" @@ -273,6 +305,11 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8" integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA== +"@babel/parser@^7.9.6": + version "7.9.6" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.6.tgz#3b1bbb30dabe600cd72db58720998376ff653bc7" + integrity sha512-AoeIEJn8vt+d/6+PXDRPaksYhnlbMIiejioBZvvMQsOjW/JYK6k/0dKnvvP3EhK5GfMBWDPtrxRtegWdAcdq9Q== + "@babel/plugin-external-helpers@^7.0.0": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-external-helpers/-/plugin-external-helpers-7.8.3.tgz#5a94164d9af393b2820a3cdc407e28ebf237de4b" @@ -739,12 +776,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-typescript@^7.0.0": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.9.4.tgz#4bb4dde4f10bbf2d787fce9707fb09b483e33359" - integrity sha512-yeWeUkKx2auDbSxRe8MusAG+n4m9BFY/v+lPjmQDgOFX5qnySkUY5oXzkp6FwPdsYqnKay6lorXYdC0n3bZO7w== +"@babel/plugin-transform-typescript@^7.5.0": + version "7.9.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.9.6.tgz#2248971416a506fc78278fc0c0ea3179224af1e9" + integrity sha512-8OvsRdvpt3Iesf2qsAn+YdlwAJD7zJ+vhFZmDCa4b8dTp7MmHtKk5FF2mCsGxjZwuwsy/yIIay/nLmxST1ctVQ== dependencies: - "@babel/helper-create-class-features-plugin" "^7.8.3" + "@babel/helper-create-class-features-plugin" "^7.9.6" "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-typescript" "^7.8.3" @@ -858,6 +895,21 @@ globals "^11.1.0" lodash "^4.17.13" +"@babel/traverse@^7.9.6": + version "7.9.6" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.6.tgz#5540d7577697bf619cc57b92aa0f1c231a94f442" + integrity sha512-b3rAHSjbxy6VEAvlxM8OV/0X4XrG72zoxme6q1MOoe2vd0bEc+TwayhuC1+Dfgqh1QEG+pj7atQqvUprHIccsg== + dependencies: + "@babel/code-frame" "^7.8.3" + "@babel/generator" "^7.9.6" + "@babel/helper-function-name" "^7.9.5" + "@babel/helper-split-export-declaration" "^7.8.3" + "@babel/parser" "^7.9.6" + "@babel/types" "^7.9.6" + debug "^4.1.0" + globals "^11.1.0" + lodash "^4.17.13" + "@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0", "@babel/types@^7.9.5": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.5.tgz#89231f82915a8a566a703b3b20133f73da6b9444" @@ -867,6 +919,15 @@ lodash "^4.17.13" to-fast-properties "^2.0.0" +"@babel/types@^7.9.6": + version "7.9.6" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.6.tgz#2c5502b427251e9de1bd2dff95add646d95cc9f7" + integrity sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA== + dependencies: + "@babel/helper-validator-identifier" "^7.9.5" + lodash "^4.17.13" + to-fast-properties "^2.0.0" + "@bcoe/v8-coverage@^0.2.3": version "0.2.3" resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" @@ -1136,89 +1197,105 @@ "@types/yargs" "^15.0.0" chalk "^3.0.0" -"@react-native-community/cli-debugger-ui@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-3.0.0.tgz#d01d08d1e5ddc1633d82c7d84d48fff07bd39416" - integrity sha512-m3X+iWLsK/H7/b7PpbNO33eQayR/+M26la4ZbYe1KRke5Umg4PIWsvg21O8Tw4uJcY8LA5hsP+rBi/syBkBf0g== +"@jest/types@^25.5.0": + version "25.5.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.5.0.tgz#4d6a4793f7b9599fc3680877b856a97dbccf2a9d" + integrity sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^1.1.1" + "@types/yargs" "^15.0.0" + chalk "^3.0.0" + +"@react-native-community/cli-debugger-ui@^4.8.0": + version "4.8.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-4.8.0.tgz#9a6419b29be69422e0056bbb1874775750351d22" + integrity sha512-Eq9lHINDXiBAwmFRCMN8jeKk6FTDnTxAfITkjPUNNTj7q3K+fH/oyOMJjxbIZbryIJY6g+g/ln6vsS2WzISNYQ== dependencies: serve-static "^1.13.1" -"@react-native-community/cli-platform-android@^3.0.0": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-3.1.4.tgz#61f964dc311623e60b0fb29c5f3732cc8a6f076f" - integrity sha512-ClSdY20F0gzWVLTqCv7vHjnUqOcuq10jd9GgHX6lGSc2GI+Ql3/aQg3tmG4uY3KXNNwAv3U8QCoYgg1WGfwiHA== +"@react-native-community/cli-platform-android@^4.5.1": + version "4.8.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-4.8.0.tgz#f495b227e82c75c676dfa53c0dac33bf438b50b8" + integrity sha512-sYa4K0t0VL99j+bloHTL2BwXFJpHCdPN4SRTm9/wfxuWDkiPFvo9TaX0adh7GbUoKalLq2k0z+iEpHMN3HtZiw== dependencies: - "@react-native-community/cli-tools" "^3.0.0" - chalk "^2.4.2" + "@react-native-community/cli-tools" "^4.8.0" + chalk "^3.0.0" execa "^1.0.0" + fs-extra "^8.1.0" + glob "^7.1.3" jetifier "^1.6.2" + lodash "^4.17.15" logkitty "^0.6.0" slash "^3.0.0" xmldoc "^1.1.2" -"@react-native-community/cli-platform-ios@^3.0.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-3.2.0.tgz#c469444f5993c9e6737a4b16d78cf033e3702f00" - integrity sha512-pzEnx68H6+mHBq5jsMrr3UmAmkrLSMlC9BZ4yoUdfUXCQq6/R70zNYvH4hjUw8h2Al7Kgq53UzHUsM0ph8TSWQ== +"@react-native-community/cli-platform-ios@^4.5.0": + version "4.8.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-4.8.0.tgz#bfa20f398837256ee943192930d1f94fa92f521d" + integrity sha512-UZyc/bwG23HKsvHVmDrlZulIRMK8Jl7njN9oCO0pohOYxRJIwueRP7A8IPCwVVohmSEuNmhCWpMIIxTAo7zzwg== dependencies: - "@react-native-community/cli-tools" "^3.0.0" - chalk "^2.4.2" + "@react-native-community/cli-tools" "^4.8.0" + chalk "^3.0.0" + glob "^7.1.3" js-yaml "^3.13.1" + lodash "^4.17.15" + plist "^3.0.1" xcode "^2.0.0" -"@react-native-community/cli-tools@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-3.0.0.tgz#fe48b80822ed7e49b8af051f9fe41e22a2a710b1" - integrity sha512-8IhQKZdf3E4CR8T7HhkPGgorot/cLkRDgneJFDSWk/wCYZAuUh4NEAdumQV7N0jLSMWX7xxiWUPi94lOBxVY9g== +"@react-native-community/cli-tools@^4.8.0": + version "4.8.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-4.8.0.tgz#144a029c741c2cf40a7f9c059819ce9a69e7f1e3" + integrity sha512-voXGruhYyyhCbEYM2uZ54dMZcBgXFFcQxVK3nLwJDG9nSQGObZInj9Zf76ix5qGnvKKGWIGUcbmRhyLpAzTXuQ== dependencies: - chalk "^2.4.2" - lodash "^4.17.5" + chalk "^3.0.0" + lodash "^4.17.15" mime "^2.4.1" - node-fetch "^2.5.0" + node-fetch "^2.6.0" + open "^6.2.0" + shell-quote "1.6.1" -"@react-native-community/cli-types@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-3.0.0.tgz#488d46605cb05e88537e030f38da236eeda74652" - integrity sha512-ng6Tm537E/M42GjE4TRUxQyL8sRfClcL7bQWblOCoxPZzJ2J3bdALsjeG3vDnVCIfI/R0AeFalN9KjMt0+Z/Zg== +"@react-native-community/cli-types@^4.8.0": + version "4.8.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-4.8.0.tgz#d929f0d47ecdc69027de02a89d17f0ece9ee3ca2" + integrity sha512-gkjQdmzskQJdddVNRBATa7rWMbamD2j4B7w9shbg20tIBYoh/tgHdkgiLqZQSfBKa8HqrAkeCJTYaT1oV4oReQ== -"@react-native-community/cli@^3.0.0": - version "3.2.1" - resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-3.2.1.tgz#2a466801eb6080a1f73358c5d740c53c24ed8c6f" - integrity sha512-bZ/bfZ+9r1gQSxp6t7+00DcpC6vmbVYSvzUCFM/yo5k8bhsDdcy8aocscIaXXVGG+v9Edri/Q7hH9ks7L18/Rg== +"@react-native-community/cli@^4.5.1": + version "4.8.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-4.8.0.tgz#b9e3916ceb0fe6bcbc2943fea2caa0ca3739d080" + integrity sha512-z4qHfxtoTxKhQ0V9B02a82IxBkEBH5FfKnaJn9WL5Tf4SmE91ER8ZNVEWNr97S4TCFVYDrpM7iKnrYpNi/ciYQ== dependencies: "@hapi/joi" "^15.0.3" - "@react-native-community/cli-debugger-ui" "^3.0.0" - "@react-native-community/cli-tools" "^3.0.0" - "@react-native-community/cli-types" "^3.0.0" - chalk "^2.4.2" + "@react-native-community/cli-debugger-ui" "^4.8.0" + "@react-native-community/cli-tools" "^4.8.0" + "@react-native-community/cli-types" "^4.8.0" + chalk "^3.0.0" command-exists "^1.2.8" commander "^2.19.0" compression "^1.7.1" connect "^3.6.5" cosmiconfig "^5.1.0" deepmerge "^3.2.0" - didyoumean "^1.2.1" envinfo "^7.1.0" errorhandler "^1.5.0" execa "^1.0.0" find-up "^4.1.0" - fs-extra "^7.0.1" - glob "^7.1.1" + fs-extra "^8.1.0" + glob "^7.1.3" graceful-fs "^4.1.3" inquirer "^3.0.6" - lodash "^4.17.5" - metro "^0.56.0" - metro-config "^0.56.0" - metro-core "^0.56.0" - metro-react-native-babel-transformer "^0.56.0" + leven "^3.1.0" + lodash "^4.17.15" + metro "^0.58.0" + metro-config "^0.58.0" + metro-core "^0.58.0" + metro-react-native-babel-transformer "^0.58.0" minimist "^1.2.0" mkdirp "^0.5.1" - morgan "^1.9.0" - node-notifier "^5.2.1" + node-stream-zip "^1.9.1" open "^6.2.0" ora "^3.4.0" - plist "^3.0.0" - pretty-format "^25.1.0" + pretty-format "^25.2.0" semver "^6.3.0" serve-static "^1.13.1" shell-quote "1.6.1" @@ -1227,6 +1304,11 @@ wcwidth "^1.0.1" ws "^1.1.0" +"@react-native-community/clipboard@^1.2.2": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@react-native-community/clipboard/-/clipboard-1.2.2.tgz#956b29df141199fd9ed47e820baf9693f9f50b55" + integrity sha512-WJkJSWA/fhuBhHL3rh6UDdB8+AZNMvAHoyo/ERnNxl9KZqruq7K+AIaQQlggEAsIVBIhjKt65fT+Zynj7gF8Cg== + "@react-native-community/masked-view@^0.1.6": version "0.1.9" resolved "https://registry.yarnpkg.com/@react-native-community/masked-view/-/masked-view-0.1.9.tgz#383aca2fb053e3e14405c99cce2d5805df730821" @@ -1471,6 +1553,11 @@ ajv@^6.5.5: json-schema-traverse "^0.4.1" uri-js "^4.2.2" +anser@^1.4.9: + version "1.4.9" + resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.9.tgz#1f85423a5dcf8da4631a341665ff675b96845760" + integrity sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA== + ansi-colors@^1.0.1: version "1.1.0" resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9" @@ -1670,11 +1757,6 @@ array-unique@^0.3.2: resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= -art@^0.10.0: - version "0.10.3" - resolved "https://registry.yarnpkg.com/art/-/art-0.10.3.tgz#b01d84a968ccce6208df55a733838c96caeeaea2" - integrity sha512-HXwbdofRTiJT6qZX/FnchtldzJjS3vkLJxQilc3Xj+ma2MXjY4UAyQ0ls1XZYVnDvVIBiFZbC6QsvtW86TD6tQ== - asap@~2.0.3: version "2.0.6" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" @@ -1822,7 +1904,7 @@ babel-preset-current-node-syntax@^0.1.2: "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" "@babel/plugin-syntax-optional-chaining" "^7.8.3" -babel-preset-fbjs@^3.1.2, babel-preset-fbjs@^3.2.0: +babel-preset-fbjs@^3.2.0, babel-preset-fbjs@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz#a6024764ea86c8e06a22d794ca8b69534d263541" integrity sha512-7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw== @@ -1891,13 +1973,6 @@ base@^0.11.1: mixin-deep "^1.2.0" pascalcase "^0.1.1" -basic-auth@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz#b998279bf47ce38344b4f3cf916d4679bbf51e3a" - integrity sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg== - dependencies: - safe-buffer "5.1.2" - bcrypt-pbkdf@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" @@ -2217,11 +2292,6 @@ callsites@^3.0.0: resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -camelcase@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" - integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= - camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" @@ -2323,15 +2393,6 @@ cli-width@^2.0.0: resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== -cliui@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" - integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - wrap-ansi "^2.0.0" - cliui@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" @@ -2639,7 +2700,7 @@ cross-spawn@^4: lru-cache "^4.0.1" which "^1.2.9" -cross-spawn@^5.0.1, cross-spawn@^5.1.0: +cross-spawn@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= @@ -2775,7 +2836,7 @@ debug@^4.1.0, debug@^4.1.1: dependencies: ms "^2.1.1" -decamelize@^1.1.1, decamelize@^1.2.0: +decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= @@ -2865,11 +2926,6 @@ depd@~1.1.2: resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= -depd@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - des.js@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" @@ -2888,11 +2944,6 @@ detect-newline@^3.0.0: resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== -didyoumean@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.1.tgz#e92edfdada6537d484d73c0172fd1eba0c4976ff" - integrity sha1-6S7f2tplN9SE1zwBcv0eugxJdv8= - diff-sequences@^25.2.6: version "25.2.6" resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd" @@ -3035,7 +3086,7 @@ envinfo@^7.1.0: resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.5.0.tgz#91410bb6db262fb4f1409bd506e9ff57e91023f4" integrity sha512-jDgnJaF/Btomk+m3PZDTTCb5XIIIX3zYItnCRfF73zVgvinLoRomuhi75Y4su0PtQxWz4v66XnLLckyvyJTOIQ== -error-ex@^1.2.0, error-ex@^1.3.1: +error-ex@^1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== @@ -3121,6 +3172,13 @@ eslint-plugin-jsx-a11y@5.1.1: emoji-regex "^6.1.0" jsx-ast-utils "^1.4.0" +eslint-plugin-relay@1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-relay/-/eslint-plugin-relay-1.4.1.tgz#5af2ac13e24bd01ad17b6a4014204918d65021cd" + integrity sha512-yb+p+4AxZTi2gXN7cZRfXMBFlRa5j6TtiVeq3yHXyy+tlgYNpxi/dDrP1+tcUTNP9vdaJovnfGZ5jp6kMiH9eg== + dependencies: + graphql "^14.0.0" + esprima@^4.0.0, esprima@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" @@ -3200,19 +3258,6 @@ exec-sh@^0.3.2: resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5" integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A== -execa@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" - integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= - dependencies: - cross-spawn "^5.0.1" - get-stream "^3.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - execa@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" @@ -3472,7 +3517,7 @@ find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: make-dir "^2.0.0" pkg-dir "^3.0.0" -find-up@^2.0.0, find-up@^2.1.0: +find-up@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= @@ -3542,12 +3587,12 @@ fs-extra@^1.0.0: jsonfile "^2.1.0" klaw "^1.0.0" -fs-extra@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" - integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== +fs-extra@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== dependencies: - graceful-fs "^4.1.2" + graceful-fs "^4.2.0" jsonfile "^4.0.0" universalify "^0.1.0" @@ -3601,11 +3646,6 @@ get-caller-file@^2.0.1: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-stream@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" - integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= - get-stream@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" @@ -3662,6 +3702,18 @@ graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3 resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== +graceful-fs@^4.2.0: + version "4.2.4" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" + integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== + +graphql@^14.0.0: + version "14.6.0" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-14.6.0.tgz#57822297111e874ea12f5cd4419616930cd83e49" + integrity sha512-VKzfvHEKybTKjQVpTFrA5yUq2S9ihcZvfJAtsDBBCuV6wauPu1xl/f9ehgVf0FcEJJs4vz6ysb/ZMkGigQZseg== + dependencies: + iterall "^1.2.2" + growly@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" @@ -3756,10 +3808,10 @@ hasha@^3.0.0: dependencies: is-stream "^1.0.1" -hermes-engine@0.2.1, hermes-engine@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/hermes-engine/-/hermes-engine-0.2.1.tgz#25c0f1ff852512a92cb5c5cc47cf967e1e722ea2" - integrity sha512-eNHUQHuadDMJARpaqvlCZoK/Nitpj6oywq3vQ3wCwEsww5morX34mW5PmKWQTO7aU0ck0hgulxR+EVDlXygGxQ== +hermes-engine@~0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/hermes-engine/-/hermes-engine-0.4.1.tgz#2d02b295596298643c4d24b86687eb554db9e950" + integrity sha512-Y3JFC8PD7eN3KpnrzrmvMAqp0IwnZrmP/oGOptvaSu33d7Zq/8b/2lHlZZkNvRl7/I1Q0umTX8TByK7zzLfTXA== hi-base32@^0.5.0: version "0.5.0" @@ -3925,11 +3977,6 @@ invariant@2.2.4, invariant@^2.2.2, invariant@^2.2.4, invariant@^2.2.x: dependencies: loose-envify "^1.0.0" -invert-kv@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" - integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= - invert-kv@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" @@ -4276,6 +4323,11 @@ istanbul-reports@^3.0.2: html-escaper "^2.0.0" istanbul-lib-report "^3.0.0" +iterall@^1.2.2: + version "1.3.0" + resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.3.0.tgz#afcb08492e2915cbd8a0884eb93a8c94d0d72fea" + integrity sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg== + jest-changed-files@^25.4.0: version "25.4.0" resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-25.4.0.tgz#e573db32c2fd47d2b90357ea2eda0622c5c5cbd6" @@ -4907,13 +4959,6 @@ kleur@^3.0.3: resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== -lcid@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" - integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= - dependencies: - invert-kv "^1.0.0" - lcid@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" @@ -4944,16 +4989,6 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= -load-json-file@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" - integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= - dependencies: - graceful-fs "^4.1.2" - parse-json "^2.2.0" - pify "^2.0.0" - strip-bom "^3.0.0" - load-json-file@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" @@ -5007,7 +5042,7 @@ lodash@^3.10.0: resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" integrity sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y= -lodash@^4.17.10, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.5, lodash@^4.3.0: +lodash@^4.17.10, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.3.0: version "4.17.15" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== @@ -5117,13 +5152,6 @@ mdn-data@2.0.6: resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.6.tgz#852dc60fcaa5daa2e8cf6c9189c440ed3e042978" integrity sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA== -mem@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" - integrity sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y= - dependencies: - mimic-fn "^1.0.0" - mem@^4.0.0: version "4.3.0" resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" @@ -5152,10 +5180,10 @@ merge-stream@^2.0.0: resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== -metro-babel-register@^0.56.0, metro-babel-register@^0.56.4: - version "0.56.4" - resolved "https://registry.yarnpkg.com/metro-babel-register/-/metro-babel-register-0.56.4.tgz#b0c627a1cfdd1bdd768f81af79481754e833a902" - integrity sha512-Phm6hMluOWYqfykftjJ1jsTpWvbgb49AC/1taxEctxUdRCZlFgZwBleJZAhQYxJD5J+ikFkEbHDzePEXb29KVA== +metro-babel-register@0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/metro-babel-register/-/metro-babel-register-0.58.0.tgz#5c44786d49a044048df56cf476a2263491d4f53a" + integrity sha512-P5+G3ufhSYL6cA3a7xkbSJzzFBvtivj/PhWvGXFXnuFssDlMAX1CTktff+0gpka5Cd6B6QLt0UAMWulUAAE4Eg== dependencies: "@babel/core" "^7.0.0" "@babel/plugin-proposal-class-properties" "^7.0.0" @@ -5170,68 +5198,68 @@ metro-babel-register@^0.56.0, metro-babel-register@^0.56.4: core-js "^2.2.2" escape-string-regexp "^1.0.5" -metro-babel-transformer@^0.56.4: - version "0.56.4" - resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.56.4.tgz#fe1d0dc600fcf90201a5bea4d42caea10b801057" - integrity sha512-IOi4ILgZvaX7GCGHBJp79paNVOq5QxhhbyqAdEJgDP8bHfl/OVHoVKSypfrsMSKSiBrqxhIjyc4XjkXsQtkx5g== +metro-babel-transformer@0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.58.0.tgz#317c83b863cceb0573943815f1711fbcbe69b106" + integrity sha512-yBX3BkRhw2TCNPhe+pmLSgsAEA3huMvnX08UwjFqSXXI1aiqzRQobn92uKd1U5MM1Vx8EtXVomlJb95ZHNAv6A== dependencies: "@babel/core" "^7.0.0" - metro-source-map "^0.56.4" + metro-source-map "0.58.0" -metro-cache@^0.56.4: - version "0.56.4" - resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.56.4.tgz#542f9f8a35f8fb9d5576f46fd3ab4d4f42851a7e" - integrity sha512-d1hiUSKwtRsuMxUhHVJ3tjK2BbpUlJGvTyMWohK8Wxx+0GbnWRWWFcI4vlCzlZfoK0VtZK2MJEl5t7Du1mIniQ== +metro-cache@0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.58.0.tgz#630ea0a4626dfb9591c71fdb85dce14b5e9a04ec" + integrity sha512-jjW9zCTKxhgKcVkyQ6LHyna9Zdf4TK/45vvT1fPyyTk1RY82ZYjU1qs+84ycKEd08Ka4YcK9xcUew9SIDJYI8Q== dependencies: jest-serializer "^24.4.0" - metro-core "^0.56.4" + metro-core "0.58.0" mkdirp "^0.5.1" rimraf "^2.5.4" -metro-config@^0.56.0, metro-config@^0.56.4: - version "0.56.4" - resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.56.4.tgz#338fd8165fba59424cec427c1a881757945e57e9" - integrity sha512-O85QDHwWdMn/8ERe13y4a6vbZL0AHyO8atTvL+9BCulLEO+FQBi1iJjr3+ViLa8cf0m5dRftDsa7P47m5euk4A== +metro-config@0.58.0, metro-config@^0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.58.0.tgz#1e24b43a5a00971d75662b1a0d3c04a13d4a1746" + integrity sha512-4vgBliXwL56vjUlYplvGMVSNrJJpkHuLcD+O20trV3FvPxKg4ZsvuOcNSxqDSMU26FCtIEJ15ojcuCbRL7KY0w== dependencies: cosmiconfig "^5.0.5" jest-validate "^24.7.0" - metro "^0.56.4" - metro-cache "^0.56.4" - metro-core "^0.56.4" + metro "0.58.0" + metro-cache "0.58.0" + metro-core "0.58.0" pretty-format "^24.7.0" -metro-core@^0.56.0, metro-core@^0.56.4: - version "0.56.4" - resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.56.4.tgz#67cc41b3c0bf66e9c2306f50239a1080b1e82312" - integrity sha512-hMzkBdgPt5Zm9nr/1KtIT+A6H7TNiLVCEGG5OiAXj8gTRsA2yy7wAdQpwy0xbE+zi88t/pLOzXpd3ClG/YxyWg== +metro-core@0.58.0, metro-core@^0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.58.0.tgz#ad9f6645a2b439a3fbce7ce4e19b01b00375768a" + integrity sha512-RzXUjGFmCLOyzUqcKDvr91AldGtIOxnzNZrWUIiG8uC3kerVLo0mQp4YH3+XVm6fMNiLMg6iER7HLqD+MbpUjQ== dependencies: jest-haste-map "^24.7.1" lodash.throttle "^4.1.1" - metro-resolver "^0.56.4" + metro-resolver "0.58.0" wordwrap "^1.0.0" -metro-inspector-proxy@^0.56.4: - version "0.56.4" - resolved "https://registry.yarnpkg.com/metro-inspector-proxy/-/metro-inspector-proxy-0.56.4.tgz#7343ff3c5908af4fd99e96b6d646e24e99816be4" - integrity sha512-E1S3MO25mWKmcLn1UQuCDiS0hf9P2Fwq8sEAX5lBLoZbehepNH+4xJ3xXSY51JX4dozBrE8GGoKL4ll3II40LA== +metro-inspector-proxy@0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/metro-inspector-proxy/-/metro-inspector-proxy-0.58.0.tgz#6fefb0cdf25655919d56c82ebe09cd26eb00e636" + integrity sha512-oFqTyNTJdCdvcw1Ha6SKE7ITbSaoTbO4xpYownIoJR+WZ0ZfxbWpp225JkHuBJm9UcBAnG9c0CME924m3uBbaw== dependencies: connect "^3.6.5" debug "^2.2.0" rxjs "^5.4.3" ws "^1.1.5" - yargs "^9.0.0" + yargs "^14.2.0" -metro-minify-uglify@^0.56.4: - version "0.56.4" - resolved "https://registry.yarnpkg.com/metro-minify-uglify/-/metro-minify-uglify-0.56.4.tgz#13589dfb1d43343608aacb7f78ddfcc052daa63c" - integrity sha512-BHgj7+BKEK2pHvWHUR730bIrsZwl8DPtr49x9L0j2grPZ5/UROWXzEr8VZgIss7fl64t845uu1HXNNyuSj2EhA== +metro-minify-uglify@0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/metro-minify-uglify/-/metro-minify-uglify-0.58.0.tgz#7e1066954bfd4f767ba6aca7feef676ca44c68b8" + integrity sha512-vRHsA7bCi7eCn3LXLm20EfY2NoWDyYOnmWaq/N8LB0OxL2L5DXRqMYAQK+prWGJ5S1yvVnDuuNVP+peQ9851TA== dependencies: uglify-es "^3.1.9" -metro-react-native-babel-preset@^0.56.4: - version "0.56.4" - resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.56.4.tgz#dcedc64b7ff5c0734839458e70eb0ebef6d063a8" - integrity sha512-CzbBDM9Rh6w8s1fq+ZqihAh7DDqUAcfo9pPww25+N/eJ7UK436Q7JdfxwdIPpBwLFn6o6MyYn+uwL9OEWBJarA== +metro-react-native-babel-preset@0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.58.0.tgz#18f48d33fe124280ffabc000ab8b42c488d762a2" + integrity sha512-MRriNW+fF6jxABsgPphocUY6mIhmCm8idcrQZ58fT3Iti2vCdtkaK32TyCGUNUptzhUe2/cbE57j4aC+eaodAA== dependencies: "@babel/plugin-proposal-class-properties" "^7.0.0" "@babel/plugin-proposal-export-default-from" "^7.0.0" @@ -5264,60 +5292,61 @@ metro-react-native-babel-preset@^0.56.4: "@babel/plugin-transform-spread" "^7.0.0" "@babel/plugin-transform-sticky-regex" "^7.0.0" "@babel/plugin-transform-template-literals" "^7.0.0" - "@babel/plugin-transform-typescript" "^7.0.0" + "@babel/plugin-transform-typescript" "^7.5.0" "@babel/plugin-transform-unicode-regex" "^7.0.0" "@babel/template" "^7.0.0" react-refresh "^0.4.0" -metro-react-native-babel-transformer@^0.56.0: - version "0.56.4" - resolved "https://registry.yarnpkg.com/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.56.4.tgz#3c6e48b605c305362ee624e45ff338656e35fc1d" - integrity sha512-ng74eutuy1nyGI9+TDzzVAVfEmNPDlapV4msTQMKPi4EFqo/fBn7Ct33ME9l5E51pQBBnxt/UwcpTvd13b29kQ== +metro-react-native-babel-transformer@0.58.0, metro-react-native-babel-transformer@^0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.58.0.tgz#5da0e5a1b83c01d11626905fa59f34fda53a21a5" + integrity sha512-3A73+cRq1eUPQ8g+hPNGgMUMCGmtQjwqHfoG1DwinAoJ/kr4WOXWWbGZo0xHJNBe/zdHGl0uHcDCp2knPglTdQ== dependencies: "@babel/core" "^7.0.0" - babel-preset-fbjs "^3.1.2" - metro-babel-transformer "^0.56.4" - metro-react-native-babel-preset "^0.56.4" - metro-source-map "^0.56.4" + babel-preset-fbjs "^3.3.0" + metro-babel-transformer "0.58.0" + metro-react-native-babel-preset "0.58.0" + metro-source-map "0.58.0" -metro-resolver@^0.56.4: - version "0.56.4" - resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.56.4.tgz#9876f57bca37fd1bfcffd733541e2ee4a89fad7f" - integrity sha512-Ug4ulVfpkKZ1Wu7mdYj9XLGuOqZTuWCqEhyx3siKTc/2eBwKZQXmiNo5d/IxWNvmwL/87Abeb724I6CMzMfjiQ== +metro-resolver@0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.58.0.tgz#4d03edc52e2e25d45f16688adf3b3f268ea60df9" + integrity sha512-XFbAKvCHN2iWqKeiRARzEXn69eTDdJVJC7lu16S4dPQJ+Dy82dZBr5Es12iN+NmbJuFgrAuIHbpWrdnA9tOf6Q== dependencies: absolute-path "^0.0.0" -metro-source-map@^0.56.0, metro-source-map@^0.56.4: - version "0.56.4" - resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.56.4.tgz#868ccac3f3519fe14eca358bc186f63651b2b9bc" - integrity sha512-f1P9/rpFmG3Z0Jatiw2zvLItx1TwR7mXTSDj4qLDCWeVMB3kEXAr3R0ucumTW8c6HfpJljeRBWzYFXF33fd81g== +metro-source-map@0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.58.0.tgz#e951b99f4c653239ce9323bb08339c6f1978a112" + integrity sha512-yvN1YPmejmgiiS7T1aKBiiUTHPw2Vcm3r2TZ+DY92z/9PR4alysIywrCs/fTHs8rbDcKM5VfPCKGLpkBrbKeOw== dependencies: "@babel/traverse" "^7.0.0" "@babel/types" "^7.0.0" invariant "^2.2.4" - metro-symbolicate "^0.56.4" - ob1 "^0.56.4" + metro-symbolicate "0.58.0" + ob1 "0.58.0" source-map "^0.5.6" vlq "^1.0.0" -metro-symbolicate@^0.56.4: - version "0.56.4" - resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.56.4.tgz#53e9d40beac9049fa75a3e620ddd47d4907ff015" - integrity sha512-8mCNNn6zV5FFKCIcRgI7736Xl+owgvYuy8qanPxZN36f7utiWRYeB+PirEBPcglBk4qQvoy2lT6oPULNXZQbbQ== +metro-symbolicate@0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.58.0.tgz#ba9fd52549c41fc1b656adaad7c8875726dd5abe" + integrity sha512-uIVxUQC1E26qOMj13dKROhwAa2FmZk5eR0NcBqej/aXmQhpr8LjJg2sondkoLKUp827Tf/Fm9+pS4icb5XiqCw== dependencies: invariant "^2.2.4" - metro-source-map "^0.56.4" + metro-source-map "0.58.0" source-map "^0.5.6" through2 "^2.0.1" vlq "^1.0.0" -metro@^0.56.0, metro@^0.56.4: - version "0.56.4" - resolved "https://registry.yarnpkg.com/metro/-/metro-0.56.4.tgz#be7e1380ee6ac3552c25ead8098eab261029e4d7" - integrity sha512-Kt3OQJQtQdts0JrKnyGdLpKHDjqYBgIfzvYrvfhmFCkKuZ8aqRlVnvpfjQ4/OBm0Fmm9NyyxbNRD9VIbj7WjnA== +metro@0.58.0, metro@^0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/metro/-/metro-0.58.0.tgz#c037318c112f80dc96199780c8b401ab72cfd142" + integrity sha512-yi/REXX+/s4r7RjzXht+E+qE6nzvFIrEXO5Q61h+70Q7RODMU8EnlpXx04JYk7DevHuMhFaX+NWhCtRINzR4zA== dependencies: + "@babel/code-frame" "^7.0.0" "@babel/core" "^7.0.0" - "@babel/generator" "^7.0.0" + "@babel/generator" "^7.5.0" "@babel/parser" "^7.0.0" "@babel/plugin-external-helpers" "^7.0.0" "@babel/template" "^7.0.0" @@ -5325,9 +5354,10 @@ metro@^0.56.0, metro@^0.56.4: "@babel/types" "^7.0.0" absolute-path "^0.0.0" async "^2.4.0" - babel-preset-fbjs "^3.1.2" + babel-preset-fbjs "^3.3.0" buffer-crc32 "^0.2.13" chalk "^2.4.1" + ci-info "^2.0.0" concat-stream "^1.6.0" connect "^3.6.5" debug "^2.2.0" @@ -5343,32 +5373,33 @@ metro@^0.56.0, metro@^0.56.4: json-stable-stringify "^1.0.1" lodash.throttle "^4.1.1" merge-stream "^1.0.1" - metro-babel-register "^0.56.4" - metro-babel-transformer "^0.56.4" - metro-cache "^0.56.4" - metro-config "^0.56.4" - metro-core "^0.56.4" - metro-inspector-proxy "^0.56.4" - metro-minify-uglify "^0.56.4" - metro-react-native-babel-preset "^0.56.4" - metro-resolver "^0.56.4" - metro-source-map "^0.56.4" - metro-symbolicate "^0.56.4" + metro-babel-register "0.58.0" + metro-babel-transformer "0.58.0" + metro-cache "0.58.0" + metro-config "0.58.0" + metro-core "0.58.0" + metro-inspector-proxy "0.58.0" + metro-minify-uglify "0.58.0" + metro-react-native-babel-preset "0.58.0" + metro-resolver "0.58.0" + metro-source-map "0.58.0" + metro-symbolicate "0.58.0" mime-types "2.1.11" mkdirp "^0.5.1" node-fetch "^2.2.0" - nullthrows "^1.1.0" + nullthrows "^1.1.1" resolve "^1.5.0" rimraf "^2.5.4" serialize-error "^2.1.0" source-map "^0.5.6" + strip-ansi "^4.0.0" temp "0.8.3" throat "^4.1.0" wordwrap "^1.0.0" write-file-atomic "^1.2.0" ws "^1.1.5" xpipe "^1.0.5" - yargs "^9.0.0" + yargs "^14.2.0" micromatch@^3.1.10, micromatch@^3.1.4: version "3.1.10" @@ -5513,17 +5544,6 @@ mkdirp@^0.5.0, mkdirp@^0.5.1: dependencies: minimist "^1.2.5" -morgan@^1.9.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.10.0.tgz#091778abc1fc47cd3509824653dae1faab6b17d7" - integrity sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ== - dependencies: - basic-auth "~2.0.1" - debug "2.6.9" - depd "~2.0.0" - on-finished "~2.3.0" - on-headers "~1.0.2" - ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" @@ -5604,7 +5624,7 @@ node-fetch@^1.0.1: encoding "^0.1.11" is-stream "^1.0.1" -node-fetch@^2.2.0, node-fetch@^2.5.0: +node-fetch@^2.2.0, node-fetch@^2.6.0: version "2.6.0" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== @@ -5648,17 +5668,6 @@ node-modules-regexp@^1.0.0: resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= -node-notifier@^5.2.1: - version "5.4.3" - resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.3.tgz#cb72daf94c93904098e28b9c590fd866e464bd50" - integrity sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q== - dependencies: - growly "^1.3.0" - is-wsl "^1.1.0" - semver "^5.5.0" - shellwords "^0.1.1" - which "^1.3.0" - node-notifier@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-6.0.0.tgz#cea319e06baa16deec8ce5cd7f133c4a46b68e12" @@ -5675,6 +5684,11 @@ node-releases@^1.1.53: resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.53.tgz#2d821bfa499ed7c5dffc5e2f28c88e78a08ee3f4" integrity sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ== +node-stream-zip@^1.9.1: + version "1.9.2" + resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.9.2.tgz#ef35da90a03627f275b3c7ead4cea1218f1f5a6a" + integrity sha512-X9gnhFH8Egchv+CJwtiGYFtiRotf/gDL+MB3pV7KGFNbeYDo0NqAYocdQEU2czXj6npta9SbPj4bow1yQtoffA== + normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" @@ -5725,7 +5739,7 @@ nth-check@^1.0.2: dependencies: boolbase "~1.0.0" -nullthrows@^1.1.0: +nullthrows@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== @@ -5784,10 +5798,10 @@ oauth-sign@~0.9.0: resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== -ob1@^0.56.4: - version "0.56.4" - resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.56.4.tgz#c4acb3baa42f4993a44b35b2da7c8ef443dcccec" - integrity sha512-URgFof9z2wotiYFsqlydXtQfGV81gvBI2ODy64xfd3vPo+AYom5PVDX4t4zn23t/O+S2IxqApSQM8uJAybmz7w== +ob1@0.58.0: + version "0.58.0" + resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.58.0.tgz#484a1e9a63a8b79d9ea6f3a83b2a42110faac973" + integrity sha512-uZP44cbowAfHafP1k4skpWItk5iHCoRevMfrnUvYCfyNNPPJd3rfDCyj0exklWi2gDXvjlj2ObsfiqP/bs/J7Q== object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" @@ -5916,15 +5930,6 @@ os-homedir@^1.0.1: resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= -os-locale@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" - integrity sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA== - dependencies: - execa "^0.7.0" - lcid "^1.0.0" - mem "^1.1.0" - os-locale@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" @@ -6041,13 +6046,6 @@ parse-headers@^2.0.0: resolved "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.3.tgz#5e8e7512383d140ba02f0c7aa9f49b4399c92515" integrity sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA== -parse-json@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" - integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= - dependencies: - error-ex "^1.2.0" - parse-json@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" @@ -6126,13 +6124,6 @@ path-parse@^1.0.6: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== -path-type@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" - integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= - dependencies: - pify "^2.0.0" - path-type@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" @@ -6161,11 +6152,6 @@ picomatch@^2.0.4, picomatch@^2.0.5: resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== -pify@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= - pify@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" @@ -6211,7 +6197,7 @@ pkg-up@^2.0.0: dependencies: find-up "^2.1.0" -plist@^3.0.0, plist@^3.0.1: +plist@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.1.tgz#a9b931d17c304e8912ef0ba3bdd6182baf2e1f8c" integrity sha512-GpgvHHocGRyQm74b6FWEZZVRroHKE1I0/BTjAmySaohK+cUn+hZpbqXkc3KWgW3gQYkqcQej35FohcT0FRlkRQ== @@ -6261,7 +6247,17 @@ pretty-format@^24.7.0, pretty-format@^24.9.0: ansi-styles "^3.2.0" react-is "^16.8.4" -pretty-format@^25.1.0, pretty-format@^25.4.0: +pretty-format@^25.2.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a" + integrity sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ== + dependencies: + "@jest/types" "^25.5.0" + ansi-regex "^5.0.0" + ansi-styles "^4.0.0" + react-is "^16.12.0" + +pretty-format@^25.4.0: version "25.4.0" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.4.0.tgz#c58801bb5c4926ff4a677fe43f9b8b99812c7830" integrity sha512-PI/2dpGjXK5HyXexLPZU/jw5T9Q6S1YVXxxVxco+LIqzUFHXIbKZKdUVt7GcX7QUCr31+3fzhi4gN4/wUYPVxQ== @@ -6426,13 +6422,13 @@ range-parser@~1.2.1: resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -react-devtools-core@^3.6.3: - version "3.6.3" - resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-3.6.3.tgz#977d95b684c6ad28205f0c62e1e12c5f16675814" - integrity sha512-+P+eFy/yo8Z/UH9J0DqHZuUM5+RI2wl249TNvMx3J2jpUomLQa4Zxl56GEotGfw3PIP1eI+hVf1s53FlUONStQ== +react-devtools-core@^4.0.6: + version "4.6.0" + resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.6.0.tgz#2443b3c6fac78b801702af188abc6d83d56224e6" + integrity sha512-sjR3KC5VvGV7X6vzR3OTutPT5VeBcSKwoIXUwihpl1Nb4dkmweEbzCTPx2PYMVAqc+NZ5tPGhqBzXV+iGg5CNA== dependencies: shell-quote "^1.6.1" - ws "^3.3.1" + ws "^7" react-dom@^16.4.2: version "16.13.1" @@ -6605,39 +6601,41 @@ react-native-touch-id@^4.4.1: escape-string-regexp "2.0.0" invariant "2.2.4" -react-native@0.61.5: - version "0.61.5" - resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.61.5.tgz#6e21acb56cbd75a3baeb1f70201a66f42600bba8" - integrity sha512-MXqE3NoGO0T3dUKIKkIppijBhRRMpfN6ANbhMXHDuyfA+fSilRWgCwYgR/YNCC7ntECoJYikKaNTUBB0DeQy6Q== +react-native@0.62.2: + version "0.62.2" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.62.2.tgz#d831e11a3178705449142df19a70ac2ca16bad10" + integrity sha512-gADZZ3jcm2WFTjh8CCBCbl5wRSbdxqZGd+8UpNwLQFgrkp/uHorwAhLNqcd4+fHmADgPBltNL0uR1Vhv47zcOw== dependencies: "@babel/runtime" "^7.0.0" - "@react-native-community/cli" "^3.0.0" - "@react-native-community/cli-platform-android" "^3.0.0" - "@react-native-community/cli-platform-ios" "^3.0.0" + "@react-native-community/cli" "^4.5.1" + "@react-native-community/cli-platform-android" "^4.5.1" + "@react-native-community/cli-platform-ios" "^4.5.0" abort-controller "^3.0.0" - art "^0.10.0" + anser "^1.4.9" base64-js "^1.1.2" connect "^3.6.5" create-react-class "^15.6.3" escape-string-regexp "^1.0.5" + eslint-plugin-relay "1.4.1" event-target-shim "^5.0.1" fbjs "^1.0.0" fbjs-scripts "^1.1.0" - hermes-engine "^0.2.1" + hermes-engine "~0.4.0" invariant "^2.2.4" jsc-android "^245459.0.0" - metro-babel-register "^0.56.0" - metro-react-native-babel-transformer "^0.56.0" - metro-source-map "^0.56.0" - nullthrows "^1.1.0" + metro-babel-register "0.58.0" + metro-react-native-babel-transformer "0.58.0" + metro-source-map "0.58.0" + nullthrows "^1.1.1" pretty-format "^24.7.0" promise "^7.1.1" prop-types "^15.7.2" - react-devtools-core "^3.6.3" + react-devtools-core "^4.0.6" react-refresh "^0.4.0" regenerator-runtime "^0.13.2" - scheduler "0.15.0" + scheduler "0.17.0" stacktrace-parser "^0.1.3" + use-subscription "^1.0.0" whatwg-fetch "^3.0.0" react-refresh@^0.4.0: @@ -6645,23 +6643,15 @@ react-refresh@^0.4.0: resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.4.2.tgz#54a277a6caaac2803d88f1d6f13c1dcfbd81e334" integrity sha512-kv5QlFFSZWo7OlJFNYbxRtY66JImuP2LcrFgyJfQaf85gSP+byzG21UbDQEYjU7f//ny8rwiEkO6py2Y+fEgAQ== -react@16.9.0: - version "16.9.0" - resolved "https://registry.yarnpkg.com/react/-/react-16.9.0.tgz#40ba2f9af13bc1a38d75dbf2f4359a5185c4f7aa" - integrity sha512-+7LQnFBwkiw+BobzOF6N//BdoNw0ouwmSJTEm9cglOOmsg/TMiFHZLe2sEoN5M7LgJTj9oHH0gxklfnQe66S1w== +react@16.11.0: + version "16.11.0" + resolved "https://registry.yarnpkg.com/react/-/react-16.11.0.tgz#d294545fe62299ccee83363599bf904e4a07fdbb" + integrity sha512-M5Y8yITaLmU0ynd0r1Yvfq98Rmll6q8AxaEe88c8e7LxO8fZ2cNgmFt0aGAS9wzf1Ao32NKXtCl+/tVVtkxq6g== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" prop-types "^15.6.2" -read-pkg-up@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" - integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= - dependencies: - find-up "^2.0.0" - read-pkg "^2.0.0" - read-pkg-up@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" @@ -6679,15 +6669,6 @@ read-pkg-up@^7.0.1: read-pkg "^5.2.0" type-fest "^0.8.1" -read-pkg@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" - integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= - dependencies: - load-json-file "^2.0.0" - normalize-package-data "^2.3.2" - path-type "^2.0.0" - read-pkg@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" @@ -7050,10 +7031,10 @@ saxes@^3.1.9: dependencies: xmlchars "^2.1.1" -scheduler@0.15.0: - version "0.15.0" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.15.0.tgz#6bfcf80ff850b280fed4aeecc6513bc0b4f17f8e" - integrity sha512-xAefmSfN6jqAa7Kuq7LIJY0bwAPG3xlCj0HMEBQk1lxYiDKZscY2xJ5U/61ZTrYbmNQbXa+gc7czPkVo11tnCg== +scheduler@0.17.0: + version "0.17.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.17.0.tgz#7c9c673e4ec781fac853927916d1c426b6f3ddfe" + integrity sha512-7rro8Io3tnCPuY4la/NuI5F2yfESpnfZyT6TtkXnSWVkcu0BCDJ+8gk5ozUaFaxpIyNuWAPXrH0yFcSi28fnDA== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" @@ -8042,7 +8023,7 @@ use-memo-one@^1.1.1: resolved "https://registry.yarnpkg.com/use-memo-one/-/use-memo-one-1.1.1.tgz#39e6f08fe27e422a7d7b234b5f9056af313bd22c" integrity sha512-oFfsyun+bP7RX8X2AskHNTxu+R3QdE/RC5IefMbqptmACAA/gfol1KDD5KRzPsGMa62sWxGZw+Ui43u6x4ddoQ== -use-subscription@^1.4.0: +use-subscription@^1.0.0, use-subscription@^1.4.0: version "1.4.1" resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.4.1.tgz#edcbcc220f1adb2dd4fa0b2f61b6cc308e620069" integrity sha512-7+IIwDG/4JICrWHL/Q/ZPK5yozEnvRm6vHImu0LKwQlmWGKeiF7mbAenLlK/cTNXrTtXHU/SFASQHzB6+oSJMQ== @@ -8300,7 +8281,7 @@ ws@^1.1.0, ws@^1.1.5: options ">=0.0.5" ultron "1.0.x" -ws@^3.0.0, ws@^3.3.1: +ws@^3.0.0: version "3.3.3" resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" integrity sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA== @@ -8309,6 +8290,11 @@ ws@^3.0.0, ws@^3.3.1: safe-buffer "~5.1.0" ultron "~1.1.0" +ws@^7: + version "7.2.5" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.2.5.tgz#abb1370d4626a5a9cd79d8de404aa18b3465d10d" + integrity sha512-C34cIU4+DB2vMyAbmEKossWq2ZQDr6QEyuuCzWrM9zfw1sGc0mYiJ0UnG9zzNykt49C2Fi34hvr2vssFQRS6EA== + ws@^7.0.0: version "7.2.3" resolved "https://registry.yarnpkg.com/ws/-/ws-7.2.3.tgz#a5411e1fb04d5ed0efee76d26d5c46d830c39b46" @@ -8389,11 +8375,6 @@ xtend@^4.0.0, xtend@~4.0.1: resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== -y18n@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" - integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= - "y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" @@ -8425,6 +8406,14 @@ yargs-parser@^13.0.0, yargs-parser@^13.1.2: camelcase "^5.0.0" decamelize "^1.2.0" +yargs-parser@^15.0.1: + version "15.0.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.1.tgz#54786af40b820dcb2fb8025b11b4d659d76323b3" + integrity sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + yargs-parser@^18.1.1: version "18.1.3" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" @@ -8433,13 +8422,6 @@ yargs-parser@^18.1.1: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-parser@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" - integrity sha1-jQrELxbqVd69MyyvTEA4s+P139k= - dependencies: - camelcase "^4.1.0" - yargs@^12.0.5: version "12.0.5" resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" @@ -8474,6 +8456,23 @@ yargs@^13.2.2, yargs@^13.2.4: y18n "^4.0.0" yargs-parser "^13.1.2" +yargs@^14.2.0: + version "14.2.3" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.3.tgz#1a1c3edced1afb2a2fea33604bc6d1d8d688a414" + integrity sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg== + dependencies: + cliui "^5.0.0" + decamelize "^1.2.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^15.0.1" + yargs@^15.3.1: version "15.3.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.3.1.tgz#9505b472763963e54afe60148ad27a330818e98b" @@ -8490,22 +8489,3 @@ yargs@^15.3.1: which-module "^2.0.0" y18n "^4.0.0" yargs-parser "^18.1.1" - -yargs@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" - integrity sha1-UqzCP+7Kw0BCB47njAwAf1CF20w= - dependencies: - camelcase "^4.1.0" - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - os-locale "^2.0.0" - read-pkg-up "^2.0.0" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^2.0.0" - which-module "^2.0.0" - y18n "^3.2.1" - yargs-parser "^7.0.0" diff --git a/mobile_files/package.json.orig b/mobile_files/package.json.orig deleted file mode 100644 index 1099b3e2ef..0000000000 --- a/mobile_files/package.json.orig +++ /dev/null @@ -1,66 +0,0 @@ -{ - "name": "StatusIm-Mobile", - "version": "0.0.1", - "private": true, - "scripts": { - "start": "react-native start", - "classpath": "shadow-cljs classpath android", - "app:compile:android": "shadow-cljs compile android", - "app:watch": "shadow-cljs watch android", - "app:packager": "react-native start --host 0.0.0.0 --port 8081", - "app:android": "react-native run-android" - }, - "dependencies": { - "@react-native-community/netinfo": "^4.4.0", - "bignumber.js": "git+https://github.com/status-im/bignumber.js.git#v4.0.2-status", - "buffer": "^5.4.2", - "chance": "^1.1.0", - "create-react-class": "^15.6.2", - "emojilib": "^2.4.0", - "eth-phishing-detect": "^1.1.13", - "functional-red-black-tree": "^1.0.1", - "hermes-engine": "0.2.1", - "hi-base32": "^0.5.0", - "i18n-js": "^3.3.0", - "qrcode": "^1.4.1", - "react": "16.9.0", - "react-dom": "^16.4.2", - "react-native": "0.61.5", - "react-native-background-timer": "^2.1.1", - "react-native-camera": "^3.3.3", - "react-native-config": "git+https://github.com/status-im/react-native-config.git#0.11.2-1-status", - "react-native-dialogs": "^1.0.4", - "react-native-fetch-polyfill": "^1.1.2", - "react-native-fs": "^2.14.1", - "react-native-gesture-handler": "^1.3.0", - "react-native-image-crop-picker": "^0.25.0", - "react-native-image-resizer": "git+https://github.com/status-im/react-native-image-resizer.git#1.0.0-1-status", - "react-native-keychain": "git+https://github.com/status-im/react-native-keychain.git#v.3.0.0-status", - "react-native-languages": "^3.0.2", - "react-native-mail": "git+https://github.com/status-im/react-native-mail.git#v4.0.0-status", - "react-native-navigation-twopane": "git+https://github.com/status-im/react-native-navigation-twopane.git#v0.0.2-status", - "react-native-safe-area-context": "^0.6.0", - "react-native-screens": "^1.0.0-alpha.23", - "react-native-shake": "^3.3.1", - "react-native-splash-screen": "^3.2.0", - "react-native-status-keycard": "git+https://github.com/status-im/react-native-status-keycard.git#v2.5.17", - "react-native-svg": "^9.8.4", - "react-native-touch-id": "^4.4.1", - "react-native-webview": "^6.11.1", - "react-native-webview-bridge": "git+https://github.com/status-im/react-native-webview-bridge.git#fix/community-webview", - "react-navigation": "^3.11.0", - "web3-utils": "^1.2.1" - }, - "devDependencies": { - "@babel/generator": "7.0.0", - "@babel/helper-builder-react-jsx": "7.0.0", - "@babel/plugin-transform-block-scoping": "7.0.0", - "@babel/preset-env": "7.1.0", - "@babel/register": "7.0.0", - "coveralls": "^3.0.4", - "nyc": "^14.1.1", - "process": "0.11.10", - "rn-snoopy": "git+https://github.com/status-im/rn-snoopy.git#v2.0.2-status", - "shadow-cljs": "2.8.83" - } -} diff --git a/modules/react-native-status/ios/RCTStatus/RCTStatus.xcodeproj/project.pbxproj b/modules/react-native-status/ios/RCTStatus/RCTStatus.xcodeproj/project.pbxproj index 128dd20c1b..8f8f624bda 100644 --- a/modules/react-native-status/ios/RCTStatus/RCTStatus.xcodeproj/project.pbxproj +++ b/modules/react-native-status/ios/RCTStatus/RCTStatus.xcodeproj/project.pbxproj @@ -97,7 +97,7 @@ 206C9F321D474E910063E3E6 /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 0730; + LastUpgradeCheck = 1140; ORGANIZATIONNAME = Status.im; TargetAttributes = { 206C9F391D474E910063E3E6 = { @@ -107,10 +107,9 @@ }; buildConfigurationList = 206C9F351D474E910063E3E6 /* Build configuration list for PBXProject "RCTStatus" */; compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; + developmentRegion = en; hasScannedForEncodings = 0; knownRegions = ( - English, en, ); mainGroup = 206C9F311D474E910063E3E6; @@ -139,18 +138,29 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; @@ -184,18 +194,29 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; @@ -224,7 +245,6 @@ 206C9F441D474E910063E3E6 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -238,7 +258,7 @@ "$(SRCROOT)/../../../../node_modules/react-native/React/**", "$(SRCROOT)/../../../../node_modules/react-native-config/ios/ReactNativeConfig", ); - IPHONEOS_DEPLOYMENT_TARGET = 7.0; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; ONLY_ACTIVE_ARCH = YES; OTHER_LDFLAGS = ( "-ObjC", @@ -253,7 +273,6 @@ 206C9F451D474E910063E3E6 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -267,7 +286,7 @@ "$(SRCROOT)/../../../../node_modules/react-native/React/**", "$(SRCROOT)/../../../../node_modules/react-native-config/ios/ReactNativeConfig", ); - IPHONEOS_DEPLOYMENT_TARGET = 7.0; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; ONLY_ACTIVE_ARCH = NO; OTHER_LDFLAGS = ( "-ObjC", diff --git a/nix/mobile/android/maven-and-npm-deps/default.nix b/nix/mobile/android/maven-and-npm-deps/default.nix index e33b40a362..d93afec755 100644 --- a/nix/mobile/android/maven-and-npm-deps/default.nix +++ b/nix/mobile/android/maven-and-npm-deps/default.nix @@ -173,10 +173,10 @@ let ''; fixupPhase = '' # Patch prepareJSC so that it doesn't subsequently try to build NDK libs - substituteInPlace $out/project/node_modules/react-native/ReactAndroid/build.gradle \ - --replace \ - 'packageReactNdkLibs(dependsOn: buildReactNdkLib, ' \ - 'packageReactNdkLibs(' + #substituteInPlace $out/project/node_modules/react-native/ReactAndroid/build.gradle \ + # --replace \ + # 'packageReactNdkLibs(dependsOn: buildReactNdkLib, ' \ + # 'packageReactNdkLibs(' ''; # The ELF types are incompatible with the host platform, so let's not even try diff --git a/nix/mobile/android/maven-and-npm-deps/maven/maven-inputs.txt b/nix/mobile/android/maven-and-npm-deps/maven/maven-inputs.txt index ed546c52b6..475532eb65 100644 --- a/nix/mobile/android/maven-and-npm-deps/maven/maven-inputs.txt +++ b/nix/mobile/android/maven-and-npm-deps/maven/maven-inputs.txt @@ -1,11 +1,11 @@ https://dl.google.com/dl/android/maven2/androidx/activity/activity/1.1.0/activity-1.1.0 https://dl.google.com/dl/android/maven2/androidx/annotation/annotation/1.0.0/annotation-1.0.0 https://dl.google.com/dl/android/maven2/androidx/annotation/annotation/1.1.0/annotation-1.1.0 +https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0 https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/1.0.0/appcompat-1.0.0 https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/1.0.2/appcompat-1.0.2 -https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0 https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/1.1.0-rc01/appcompat-1.1.0-rc01 -https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0 +https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0 https://dl.google.com/dl/android/maven2/androidx/arch/core/core-common/2.0.0/core-common-2.0.0 https://dl.google.com/dl/android/maven2/androidx/arch/core/core-common/2.1.0/core-common-2.1.0 https://dl.google.com/dl/android/maven2/androidx/arch/core/core-runtime/2.0.0/core-runtime-2.0.0 @@ -37,14 +37,14 @@ https://dl.google.com/dl/android/maven2/androidx/legacy/legacy-support-core-util https://dl.google.com/dl/android/maven2/androidx/legacy/legacy-support-v4/1.0.0/legacy-support-v4-1.0.0 https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-common/2.0.0/lifecycle-common-2.0.0 https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-common/2.2.0/lifecycle-common-2.2.0 -https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0 https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-livedata-core/2.0.0/lifecycle-livedata-core-2.0.0 https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-livedata-core/2.2.0/lifecycle-livedata-core-2.2.0 +https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0 https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-runtime/2.0.0/lifecycle-runtime-2.0.0 https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-runtime/2.2.0/lifecycle-runtime-2.2.0 +https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.2.0/lifecycle-viewmodel-savedstate-2.2.0 https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-viewmodel/2.0.0/lifecycle-viewmodel-2.0.0 https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-viewmodel/2.2.0/lifecycle-viewmodel-2.2.0 -https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.2.0/lifecycle-viewmodel-savedstate-2.2.0 https://dl.google.com/dl/android/maven2/androidx/loader/loader/1.0.0/loader-1.0.0 https://dl.google.com/dl/android/maven2/androidx/localbroadcastmanager/localbroadcastmanager/1.0.0/localbroadcastmanager-1.0.0 https://dl.google.com/dl/android/maven2/androidx/media/media/1.0.0/media-1.0.0 @@ -58,14 +58,14 @@ https://dl.google.com/dl/android/maven2/androidx/swiperefreshlayout/swiperefresh https://dl.google.com/dl/android/maven2/androidx/swiperefreshlayout/swiperefreshlayout/1.1.0-alpha02/swiperefreshlayout-1.1.0-alpha02 https://dl.google.com/dl/android/maven2/androidx/transition/transition/1.1.0/transition-1.1.0 https://dl.google.com/dl/android/maven2/androidx/transition/transition/1.2.0/transition-1.2.0 -https://dl.google.com/dl/android/maven2/androidx/vectordrawable/vectordrawable/1.0.1/vectordrawable-1.0.1 -https://dl.google.com/dl/android/maven2/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0 https://dl.google.com/dl/android/maven2/androidx/vectordrawable/vectordrawable-animated/1.0.0/vectordrawable-animated-1.0.0 https://dl.google.com/dl/android/maven2/androidx/vectordrawable/vectordrawable-animated/1.1.0/vectordrawable-animated-1.1.0 +https://dl.google.com/dl/android/maven2/androidx/vectordrawable/vectordrawable/1.0.1/vectordrawable-1.0.1 +https://dl.google.com/dl/android/maven2/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0 https://dl.google.com/dl/android/maven2/androidx/versionedparcelable/versionedparcelable/1.0.0/versionedparcelable-1.0.0 https://dl.google.com/dl/android/maven2/androidx/versionedparcelable/versionedparcelable/1.1.0/versionedparcelable-1.1.0 -https://dl.google.com/dl/android/maven2/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0 https://dl.google.com/dl/android/maven2/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0 +https://dl.google.com/dl/android/maven2/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0 https://dl.google.com/dl/android/maven2/com/android/databinding/baseLibrary/3.0.0/baseLibrary-3.0.0 https://dl.google.com/dl/android/maven2/com/android/databinding/baseLibrary/3.0.1/baseLibrary-3.0.1 https://dl.google.com/dl/android/maven2/com/android/databinding/baseLibrary/3.2.1/baseLibrary-3.2.1 @@ -97,9 +97,9 @@ https://dl.google.com/dl/android/maven2/com/android/tools/annotations/26.0.1/ann https://dl.google.com/dl/android/maven2/com/android/tools/annotations/26.2.1/annotations-26.2.1 https://dl.google.com/dl/android/maven2/com/android/tools/annotations/26.3.1/annotations-26.3.1 https://dl.google.com/dl/android/maven2/com/android/tools/annotations/26.5.3/annotations-26.5.3 -https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2/3.5.3-5435860/aapt2-3.5.3-5435860 https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/0.3.1/aapt2-proto-0.3.1 https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/0.4.0/aapt2-proto-0.4.0 +https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2/3.5.3-5435860/aapt2-3.5.3-5435860 https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/3.0.0/apksig-3.0.0 https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/3.0.1/apksig-3.0.1 https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/3.2.1/apksig-3.2.1 @@ -108,11 +108,6 @@ https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/3.5.3/apk https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/3.2.1/apkzlib-3.2.1 https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/3.3.1/apkzlib-3.3.1 https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/3.5.3/apkzlib-3.5.3 -https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.0.0/builder-3.0.0 -https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.0.1/builder-3.0.1 -https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.2.1/builder-3.2.1 -https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.3.1/builder-3.3.1 -https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.5.3/builder-3.5.3 https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-model/3.0.0/builder-model-3.0.0 https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-model/3.0.1/builder-model-3.0.1 https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-model/3.2.1/builder-model-3.2.1 @@ -123,14 +118,14 @@ https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-test-api https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-test-api/3.2.1/builder-test-api-3.2.1 https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-test-api/3.3.1/builder-test-api-3.3.1 https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-test-api/3.5.3/builder-test-api-3.5.3 +https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.0.0/builder-3.0.0 +https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.0.1/builder-3.0.1 +https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.2.1/builder-3.2.1 +https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.3.1/builder-3.3.1 +https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.5.3/builder-3.5.3 https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/0.5.0/bundletool-0.5.0 https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/0.6.0/bundletool-0.6.0 https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/0.9.0/bundletool-0.9.0 -https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.0/gradle-3.0.0 -https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1 -https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.2.1/gradle-3.2.1 -https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.3.1/gradle-3.3.1 -https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.5.3/gradle-3.5.3 https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/3.0.0/gradle-api-3.0.0 https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/3.0.1/gradle-api-3.0.1 https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/3.2.1/gradle-api-3.2.1 @@ -138,6 +133,11 @@ https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/3.3.1 https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/3.5.3/gradle-api-3.5.3 https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-core/3.0.0/gradle-core-3.0.0 https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-core/3.0.1/gradle-core-3.0.1 +https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.0/gradle-3.0.0 +https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1 +https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.2.1/gradle-3.2.1 +https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.3.1/gradle-3.3.1 +https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.5.3/gradle-3.5.3 https://dl.google.com/dl/android/maven2/com/android/tools/build/jetifier/jetifier-core/1.0.0-alpha10/jetifier-core-1.0.0-alpha10 https://dl.google.com/dl/android/maven2/com/android/tools/build/jetifier/jetifier-core/1.0.0-beta02/jetifier-core-1.0.0-beta02 https://dl.google.com/dl/android/maven2/com/android/tools/build/jetifier/jetifier-core/1.0.0-beta04/jetifier-core-1.0.0-beta04 @@ -177,19 +177,19 @@ https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutlib-ap https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutlib-api/26.2.1/layoutlib-api-26.2.1 https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutlib-api/26.3.1/layoutlib-api-26.3.1 https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutlib-api/26.5.3/layoutlib-api-26.5.3 -https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/26.0.0/lint-26.0.0 -https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/26.0.1/lint-26.0.1 -https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/26.5.3/lint-26.5.3 https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-api/26.0.0/lint-api-26.0.0 https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-api/26.0.1/lint-api-26.0.1 https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-api/26.5.3/lint-api-26.5.3 https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-checks/26.0.0/lint-checks-26.0.0 https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-checks/26.0.1/lint-checks-26.0.1 https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-checks/26.5.3/lint-checks-26.5.3 -https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle/26.5.3/lint-gradle-26.5.3 https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle-api/26.2.1/lint-gradle-api-26.2.1 https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle-api/26.3.1/lint-gradle-api-26.3.1 https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle-api/26.5.3/lint-gradle-api-26.5.3 +https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle/26.5.3/lint-gradle-26.5.3 +https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/26.0.0/lint-26.0.0 +https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/26.0.1/lint-26.0.1 +https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/26.5.3/lint-26.5.3 https://dl.google.com/dl/android/maven2/com/android/tools/repository/26.0.0/repository-26.0.0 https://dl.google.com/dl/android/maven2/com/android/tools/repository/26.0.1/repository-26.0.1 https://dl.google.com/dl/android/maven2/com/android/tools/repository/26.2.1/repository-26.2.1 @@ -213,16 +213,16 @@ https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-fla https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-phenotype/16.0.0/play-services-phenotype-16.0.0 https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-stats/16.0.1/play-services-stats-16.0.1 https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-tasks/16.0.1/play-services-tasks-16.0.1 -https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-vision/17.0.2/play-services-vision-17.0.2 https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-vision-common/17.0.2/play-services-vision-common-17.0.2 https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-vision-image-label/17.0.2/play-services-vision-image-label-17.0.2 +https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-vision/17.0.2/play-services-vision-17.0.2 https://dl.google.com/dl/android/maven2/com/google/android/material/material/1.1.0/material-1.1.0 https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-common/16.0.3/firebase-common-16.0.3 -https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-iid/17.0.3/firebase-iid-17.0.3 https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-iid-interop/16.0.1/firebase-iid-interop-16.0.1 +https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-iid/17.0.3/firebase-iid-17.0.3 https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-ml-common/17.0.0/firebase-ml-common-17.0.0 -https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-ml-vision/19.0.3/firebase-ml-vision-19.0.3 https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-ml-vision-face-model/17.0.2/firebase-ml-vision-face-model-17.0.2 +https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-ml-vision/19.0.3/firebase-ml-vision-19.0.3 https://jcenter.bintray.com/com/adobe/xmp/xmpcore/5.1.3/xmpcore-5.1.3 https://jcenter.bintray.com/com/afollestad/material-dialogs/commons/0.9.6.0/commons-0.9.6.0 https://jcenter.bintray.com/com/afollestad/material-dialogs/core/0.9.6.0/core-0.9.6.0 @@ -237,10 +237,6 @@ https://jcenter.bintray.com/com/android/tools/annotations/24.1.3/annotations-24. https://jcenter.bintray.com/com/android/tools/annotations/24.3.1/annotations-24.3.1 https://jcenter.bintray.com/com/android/tools/annotations/24.5.0/annotations-24.5.0 https://jcenter.bintray.com/com/android/tools/annotations/25.2.3/annotations-25.2.3 -https://jcenter.bintray.com/com/android/tools/build/builder/1.1.3/builder-1.1.3 -https://jcenter.bintray.com/com/android/tools/build/builder/1.3.1/builder-1.3.1 -https://jcenter.bintray.com/com/android/tools/build/builder/1.5.0/builder-1.5.0 -https://jcenter.bintray.com/com/android/tools/build/builder/2.2.3/builder-2.2.3 https://jcenter.bintray.com/com/android/tools/build/builder-model/1.1.3/builder-model-1.1.3 https://jcenter.bintray.com/com/android/tools/build/builder-model/1.3.1/builder-model-1.3.1 https://jcenter.bintray.com/com/android/tools/build/builder-model/1.5.0/builder-model-1.5.0 @@ -249,15 +245,19 @@ https://jcenter.bintray.com/com/android/tools/build/builder-test-api/1.1.3/build https://jcenter.bintray.com/com/android/tools/build/builder-test-api/1.3.1/builder-test-api-1.3.1 https://jcenter.bintray.com/com/android/tools/build/builder-test-api/1.5.0/builder-test-api-1.5.0 https://jcenter.bintray.com/com/android/tools/build/builder-test-api/2.2.3/builder-test-api-2.2.3 -https://jcenter.bintray.com/com/android/tools/build/gradle/1.1.3/gradle-1.1.3 -https://jcenter.bintray.com/com/android/tools/build/gradle/1.3.1/gradle-1.3.1 -https://jcenter.bintray.com/com/android/tools/build/gradle/1.5.0/gradle-1.5.0 -https://jcenter.bintray.com/com/android/tools/build/gradle/2.2.3/gradle-2.2.3 +https://jcenter.bintray.com/com/android/tools/build/builder/1.1.3/builder-1.1.3 +https://jcenter.bintray.com/com/android/tools/build/builder/1.3.1/builder-1.3.1 +https://jcenter.bintray.com/com/android/tools/build/builder/1.5.0/builder-1.5.0 +https://jcenter.bintray.com/com/android/tools/build/builder/2.2.3/builder-2.2.3 https://jcenter.bintray.com/com/android/tools/build/gradle-api/2.2.3/gradle-api-2.2.3 https://jcenter.bintray.com/com/android/tools/build/gradle-core/1.1.3/gradle-core-1.1.3 https://jcenter.bintray.com/com/android/tools/build/gradle-core/1.3.1/gradle-core-1.3.1 https://jcenter.bintray.com/com/android/tools/build/gradle-core/1.5.0/gradle-core-1.5.0 https://jcenter.bintray.com/com/android/tools/build/gradle-core/2.2.3/gradle-core-2.2.3 +https://jcenter.bintray.com/com/android/tools/build/gradle/1.1.3/gradle-1.1.3 +https://jcenter.bintray.com/com/android/tools/build/gradle/1.3.1/gradle-1.3.1 +https://jcenter.bintray.com/com/android/tools/build/gradle/1.5.0/gradle-1.5.0 +https://jcenter.bintray.com/com/android/tools/build/gradle/2.2.3/gradle-2.2.3 https://jcenter.bintray.com/com/android/tools/build/manifest-merger/24.1.3/manifest-merger-24.1.3 https://jcenter.bintray.com/com/android/tools/build/manifest-merger/24.3.1/manifest-merger-24.3.1 https://jcenter.bintray.com/com/android/tools/build/manifest-merger/24.5.0/manifest-merger-24.5.0 @@ -285,10 +285,6 @@ https://jcenter.bintray.com/com/android/tools/layoutlib/layoutlib-api/24.1.3/lay https://jcenter.bintray.com/com/android/tools/layoutlib/layoutlib-api/24.3.1/layoutlib-api-24.3.1 https://jcenter.bintray.com/com/android/tools/layoutlib/layoutlib-api/24.5.0/layoutlib-api-24.5.0 https://jcenter.bintray.com/com/android/tools/layoutlib/layoutlib-api/25.2.3/layoutlib-api-25.2.3 -https://jcenter.bintray.com/com/android/tools/lint/lint/24.1.3/lint-24.1.3 -https://jcenter.bintray.com/com/android/tools/lint/lint/24.3.1/lint-24.3.1 -https://jcenter.bintray.com/com/android/tools/lint/lint/24.5.0/lint-24.5.0 -https://jcenter.bintray.com/com/android/tools/lint/lint/25.2.3/lint-25.2.3 https://jcenter.bintray.com/com/android/tools/lint/lint-api/24.1.3/lint-api-24.1.3 https://jcenter.bintray.com/com/android/tools/lint/lint-api/24.3.1/lint-api-24.3.1 https://jcenter.bintray.com/com/android/tools/lint/lint-api/24.5.0/lint-api-24.5.0 @@ -297,6 +293,10 @@ https://jcenter.bintray.com/com/android/tools/lint/lint-checks/24.1.3/lint-check https://jcenter.bintray.com/com/android/tools/lint/lint-checks/24.3.1/lint-checks-24.3.1 https://jcenter.bintray.com/com/android/tools/lint/lint-checks/24.5.0/lint-checks-24.5.0 https://jcenter.bintray.com/com/android/tools/lint/lint-checks/25.2.3/lint-checks-25.2.3 +https://jcenter.bintray.com/com/android/tools/lint/lint/24.1.3/lint-24.1.3 +https://jcenter.bintray.com/com/android/tools/lint/lint/24.3.1/lint-24.3.1 +https://jcenter.bintray.com/com/android/tools/lint/lint/24.5.0/lint-24.5.0 +https://jcenter.bintray.com/com/android/tools/lint/lint/25.2.3/lint-25.2.3 https://jcenter.bintray.com/com/android/tools/repository/25.2.3/repository-25.2.3 https://jcenter.bintray.com/com/android/tools/sdk-common/24.1.3/sdk-common-24.1.3 https://jcenter.bintray.com/com/android/tools/sdk-common/24.3.1/sdk-common-24.3.1 @@ -308,19 +308,31 @@ https://jcenter.bintray.com/com/android/tools/sdklib/24.5.0/sdklib-24.5.0 https://jcenter.bintray.com/com/android/tools/sdklib/25.2.3/sdklib-25.2.3 https://jcenter.bintray.com/com/drewnoakes/metadata-extractor/2.11.0/metadata-extractor-2.11.0 https://jcenter.bintray.com/com/facebook/conceal/conceal/1.1.3/conceal-1.1.3 +https://jcenter.bintray.com/com/facebook/fbjni/fbjni-java-only/0.0.3/fbjni-java-only-0.0.3 +https://jcenter.bintray.com/com/facebook/flipper/flipper-fresco-plugin/0.33.1/flipper-fresco-plugin-0.33.1 +https://jcenter.bintray.com/com/facebook/flipper/flipper-network-plugin/0.33.1/flipper-network-plugin-0.33.1 +https://jcenter.bintray.com/com/facebook/flipper/flipper/0.33.1/flipper-0.33.1 https://jcenter.bintray.com/com/facebook/fresco/animated-base/2.0.0/animated-base-2.0.0 https://jcenter.bintray.com/com/facebook/fresco/animated-drawable/2.0.0/animated-drawable-2.0.0 https://jcenter.bintray.com/com/facebook/fresco/animated-gif/2.0.0/animated-gif-2.0.0 https://jcenter.bintray.com/com/facebook/fresco/drawee/2.0.0/drawee-2.0.0 https://jcenter.bintray.com/com/facebook/fresco/fbcore/2.0.0/fbcore-2.0.0 +https://jcenter.bintray.com/com/facebook/fresco/flipper/2.0.0/flipper-2.0.0 https://jcenter.bintray.com/com/facebook/fresco/fresco/2.0.0/fresco-2.0.0 -https://jcenter.bintray.com/com/facebook/fresco/imagepipeline/2.0.0/imagepipeline-2.0.0 https://jcenter.bintray.com/com/facebook/fresco/imagepipeline-base/2.0.0/imagepipeline-base-2.0.0 https://jcenter.bintray.com/com/facebook/fresco/imagepipeline-okhttp3/2.0.0/imagepipeline-okhttp3-2.0.0 +https://jcenter.bintray.com/com/facebook/fresco/imagepipeline/2.0.0/imagepipeline-2.0.0 https://jcenter.bintray.com/com/facebook/fresco/nativeimagefilters/2.0.0/nativeimagefilters-2.0.0 https://jcenter.bintray.com/com/facebook/fresco/nativeimagetranscoder/2.0.0/nativeimagetranscoder-2.0.0 +https://jcenter.bintray.com/com/facebook/fresco/stetho/2.0.0/stetho-2.0.0 https://jcenter.bintray.com/com/facebook/infer/annotation/infer-annotation/0.11.2/infer-annotation-0.11.2 -https://jcenter.bintray.com/com/facebook/soloader/soloader/0.6.0/soloader-0.6.0 +https://jcenter.bintray.com/com/facebook/soloader/annotation/0.8.0/annotation-0.8.0 +https://jcenter.bintray.com/com/facebook/soloader/annotation/0.8.2/annotation-0.8.2 +https://jcenter.bintray.com/com/facebook/soloader/nativeloader/0.8.0/nativeloader-0.8.0 +https://jcenter.bintray.com/com/facebook/soloader/nativeloader/0.8.2/nativeloader-0.8.2 +https://jcenter.bintray.com/com/facebook/soloader/soloader/0.8.0/soloader-0.8.0 +https://jcenter.bintray.com/com/facebook/soloader/soloader/0.8.2/soloader-0.8.2 +https://jcenter.bintray.com/com/facebook/yoga/proguard-annotations/1.14.1/proguard-annotations-1.14.1 https://jcenter.bintray.com/com/google/auto/value/auto-value/1.5.2/auto-value-1.5.2 https://jcenter.bintray.com/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9 https://jcenter.bintray.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2 @@ -328,8 +340,6 @@ https://jcenter.bintray.com/com/google/code/gson/gson/2.2.4/gson-2.2.4 https://jcenter.bintray.com/com/google/code/gson/gson/2.3/gson-2.3 https://jcenter.bintray.com/com/google/code/gson/gson/2.8.0/gson-2.8.0 https://jcenter.bintray.com/com/google/code/gson/gson/2.8.5/gson-2.8.5 -https://jcenter.bintray.com/com/googlecode/json-simple/json-simple/1.1/json-simple-1.1 -https://jcenter.bintray.com/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3 https://jcenter.bintray.com/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18 https://jcenter.bintray.com/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0 https://jcenter.bintray.com/com/google/errorprone/error_prone_annotations/2.3.1/error_prone_annotations-2.3.1 @@ -343,12 +353,28 @@ https://jcenter.bintray.com/com/google/guava/guava/27.0.1-jre/guava-27.0.1-jre https://jcenter.bintray.com/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava https://jcenter.bintray.com/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1 https://jcenter.bintray.com/com/google/jimfs/jimfs/1.1/jimfs-1.1 +https://jcenter.bintray.com/com/google/protobuf/protobuf-java-util/3.4.0/protobuf-java-util-3.4.0 https://jcenter.bintray.com/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0 https://jcenter.bintray.com/com/google/protobuf/protobuf-java/3.0.0/protobuf-java-3.0.0 https://jcenter.bintray.com/com/google/protobuf/protobuf-java/3.4.0/protobuf-java-3.4.0 -https://jcenter.bintray.com/com/google/protobuf/protobuf-java-util/3.4.0/protobuf-java-util-3.4.0 https://jcenter.bintray.com/com/google/zxing/core/3.3.3/core-3.3.3 +https://jcenter.bintray.com/com/googlecode/json-simple/json-simple/1.1/json-simple-1.1 +https://jcenter.bintray.com/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3 https://jcenter.bintray.com/com/intellij/annotations/12.0/annotations-12.0 +https://jcenter.bintray.com/com/parse/bolts/bolts-tasks/1.4.0/bolts-tasks-1.4.0 +https://jcenter.bintray.com/com/squareup/javapoet/1.8.0/javapoet-1.8.0 +https://jcenter.bintray.com/com/squareup/javawriter/2.5.0/javawriter-2.5.0 +https://jcenter.bintray.com/com/squareup/okhttp3/okhttp-urlconnection/3.12.1/okhttp-urlconnection-3.12.1 +https://jcenter.bintray.com/com/squareup/okhttp3/okhttp/3.12.1/okhttp-3.12.1 +https://jcenter.bintray.com/com/squareup/okhttp3/okhttp/3.14.1/okhttp-3.14.1 +https://jcenter.bintray.com/com/squareup/okio/okio/1.15.0/okio-1.15.0 +https://jcenter.bintray.com/com/squareup/okio/okio/1.17.2/okio-1.17.2 +https://jcenter.bintray.com/com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0 +https://jcenter.bintray.com/com/sun/istack/istack-commons-runtime/2.21/istack-commons-runtime-2.21 +https://jcenter.bintray.com/com/sun/xml/fastinfoset/FastInfoset/1.2.13/FastInfoset-1.2.13 +https://jcenter.bintray.com/com/tunnelvisionlabs/antlr4-annotations/4.5/antlr4-annotations-4.5 +https://jcenter.bintray.com/com/tunnelvisionlabs/antlr4-runtime/4.5/antlr4-runtime-4.5 +https://jcenter.bintray.com/com/tunnelvisionlabs/antlr4/4.5/antlr4-4.5 https://jcenter.bintray.com/commons-codec/commons-codec/1.10/commons-codec-1.10 https://jcenter.bintray.com/commons-codec/commons-codec/1.4/commons-codec-1.4 https://jcenter.bintray.com/commons-codec/commons-codec/1.6/commons-codec-1.6 @@ -356,18 +382,6 @@ https://jcenter.bintray.com/commons-codec/commons-codec/1.9/commons-codec-1.9 https://jcenter.bintray.com/commons-io/commons-io/2.4/commons-io-2.4 https://jcenter.bintray.com/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1 https://jcenter.bintray.com/commons-logging/commons-logging/1.2/commons-logging-1.2 -https://jcenter.bintray.com/com/parse/bolts/bolts-tasks/1.4.0/bolts-tasks-1.4.0 -https://jcenter.bintray.com/com/squareup/javapoet/1.8.0/javapoet-1.8.0 -https://jcenter.bintray.com/com/squareup/javawriter/2.5.0/javawriter-2.5.0 -https://jcenter.bintray.com/com/squareup/okhttp3/okhttp/3.12.1/okhttp-3.12.1 -https://jcenter.bintray.com/com/squareup/okhttp3/okhttp-urlconnection/3.12.1/okhttp-urlconnection-3.12.1 -https://jcenter.bintray.com/com/squareup/okio/okio/1.15.0/okio-1.15.0 -https://jcenter.bintray.com/com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0 -https://jcenter.bintray.com/com/sun/istack/istack-commons-runtime/2.21/istack-commons-runtime-2.21 -https://jcenter.bintray.com/com/sun/xml/fastinfoset/FastInfoset/1.2.13/FastInfoset-1.2.13 -https://jcenter.bintray.com/com/tunnelvisionlabs/antlr4/4.5/antlr4-4.5 -https://jcenter.bintray.com/com/tunnelvisionlabs/antlr4-annotations/4.5/antlr4-annotations-4.5 -https://jcenter.bintray.com/com/tunnelvisionlabs/antlr4-runtime/4.5/antlr4-runtime-4.5 https://jcenter.bintray.com/de/undercouch/gradle-download-task/3.1.2/gradle-download-task-3.1.2 https://jcenter.bintray.com/de/undercouch/gradle-download-task/3.4.3/gradle-download-task-3.4.3 https://jcenter.bintray.com/it/unimi/dsi/fastutil/7.2.0/fastutil-7.2.0 @@ -386,10 +400,10 @@ https://jcenter.bintray.com/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradl https://jcenter.bintray.com/net/sf/proguard/proguard-gradle/5.3.3/proguard-gradle-5.3.3 https://jcenter.bintray.com/net/sf/proguard/proguard-gradle/6.0.3/proguard-gradle-6.0.3 https://jcenter.bintray.com/org/abego/treelayout/org.abego.treelayout.core/1.0.1/org.abego.treelayout.core-1.0.1 +https://jcenter.bintray.com/org/antlr/ST4/4.0.8/ST4-4.0.8 +https://jcenter.bintray.com/org/antlr/antlr-runtime/3.5.2/antlr-runtime-3.5.2 https://jcenter.bintray.com/org/antlr/antlr/3.5.2/antlr-3.5.2 https://jcenter.bintray.com/org/antlr/antlr4/4.5.3/antlr4-4.5.3 -https://jcenter.bintray.com/org/antlr/antlr-runtime/3.5.2/antlr-runtime-3.5.2 -https://jcenter.bintray.com/org/antlr/ST4/4.0.8/ST4-4.0.8 https://jcenter.bintray.com/org/apache/commons/commons-compress/1.12/commons-compress-1.12 https://jcenter.bintray.com/org/apache/commons/commons-compress/1.8.1/commons-compress-1.8.1 https://jcenter.bintray.com/org/apache/commons/commons-lang3/3.3.2/commons-lang3-3.3.2 @@ -416,6 +430,7 @@ https://jcenter.bintray.com/org/checkerframework/checker-qual/2.5.2/checker-qual https://jcenter.bintray.com/org/codehaus/groovy/groovy-all/2.4.15/groovy-all-2.4.15 https://jcenter.bintray.com/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14 https://jcenter.bintray.com/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17 +https://jcenter.bintray.com/org/conscrypt/conscrypt-android/2.0.0/conscrypt-android-2.0.0 https://jcenter.bintray.com/org/eclipse/jdt/core/compiler/ecj/4.4.2/ecj-4.4.2 https://jcenter.bintray.com/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4 https://jcenter.bintray.com/org/eclipse/jdt/core/compiler/ecj/4.5.1/ecj-4.5.1 @@ -438,23 +453,19 @@ https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.3. https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-compiler-runner/1.3.50/kotlin-compiler-runner-1.3.50 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-daemon-client/1.3.50/kotlin-daemon-client-1.3.50 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.3.50/kotlin-daemon-embeddable-1.3.50 -https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.50/kotlin-gradle-plugin-1.3.50 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.3.50/kotlin-gradle-plugin-api-1.3.50 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.3.50/kotlin-gradle-plugin-model-1.3.50 +https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.50/kotlin-gradle-plugin-1.3.50 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-native-utils/1.3.50/kotlin-native-utils-1.3.50 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-reflect/1.1.3-2/kotlin-reflect-1.1.3-2 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-reflect/1.2.0/kotlin-reflect-1.2.0 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-reflect/1.3.20/kotlin-reflect-1.3.20 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-reflect/1.3.50/kotlin-reflect-1.3.50 +https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-script-runtime/1.3.50/kotlin-script-runtime-1.3.50 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-scripting-common/1.3.50/kotlin-scripting-common-1.3.50 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.3.50/kotlin-scripting-compiler-embeddable-1.3.50 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.3.50/kotlin-scripting-compiler-impl-embeddable-1.3.50 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-scripting-jvm/1.3.50/kotlin-scripting-jvm-1.3.50 -https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-script-runtime/1.3.50/kotlin-script-runtime-1.3.50 -https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2 -https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.2.71/kotlin-stdlib-1.2.71 -https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.3.20/kotlin-stdlib-1.3.20 -https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.3.50/kotlin-stdlib-1.3.50 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib-common/1.2.71/kotlin-stdlib-common-1.2.71 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.20/kotlin-stdlib-common-1.3.20 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.50/kotlin-stdlib-common-1.3.50 @@ -464,14 +475,14 @@ https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.3.50/kotli https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.2.71/kotlin-stdlib-jdk8-1.2.71 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.20/kotlin-stdlib-jdk8-1.3.20 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.50/kotlin-stdlib-jdk8-1.3.50 +https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2 +https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.2.71/kotlin-stdlib-1.2.71 +https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.3.20/kotlin-stdlib-1.3.20 +https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.3.50/kotlin-stdlib-1.3.50 https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-util-io/1.3.50/kotlin-util-io-1.3.50 https://jcenter.bintray.com/org/jetbrains/kotlinx/kotlinx-coroutines-core/1.1.1/kotlinx-coroutines-core-1.1.1 https://jcenter.bintray.com/org/jetbrains/trove4j/trove4j/20160824/trove4j-20160824 https://jcenter.bintray.com/org/jvnet/staxex/stax-ex/1.7.7/stax-ex-1.7.7 -https://jcenter.bintray.com/org/ow2/asm/asm/5.0.3/asm-5.0.3 -https://jcenter.bintray.com/org/ow2/asm/asm/5.0.4/asm-5.0.4 -https://jcenter.bintray.com/org/ow2/asm/asm/5.1/asm-5.1 -https://jcenter.bintray.com/org/ow2/asm/asm/6.0/asm-6.0 https://jcenter.bintray.com/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3 https://jcenter.bintray.com/org/ow2/asm/asm-analysis/5.0.4/asm-analysis-5.0.4 https://jcenter.bintray.com/org/ow2/asm/asm-analysis/5.1/asm-analysis-5.1 @@ -486,6 +497,10 @@ https://jcenter.bintray.com/org/ow2/asm/asm-tree/5.1/asm-tree-5.1 https://jcenter.bintray.com/org/ow2/asm/asm-tree/6.0/asm-tree-6.0 https://jcenter.bintray.com/org/ow2/asm/asm-util/5.1/asm-util-5.1 https://jcenter.bintray.com/org/ow2/asm/asm-util/6.0/asm-util-6.0 +https://jcenter.bintray.com/org/ow2/asm/asm/5.0.3/asm-5.0.3 +https://jcenter.bintray.com/org/ow2/asm/asm/5.0.4/asm-5.0.4 +https://jcenter.bintray.com/org/ow2/asm/asm/5.1/asm-5.1 +https://jcenter.bintray.com/org/ow2/asm/asm/6.0/asm-6.0 https://jitpack.io/com/github/status-im/function/0.0.1/function-0.0.1 https://jitpack.io/com/github/status-im/status-keycard-java/android/3.0.1/android-3.0.1 https://jitpack.io/com/github/status-im/status-keycard-java/lib/3.0.1/lib-3.0.1 @@ -497,23 +512,23 @@ https://maven.java.net/content/repositories/releases/org/glassfish/hk2/osgiversi https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2 https://repo.maven.apache.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7 https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0 -https://repo.maven.apache.org/maven2/asm/asm/3.0/asm-3.0 -https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1 https://repo.maven.apache.org/maven2/asm/asm-parent/3.0/asm-parent-3.0 https://repo.maven.apache.org/maven2/asm/asm-parent/3.3.1/asm-parent-3.3.1 +https://repo.maven.apache.org/maven2/asm/asm/3.0/asm-3.0 +https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1 https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3 https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.5/avalon-framework-4.1.5 https://repo.maven.apache.org/maven2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1 https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/3.0.0/biz.aQute.bndlib-3.0.0 https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/4.2.0/biz.aQute.bndlib-4.2.0 -https://repo.maven.apache.org/maven2/biz/aQute/bnd/bndlib/2.1.0/bndlib-2.1.0 -https://repo.maven.apache.org/maven2/biz/aQute/bnd/bndlib/2.3.0/bndlib-2.3.0 https://repo.maven.apache.org/maven2/biz/aQute/bnd/bnd-maven-plugin/3.1.0/bnd-maven-plugin-3.1.0 https://repo.maven.apache.org/maven2/biz/aQute/bnd/bnd-maven-plugin/3.5.0/bnd-maven-plugin-3.5.0 https://repo.maven.apache.org/maven2/biz/aQute/bnd/bnd-plugin-parent/3.1.0/bnd-plugin-parent-3.1.0 -https://repo.maven.apache.org/maven2/biz/aQute/bndlib/1.50.0/bndlib-1.50.0 +https://repo.maven.apache.org/maven2/biz/aQute/bnd/bndlib/2.1.0/bndlib-2.1.0 +https://repo.maven.apache.org/maven2/biz/aQute/bnd/bndlib/2.3.0/bndlib-2.3.0 https://repo.maven.apache.org/maven2/biz/aQute/bnd/parent/2.1.0/parent-2.1.0 https://repo.maven.apache.org/maven2/biz/aQute/bnd/parent/2.3.0/parent-2.3.0 +https://repo.maven.apache.org/maven2/biz/aQute/bndlib/1.50.0/bndlib-1.50.0 https://repo.maven.apache.org/maven2/bsf/bsf/2.4.0/bsf-2.4.0 https://repo.maven.apache.org/maven2/cglib/cglib-nodep/2.1_3/cglib-nodep-2.1_3 https://repo.maven.apache.org/maven2/cglib/cglib-nodep/2.2.2/cglib-nodep-2.2.2 @@ -526,12 +541,12 @@ https://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.0.5/logback https://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.1.2/logback-parent-1.1.2 https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2 https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1 -https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx/2.0.10/docbkx-2.0.10 -https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx/2.0.14/docbkx-2.0.14 -https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx/2.0.17/docbkx-2.0.17 https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx-maven-plugin/2.0.10/docbkx-maven-plugin-2.0.10 https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx-maven-plugin/2.0.14/docbkx-maven-plugin-2.0.14 https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx-maven-plugin/2.0.17/docbkx-maven-plugin-2.0.17 +https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx/2.0.10/docbkx-2.0.10 +https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx/2.0.14/docbkx-2.0.14 +https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx/2.0.17/docbkx-2.0.17 https://repo.maven.apache.org/maven2/com/atlassian/maven/plugins/maven-clover2-plugin/2.6.3/maven-clover2-plugin-2.6.3 https://repo.maven.apache.org/maven2/com/barchart/base/barchart-archon/2.5.10/barchart-archon-2.5.10 https://repo.maven.apache.org/maven2/com/barchart/udt/barchart-udt-archon/2.3.0/barchart-udt-archon-2.3.0 @@ -550,6 +565,7 @@ https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/12/oss-parent-12 https://repo.maven.apache.org/maven2/com/github/hazendaz/base-parent/20/base-parent-20 https://repo.maven.apache.org/maven2/com/github/spotbugs/spotbugs-maven-plugin/3.1.11/spotbugs-maven-plugin-3.1.11 https://repo.maven.apache.org/maven2/com/github/wvengen/proguard-maven-plugin/2.0.14/proguard-maven-plugin-2.0.14 +https://repo.maven.apache.org/maven2/com/google/android/android/4.1.1.4/android-4.1.1.4 https://repo.maven.apache.org/maven2/com/google/auto/auto-common/0.3/auto-common-0.3 https://repo.maven.apache.org/maven2/com/google/auto/auto-parent/2/auto-parent-2 https://repo.maven.apache.org/maven2/com/google/auto/auto-parent/3/auto-parent-3 @@ -559,16 +575,13 @@ https://repo.maven.apache.org/maven2/com/google/auto/value/auto-value-annotation https://repo.maven.apache.org/maven2/com/google/auto/value/auto-value-parent/1.6.2/auto-value-parent-1.6.2 https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1 https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.1/jsr305-3.0.1 -https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.7/gson-2.7 https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.7/gson-parent-2.7 https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.8.0/gson-parent-2.8.0 https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.8.5/gson-parent-2.8.5 -https://repo.maven.apache.org/maven2/com/googlecode/java-diff-utils/diffutils/1.3.0/diffutils-1.3.0 -https://repo.maven.apache.org/maven2/com/googlecode/jmockit/jmockit/1.6/jmockit-1.6 -https://repo.maven.apache.org/maven2/com/googlecode/maven-download-plugin/download-maven-plugin/1.2.0/download-maven-plugin-1.2.0 +https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.7/gson-2.7 https://repo.maven.apache.org/maven2/com/google/code/maven-replacer-plugin/replacer/1.5.3/replacer-1.5.3 -https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0 https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0-rc1/google-collections-1.0-rc1 +https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0 https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.12/error_prone_annotations-2.0.12 https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3 https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.0.12/error_prone_parent-2.0.12 @@ -578,13 +591,6 @@ https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2. https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.3.1/error_prone_parent-2.3.1 https://repo.maven.apache.org/maven2/com/google/google/1/google-1 https://repo.maven.apache.org/maven2/com/google/google/5/google-5 -https://repo.maven.apache.org/maven2/com/google/guava/guava/10.0.1/guava-10.0.1 -https://repo.maven.apache.org/maven2/com/google/guava/guava/14.0.1/guava-14.0.1 -https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1 -https://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0 -https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0 -https://repo.maven.apache.org/maven2/com/google/guava/guava/21.0/guava-21.0 -https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/10.0.1/guava-parent-10.0.1 https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/14.0.1/guava-parent-14.0.1 https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1 @@ -601,12 +607,19 @@ https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-jre/guav https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0.1-jre/guava-parent-27.0.1-jre https://repo.maven.apache.org/maven2/com/google/guava/guava-testlib/18.0/guava-testlib-18.0 https://repo.maven.apache.org/maven2/com/google/guava/guava-testlib/23.0/guava-testlib-23.0 +https://repo.maven.apache.org/maven2/com/google/guava/guava/10.0.1/guava-10.0.1 +https://repo.maven.apache.org/maven2/com/google/guava/guava/14.0.1/guava-14.0.1 +https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1 +https://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0 +https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0 +https://repo.maven.apache.org/maven2/com/google/guava/guava/21.0/guava-21.0 +https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android +https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.0/guice-parent-4.0 https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0 https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0-no_aop -https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.0/guice-parent-4.0 -https://repo.maven.apache.org/maven2/com/google/jimfs/jimfs/1.0/jimfs-1.0 https://repo.maven.apache.org/maven2/com/google/jimfs/jimfs-parent/1.0/jimfs-parent-1.0 https://repo.maven.apache.org/maven2/com/google/jimfs/jimfs-parent/1.1/jimfs-parent-1.1 +https://repo.maven.apache.org/maven2/com/google/jimfs/jimfs/1.0/jimfs-1.0 https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.4.1/protobuf-java-2.4.1 https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.6.0/protobuf-java-3.6.0 https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.0.0/protobuf-parent-3.0.0 @@ -618,23 +631,66 @@ https://repo.maven.apache.org/maven2/com/google/truth/extensions/truth-extension https://repo.maven.apache.org/maven2/com/google/truth/extensions/truth-java8-extension/0.42/truth-java8-extension-0.42 https://repo.maven.apache.org/maven2/com/google/truth/extensions/truth-liteproto-extension/0.42/truth-liteproto-extension-0.42 https://repo.maven.apache.org/maven2/com/google/truth/extensions/truth-proto-extension/0.42/truth-proto-extension-0.42 -https://repo.maven.apache.org/maven2/com/google/truth/truth/0.27/truth-0.27 -https://repo.maven.apache.org/maven2/com/google/truth/truth/0.28/truth-0.28 -https://repo.maven.apache.org/maven2/com/google/truth/truth/0.31/truth-0.31 -https://repo.maven.apache.org/maven2/com/google/truth/truth/0.34/truth-0.34 -https://repo.maven.apache.org/maven2/com/google/truth/truth/0.42/truth-0.42 https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.27/truth-parent-0.27 https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.28/truth-parent-0.28 https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.31/truth-parent-0.31 https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.34/truth-parent-0.34 https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.42/truth-parent-0.42 +https://repo.maven.apache.org/maven2/com/google/truth/truth/0.27/truth-0.27 +https://repo.maven.apache.org/maven2/com/google/truth/truth/0.28/truth-0.28 +https://repo.maven.apache.org/maven2/com/google/truth/truth/0.31/truth-0.31 +https://repo.maven.apache.org/maven2/com/google/truth/truth/0.34/truth-0.34 +https://repo.maven.apache.org/maven2/com/google/truth/truth/0.42/truth-0.42 https://repo.maven.apache.org/maven2/com/google/zxing/zxing-parent/3.3.3/zxing-parent-3.3.3 +https://repo.maven.apache.org/maven2/com/googlecode/java-diff-utils/diffutils/1.3.0/diffutils-1.3.0 +https://repo.maven.apache.org/maven2/com/googlecode/jmockit/jmockit/1.6/jmockit-1.6 +https://repo.maven.apache.org/maven2/com/googlecode/maven-download-plugin/download-maven-plugin/1.2.0/download-maven-plugin-1.2.0 https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/51.2/icu4j-51.2 https://repo.maven.apache.org/maven2/com/intellij/annotations/9.0.4/annotations-9.0.4 -https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6 -https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0 +https://repo.maven.apache.org/maven2/com/simpligility/maven/plugins/android-maven-plugin/4.5.0/android-maven-plugin-4.5.0 +https://repo.maven.apache.org/maven2/com/simpligility/maven/progressive-organization-pom/6.0.0/progressive-organization-pom-6.0.0 +https://repo.maven.apache.org/maven2/com/squareup/okhttp3/mockwebserver/3.12.1/mockwebserver-3.12.1 +https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp-testing-support/3.12.1/okhttp-testing-support-3.12.1 +https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp-tls/3.12.1/okhttp-tls-3.12.1 +https://repo.maven.apache.org/maven2/com/squareup/okhttp3/parent/3.12.1/parent-3.12.1 +https://repo.maven.apache.org/maven2/com/squareup/okhttp3/parent/3.14.1/parent-3.14.1 +https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.15.0/okio-parent-1.15.0 +https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.17.2/okio-parent-1.17.2 +https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.0/all-1.2.0 +https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons/2.21/istack-commons-2.21 +https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-apache-client4/1.12/jersey-apache-client4-1.12 +https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-apache-client4/1.17.1/jersey-apache-client4-1.17.1 +https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.12/jersey-contribs-1.12 +https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.17.1/jersey-contribs-1.17.1 +https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.12/jersey-client-1.12 +https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.17.1/jersey-client-1.17.1 +https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.12/jersey-core-1.12 +https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.17.1/jersey-core-1.17.1 +https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.17.1/jersey-json-1.17.1 +https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.12/jersey-project-1.12 +https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.17.1/jersey-project-1.17.1 +https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-bom-ext/2.2.11/jaxb-bom-ext-2.2.11 +https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1 +https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-parent/2.2.11/jaxb-parent-2.2.11 +https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-runtime-parent/2.2.11/jaxb-runtime-parent-2.2.11 +https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-txw-parent/2.2.11/jaxb-txw-parent-2.2.11 +https://repo.maven.apache.org/maven2/com/sun/xml/fastinfoset/fastinfoset-project/1.2.13/fastinfoset-project-1.2.13 +https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/1.12.1/qdox-1.12.1 +https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.10/xstream-parent-1.4.10 +https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.2/xstream-parent-1.4.2 +https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.5/xstream-parent-1.4.5 +https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.7/xstream-parent-1.4.7 +https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.10/xstream-1.4.10 +https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.2/xstream-1.4.2 +https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.5/xstream-1.4.5 +https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.7/xstream-1.4.7 +https://repo.maven.apache.org/maven2/com/tunnelvisionlabs/antlr4-master/4.4.1/antlr4-master-4.4.1 +https://repo.maven.apache.org/maven2/com/tunnelvisionlabs/antlr4-master/4.5/antlr4-master-4.5 +https://repo.maven.apache.org/maven2/com/tunnelvisionlabs/antlr4-maven-plugin/4.4.1/antlr4-maven-plugin-4.4.1 https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils-core/1.7.0/commons-beanutils-core-1.7.0 https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils-core/1.8.3/commons-beanutils-core-1.8.3 +https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6 +https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0 https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1 https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0 https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2 @@ -659,48 +715,13 @@ https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang- https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.3/commons-lang-2.3 https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4 https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6 +https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1 https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3 https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4 https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0 https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1 -https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1 https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0 https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1 -https://repo.maven.apache.org/maven2/com/simpligility/maven/plugins/android-maven-plugin/4.5.0/android-maven-plugin-4.5.0 -https://repo.maven.apache.org/maven2/com/simpligility/maven/progressive-organization-pom/6.0.0/progressive-organization-pom-6.0.0 -https://repo.maven.apache.org/maven2/com/squareup/okhttp3/parent/3.12.1/parent-3.12.1 -https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.15.0/okio-parent-1.15.0 -https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.0/all-1.2.0 -https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons/2.21/istack-commons-2.21 -https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-apache-client4/1.12/jersey-apache-client4-1.12 -https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-apache-client4/1.17.1/jersey-apache-client4-1.17.1 -https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.12/jersey-contribs-1.12 -https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.17.1/jersey-contribs-1.17.1 -https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.12/jersey-client-1.12 -https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.17.1/jersey-client-1.17.1 -https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.12/jersey-core-1.12 -https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.17.1/jersey-core-1.17.1 -https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.17.1/jersey-json-1.17.1 -https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.12/jersey-project-1.12 -https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.17.1/jersey-project-1.17.1 -https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-bom-ext/2.2.11/jaxb-bom-ext-2.2.11 -https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1 -https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-parent/2.2.11/jaxb-parent-2.2.11 -https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-runtime-parent/2.2.11/jaxb-runtime-parent-2.2.11 -https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-txw-parent/2.2.11/jaxb-txw-parent-2.2.11 -https://repo.maven.apache.org/maven2/com/sun/xml/fastinfoset/fastinfoset-project/1.2.13/fastinfoset-project-1.2.13 -https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/1.12.1/qdox-1.12.1 -https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.10/xstream-1.4.10 -https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.2/xstream-1.4.2 -https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.5/xstream-1.4.5 -https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.7/xstream-1.4.7 -https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.10/xstream-parent-1.4.10 -https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.2/xstream-parent-1.4.2 -https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.5/xstream-parent-1.4.5 -https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.7/xstream-parent-1.4.7 -https://repo.maven.apache.org/maven2/com/tunnelvisionlabs/antlr4-master/4.4.1/antlr4-master-4.4.1 -https://repo.maven.apache.org/maven2/com/tunnelvisionlabs/antlr4-master/4.5/antlr4-master-4.5 -https://repo.maven.apache.org/maven2/com/tunnelvisionlabs/antlr4-maven-plugin/4.4.1/antlr4-maven-plugin-4.4.1 https://repo.maven.apache.org/maven2/de/zeigermann/xml/xml-im-exporter/1.1/xml-im-exporter-1.1 https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1 https://repo.maven.apache.org/maven2/doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4 @@ -720,6 +741,7 @@ https://repo.maven.apache.org/maven2/jdom/jdom/1.0/jdom-1.0 https://repo.maven.apache.org/maven2/jline/jline/2.12/jline-2.12 https://repo.maven.apache.org/maven2/joda-time/joda-time/2.2/joda-time-2.2 https://repo.maven.apache.org/maven2/joda-time/joda-time/2.3/joda-time-2.3 +https://repo.maven.apache.org/maven2/junit/junit-dep/4.10/junit-dep-4.10 https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1 https://repo.maven.apache.org/maven2/junit/junit/3.8.2/junit-3.8.2 https://repo.maven.apache.org/maven2/junit/junit/3.8/junit-3.8 @@ -731,19 +753,21 @@ https://repo.maven.apache.org/maven2/junit/junit/4.7/junit-4.7 https://repo.maven.apache.org/maven2/junit/junit/4.8.1/junit-4.8.1 https://repo.maven.apache.org/maven2/junit/junit/4.8.2/junit-4.8.2 https://repo.maven.apache.org/maven2/junit/junit/4.9/junit-4.9 -https://repo.maven.apache.org/maven2/junit/junit-dep/4.10/junit-dep-4.10 https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12 https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17 https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1 -https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.6.5/byte-buddy-1.6.5 -https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.8.10/byte-buddy-1.8.10 -https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.8.5/byte-buddy-1.8.5 https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.6.5/byte-buddy-agent-1.6.5 https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.8.10/byte-buddy-agent-1.8.10 https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.8.5/byte-buddy-agent-1.8.5 +https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.10/byte-buddy-agent-1.9.10 https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.6.5/byte-buddy-parent-1.6.5 https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.8.10/byte-buddy-parent-1.8.10 https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.8.5/byte-buddy-parent-1.8.5 +https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.9.10/byte-buddy-parent-1.9.10 +https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.6.5/byte-buddy-1.6.5 +https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.8.10/byte-buddy-1.8.10 +https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.8.5/byte-buddy-1.8.5 +https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10 https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1 https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3 https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4 @@ -753,20 +777,21 @@ https://repo.maven.apache.org/maven2/net/sf/proguard/proguard-parent/5.2.1/progu https://repo.maven.apache.org/maven2/net/sf/proguard/proguard-parent/5.3.3/proguard-parent-5.3.3 https://repo.maven.apache.org/maven2/net/sf/proguard/proguard-parent/6.0.3/proguard-parent-6.0.3 https://repo.maven.apache.org/maven2/nl/jqno/equalsverifier/equalsverifier/2.1.5/equalsverifier-2.1.5 +https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5.2/antlr-master-3.5.2 +https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5/antlr-master-3.5 https://repo.maven.apache.org/maven2/org/antlr/antlr3-maven-plugin/3.5.2/antlr3-maven-plugin-3.5.2 https://repo.maven.apache.org/maven2/org/antlr/antlr3-maven-plugin/3.5/antlr3-maven-plugin-3.5 https://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.5.3/antlr4-master-4.5.3 -https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5.2/antlr-master-3.5.2 -https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5/antlr-master-3.5 https://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1 -https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.8.4/ant-1.8.4 -https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.9.4/ant-1.9.4 https://repo.maven.apache.org/maven2/org/apache/ant/ant-antlr/1.9.4/ant-antlr-1.9.4 https://repo.maven.apache.org/maven2/org/apache/ant/ant-junit/1.9.4/ant-junit-1.9.4 https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.8.4/ant-launcher-1.8.4 https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.9.4/ant-launcher-1.9.4 https://repo.maven.apache.org/maven2/org/apache/ant/ant-parent/1.8.4/ant-parent-1.8.4 https://repo.maven.apache.org/maven2/org/apache/ant/ant-parent/1.9.4/ant-parent-1.9.4 +https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.8.4/ant-1.8.4 +https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.9.4/ant-1.9.4 +https://repo.maven.apache.org/maven2/org/apache/apache/1/apache-1 https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10 https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11 https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13 @@ -776,11 +801,10 @@ https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16 https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17 https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18 https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19 -https://repo.maven.apache.org/maven2/org/apache/apache/1/apache-1 +https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2 https://repo.maven.apache.org/maven2/org/apache/apache/20/apache-20 https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21 https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23 -https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2 https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3 https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4 https://repo.maven.apache.org/maven2/org/apache/apache/5/apache-5 @@ -788,8 +812,8 @@ https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6 https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7 https://repo.maven.apache.org/maven2/org/apache/apache/8/apache-8 https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9 -https://repo.maven.apache.org/maven2/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10 https://repo.maven.apache.org/maven2/org/apache/commons/commons-build-plugin/1.1/commons-build-plugin-1.1 +https://repo.maven.apache.org/maven2/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10 https://repo.maven.apache.org/maven2/org/apache/commons/commons-build-plugin/1.3/commons-build-plugin-1.3 https://repo.maven.apache.org/maven2/org/apache/commons/commons-build-plugin/1.4/commons-build-plugin-1.4 https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.16.1/commons-compress-1.16.1 @@ -819,12 +843,12 @@ https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/common https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/5/commons-parent-5 https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/7/commons-parent-7 https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9 -https://repo.maven.apache.org/maven2/org/apache/felix/felix/1.0.2/felix-1.0.2 https://repo.maven.apache.org/maven2/org/apache/felix/felix-parent/1.2.1/felix-parent-1.2.1 https://repo.maven.apache.org/maven2/org/apache/felix/felix-parent/2.1/felix-parent-2.1 https://repo.maven.apache.org/maven2/org/apache/felix/felix-parent/3/felix-parent-3 https://repo.maven.apache.org/maven2/org/apache/felix/felix-parent/4/felix-parent-4 https://repo.maven.apache.org/maven2/org/apache/felix/felix-parent/6/felix-parent-6 +https://repo.maven.apache.org/maven2/org/apache/felix/felix/1.0.2/felix-1.0.2 https://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/1.4.0/maven-bundle-plugin-1.4.0 https://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/2.0.0/maven-bundle-plugin-2.0.0 https://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/2.1.0/maven-bundle-plugin-2.1.0 @@ -839,9 +863,11 @@ https://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/4.1.0/ https://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/4.2.1/maven-bundle-plugin-4.2.1 https://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.bundlerepository/1.6.6/org.apache.felix.bundlerepository-1.6.6 https://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.utils/1.6.0/org.apache.felix.utils-1.6.0 +https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.0.1/httpclient-4.0.1 https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2 https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.1.3/httpclient-4.1.3 https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.3.5/httpclient-4.3.5 +https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.0.1/httpcomponents-client-4.0.1 https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2 https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.1.1/httpcomponents-client-4.1.1 https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.1.3/httpcomponents-client-4.1.3 @@ -874,12 +900,6 @@ https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/7/project https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.4.0/ivy-2.4.0 https://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-parent/2.5.2/jackrabbit-parent-2.5.2 https://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-webdav/2.5.2/jackrabbit-webdav-2.5.2 -https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10 -https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7 -https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0 -https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1/doxia-1.1 -https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.2/doxia-1.2 -https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.4/doxia-1.4 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.2/doxia-core-1.2 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.4/doxia-core-1.4 @@ -893,13 +913,13 @@ https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.0 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.2/doxia-module-fml-1.2 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4 -https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0 -https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.2/doxia-modules-1.2 -https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.4/doxia-modules-1.4 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.2/doxia-module-xhtml-1.2 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4 +https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0 +https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.2/doxia-modules-1.2 +https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.4/doxia-modules-1.4 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0 @@ -912,30 +932,33 @@ https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/ https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2 https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.4/doxia-sitetools-1.4 -https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/1.0.1/enforcer-1.0.1 +https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10 +https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7 +https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0 +https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1/doxia-1.1 +https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.2/doxia-1.2 +https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.4/doxia-1.4 https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/1.0-beta-1/enforcer-1.0-beta-1 +https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/1.0.1/enforcer-1.0.1 https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/1.0/enforcer-1.0 https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/1.2/enforcer-1.2 https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/1.3.1/enforcer-1.3.1 https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/3.0.0-M1/enforcer-3.0.0-M1 https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/3.0.0-M2/enforcer-3.0.0-M2 -https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.2/maven-2.0.2 -https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.5/maven-2.0.5 -https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6 -https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.7/maven-2.0.7 -https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.8/maven-2.0.8 -https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9 -https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0/maven-2.0 -https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.0/maven-2.2.0 -https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.1/maven-2.2.1 -https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0.4/maven-3.0.4 -https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0 -https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.3.9/maven-3.3.9 https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0 https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9 https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1 https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5 https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.7/maven-artifact-manager-2.0.7 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1 https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2 https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5 https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6 @@ -947,15 +970,6 @@ https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.0/maven https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1 https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0 https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.7/maven-artifact-manager-2.0.7 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1 https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9 https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.0/maven-compat-3.0 https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.3.9/maven-compat-3.3.9 @@ -973,6 +987,8 @@ https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2. https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0 https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.2.0/maven-error-diagnostics-2.2.0 https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9 https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5 https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6 https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.7/maven-model-2.0.7 @@ -984,14 +1000,13 @@ https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.1/maven-mo https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0.4/maven-model-3.0.4 https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0 https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9 https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6 https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.7/maven-monitor-2.0.7 https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9 https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0/maven-monitor-2.0 https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.2.0/maven-monitor-2.2.0 https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/1/maven-parent-1 https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10 https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/11/maven-parent-11 https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13 @@ -1000,7 +1015,6 @@ https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-pare https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/17/maven-parent-17 https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/18/maven-parent-18 https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/19/maven-parent-19 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/1/maven-parent-1 https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/20/maven-parent-20 https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21 https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22 @@ -1075,6 +1089,8 @@ https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/ https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1 https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0 https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0 +https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9 https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5 https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6 https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.7/maven-settings-2.0.7 @@ -1085,17 +1101,27 @@ https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.0/maven https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1 https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0 https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0 -https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9 +https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.2/maven-2.0.2 +https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.5/maven-2.0.5 +https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6 +https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.7/maven-2.0.7 +https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.8/maven-2.0.8 +https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9 +https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0/maven-2.0 +https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.0/maven-2.2.0 +https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.1/maven-2.2.1 +https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0.4/maven-3.0.4 +https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0 +https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.3.9/maven-3.3.9 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/1.1/maven-antrun-plugin-1.1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/1.3/maven-antrun-plugin-1.3 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/1.4/maven-antrun-plugin-1.4 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/1.6/maven-antrun-plugin-1.6 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/1.7/maven-antrun-plugin-1.7 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8 -https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2.1/maven-assembly-plugin-2.2.1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-1/maven-assembly-plugin-2.2-beta-1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/maven-assembly-plugin-2.2-beta-5 +https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2.1/maven-assembly-plugin-2.2.1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.3/maven-assembly-plugin-2.3 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.4.1/maven-assembly-plugin-2.4.1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.4/maven-assembly-plugin-2.4 @@ -1145,8 +1171,8 @@ https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugi https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/3.0.0-M1/maven-deploy-plugin-3.0.0-M1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-eclipse-plugin/2.9/maven-eclipse-plugin-2.9 -https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/1.0.1/maven-enforcer-plugin-1.0.1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/1.0-beta-1/maven-enforcer-plugin-1.0-beta-1 +https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/1.0.1/maven-enforcer-plugin-1.0.1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/1.0/maven-enforcer-plugin-1.0 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/1.2/maven-enforcer-plugin-1.2 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/1.3.1/maven-enforcer-plugin-1.3.1 @@ -1188,8 +1214,10 @@ https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-javadoc-plug https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/2.9/maven-javadoc-plugin-2.9 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/3.0.0-M1/maven-javadoc-plugin-3.0.0-M1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/3.0.0/maven-javadoc-plugin-3.0.0 +https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/3.0.1/maven-javadoc-plugin-3.0.1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/3.2.0/maven-javadoc-plugin-3.2.0 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugin-parent/2.0.1/maven-plugin-parent-2.0.1 +https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/1/maven-plugins-1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/10/maven-plugins-10 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/12/maven-plugins-12 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/14/maven-plugins-14 @@ -1197,7 +1225,6 @@ https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/16/m https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/17/maven-plugins-17 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/18/maven-plugins-18 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19 -https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/1/maven-plugins-1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/21/maven-plugins-21 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23 @@ -1206,12 +1233,12 @@ https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/25/m https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/26/maven-plugins-26 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/27/maven-plugins-27 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/28/maven-plugins-28 +https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/3/maven-plugins-3 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/30/maven-plugins-30 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/32/maven-plugins-32 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34 -https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/3/maven-plugins-3 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/8/maven-plugins-8 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-pmd-plugin/3.4/maven-pmd-plugin-3.4 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-pmd-plugin/3.6/maven-pmd-plugin-3.6 @@ -1266,6 +1293,7 @@ https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plu https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.20.1/maven-surefire-plugin-2.20.1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.21.0/maven-surefire-plugin-2.21.0 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.22.0/maven-surefire-plugin-2.22.0 +https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.22.1/maven-surefire-plugin-2.22.1 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.3/maven-surefire-plugin-2.3 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.4.3/maven-surefire-plugin-2.4.3 https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.5/maven-surefire-plugin-2.5 @@ -1281,12 +1309,6 @@ https://repo.maven.apache.org/maven2/org/apache/maven/release/maven-release/2.5. https://repo.maven.apache.org/maven2/org/apache/maven/release/maven-release/2.5.3/maven-release-2.5.3 https://repo.maven.apache.org/maven2/org/apache/maven/release/maven-release/2.5/maven-release-2.5 https://repo.maven.apache.org/maven2/org/apache/maven/release/maven-release/3/maven-release-3 -https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6 -https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.7/maven-reporting-2.0.7 -https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9 -https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0 -https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.2.0/maven-reporting-2.2.0 -https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1 https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6 https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.7/maven-reporting-api-2.0.7 https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9 @@ -1297,9 +1319,12 @@ https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting- https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5 https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.2/maven-reporting-impl-2.2 https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.3/maven-reporting-impl-2.3 -https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.3/maven-scm-1.3 -https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.9.2/maven-scm-1.9.2 -https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.9.5/maven-scm-1.9.5 +https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6 +https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.7/maven-reporting-2.0.7 +https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9 +https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0 +https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.2.0/maven-reporting-2.2.0 +https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1 https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-api/1.3/maven-scm-api-1.3 https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-api/1.9.2/maven-scm-api-1.9.2 https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-manager-plexus/1.3/maven-scm-manager-plexus-1.3 @@ -1310,10 +1335,13 @@ https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-git https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-git-commons/1.9.2/maven-scm-provider-git-commons-1.9.2 https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-gitexe/1.3/maven-scm-provider-gitexe-1.3 https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-gitexe/1.9.2/maven-scm-provider-gitexe-1.9.2 -https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers/1.3/maven-scm-providers-1.3 -https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers/1.9.2/maven-scm-providers-1.9.2 https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-git/1.3/maven-scm-providers-git-1.3 https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-git/1.9.2/maven-scm-providers-git-1.9.2 +https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers/1.3/maven-scm-providers-1.3 +https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers/1.9.2/maven-scm-providers-1.9.2 +https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.3/maven-scm-1.3 +https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.9.2/maven-scm-1.9.2 +https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.9.5/maven-scm-1.9.5 https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.1/file-management-1.1 https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1 https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0 @@ -1371,6 +1399,7 @@ https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.19.1/s https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.20.1/surefire-2.20.1 https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.21.0/surefire-2.21.0 https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.22.0/surefire-2.22.0 +https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.22.1/surefire-2.22.1 https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.3/surefire-2.3 https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.4.3/surefire-2.4.3 https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.5/surefire-2.5 @@ -1378,11 +1407,6 @@ https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.7.2/su https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.9/surefire-2.9 https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/3.0.0-M3/surefire-3.0.0-M3 https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/3.0.0-M4/surefire-3.0.0-M4 -https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6 -https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-2/wagon-1.0-beta-2 -https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6 -https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.10/wagon-2.10 -https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.7/wagon-2.7 https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-http-shared/2.7/wagon-http-shared-2.7 https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6 https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2 @@ -1391,8 +1415,13 @@ https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2 https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.7/wagon-provider-api-2.7 https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-providers/1.0-beta-2/wagon-providers-1.0-beta-2 https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-providers/2.7/wagon-providers-2.7 -https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-webdav/1.0-beta-2/wagon-webdav-1.0-beta-2 https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-webdav-jackrabbit/2.7/wagon-webdav-jackrabbit-2.7 +https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-webdav/1.0-beta-2/wagon-webdav-1.0-beta-2 +https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6 +https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-2/wagon-1.0-beta-2 +https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6 +https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.10/wagon-2.10 +https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.7/wagon-2.7 https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-plugin/0.10/apache-rat-plugin-0.10 https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-plugin/0.11/apache-rat-plugin-0.11 https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-plugin/0.12/apache-rat-plugin-0.12 @@ -1412,12 +1441,12 @@ https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-ma https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8 https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8 https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8 +https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0 https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5 https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2 https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7 -https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0 -https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.4/xbean-3.4 https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4 +https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.4/xbean-3.4 https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0 https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0 https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.5.3/checker-compat-qual-2.5.3 @@ -1427,24 +1456,27 @@ https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-par https://repo.maven.apache.org/maven2/org/codehaus/gpars/gpars/1.2.1/gpars-1.2.1 https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.3.6/groovy-all-2.3.6 https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.4.7/groovy-all-2.4.7 -https://repo.maven.apache.org/maven2/org/codehaus/groovy/maven/gmaven/1.0/gmaven-1.0 https://repo.maven.apache.org/maven2/org/codehaus/groovy/maven/gmaven-plugin/1.0/gmaven-plugin-1.0 +https://repo.maven.apache.org/maven2/org/codehaus/groovy/maven/gmaven/1.0/gmaven-1.0 https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.2/jackson-core-asl-1.9.2 https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.9.2/jackson-jaxrs-1.9.2 https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.2/jackson-mapper-asl-1.9.2 https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.9.2/jackson-xc-1.9.2 https://repo.maven.apache.org/maven2/org/codehaus/jsr166-mirror/jsr166y/1.7.0/jsr166y-1.7.0 https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.10/animal-sniffer-annotations-1.10 +https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.15/animal-sniffer-annotations-1.15 https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.10/animal-sniffer-maven-plugin-1.10 https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.11/animal-sniffer-maven-plugin-1.11 https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.13/animal-sniffer-maven-plugin-1.13 https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.14/animal-sniffer-maven-plugin-1.14 +https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.15/animal-sniffer-maven-plugin-1.15 https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.16/animal-sniffer-maven-plugin-1.16 https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.17/animal-sniffer-maven-plugin-1.17 https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.10/animal-sniffer-parent-1.10 https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.11/animal-sniffer-parent-1.11 https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.13/animal-sniffer-parent-1.13 https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14 +https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.15/animal-sniffer-parent-1.15 https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.16/animal-sniffer-parent-1.16 https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17 https://repo.maven.apache.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/1.0/build-helper-maven-plugin-1.0 @@ -1468,8 +1500,6 @@ https://repo.maven.apache.org/maven2/org/codehaus/mojo/cobertura-maven-plugin/2. https://repo.maven.apache.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/2.5.1/findbugs-maven-plugin-2.5.1 https://repo.maven.apache.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/2.5.2/findbugs-maven-plugin-2.5.2 https://repo.maven.apache.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/2.5.3/findbugs-maven-plugin-2.5.3 -https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo/17/mojo-17 -https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo/7/mojo-7 https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/23/mojo-parent-23 https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/24/mojo-parent-24 https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/28/mojo-parent-28 @@ -1480,26 +1510,10 @@ https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-paren https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/36/mojo-parent-36 https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/38/mojo-parent-38 https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40 +https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo/17/mojo-17 +https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo/7/mojo-7 +https://repo.maven.apache.org/maven2/org/codehaus/mojo/templating-maven-plugin/1.0-alpha-3/templating-maven-plugin-1.0-alpha-3 https://repo.maven.apache.org/maven2/org/codehaus/mojo/templating-maven-plugin/1.0.0/templating-maven-plugin-1.0.0 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3/plexus-3.3 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.0/plexus-5.0 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-12/plexus-archiver-1.0-alpha-12 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0 @@ -1531,13 +1545,13 @@ https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3/p https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.4/plexus-container-default-1.5.4 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6 @@ -1552,8 +1566,8 @@ https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1. https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-4/plexus-io-1.0-alpha-4 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-5/plexus-io-1.0-alpha-5 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.10/plexus-io-2.0.10 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.10/plexus-io-2.0.10 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.9/plexus-io-2.0.9 @@ -1572,8 +1586,8 @@ https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plex https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.7/plexus-utils-1.4.7 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9 -https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7 @@ -1592,6 +1606,30 @@ https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.9/plex https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0 https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3/plexus-3.3 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0 +https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.0/plexus-5.0 +https://repo.maven.apache.org/maven2/org/conscrypt/conscrypt-openjdk-uber/1.4.0/conscrypt-openjdk-uber-1.4.0 +https://repo.maven.apache.org/maven2/org/conscrypt/conscrypt-openjdk-uber/2.0.0/conscrypt-openjdk-uber-2.0.0 +https://repo.maven.apache.org/maven2/org/easymock/easymock-parent/3.2/easymock-parent-3.2 +https://repo.maven.apache.org/maven2/org/easymock/easymock-parent/3.3/easymock-parent-3.3 +https://repo.maven.apache.org/maven2/org/easymock/easymock-parent/4.0.2/easymock-parent-4.0.2 https://repo.maven.apache.org/maven2/org/easymock/easymock/2.2/easymock-2.2 https://repo.maven.apache.org/maven2/org/easymock/easymock/2.4/easymock-2.4 https://repo.maven.apache.org/maven2/org/easymock/easymock/2.5.2/easymock-2.5.2 @@ -1599,19 +1637,18 @@ https://repo.maven.apache.org/maven2/org/easymock/easymock/3.2/easymock-3.2 https://repo.maven.apache.org/maven2/org/easymock/easymock/3.3/easymock-3.3 https://repo.maven.apache.org/maven2/org/easymock/easymock/4.0.2/easymock-4.0.2 https://repo.maven.apache.org/maven2/org/easymock/easymockclassextension/2.2.1/easymockclassextension-2.2.1 -https://repo.maven.apache.org/maven2/org/easymock/easymock-parent/3.2/easymock-parent-3.2 -https://repo.maven.apache.org/maven2/org/easymock/easymock-parent/3.3/easymock-parent-3.3 -https://repo.maven.apache.org/maven2/org/easymock/easymock-parent/4.0.2/easymock-parent-4.0.2 -https://repo.maven.apache.org/maven2/org/easytesting/fest/1.0.15/fest-1.0.15 +https://repo.maven.apache.org/maven2/org/easytesting/fest-assert-core/2.0M10/fest-assert-core-2.0M10 https://repo.maven.apache.org/maven2/org/easytesting/fest-assert-core/2.0M8/fest-assert-core-2.0M8 https://repo.maven.apache.org/maven2/org/easytesting/fest-util/1.2.3/fest-util-1.2.3 -https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2 -https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114 +https://repo.maven.apache.org/maven2/org/easytesting/fest-util/1.2.5/fest-util-1.2.5 +https://repo.maven.apache.org/maven2/org/easytesting/fest/1.0.15/fest-1.0.15 https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114 https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114 https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114 https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2 https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114 +https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2 +https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114 https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-parent/14/jetty-parent-14 https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-parent/20/jetty-parent-20 https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/8.1.16.v20140903/jetty-project-8.1.16.v20140903 @@ -1622,21 +1659,21 @@ https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.2/sisu-inj https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.2/sisu-plexus-0.3.2 https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.8/fusesource-pom-1.8 https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.9/fusesource-pom-1.9 -https://repo.maven.apache.org/maven2/org/fusesource/hawtbuf/hawtbuf/1.9/hawtbuf-1.9 https://repo.maven.apache.org/maven2/org/fusesource/hawtbuf/hawtbuf-project/1.9/hawtbuf-project-1.9 https://repo.maven.apache.org/maven2/org/fusesource/hawtbuf/hawtbuf-proto/1.9/hawtbuf-proto-1.9 -https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/1.11/jansi-1.11 +https://repo.maven.apache.org/maven2/org/fusesource/hawtbuf/hawtbuf/1.9/hawtbuf-1.9 https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi-project/1.11/jansi-project-1.11 +https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/1.11/jansi-1.11 https://repo.maven.apache.org/maven2/org/glassfish/copyright/glassfish-copyright-maven-plugin/1.29/glassfish-copyright-maven-plugin-1.29 https://repo.maven.apache.org/maven2/org/glassfish/copyright/glassfish-copyright-maven-plugin/1.31/glassfish-copyright-maven-plugin-1.31 https://repo.maven.apache.org/maven2/org/glassfish/hk2/hk2-parent/2.0.0/hk2-parent-2.0.0 https://repo.maven.apache.org/maven2/org/glassfish/hk2/osgiversion-maven-plugin/2.0.0/osgiversion-maven-plugin-2.0.0 https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-bom/2.2.11/jaxb-bom-2.2.11 -https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1 https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-all/1.3/hamcrest-all-1.3 https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1 https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.1/hamcrest-parent-1.1 https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3 +https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1 https://repo.maven.apache.org/maven2/org/immutables/tools/maven-shade-plugin/4/maven-shade-plugin-4 https://repo.maven.apache.org/maven2/org/infinitest/continuous-testing-toolkit/1.0/continuous-testing-toolkit-1.0 https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4 @@ -1647,14 +1684,10 @@ https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bo https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0 https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6 https://repo.maven.apache.org/maven2/org/jdom/jdom/1.1/jdom-1.1 +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.0/kotlin-stdlib-common-1.3.0 https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.2.0/kotlin-stdlib-1.2.0 https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.2.20/kotlin-stdlib-1.2.20 https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.3.0/kotlin-stdlib-1.3.0 -https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.0/kotlin-stdlib-common-1.3.0 -https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.1.3-2/kotlin-test-1.1.3-2 -https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.2.71/kotlin-test-1.2.71 -https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.20/kotlin-test-1.3.20 -https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.50/kotlin-test-1.3.50 https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-annotations-common/1.2.71/kotlin-test-annotations-common-1.2.71 https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-annotations-common/1.3.20/kotlin-test-annotations-common-1.3.20 https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-annotations-common/1.3.50/kotlin-test-annotations-common-1.3.50 @@ -1665,17 +1698,22 @@ https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-junit/1.1. https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-junit/1.2.71/kotlin-test-junit-1.2.71 https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-junit/1.3.20/kotlin-test-junit-1.3.20 https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-junit/1.3.50/kotlin-test-junit-1.3.50 +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.1.3-2/kotlin-test-1.1.3-2 +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.2.71/kotlin-test-1.2.71 +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.20/kotlin-test-1.3.20 +https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.50/kotlin-test-1.3.50 https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core-common/1.1.1/kotlinx-coroutines-core-common-1.1.1 +https://repo.maven.apache.org/maven2/org/json/json/20080701/json-20080701 https://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.6.3/jsoup-1.6.3 https://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.7.2/jsoup-1.7.2 -https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.4.0/junit-jupiter-5.4.0 +https://repo.maven.apache.org/maven2/org/junit-pioneer/junit-pioneer/0.3.0/junit-pioneer-0.3.0 https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.1.1/junit-jupiter-api-5.1.1 https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.2.0/junit-jupiter-api-5.2.0 https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.4.0/junit-jupiter-api-5.4.0 https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.2.0/junit-jupiter-engine-5.2.0 https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.4.0/junit-jupiter-engine-5.4.0 https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.4.0/junit-jupiter-params-5.4.0 -https://repo.maven.apache.org/maven2/org/junit-pioneer/junit-pioneer/0.3.0/junit-pioneer-0.3.0 +https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.4.0/junit-jupiter-5.4.0 https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.1.1/junit-platform-commons-1.1.1 https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.2.0/junit-platform-commons-1.2.0 https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.4.0/junit-platform-commons-1.4.0 @@ -1686,32 +1724,34 @@ https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-runner/1. https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-suite-api/1.2.0/junit-platform-suite-api-1.2.0 https://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.2.0/junit-vintage-engine-5.2.0 https://repo.maven.apache.org/maven2/org/kathrynhuxtable/maven/wagon/wagon-gitsite/0.3.1/wagon-gitsite-0.3.1 +https://repo.maven.apache.org/maven2/org/khronos/opengl-api/gl1.1-android-2.1_r1/opengl-api-gl1.1-android-2.1_r1 https://repo.maven.apache.org/maven2/org/littleshoot/littleproxy/1.1.0-beta2/littleproxy-1.1.0-beta2 https://repo.maven.apache.org/maven2/org/mockito/mockito-core/1.10.16/mockito-core-1.10.16 https://repo.maven.apache.org/maven2/org/mockito/mockito-core/1.10.19/mockito-core-1.10.19 https://repo.maven.apache.org/maven2/org/mockito/mockito-core/1.8.5/mockito-core-1.8.5 https://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.18.3/mockito-core-2.18.3 https://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.19.0/mockito-core-2.19.0 +https://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.28.2/mockito-core-2.28.2 https://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.7.1/mockito-core-2.7.1 -https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty/6.1.26/jetty-6.1.26 https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-parent/10/jetty-parent-10 https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-parent/7/jetty-parent-7 https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-util/6.1.26/jetty-util-6.1.26 +https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty/6.1.26/jetty-6.1.26 https://repo.maven.apache.org/maven2/org/mortbay/jetty/project/6.1.26/project-6.1.26 https://repo.maven.apache.org/maven2/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211 -https://repo.maven.apache.org/maven2/org/multiverse/multiverse/0.7.0/multiverse-0.7.0 https://repo.maven.apache.org/maven2/org/multiverse/multiverse-core/0.7.0/multiverse-core-0.7.0 +https://repo.maven.apache.org/maven2/org/multiverse/multiverse/0.7.0/multiverse-0.7.0 +https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/1.3/objenesis-parent-1.3 +https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1 +https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.5/objenesis-parent-2.5 +https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6 +https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/3.0.1/objenesis-parent-3.0.1 https://repo.maven.apache.org/maven2/org/objenesis/objenesis/1.0/objenesis-1.0 https://repo.maven.apache.org/maven2/org/objenesis/objenesis/1.3/objenesis-1.3 https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.1/objenesis-2.1 https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.5/objenesis-2.5 https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6 https://repo.maven.apache.org/maven2/org/objenesis/objenesis/3.0.1/objenesis-3.0.1 -https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/1.3/objenesis-parent-1.3 -https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1 -https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.5/objenesis-parent-2.5 -https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6 -https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/3.0.1/objenesis-parent-3.0.1 https://repo.maven.apache.org/maven2/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21 https://repo.maven.apache.org/maven2/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21 https://repo.maven.apache.org/maven2/org/openjdk/jmh/jmh-parent/1.21/jmh-parent-1.21 @@ -1723,27 +1763,27 @@ https://repo.maven.apache.org/maven2/org/osgi/org.osgi.core/4.1.0/org.osgi.core- https://repo.maven.apache.org/maven2/org/osgi/org.osgi.core/4.2.0/org.osgi.core-4.2.0 https://repo.maven.apache.org/maven2/org/osgi/org.osgi.core/4.3.1/org.osgi.core-4.3.1 https://repo.maven.apache.org/maven2/org/osgi/org.osgi.core/6.0.0/org.osgi.core-6.0.0 -https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.2/asm-5.0.2 -https://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.1.1/asm-6.1.1 https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.1/asm-parent-5.0.1 https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.2/asm-parent-5.0.2 https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.3/asm-parent-5.0.3 https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4 https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.1/asm-parent-5.1 https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/6.0/asm-parent-6.0 +https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.2/asm-5.0.2 +https://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.1.1/asm-6.1.1 https://repo.maven.apache.org/maven2/org/ow2/ow2/1.3/ow2-1.3 https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5 https://repo.maven.apache.org/maven2/org/pitest/pitest-maven/1.1.4/pitest-maven-1.1.4 https://repo.maven.apache.org/maven2/org/pitest/pitest-parent/1.1.4/pitest-parent-1.1.4 -https://repo.maven.apache.org/maven2/org/powermock/powermock/1.6.4/powermock-1.6.4 -https://repo.maven.apache.org/maven2/org/powermock/powermock-api/1.6.4/powermock-api-1.6.4 https://repo.maven.apache.org/maven2/org/powermock/powermock-api-mockito/1.6.4/powermock-api-mockito-1.6.4 https://repo.maven.apache.org/maven2/org/powermock/powermock-api-support/1.6.4/powermock-api-support-1.6.4 +https://repo.maven.apache.org/maven2/org/powermock/powermock-api/1.6.4/powermock-api-1.6.4 https://repo.maven.apache.org/maven2/org/powermock/powermock-core/1.6.4/powermock-core-1.6.4 -https://repo.maven.apache.org/maven2/org/powermock/powermock-module-junit4/1.6.4/powermock-module-junit4-1.6.4 https://repo.maven.apache.org/maven2/org/powermock/powermock-module-junit4-common/1.6.4/powermock-module-junit4-common-1.6.4 +https://repo.maven.apache.org/maven2/org/powermock/powermock-module-junit4/1.6.4/powermock-module-junit4-1.6.4 https://repo.maven.apache.org/maven2/org/powermock/powermock-modules/1.6.4/powermock-modules-1.6.4 https://repo.maven.apache.org/maven2/org/powermock/powermock-reflect/1.6.4/powermock-reflect-1.6.4 +https://repo.maven.apache.org/maven2/org/powermock/powermock/1.6.4/powermock-1.6.4 https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-java/2.44.0/selenium-java-2.44.0 https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-parent/2.44.0/selenium-parent-2.44.0 https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6 @@ -1764,7 +1804,6 @@ https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent- https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5 https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.7/slf4j-parent-1.7.7 https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/1.7.5/slf4j-simple-1.7.5 -https://repo.maven.apache.org/maven2/org/sonatype/aether/aether/1.13.1/aether-1.13.1 https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.13.1/aether-api-1.13.1 https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7 https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7 @@ -1772,6 +1811,7 @@ https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aethe https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7 https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.13.1/aether-util-1.13.1 https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7 +https://repo.maven.apache.org/maven2/org/sonatype/aether/aether/1.13.1/aether-1.13.1 https://repo.maven.apache.org/maven2/org/sonatype/buildsupport/buildsupport/3/buildsupport-3 https://repo.maven.apache.org/maven2/org/sonatype/buildsupport/buildsupport/5/buildsupport-5 https://repo.maven.apache.org/maven2/org/sonatype/buildsupport/buildsupport/6/buildsupport-6 @@ -1785,10 +1825,10 @@ https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-par https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5 https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6 https://repo.maven.apache.org/maven2/org/sonatype/maven/mojo-commons/1.1/mojo-commons-1.1 -https://repo.maven.apache.org/maven2/org/sonatype/nexus/buildsupport/nexus-buildsupport/2.7.2-01/nexus-buildsupport-2.7.2-01 -https://repo.maven.apache.org/maven2/org/sonatype/nexus/buildsupport/nexus-buildsupport/2.9.1-02/nexus-buildsupport-2.9.1-02 https://repo.maven.apache.org/maven2/org/sonatype/nexus/buildsupport/nexus-buildsupport-all/2.7.2-01/nexus-buildsupport-all-2.7.2-01 https://repo.maven.apache.org/maven2/org/sonatype/nexus/buildsupport/nexus-buildsupport-all/2.9.1-02/nexus-buildsupport-all-2.9.1-02 +https://repo.maven.apache.org/maven2/org/sonatype/nexus/buildsupport/nexus-buildsupport/2.7.2-01/nexus-buildsupport-2.7.2-01 +https://repo.maven.apache.org/maven2/org/sonatype/nexus/buildsupport/nexus-buildsupport/2.9.1-02/nexus-buildsupport-2.9.1-02 https://repo.maven.apache.org/maven2/org/sonatype/nexus/client/nexus-client-core/2.2/nexus-client-core-2.2 https://repo.maven.apache.org/maven2/org/sonatype/nexus/maven/nexus-common/1.6.3/nexus-common-1.6.3 https://repo.maven.apache.org/maven2/org/sonatype/nexus/maven/nexus-common/1.6.7/nexus-common-1.6.7 @@ -1796,7 +1836,6 @@ https://repo.maven.apache.org/maven2/org/sonatype/nexus/maven/nexus-maven-plugin https://repo.maven.apache.org/maven2/org/sonatype/nexus/maven/nexus-maven-plugins/1.6.7/nexus-maven-plugins-1.6.7 https://repo.maven.apache.org/maven2/org/sonatype/nexus/maven/nexus-staging/1.6.3/nexus-staging-1.6.3 https://repo.maven.apache.org/maven2/org/sonatype/nexus/maven/nexus-staging/1.6.7/nexus-staging-1.6.7 -https://repo.maven.apache.org/maven2/org/sonatype/nexus/nexus/2.2/nexus-2.2 https://repo.maven.apache.org/maven2/org/sonatype/nexus/nexus-client-core/2.7.2-01/nexus-client-core-2.7.2-01 https://repo.maven.apache.org/maven2/org/sonatype/nexus/nexus-client-core/2.9.1-02/nexus-client-core-2.9.1-02 https://repo.maven.apache.org/maven2/org/sonatype/nexus/nexus-components/2.7.2-01/nexus-components-2.7.2-01 @@ -1806,10 +1845,11 @@ https://repo.maven.apache.org/maven2/org/sonatype/nexus/nexus-oss/2.7.2-01/nexus https://repo.maven.apache.org/maven2/org/sonatype/nexus/nexus-oss/2.9.1-02/nexus-oss-2.9.1-02 https://repo.maven.apache.org/maven2/org/sonatype/nexus/nexus-rest-api-model/2.2/nexus-rest-api-model-2.2 https://repo.maven.apache.org/maven2/org/sonatype/nexus/nexus-runtime-platform/2.2/nexus-runtime-platform-2.2 -https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-plugins/2.7.2-01/nexus-plugins-2.7.2-01 -https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-plugins/2.9.1-02/nexus-plugins-2.9.1-02 +https://repo.maven.apache.org/maven2/org/sonatype/nexus/nexus/2.2/nexus-2.2 https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-plugins-restlet1x/2.7.2-01/nexus-plugins-restlet1x-2.7.2-01 https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-plugins-restlet1x/2.9.1-02/nexus-plugins-restlet1x-2.9.1-02 +https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-plugins/2.7.2-01/nexus-plugins-2.7.2-01 +https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-plugins/2.9.1-02/nexus-plugins-2.9.1-02 https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-restlet1x-model/2.7.2-01/nexus-restlet1x-model-2.7.2-01 https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-restlet1x-model/2.9.1-02/nexus-restlet1x-model-2.9.1-02 https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/3/oss-parent-3 @@ -1824,23 +1864,23 @@ https://repo.maven.apache.org/maven2/org/sonatype/plugins/nexus-staging-maven-pl https://repo.maven.apache.org/maven2/org/sonatype/plugins/nexus-staging-maven-plugin/1.6.3/nexus-staging-maven-plugin-1.6.3 https://repo.maven.apache.org/maven2/org/sonatype/plugins/nexus-staging-maven-plugin/1.6.7/nexus-staging-maven-plugin-1.6.7 https://repo.maven.apache.org/maven2/org/sonatype/security/security-parent/2.8.2/security-parent-2.8.2 -https://repo.maven.apache.org/maven2/org/sonatype/security/security-rest/2.8.2/security-rest-2.8.2 https://repo.maven.apache.org/maven2/org/sonatype/security/security-rest-model/2.8.2/security-rest-model-2.8.2 +https://repo.maven.apache.org/maven2/org/sonatype/security/security-rest/2.8.2/security-rest-2.8.2 https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2 https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2 -https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta/1.5.2/siesta-1.5.2 -https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta/1.7/siesta-1.7 https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta-client/1.5.2/siesta-client-1.5.2 https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta-client/1.7/siesta-client-1.7 https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta-common/1.5.2/siesta-common-1.5.2 https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta-common/1.7/siesta-common-1.7 https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta-jackson/1.7/siesta-jackson-1.7 +https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta/1.5.2/siesta-1.5.2 +https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta/1.7/siesta-1.7 https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-charger/1.1/sisu-charger-1.1 https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7 https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop -https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2 https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2 https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2 +https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2 https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2 https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12 https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/15/spice-parent-15 @@ -1864,11 +1904,13 @@ https://repo.maven.apache.org/maven2/xalan/serializer/2.7.2/serializer-2.7.2 https://repo.maven.apache.org/maven2/xalan/xalan/2.7.2/xalan-2.7.2 https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.11.0/xercesImpl-2.11.0 https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1 +https://repo.maven.apache.org/maven2/xerces/xmlParserAPIs/2.6.2/xmlParserAPIs-2.6.2 https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2 https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04 https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01 https://repo.maven.apache.org/maven2/xml-apis/xml-apis/2.0.2/xml-apis-2.0.2 https://repo.maven.apache.org/maven2/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1 +https://repo.maven.apache.org/maven2/xpp3/xpp3/1.1.4c/xpp3-1.1.4c https://repo.maven.apache.org/maven2/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c https://repository.sonatype.org/content/groups/sonatype-public-grid/org/sonatype/nexus/buildsupport/nexus-buildsupport-bouncycastle/2.7.2-01/nexus-buildsupport-bouncycastle-2.7.2-01 https://repository.sonatype.org/content/groups/sonatype-public-grid/org/sonatype/nexus/buildsupport/nexus-buildsupport-bouncycastle/2.9.1-02/nexus-buildsupport-bouncycastle-2.9.1-02 diff --git a/nix/mobile/android/maven-and-npm-deps/maven/maven-sources.nix b/nix/mobile/android/maven-and-npm-deps/maven/maven-sources.nix index 0831d22b88..ee688924e7 100644 --- a/nix/mobile/android/maven-and-npm-deps/maven/maven-sources.nix +++ b/nix/mobile/android/maven-and-npm-deps/maven/maven-sources.nix @@ -65,6 +65,21 @@ in { sha256 = "14mnsnd1a6wrzadh8air665ylbb9i9gz1ajhin0nf50gngnn73fk"; }; }; + "https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0" = + { + host = repositories.google; + path = + "androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0"; + type = "aar"; + pom = { + sha1 = "04d25219b17a53da24285e9560bbf5c587abee38"; + sha256 = "1wlhjv2g94w40vczb0vl8avg23hia4ancr95hha6y6xhdkhi2q04"; + }; + jar = { + sha1 = "a573b2ab146d686244721ef1038d08043f18c67f"; + sha256 = "0qbk5wi4yd4l4w4f5jdgm9xvszw3jm5qj8by6iya2lb5nhr4v50r"; + }; + }; "https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/1.0.0/appcompat-1.0.0" = { host = repositories.google; @@ -95,21 +110,6 @@ in { sha256 = "00qdpzv9ajq8dvvyvkqiq8g03023gmjv2a6lz5rcnmjwbvfhq253"; }; }; - "https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0" = - { - host = repositories.google; - path = - "androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0"; - type = "aar"; - pom = { - sha1 = "83765254bf5e6aa04bb1f35960db460afd70b048"; - sha256 = "1fdp5i5ri67xnvf1r2hcdlkl5rd3g8sqy338lq18xvzq45qn239l"; - }; - jar = { - sha1 = "351d3409fe51f3d862bd2b1bcc0f3b6ded29460e"; - sha256 = "1h5m5ajd7b66dilfh8z2zs0zqnglrdm7d5amgzqvvcscljy9jwld"; - }; - }; "https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/1.1.0-rc01/appcompat-1.1.0-rc01" = { host = repositories.google; @@ -125,19 +125,19 @@ in { sha256 = "0kv75gf28rm5xbh8dxsaz4vkiz8s5am5bcdxka92wkyv4hx3n4cm"; }; }; - "https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0" = + "https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0" = { host = repositories.google; path = - "androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0"; + "androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0"; type = "aar"; pom = { - sha1 = "04d25219b17a53da24285e9560bbf5c587abee38"; - sha256 = "1wlhjv2g94w40vczb0vl8avg23hia4ancr95hha6y6xhdkhi2q04"; + sha1 = "83765254bf5e6aa04bb1f35960db460afd70b048"; + sha256 = "1fdp5i5ri67xnvf1r2hcdlkl5rd3g8sqy338lq18xvzq45qn239l"; }; jar = { - sha1 = "a573b2ab146d686244721ef1038d08043f18c67f"; - sha256 = "0qbk5wi4yd4l4w4f5jdgm9xvszw3jm5qj8by6iya2lb5nhr4v50r"; + sha1 = "351d3409fe51f3d862bd2b1bcc0f3b6ded29460e"; + sha256 = "1h5m5ajd7b66dilfh8z2zs0zqnglrdm7d5amgzqvvcscljy9jwld"; }; }; "https://dl.google.com/dl/android/maven2/androidx/arch/core/core-common/2.0.0/core-common-2.0.0" = @@ -605,21 +605,6 @@ in { sha256 = "0jvksdcwy0r7bkcym5hlds3vw9ql9ibc5f6qgrfyrrfgyymqv2b3"; }; }; - "https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0" = - { - host = repositories.google; - path = - "androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0"; - type = "aar"; - pom = { - sha1 = "b1987c65a98cb0d6f43048be0c20f20f932fc1aa"; - sha256 = "08wl8d53121dwddkjy7scjhs9a404q8wq1awny6m2kpiq3zl4j58"; - }; - jar = { - sha1 = "c17007cd0b21d6401910b0becdd16c438c68a9af"; - sha256 = "0fdsyznqdvl118pdi17fv9h0hj5p3dvvc3x306kz1664v370j9n8"; - }; - }; "https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-livedata-core/2.0.0/lifecycle-livedata-core-2.0.0" = { host = repositories.google; @@ -650,6 +635,21 @@ in { sha256 = "057nmgwz91f40wgckfj8j51b4wfsyvdmlmihsg8dga8az4x1yv2m"; }; }; + "https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0" = + { + host = repositories.google; + path = + "androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0"; + type = "aar"; + pom = { + sha1 = "b1987c65a98cb0d6f43048be0c20f20f932fc1aa"; + sha256 = "08wl8d53121dwddkjy7scjhs9a404q8wq1awny6m2kpiq3zl4j58"; + }; + jar = { + sha1 = "c17007cd0b21d6401910b0becdd16c438c68a9af"; + sha256 = "0fdsyznqdvl118pdi17fv9h0hj5p3dvvc3x306kz1664v370j9n8"; + }; + }; "https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-runtime/2.0.0/lifecycle-runtime-2.0.0" = { host = repositories.google; @@ -680,6 +680,21 @@ in { sha256 = "1g70w60v0z3d70r5858arll0ckqbyba4b5csnsdqqfpkl43nr1ig"; }; }; + "https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.2.0/lifecycle-viewmodel-savedstate-2.2.0" = + { + host = repositories.google; + path = + "androidx/lifecycle/lifecycle-viewmodel-savedstate/2.2.0/lifecycle-viewmodel-savedstate-2.2.0"; + type = "aar"; + pom = { + sha1 = "f296a3abc6e55f6da5323ffee00b084503ac8b97"; + sha256 = "1cbdb54cib8vwbv399pbz66qzh53r27z24bn0rbl48bvai72accz"; + }; + jar = { + sha1 = "50d7a240847eb488a740939a6c19f689ee1a4a04"; + sha256 = "0cvzbvpns389zzybxb20zqrn42lshs94k5wg30pzw81bhbxnds1w"; + }; + }; "https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-viewmodel/2.0.0/lifecycle-viewmodel-2.0.0" = { host = repositories.google; @@ -710,21 +725,6 @@ in { sha256 = "09yyxdc4231nmlwvfhxvp3q1ic09rnhw82lc990xsjbc9nrglzln"; }; }; - "https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.2.0/lifecycle-viewmodel-savedstate-2.2.0" = - { - host = repositories.google; - path = - "androidx/lifecycle/lifecycle-viewmodel-savedstate/2.2.0/lifecycle-viewmodel-savedstate-2.2.0"; - type = "aar"; - pom = { - sha1 = "f296a3abc6e55f6da5323ffee00b084503ac8b97"; - sha256 = "1cbdb54cib8vwbv399pbz66qzh53r27z24bn0rbl48bvai72accz"; - }; - jar = { - sha1 = "50d7a240847eb488a740939a6c19f689ee1a4a04"; - sha256 = "0cvzbvpns389zzybxb20zqrn42lshs94k5wg30pzw81bhbxnds1w"; - }; - }; "https://dl.google.com/dl/android/maven2/androidx/loader/loader/1.0.0/loader-1.0.0" = { host = repositories.google; @@ -920,36 +920,6 @@ in { sha256 = "0zhmagl4cv35ysn5psjjlnyd50lwm35cvzhfxj6sahqbpjrmkq51"; }; }; - "https://dl.google.com/dl/android/maven2/androidx/vectordrawable/vectordrawable/1.0.1/vectordrawable-1.0.1" = - { - host = repositories.google; - path = - "androidx/vectordrawable/vectordrawable/1.0.1/vectordrawable-1.0.1"; - type = "aar"; - pom = { - sha1 = "6ab5c68ce5a36e8044716b976517566fb8ff7ae6"; - sha256 = "1v170ci8jcv4sr2h8ib07050j194icl7mbcnviyr1d0n0xwafzva"; - }; - jar = { - sha1 = "33d1eb71849dffbad12add134a25eb63cad4a1eb"; - sha256 = "1ljyf6gymbz9hhcygrmz0va5bmn26ffirq48qcpya44mgfami8sc"; - }; - }; - "https://dl.google.com/dl/android/maven2/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0" = - { - host = repositories.google; - path = - "androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0"; - type = "aar"; - pom = { - sha1 = "8b15e03d94f7d9a07cbea653ad7f524315d1d507"; - sha256 = "1cib94wwskg9haj7v9amvlfmwfs7bz723g2wg024irbr45djs3jv"; - }; - jar = { - sha1 = "eac7a364fff534035a2a6cb17770a1288315f69f"; - sha256 = "09lfvw1gn16avi726kbpd6d9x2ssih4vyqy2mgybfj8vq0x67za6"; - }; - }; "https://dl.google.com/dl/android/maven2/androidx/vectordrawable/vectordrawable-animated/1.0.0/vectordrawable-animated-1.0.0" = { host = repositories.google; @@ -980,6 +950,36 @@ in { sha256 = "1y034igcx1xf7qvg6n6hks08gnh0ilj2npnzaj0c7nbi4d82rnkn"; }; }; + "https://dl.google.com/dl/android/maven2/androidx/vectordrawable/vectordrawable/1.0.1/vectordrawable-1.0.1" = + { + host = repositories.google; + path = + "androidx/vectordrawable/vectordrawable/1.0.1/vectordrawable-1.0.1"; + type = "aar"; + pom = { + sha1 = "6ab5c68ce5a36e8044716b976517566fb8ff7ae6"; + sha256 = "1v170ci8jcv4sr2h8ib07050j194icl7mbcnviyr1d0n0xwafzva"; + }; + jar = { + sha1 = "33d1eb71849dffbad12add134a25eb63cad4a1eb"; + sha256 = "1ljyf6gymbz9hhcygrmz0va5bmn26ffirq48qcpya44mgfami8sc"; + }; + }; + "https://dl.google.com/dl/android/maven2/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0" = + { + host = repositories.google; + path = + "androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0"; + type = "aar"; + pom = { + sha1 = "8b15e03d94f7d9a07cbea653ad7f524315d1d507"; + sha256 = "1cib94wwskg9haj7v9amvlfmwfs7bz723g2wg024irbr45djs3jv"; + }; + jar = { + sha1 = "eac7a364fff534035a2a6cb17770a1288315f69f"; + sha256 = "09lfvw1gn16avi726kbpd6d9x2ssih4vyqy2mgybfj8vq0x67za6"; + }; + }; "https://dl.google.com/dl/android/maven2/androidx/versionedparcelable/versionedparcelable/1.0.0/versionedparcelable-1.0.0" = { host = repositories.google; @@ -1010,21 +1010,6 @@ in { sha256 = "1h8hnymlblgxdbflcbgdhw4q1hcv2myywm2hdf3bf8n218a7f7cs"; }; }; - "https://dl.google.com/dl/android/maven2/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0" = - { - host = repositories.google; - path = - "androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0"; - type = "aar"; - pom = { - sha1 = "6c206c3aa4ba7917be9ccf200e11aa83caf01c50"; - sha256 = "0ym113vcfcn446nd72jr901dl0hfw5xgjs21iz4nbzllzskvqqs0"; - }; - jar = { - sha1 = "91c378a09ddff66e1bb73e90edeac53487d2832b"; - sha256 = "1bvm08rj02f9lzz5mf3rki6ybknjb1z2iilnh7a7q96cshqh0p79"; - }; - }; "https://dl.google.com/dl/android/maven2/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0" = { host = repositories.google; @@ -1040,6 +1025,21 @@ in { sha256 = "10l6zjw2i16iw2l05vfzf0fkrw41swcmwphmiw6h310r9bhz8yhl"; }; }; + "https://dl.google.com/dl/android/maven2/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0" = + { + host = repositories.google; + path = + "androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0"; + type = "aar"; + pom = { + sha1 = "6c206c3aa4ba7917be9ccf200e11aa83caf01c50"; + sha256 = "0ym113vcfcn446nd72jr901dl0hfw5xgjs21iz4nbzllzskvqqs0"; + }; + jar = { + sha1 = "91c378a09ddff66e1bb73e90edeac53487d2832b"; + sha256 = "1bvm08rj02f9lzz5mf3rki6ybknjb1z2iilnh7a7q96cshqh0p79"; + }; + }; "https://dl.google.com/dl/android/maven2/com/android/databinding/baseLibrary/3.0.0/baseLibrary-3.0.0" = { host = repositories.google; @@ -1505,6 +1505,36 @@ in { sha256 = "131m7ylpzyvnbx6dg6nkfzhgppsh6v5plm51v1c6jd6xl5rkffzy"; }; }; + "https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/0.3.1/aapt2-proto-0.3.1" = + { + host = repositories.google; + path = + "com/android/tools/build/aapt2-proto/0.3.1/aapt2-proto-0.3.1"; + type = "jar"; + pom = { + sha1 = "235a6eb105ebf8b411e4d75926814cd34abd0d22"; + sha256 = "07fhxx0czmrmw9cfpxkcxy6z53hpsrpkk85l791w39srdgjz1r9i"; + }; + jar = { + sha1 = "8311800abb3dcd84426a0de834a6b884a173d864"; + sha256 = "1nj9vkbz3yx43r56haq7373acmg6d5yv3cy9qsvzgamhi6dj20x5"; + }; + }; + "https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/0.4.0/aapt2-proto-0.4.0" = + { + host = repositories.google; + path = + "com/android/tools/build/aapt2-proto/0.4.0/aapt2-proto-0.4.0"; + type = "jar"; + pom = { + sha1 = "7dfca013cd859905a574a0c484e5c022eeccb3c3"; + sha256 = "0fa3j2z3j019pr7xxijxyb8cqizi4fkpxmzqrvcdqkrpir7dsjx2"; + }; + jar = { + sha1 = "d4db96aa0d2e161d08a038731e08c3ebf612cd12"; + sha256 = "1jik85h57bc5sb70a8n12vw5y587lyz3d8lwxgp8k3w911g47h7s"; + }; + }; "https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2/3.5.3-5435860/aapt2-3.5.3-5435860" = { host = repositories.google; @@ -1538,36 +1568,6 @@ in { sha256 = "0nzc3hq3fm847a3rvwdz26ln3inh50x44ml0dq486yz45qv9f7cs"; }; }; - "https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/0.3.1/aapt2-proto-0.3.1" = - { - host = repositories.google; - path = - "com/android/tools/build/aapt2-proto/0.3.1/aapt2-proto-0.3.1"; - type = "jar"; - pom = { - sha1 = "235a6eb105ebf8b411e4d75926814cd34abd0d22"; - sha256 = "07fhxx0czmrmw9cfpxkcxy6z53hpsrpkk85l791w39srdgjz1r9i"; - }; - jar = { - sha1 = "8311800abb3dcd84426a0de834a6b884a173d864"; - sha256 = "1nj9vkbz3yx43r56haq7373acmg6d5yv3cy9qsvzgamhi6dj20x5"; - }; - }; - "https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto/0.4.0/aapt2-proto-0.4.0" = - { - host = repositories.google; - path = - "com/android/tools/build/aapt2-proto/0.4.0/aapt2-proto-0.4.0"; - type = "jar"; - pom = { - sha1 = "7dfca013cd859905a574a0c484e5c022eeccb3c3"; - sha256 = "0fa3j2z3j019pr7xxijxyb8cqizi4fkpxmzqrvcdqkrpir7dsjx2"; - }; - jar = { - sha1 = "d4db96aa0d2e161d08a038731e08c3ebf612cd12"; - sha256 = "1jik85h57bc5sb70a8n12vw5y587lyz3d8lwxgp8k3w911g47h7s"; - }; - }; "https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/3.0.0/apksig-3.0.0" = { host = repositories.google; @@ -1688,81 +1688,6 @@ in { sha256 = "1p59yzz362c6wsxsd6cc3q01ixw9dpm83wmk5c3j5ss74xwldnk8"; }; }; - "https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.0.0/builder-3.0.0" = - { - host = repositories.google; - path = - "com/android/tools/build/builder/3.0.0/builder-3.0.0"; - type = "jar"; - pom = { - sha1 = "8b498ff308f743e8689f528efa56837ac5fdbde6"; - sha256 = "0a4pal1w33v90cfpd72brb2chqfqmpqs52klg9xigwrkbyjgkp4b"; - }; - jar = { - sha1 = "36884960f350cb29f1c2c93107f4fa27f4e7444e"; - sha256 = "07pwrxv5igr4v1886rjdfrrqx4sa5b64yz0p41450qywzm2n880n"; - }; - }; - "https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.0.1/builder-3.0.1" = - { - host = repositories.google; - path = - "com/android/tools/build/builder/3.0.1/builder-3.0.1"; - type = "jar"; - pom = { - sha1 = "00bdc803975a0159610829a018c5e19fd4cb193d"; - sha256 = "1jfi3wymgpb0pk23q53wgjxqz4zvj71wvx7rm0da2cfhj332ghsx"; - }; - jar = { - sha1 = "1f896967507729bb35ac727c03d3b9306fe87b7d"; - sha256 = "169b6i7rv968k1hkxw4h5hbnmy77ms2yv0w6cwg7vpdqxnaf6fw0"; - }; - }; - "https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.2.1/builder-3.2.1" = - { - host = repositories.google; - path = - "com/android/tools/build/builder/3.2.1/builder-3.2.1"; - type = "jar"; - pom = { - sha1 = "0b2116384a9cbf80be799fa327c808ac5e9e42ad"; - sha256 = "0kz85c6cplwsmfh1xlzhpfpj1jbs1qwgk4j80phs8fkv1m9arcv3"; - }; - jar = { - sha1 = "1303a2feb969ac0896e7c83c1f5a0fd2496b71bc"; - sha256 = "10xfgywcjryqn4rz3cm31a6mb6sqa3pncghinh4ivsfv2p8vzp5f"; - }; - }; - "https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.3.1/builder-3.3.1" = - { - host = repositories.google; - path = - "com/android/tools/build/builder/3.3.1/builder-3.3.1"; - type = "jar"; - pom = { - sha1 = "fbca96adc8069b8fcb01c7271c3b4be4f901b517"; - sha256 = "1r032kp70fcgp1kn3c128yzs9hw50mjrpfiqbjkcga049vlxw3x6"; - }; - jar = { - sha1 = "e4d2ad1ef694fca700b3ab1f4df4b79313d17c98"; - sha256 = "0ljw05allv94hkh63jr8m4x0vvfnnclff0jpbfldyp2bhqyzb26f"; - }; - }; - "https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.5.3/builder-3.5.3" = - { - host = repositories.google; - path = - "com/android/tools/build/builder/3.5.3/builder-3.5.3"; - type = "jar"; - pom = { - sha1 = "b327e842abd63da2281e74c59de69ab2b5998443"; - sha256 = "147mplrkzmv6c83ak5mpqs9r19fr7wangbdcan7nwr10lfrr7mbl"; - }; - jar = { - sha1 = "39bba1af533b25f6c1140e3c795ff815a6ad86ba"; - sha256 = "0hap9j91gxy6cnj8sdawbbby0wn180jr3hybi890x6lv7ccdkjq5"; - }; - }; "https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-model/3.0.0/builder-model-3.0.0" = { host = repositories.google; @@ -1913,6 +1838,81 @@ in { sha256 = "0iqmziqvzbq59ji2sw6v24qshnmiinjgi06qwvyap39cl5q4brks"; }; }; + "https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.0.0/builder-3.0.0" = + { + host = repositories.google; + path = + "com/android/tools/build/builder/3.0.0/builder-3.0.0"; + type = "jar"; + pom = { + sha1 = "8b498ff308f743e8689f528efa56837ac5fdbde6"; + sha256 = "0a4pal1w33v90cfpd72brb2chqfqmpqs52klg9xigwrkbyjgkp4b"; + }; + jar = { + sha1 = "36884960f350cb29f1c2c93107f4fa27f4e7444e"; + sha256 = "07pwrxv5igr4v1886rjdfrrqx4sa5b64yz0p41450qywzm2n880n"; + }; + }; + "https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.0.1/builder-3.0.1" = + { + host = repositories.google; + path = + "com/android/tools/build/builder/3.0.1/builder-3.0.1"; + type = "jar"; + pom = { + sha1 = "00bdc803975a0159610829a018c5e19fd4cb193d"; + sha256 = "1jfi3wymgpb0pk23q53wgjxqz4zvj71wvx7rm0da2cfhj332ghsx"; + }; + jar = { + sha1 = "1f896967507729bb35ac727c03d3b9306fe87b7d"; + sha256 = "169b6i7rv968k1hkxw4h5hbnmy77ms2yv0w6cwg7vpdqxnaf6fw0"; + }; + }; + "https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.2.1/builder-3.2.1" = + { + host = repositories.google; + path = + "com/android/tools/build/builder/3.2.1/builder-3.2.1"; + type = "jar"; + pom = { + sha1 = "0b2116384a9cbf80be799fa327c808ac5e9e42ad"; + sha256 = "0kz85c6cplwsmfh1xlzhpfpj1jbs1qwgk4j80phs8fkv1m9arcv3"; + }; + jar = { + sha1 = "1303a2feb969ac0896e7c83c1f5a0fd2496b71bc"; + sha256 = "10xfgywcjryqn4rz3cm31a6mb6sqa3pncghinh4ivsfv2p8vzp5f"; + }; + }; + "https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.3.1/builder-3.3.1" = + { + host = repositories.google; + path = + "com/android/tools/build/builder/3.3.1/builder-3.3.1"; + type = "jar"; + pom = { + sha1 = "fbca96adc8069b8fcb01c7271c3b4be4f901b517"; + sha256 = "1r032kp70fcgp1kn3c128yzs9hw50mjrpfiqbjkcga049vlxw3x6"; + }; + jar = { + sha1 = "e4d2ad1ef694fca700b3ab1f4df4b79313d17c98"; + sha256 = "0ljw05allv94hkh63jr8m4x0vvfnnclff0jpbfldyp2bhqyzb26f"; + }; + }; + "https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.5.3/builder-3.5.3" = + { + host = repositories.google; + path = + "com/android/tools/build/builder/3.5.3/builder-3.5.3"; + type = "jar"; + pom = { + sha1 = "b327e842abd63da2281e74c59de69ab2b5998443"; + sha256 = "147mplrkzmv6c83ak5mpqs9r19fr7wangbdcan7nwr10lfrr7mbl"; + }; + jar = { + sha1 = "39bba1af533b25f6c1140e3c795ff815a6ad86ba"; + sha256 = "0hap9j91gxy6cnj8sdawbbby0wn180jr3hybi890x6lv7ccdkjq5"; + }; + }; "https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/0.5.0/bundletool-0.5.0" = { host = repositories.google; @@ -1958,81 +1958,6 @@ in { sha256 = "0ggss9x7431rdq1h9sxmk9isgsqyp14acddcckinic3mr9blbi2h"; }; }; - "https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.0/gradle-3.0.0" = - { - host = repositories.google; - path = - "com/android/tools/build/gradle/3.0.0/gradle-3.0.0"; - type = "jar"; - pom = { - sha1 = "efe9a4c336629561a04b7eafd895054908807cdb"; - sha256 = "07qm0bfvivx0h2ww7z5sdws78j4gkn75x2hy2mhbhhwq9k20nf4d"; - }; - jar = { - sha1 = "2356ee8e98b68c53dafc28898e7034080e5c91aa"; - sha256 = "00ivxwq5rgrx7wfkr8g5z1n21vap9r2vaid9djdqfr9f3jygq8mb"; - }; - }; - "https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1" = - { - host = repositories.google; - path = - "com/android/tools/build/gradle/3.0.1/gradle-3.0.1"; - type = "jar"; - pom = { - sha1 = "f6941bdcc20f1efd54b55db56be1085bbe24e554"; - sha256 = "0ya15fr2c9a842799igv6kwzs1hb9rrsa0ix0b7f0snlm4jirxqy"; - }; - jar = { - sha1 = "cfa107d4db0c11c11f445a11e768adf61c72ce06"; - sha256 = "0ahm0ks11x14yxzakpwbpbr8kq7j8dfxm4qbhqlk92d39sx7rmzw"; - }; - }; - "https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.2.1/gradle-3.2.1" = - { - host = repositories.google; - path = - "com/android/tools/build/gradle/3.2.1/gradle-3.2.1"; - type = "jar"; - pom = { - sha1 = "15d3336376c1847b8c51a1d398599eb7f4aa68c4"; - sha256 = "1jyqnv2s80dc41z0y13sva7pnsn44qx2bbqyj1s66q0m4r8jn1if"; - }; - jar = { - sha1 = "1ce0d907aa7805e19f553807b9bbdc9bb9841dbf"; - sha256 = "0z6cimd0lbpm6y278qg8p1nj826ncxm37nj8931j21814dw1z2hh"; - }; - }; - "https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.3.1/gradle-3.3.1" = - { - host = repositories.google; - path = - "com/android/tools/build/gradle/3.3.1/gradle-3.3.1"; - type = "jar"; - pom = { - sha1 = "1769370bffda87132eb79580bf54ccb9eb339020"; - sha256 = "0z7z83253wq5h0aqc4nrmr0i4san6i21gapzwlmpl1rsfjksvs7m"; - }; - jar = { - sha1 = "7d642f14aa35443dd7aeecd0600c17da37d3bccc"; - sha256 = "1g8ivii0sc0a3a67nvgl0552sw084hpyfs2ihsp9ppriqnmrjr7m"; - }; - }; - "https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.5.3/gradle-3.5.3" = - { - host = repositories.google; - path = - "com/android/tools/build/gradle/3.5.3/gradle-3.5.3"; - type = "jar"; - pom = { - sha1 = "6bfb2b4c34c37c4f2addcb6d99db19fa7a1a5810"; - sha256 = "1lk5iqchhnbwnjpnwxziihp0gzid87crz2i6fx0xanb6szg45hwk"; - }; - jar = { - sha1 = "12e36e5f81cc2face28e0c14cb98941d773cae6a"; - sha256 = "045rv08bippjmcp8cmf257s5p04grndh0i3crylrrf1rsgnksab7"; - }; - }; "https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/3.0.0/gradle-api-3.0.0" = { host = repositories.google; @@ -2138,6 +2063,81 @@ in { sha256 = "09w0jxh7vkmgy6ing49l8xpyp7jrcz56g2j5sfsyipacdyahyr0a"; }; }; + "https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.0/gradle-3.0.0" = + { + host = repositories.google; + path = + "com/android/tools/build/gradle/3.0.0/gradle-3.0.0"; + type = "jar"; + pom = { + sha1 = "efe9a4c336629561a04b7eafd895054908807cdb"; + sha256 = "07qm0bfvivx0h2ww7z5sdws78j4gkn75x2hy2mhbhhwq9k20nf4d"; + }; + jar = { + sha1 = "2356ee8e98b68c53dafc28898e7034080e5c91aa"; + sha256 = "00ivxwq5rgrx7wfkr8g5z1n21vap9r2vaid9djdqfr9f3jygq8mb"; + }; + }; + "https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1" = + { + host = repositories.google; + path = + "com/android/tools/build/gradle/3.0.1/gradle-3.0.1"; + type = "jar"; + pom = { + sha1 = "f6941bdcc20f1efd54b55db56be1085bbe24e554"; + sha256 = "0ya15fr2c9a842799igv6kwzs1hb9rrsa0ix0b7f0snlm4jirxqy"; + }; + jar = { + sha1 = "cfa107d4db0c11c11f445a11e768adf61c72ce06"; + sha256 = "0ahm0ks11x14yxzakpwbpbr8kq7j8dfxm4qbhqlk92d39sx7rmzw"; + }; + }; + "https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.2.1/gradle-3.2.1" = + { + host = repositories.google; + path = + "com/android/tools/build/gradle/3.2.1/gradle-3.2.1"; + type = "jar"; + pom = { + sha1 = "15d3336376c1847b8c51a1d398599eb7f4aa68c4"; + sha256 = "1jyqnv2s80dc41z0y13sva7pnsn44qx2bbqyj1s66q0m4r8jn1if"; + }; + jar = { + sha1 = "1ce0d907aa7805e19f553807b9bbdc9bb9841dbf"; + sha256 = "0z6cimd0lbpm6y278qg8p1nj826ncxm37nj8931j21814dw1z2hh"; + }; + }; + "https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.3.1/gradle-3.3.1" = + { + host = repositories.google; + path = + "com/android/tools/build/gradle/3.3.1/gradle-3.3.1"; + type = "jar"; + pom = { + sha1 = "1769370bffda87132eb79580bf54ccb9eb339020"; + sha256 = "0z7z83253wq5h0aqc4nrmr0i4san6i21gapzwlmpl1rsfjksvs7m"; + }; + jar = { + sha1 = "7d642f14aa35443dd7aeecd0600c17da37d3bccc"; + sha256 = "1g8ivii0sc0a3a67nvgl0552sw084hpyfs2ihsp9ppriqnmrjr7m"; + }; + }; + "https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.5.3/gradle-3.5.3" = + { + host = repositories.google; + path = + "com/android/tools/build/gradle/3.5.3/gradle-3.5.3"; + type = "jar"; + pom = { + sha1 = "6bfb2b4c34c37c4f2addcb6d99db19fa7a1a5810"; + sha256 = "1lk5iqchhnbwnjpnwxziihp0gzid87crz2i6fx0xanb6szg45hwk"; + }; + jar = { + sha1 = "12e36e5f81cc2face28e0c14cb98941d773cae6a"; + sha256 = "045rv08bippjmcp8cmf257s5p04grndh0i3crylrrf1rsgnksab7"; + }; + }; "https://dl.google.com/dl/android/maven2/com/android/tools/build/jetifier/jetifier-core/1.0.0-alpha10/jetifier-core-1.0.0-alpha10" = { host = repositories.google; @@ -2723,51 +2723,6 @@ in { sha256 = "1l1k63wsxzynvp7qq196n59xjp25l68q5yvshb9qpfvvnx85mdgz"; }; }; - "https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/26.0.0/lint-26.0.0" = - { - host = repositories.google; - path = - "com/android/tools/lint/lint/26.0.0/lint-26.0.0"; - type = "jar"; - pom = { - sha1 = "c3b178af06d72d16de1b0e6546026c6ef80d6f09"; - sha256 = "1n0z0ky9v8qg03k0s7rahb4zi9q6rpl3jr91yzwmv5lp1yfq3h94"; - }; - jar = { - sha1 = "6c58c8b0066addaaffd174b78d701948b819cf23"; - sha256 = "07ywh5pg74sw1p60g8wwcdv82azd56h11161r4dzalz300l9g6ll"; - }; - }; - "https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/26.0.1/lint-26.0.1" = - { - host = repositories.google; - path = - "com/android/tools/lint/lint/26.0.1/lint-26.0.1"; - type = "jar"; - pom = { - sha1 = "fbca22e39c4f0b04feec26b3ac78622bf39ae6d2"; - sha256 = "1cyrkkpy9v8nndwlnz77sz21fk40i30xav5xdxzgcqdvgs7l9h8k"; - }; - jar = { - sha1 = "541bfb082a95a3b55d0158d69b067f1d7c623122"; - sha256 = "0h1fz04y6jcz11mjpn6vj4lghlc09y3j4gi3p4nbvdigi8argcdf"; - }; - }; - "https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/26.5.3/lint-26.5.3" = - { - host = repositories.google; - path = - "com/android/tools/lint/lint/26.5.3/lint-26.5.3"; - type = "jar"; - pom = { - sha1 = "a3772c408036527f93fef6c403859c1c50690b78"; - sha256 = "0n793sp2hri5lvc55dvrqk67xfh4v1g5rks54nfqn54818p315y7"; - }; - jar = { - sha1 = "dcab165c490bacee7552b10b1c6f6fab51d990ed"; - sha256 = "19bxf4mazs6cnaavimdyd1m4j2qgsx45bxnk8hf8fq9zlc6anihp"; - }; - }; "https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-api/26.0.0/lint-api-26.0.0" = { host = repositories.google; @@ -2858,21 +2813,6 @@ in { sha256 = "0y47cs0zz29scggq09nznypn6kjq1qhdpi4nbl7prqjxgllj2d54"; }; }; - "https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle/26.5.3/lint-gradle-26.5.3" = - { - host = repositories.google; - path = - "com/android/tools/lint/lint-gradle/26.5.3/lint-gradle-26.5.3"; - type = "jar"; - pom = { - sha1 = "e14684e372c0b76a413ff6bddcbcfecd5a807836"; - sha256 = "1mfa9sgm7qvx940i35dwk3jj738fra5122vr0ypmg9005dy6b4l4"; - }; - jar = { - sha1 = "777708602df184acc2f20a337ea887fa718d3f4e"; - sha256 = "1phmimymkss5jk8rfd0crskn2r11miq1r4h5dfpa8csyw6vrvhsm"; - }; - }; "https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle-api/26.2.1/lint-gradle-api-26.2.1" = { host = repositories.google; @@ -2918,6 +2858,66 @@ in { sha256 = "1i0cqril34xsh8lgjg0p3rbh0xl9dlg4krwwqf8najsqrbwj857v"; }; }; + "https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle/26.5.3/lint-gradle-26.5.3" = + { + host = repositories.google; + path = + "com/android/tools/lint/lint-gradle/26.5.3/lint-gradle-26.5.3"; + type = "jar"; + pom = { + sha1 = "e14684e372c0b76a413ff6bddcbcfecd5a807836"; + sha256 = "1mfa9sgm7qvx940i35dwk3jj738fra5122vr0ypmg9005dy6b4l4"; + }; + jar = { + sha1 = "777708602df184acc2f20a337ea887fa718d3f4e"; + sha256 = "1phmimymkss5jk8rfd0crskn2r11miq1r4h5dfpa8csyw6vrvhsm"; + }; + }; + "https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/26.0.0/lint-26.0.0" = + { + host = repositories.google; + path = + "com/android/tools/lint/lint/26.0.0/lint-26.0.0"; + type = "jar"; + pom = { + sha1 = "c3b178af06d72d16de1b0e6546026c6ef80d6f09"; + sha256 = "1n0z0ky9v8qg03k0s7rahb4zi9q6rpl3jr91yzwmv5lp1yfq3h94"; + }; + jar = { + sha1 = "6c58c8b0066addaaffd174b78d701948b819cf23"; + sha256 = "07ywh5pg74sw1p60g8wwcdv82azd56h11161r4dzalz300l9g6ll"; + }; + }; + "https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/26.0.1/lint-26.0.1" = + { + host = repositories.google; + path = + "com/android/tools/lint/lint/26.0.1/lint-26.0.1"; + type = "jar"; + pom = { + sha1 = "fbca22e39c4f0b04feec26b3ac78622bf39ae6d2"; + sha256 = "1cyrkkpy9v8nndwlnz77sz21fk40i30xav5xdxzgcqdvgs7l9h8k"; + }; + jar = { + sha1 = "541bfb082a95a3b55d0158d69b067f1d7c623122"; + sha256 = "0h1fz04y6jcz11mjpn6vj4lghlc09y3j4gi3p4nbvdigi8argcdf"; + }; + }; + "https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/26.5.3/lint-26.5.3" = + { + host = repositories.google; + path = + "com/android/tools/lint/lint/26.5.3/lint-26.5.3"; + type = "jar"; + pom = { + sha1 = "a3772c408036527f93fef6c403859c1c50690b78"; + sha256 = "0n793sp2hri5lvc55dvrqk67xfh4v1g5rks54nfqn54818p315y7"; + }; + jar = { + sha1 = "dcab165c490bacee7552b10b1c6f6fab51d990ed"; + sha256 = "19bxf4mazs6cnaavimdyd1m4j2qgsx45bxnk8hf8fq9zlc6anihp"; + }; + }; "https://dl.google.com/dl/android/maven2/com/android/tools/repository/26.0.0/repository-26.0.0" = { host = repositories.google; @@ -3263,21 +3263,6 @@ in { sha256 = "0dawyg2bxwpq2k509navp9qg6cqk8wsp9vlmy8a9i3fcs7c1h75k"; }; }; - "https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-vision/17.0.2/play-services-vision-17.0.2" = - { - host = repositories.google; - path = - "com/google/android/gms/play-services-vision/17.0.2/play-services-vision-17.0.2"; - type = "aar"; - pom = { - sha1 = "14847cde7015ebec0864910b2c2775dbab55aa6e"; - sha256 = "0ca4lwbjrm2mgkwn6kjxy2cbvx7fxhbzc6zw9bsn4qdvcfyyq513"; - }; - jar = { - sha1 = "9c21f12498ca761c62fcc22ac4a1efab9538fd09"; - sha256 = "01xqv2zdy2if0fm28l2kfj86dyj1adq977nvhy8v0kzscvxgv0d0"; - }; - }; "https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-vision-common/17.0.2/play-services-vision-common-17.0.2" = { host = repositories.google; @@ -3308,6 +3293,21 @@ in { sha256 = "1plc8lhiiyg2w9p53nk9mrl9qxrn4z11jsja9kjbmvssxqacrl6f"; }; }; + "https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-vision/17.0.2/play-services-vision-17.0.2" = + { + host = repositories.google; + path = + "com/google/android/gms/play-services-vision/17.0.2/play-services-vision-17.0.2"; + type = "aar"; + pom = { + sha1 = "14847cde7015ebec0864910b2c2775dbab55aa6e"; + sha256 = "0ca4lwbjrm2mgkwn6kjxy2cbvx7fxhbzc6zw9bsn4qdvcfyyq513"; + }; + jar = { + sha1 = "9c21f12498ca761c62fcc22ac4a1efab9538fd09"; + sha256 = "01xqv2zdy2if0fm28l2kfj86dyj1adq977nvhy8v0kzscvxgv0d0"; + }; + }; "https://dl.google.com/dl/android/maven2/com/google/android/material/material/1.1.0/material-1.1.0" = { host = repositories.google; @@ -3338,21 +3338,6 @@ in { sha256 = "1kwvfllkiqid86rfy6nswrvp4msh43dfmkcsbwg5an7pqvabzdix"; }; }; - "https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-iid/17.0.3/firebase-iid-17.0.3" = - { - host = repositories.google; - path = - "com/google/firebase/firebase-iid/17.0.3/firebase-iid-17.0.3"; - type = "aar"; - pom = { - sha1 = "67c552bcd0eee63f1c76f95fc6635f9b1fc5daa0"; - sha256 = "151s4k7zb6dav84hlv61qd4g6af16wfk5d8s08514rqyrwrkyxil"; - }; - jar = { - sha1 = "228c141bcd3e51ffbb303761fc201ed1f7498753"; - sha256 = "1x68iqzz3hfbf1zj66nn4vm2s875l601qc05v2js3cg399va9a8d"; - }; - }; "https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-iid-interop/16.0.1/firebase-iid-interop-16.0.1" = { host = repositories.google; @@ -3368,6 +3353,21 @@ in { sha256 = "0fv9g5zcw55pwjl3cq79alb320sqx14x41lj44v4iza6jcmk51ia"; }; }; + "https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-iid/17.0.3/firebase-iid-17.0.3" = + { + host = repositories.google; + path = + "com/google/firebase/firebase-iid/17.0.3/firebase-iid-17.0.3"; + type = "aar"; + pom = { + sha1 = "67c552bcd0eee63f1c76f95fc6635f9b1fc5daa0"; + sha256 = "151s4k7zb6dav84hlv61qd4g6af16wfk5d8s08514rqyrwrkyxil"; + }; + jar = { + sha1 = "228c141bcd3e51ffbb303761fc201ed1f7498753"; + sha256 = "1x68iqzz3hfbf1zj66nn4vm2s875l601qc05v2js3cg399va9a8d"; + }; + }; "https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-ml-common/17.0.0/firebase-ml-common-17.0.0" = { host = repositories.google; @@ -3383,21 +3383,6 @@ in { sha256 = "0aakwxcmrzcq072mykqshyak6a9q0qaxncbc24djsj9qian5c1b1"; }; }; - "https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-ml-vision/19.0.3/firebase-ml-vision-19.0.3" = - { - host = repositories.google; - path = - "com/google/firebase/firebase-ml-vision/19.0.3/firebase-ml-vision-19.0.3"; - type = "aar"; - pom = { - sha1 = "8ee670031b99c6c94194802ac6fbe03837e55942"; - sha256 = "0mispjmcxcvxg8vzaz5jl3lmr7i176k7n7b74xpbs0h3gxyf3vnn"; - }; - jar = { - sha1 = "53dffc1401dc7d4e5e6c87a6de7ce0984d1274b1"; - sha256 = "1ilcsaxm054bb41mm5rgrnx6yhs9w97im6vbbnlkz31xa4b52k8z"; - }; - }; "https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-ml-vision-face-model/17.0.2/firebase-ml-vision-face-model-17.0.2" = { host = repositories.google; @@ -3413,6 +3398,21 @@ in { sha256 = "1y6lbp06fa9c3y86ndh1i6p1fx7s53zfvfyv2cmay5l3myjcjw9j"; }; }; + "https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-ml-vision/19.0.3/firebase-ml-vision-19.0.3" = + { + host = repositories.google; + path = + "com/google/firebase/firebase-ml-vision/19.0.3/firebase-ml-vision-19.0.3"; + type = "aar"; + pom = { + sha1 = "8ee670031b99c6c94194802ac6fbe03837e55942"; + sha256 = "0mispjmcxcvxg8vzaz5jl3lmr7i176k7n7b74xpbs0h3gxyf3vnn"; + }; + jar = { + sha1 = "53dffc1401dc7d4e5e6c87a6de7ce0984d1274b1"; + sha256 = "1ilcsaxm054bb41mm5rgrnx6yhs9w97im6vbbnlkz31xa4b52k8z"; + }; + }; "https://jcenter.bintray.com/com/adobe/xmp/xmpcore/5.1.3/xmpcore-5.1.3" = { host = repositories.jcenter; @@ -3623,66 +3623,6 @@ in { sha256 = "01mr9q7hg91rcbvn7kqz0g6cbm0krra76kiswf7s0jv94frjh5xz"; }; }; - "https://jcenter.bintray.com/com/android/tools/build/builder/1.1.3/builder-1.1.3" = - { - host = repositories.jcenter; - path = - "com/android/tools/build/builder/1.1.3/builder-1.1.3"; - type = "jar"; - pom = { - sha1 = "5106e4e65ebd5ffeadf245c4c41da76938cd24bf"; - sha256 = "1zk2hh69xsk9gx01lcbpvza0if83wx8y626g5xlwqp6fwzmisv56"; - }; - jar = { - sha1 = "44e9cc678b260278b39349f7f13c305d68d17c8c"; - sha256 = "0kxdvscdyail6ykcp07hnd2sw5kikz4cq83vdafqqmycbh4wfkhl"; - }; - }; - "https://jcenter.bintray.com/com/android/tools/build/builder/1.3.1/builder-1.3.1" = - { - host = repositories.jcenter; - path = - "com/android/tools/build/builder/1.3.1/builder-1.3.1"; - type = "jar"; - pom = { - sha1 = "dae3278eebf0589048e229b0142fcca0799bc170"; - sha256 = "0d3h8z83a8pr8kcj0r4ar0w49s1gyg8s6k1k6j5sfghza4s7amkp"; - }; - jar = { - sha1 = "83e6307a43477f2a5ff0b5b654b131425c3dcbc5"; - sha256 = "1h1dc7nx2hfz6rw0si0k3hfjcwf26j7016d6vfxdrabavn27hwx7"; - }; - }; - "https://jcenter.bintray.com/com/android/tools/build/builder/1.5.0/builder-1.5.0" = - { - host = repositories.jcenter; - path = - "com/android/tools/build/builder/1.5.0/builder-1.5.0"; - type = "jar"; - pom = { - sha1 = "9ebf618447bc810b57feb2fd4635b556826696cb"; - sha256 = "1q7ad0rraq0k3n3n1ac037qbwl6i62x51zvr2jhp369h9wh8br5j"; - }; - jar = { - sha1 = "1dcd59f6f3c90b2a8bc7156d091ad1b87a41beed"; - sha256 = "03kcavz74wk8wvk2g4a4l42sj7nifg17nsacsrkgpnr82fz573dp"; - }; - }; - "https://jcenter.bintray.com/com/android/tools/build/builder/2.2.3/builder-2.2.3" = - { - host = repositories.jcenter; - path = - "com/android/tools/build/builder/2.2.3/builder-2.2.3"; - type = "jar"; - pom = { - sha1 = "92c46a19c24188825fb0517cd6dedac7aabea70d"; - sha256 = "0838z1iwk5kjh7sa4mycj38cc1d38vzpw5kwxhwrhag148frdmf1"; - }; - jar = { - sha1 = "13e7339544e824a3a5f8ecff42173c013791578b"; - sha256 = "026kxz8lf59k1vkd9da3vcn41rzcrgwdff0ai88j58jsg1p5k6x6"; - }; - }; "https://jcenter.bintray.com/com/android/tools/build/builder-model/1.1.3/builder-model-1.1.3" = { host = repositories.jcenter; @@ -3803,64 +3743,64 @@ in { sha256 = "17p19jn26wbdcn4dhjpcn4nrg0f9240kg2xyffml6rdrvkwccr7p"; }; }; - "https://jcenter.bintray.com/com/android/tools/build/gradle/1.1.3/gradle-1.1.3" = + "https://jcenter.bintray.com/com/android/tools/build/builder/1.1.3/builder-1.1.3" = { host = repositories.jcenter; path = - "com/android/tools/build/gradle/1.1.3/gradle-1.1.3"; + "com/android/tools/build/builder/1.1.3/builder-1.1.3"; type = "jar"; pom = { - sha1 = "4af09990348139fa57d4a3e92a2285544b0d4b7b"; - sha256 = "1yhrjnnm6mpqi76fknbc6f68n14ls8sc6gchnmx3hhacnhl29swm"; + sha1 = "5106e4e65ebd5ffeadf245c4c41da76938cd24bf"; + sha256 = "1zk2hh69xsk9gx01lcbpvza0if83wx8y626g5xlwqp6fwzmisv56"; }; jar = { - sha1 = "c6f66d30006cebbaf8c1c7f8675e955223bf64e6"; - sha256 = "1rpa2plnz2znkszgg77fsm7zmcjiv77kh95r1s8x9nynf5ys0am6"; + sha1 = "44e9cc678b260278b39349f7f13c305d68d17c8c"; + sha256 = "0kxdvscdyail6ykcp07hnd2sw5kikz4cq83vdafqqmycbh4wfkhl"; }; }; - "https://jcenter.bintray.com/com/android/tools/build/gradle/1.3.1/gradle-1.3.1" = + "https://jcenter.bintray.com/com/android/tools/build/builder/1.3.1/builder-1.3.1" = { host = repositories.jcenter; path = - "com/android/tools/build/gradle/1.3.1/gradle-1.3.1"; + "com/android/tools/build/builder/1.3.1/builder-1.3.1"; type = "jar"; pom = { - sha1 = "3c8a4b12eeed68097bc8470fb80504e1243a483c"; - sha256 = "0s3kgm6q0n67n9ji3gxjr91vd1ssjj70vq03sjf0pb3vpwialamn"; + sha1 = "dae3278eebf0589048e229b0142fcca0799bc170"; + sha256 = "0d3h8z83a8pr8kcj0r4ar0w49s1gyg8s6k1k6j5sfghza4s7amkp"; }; jar = { - sha1 = "f9f3d53c24efd3b9176ec36aeed9c518954c2fd9"; - sha256 = "0p3z1yl397hm9va0i049k09cvkpkp1hwqngpicwdm3j3a6cfbbbm"; + sha1 = "83e6307a43477f2a5ff0b5b654b131425c3dcbc5"; + sha256 = "1h1dc7nx2hfz6rw0si0k3hfjcwf26j7016d6vfxdrabavn27hwx7"; }; }; - "https://jcenter.bintray.com/com/android/tools/build/gradle/1.5.0/gradle-1.5.0" = + "https://jcenter.bintray.com/com/android/tools/build/builder/1.5.0/builder-1.5.0" = { host = repositories.jcenter; path = - "com/android/tools/build/gradle/1.5.0/gradle-1.5.0"; + "com/android/tools/build/builder/1.5.0/builder-1.5.0"; type = "jar"; pom = { - sha1 = "1c3d2b23212349ffbe6479fcb04732c5cddaf98b"; - sha256 = "1lfyn5mpv1iyfb0kff869hp2dvpf45y28v1lylva6im1nk9wja1s"; + sha1 = "9ebf618447bc810b57feb2fd4635b556826696cb"; + sha256 = "1q7ad0rraq0k3n3n1ac037qbwl6i62x51zvr2jhp369h9wh8br5j"; }; jar = { - sha1 = "ca6476d93e374e70d0b7ca45ddc86151da840aa6"; - sha256 = "0yq6kw511hrcdr0383ar0lxjr0r247m10j1902qs3y5k15kmp8fd"; + sha1 = "1dcd59f6f3c90b2a8bc7156d091ad1b87a41beed"; + sha256 = "03kcavz74wk8wvk2g4a4l42sj7nifg17nsacsrkgpnr82fz573dp"; }; }; - "https://jcenter.bintray.com/com/android/tools/build/gradle/2.2.3/gradle-2.2.3" = + "https://jcenter.bintray.com/com/android/tools/build/builder/2.2.3/builder-2.2.3" = { host = repositories.jcenter; path = - "com/android/tools/build/gradle/2.2.3/gradle-2.2.3"; + "com/android/tools/build/builder/2.2.3/builder-2.2.3"; type = "jar"; pom = { - sha1 = "88b4934c958cfe74ff5559c1a33707a562af59d2"; - sha256 = "0n923gbykymnya9jlyfvwbqhjdi0dy18yhvazvh6jmx5rmwpn5kw"; + sha1 = "92c46a19c24188825fb0517cd6dedac7aabea70d"; + sha256 = "0838z1iwk5kjh7sa4mycj38cc1d38vzpw5kwxhwrhag148frdmf1"; }; jar = { - sha1 = "7b8f79621d95e3ce1e95c0852db14d9d7e1d1951"; - sha256 = "1f5bmkgd54sgs4nma6vqmgvp2gnran8q58fpr8mbyr30jnpcvycl"; + sha1 = "13e7339544e824a3a5f8ecff42173c013791578b"; + sha256 = "026kxz8lf59k1vkd9da3vcn41rzcrgwdff0ai88j58jsg1p5k6x6"; }; }; "https://jcenter.bintray.com/com/android/tools/build/gradle-api/2.2.3/gradle-api-2.2.3" = @@ -3938,6 +3878,66 @@ in { sha256 = "107pwwxddwb63jp2lvz4lhggh48c2ycaahry85vsmiim696fyl9w"; }; }; + "https://jcenter.bintray.com/com/android/tools/build/gradle/1.1.3/gradle-1.1.3" = + { + host = repositories.jcenter; + path = + "com/android/tools/build/gradle/1.1.3/gradle-1.1.3"; + type = "jar"; + pom = { + sha1 = "4af09990348139fa57d4a3e92a2285544b0d4b7b"; + sha256 = "1yhrjnnm6mpqi76fknbc6f68n14ls8sc6gchnmx3hhacnhl29swm"; + }; + jar = { + sha1 = "c6f66d30006cebbaf8c1c7f8675e955223bf64e6"; + sha256 = "1rpa2plnz2znkszgg77fsm7zmcjiv77kh95r1s8x9nynf5ys0am6"; + }; + }; + "https://jcenter.bintray.com/com/android/tools/build/gradle/1.3.1/gradle-1.3.1" = + { + host = repositories.jcenter; + path = + "com/android/tools/build/gradle/1.3.1/gradle-1.3.1"; + type = "jar"; + pom = { + sha1 = "3c8a4b12eeed68097bc8470fb80504e1243a483c"; + sha256 = "0s3kgm6q0n67n9ji3gxjr91vd1ssjj70vq03sjf0pb3vpwialamn"; + }; + jar = { + sha1 = "f9f3d53c24efd3b9176ec36aeed9c518954c2fd9"; + sha256 = "0p3z1yl397hm9va0i049k09cvkpkp1hwqngpicwdm3j3a6cfbbbm"; + }; + }; + "https://jcenter.bintray.com/com/android/tools/build/gradle/1.5.0/gradle-1.5.0" = + { + host = repositories.jcenter; + path = + "com/android/tools/build/gradle/1.5.0/gradle-1.5.0"; + type = "jar"; + pom = { + sha1 = "1c3d2b23212349ffbe6479fcb04732c5cddaf98b"; + sha256 = "1lfyn5mpv1iyfb0kff869hp2dvpf45y28v1lylva6im1nk9wja1s"; + }; + jar = { + sha1 = "ca6476d93e374e70d0b7ca45ddc86151da840aa6"; + sha256 = "0yq6kw511hrcdr0383ar0lxjr0r247m10j1902qs3y5k15kmp8fd"; + }; + }; + "https://jcenter.bintray.com/com/android/tools/build/gradle/2.2.3/gradle-2.2.3" = + { + host = repositories.jcenter; + path = + "com/android/tools/build/gradle/2.2.3/gradle-2.2.3"; + type = "jar"; + pom = { + sha1 = "88b4934c958cfe74ff5559c1a33707a562af59d2"; + sha256 = "0n923gbykymnya9jlyfvwbqhjdi0dy18yhvazvh6jmx5rmwpn5kw"; + }; + jar = { + sha1 = "7b8f79621d95e3ce1e95c0852db14d9d7e1d1951"; + sha256 = "1f5bmkgd54sgs4nma6vqmgvp2gnran8q58fpr8mbyr30jnpcvycl"; + }; + }; "https://jcenter.bintray.com/com/android/tools/build/manifest-merger/24.1.3/manifest-merger-24.1.3" = { host = repositories.jcenter; @@ -4343,66 +4343,6 @@ in { sha256 = "1a63n18l7fnmhydavmwyqxs1qjjvczzvngdc4rn3mqs3ni44jnv5"; }; }; - "https://jcenter.bintray.com/com/android/tools/lint/lint/24.1.3/lint-24.1.3" = - { - host = repositories.jcenter; - path = - "com/android/tools/lint/lint/24.1.3/lint-24.1.3"; - type = "jar"; - pom = { - sha1 = "2ce3cc74bd843616dda1d84a5bc7bfdc8fbae54f"; - sha256 = "1qbdmj9lq3pg93cwfg3fi6fbsrqvwirg7zvv4hdk5zfx755fqwas"; - }; - jar = { - sha1 = "7f120107f7cce494650581e345070818713eb433"; - sha256 = "1rknkfg0vbl6wxdfkqhrqs42xhhwrkwsb5i9ng429l3bizkafv08"; - }; - }; - "https://jcenter.bintray.com/com/android/tools/lint/lint/24.3.1/lint-24.3.1" = - { - host = repositories.jcenter; - path = - "com/android/tools/lint/lint/24.3.1/lint-24.3.1"; - type = "jar"; - pom = { - sha1 = "0ee9c4bf792910e6dff319f2602f1b0ca99940d6"; - sha256 = "114mjyx7kabw4xnhn4gfps8gxiyk7nmhigdnfg3kl03lbg8qf9nj"; - }; - jar = { - sha1 = "57cb2a6361f32753bee3670f072f097840219e34"; - sha256 = "1pd71803sj1zi9nji2n1s9vhx6fkwbiqp3h5wr4g0kg80fw2ifvd"; - }; - }; - "https://jcenter.bintray.com/com/android/tools/lint/lint/24.5.0/lint-24.5.0" = - { - host = repositories.jcenter; - path = - "com/android/tools/lint/lint/24.5.0/lint-24.5.0"; - type = "jar"; - pom = { - sha1 = "3759044c677888f526044f3ee25d77de19dfb4f8"; - sha256 = "0qgbh875q595zc72ka74p3dmbkrgcgcn8yc63qmvqxb4p9y7j9yb"; - }; - jar = { - sha1 = "461d7d801b822cbeb7daf001924fe1c616ce9535"; - sha256 = "09ql9nn4l4v7rvl7qdww9klwaml2dazfixisf31lvs58vmd3yw1p"; - }; - }; - "https://jcenter.bintray.com/com/android/tools/lint/lint/25.2.3/lint-25.2.3" = - { - host = repositories.jcenter; - path = - "com/android/tools/lint/lint/25.2.3/lint-25.2.3"; - type = "jar"; - pom = { - sha1 = "bf57cf10a46a4b0c8307f40bf11128958a9ef2c1"; - sha256 = "078rrpxrrljlp7dlmiypc1ff81gxh56yxr76h24p3as1db3rmv11"; - }; - jar = { - sha1 = "aa03a3669f2913b9bc6f5f4fba4418f974e48cb7"; - sha256 = "0c95vndd4pq749hp4b8cg0rc2kib9a0m1ys704wpmg84pnapc3cy"; - }; - }; "https://jcenter.bintray.com/com/android/tools/lint/lint-api/24.1.3/lint-api-24.1.3" = { host = repositories.jcenter; @@ -4523,6 +4463,66 @@ in { sha256 = "1vr4l9iafpz4bdy6k4s9cmzdsbxp74dqyskdl2ccflg8vswg383s"; }; }; + "https://jcenter.bintray.com/com/android/tools/lint/lint/24.1.3/lint-24.1.3" = + { + host = repositories.jcenter; + path = + "com/android/tools/lint/lint/24.1.3/lint-24.1.3"; + type = "jar"; + pom = { + sha1 = "2ce3cc74bd843616dda1d84a5bc7bfdc8fbae54f"; + sha256 = "1qbdmj9lq3pg93cwfg3fi6fbsrqvwirg7zvv4hdk5zfx755fqwas"; + }; + jar = { + sha1 = "7f120107f7cce494650581e345070818713eb433"; + sha256 = "1rknkfg0vbl6wxdfkqhrqs42xhhwrkwsb5i9ng429l3bizkafv08"; + }; + }; + "https://jcenter.bintray.com/com/android/tools/lint/lint/24.3.1/lint-24.3.1" = + { + host = repositories.jcenter; + path = + "com/android/tools/lint/lint/24.3.1/lint-24.3.1"; + type = "jar"; + pom = { + sha1 = "0ee9c4bf792910e6dff319f2602f1b0ca99940d6"; + sha256 = "114mjyx7kabw4xnhn4gfps8gxiyk7nmhigdnfg3kl03lbg8qf9nj"; + }; + jar = { + sha1 = "57cb2a6361f32753bee3670f072f097840219e34"; + sha256 = "1pd71803sj1zi9nji2n1s9vhx6fkwbiqp3h5wr4g0kg80fw2ifvd"; + }; + }; + "https://jcenter.bintray.com/com/android/tools/lint/lint/24.5.0/lint-24.5.0" = + { + host = repositories.jcenter; + path = + "com/android/tools/lint/lint/24.5.0/lint-24.5.0"; + type = "jar"; + pom = { + sha1 = "3759044c677888f526044f3ee25d77de19dfb4f8"; + sha256 = "0qgbh875q595zc72ka74p3dmbkrgcgcn8yc63qmvqxb4p9y7j9yb"; + }; + jar = { + sha1 = "461d7d801b822cbeb7daf001924fe1c616ce9535"; + sha256 = "09ql9nn4l4v7rvl7qdww9klwaml2dazfixisf31lvs58vmd3yw1p"; + }; + }; + "https://jcenter.bintray.com/com/android/tools/lint/lint/25.2.3/lint-25.2.3" = + { + host = repositories.jcenter; + path = + "com/android/tools/lint/lint/25.2.3/lint-25.2.3"; + type = "jar"; + pom = { + sha1 = "bf57cf10a46a4b0c8307f40bf11128958a9ef2c1"; + sha256 = "078rrpxrrljlp7dlmiypc1ff81gxh56yxr76h24p3as1db3rmv11"; + }; + jar = { + sha1 = "aa03a3669f2913b9bc6f5f4fba4418f974e48cb7"; + sha256 = "0c95vndd4pq749hp4b8cg0rc2kib9a0m1ys704wpmg84pnapc3cy"; + }; + }; "https://jcenter.bintray.com/com/android/tools/repository/25.2.3/repository-25.2.3" = { host = repositories.jcenter; @@ -4688,6 +4688,66 @@ in { sha256 = "1k9nziqybmylf5jkg4wpzlms0h5vi7rdkmg50qhp5ima1y54pxl1"; }; }; + "https://jcenter.bintray.com/com/facebook/fbjni/fbjni-java-only/0.0.3/fbjni-java-only-0.0.3" = + { + host = repositories.jcenter; + path = + "com/facebook/fbjni/fbjni-java-only/0.0.3/fbjni-java-only-0.0.3"; + type = "jar"; + pom = { + sha1 = "de3576b735ff4fb2c9b60701b7c346c905c48433"; + sha256 = "1pra3yy7pig69a9dz508wxarl1g4m7rdhvyga22lh16szpvc5rsk"; + }; + jar = { + sha1 = "c4540aecb99b9ec380acef6c10bb6f700de8ac2c"; + sha256 = "1h0whgk0bj7zid7kdy4hwz5n3jxcz8wi5mycqwjsqsndvlyk3ip2"; + }; + }; + "https://jcenter.bintray.com/com/facebook/flipper/flipper-fresco-plugin/0.33.1/flipper-fresco-plugin-0.33.1" = + { + host = repositories.jcenter; + path = + "com/facebook/flipper/flipper-fresco-plugin/0.33.1/flipper-fresco-plugin-0.33.1"; + type = "aar"; + pom = { + sha1 = "ca857ea50eb255b32a5f5f50db4f8b71845c8233"; + sha256 = "0qng3kdqmgrkkqnax1d3mdvar856c815fq168c6kis48b2sxh20i"; + }; + jar = { + sha1 = "7add6696db2c4f61106a8ac084210e9c69b8a52c"; + sha256 = "10azzfy88czry1ivk288rb40g5klqkpy0v7n5k1j2bhkg7pac2w6"; + }; + }; + "https://jcenter.bintray.com/com/facebook/flipper/flipper-network-plugin/0.33.1/flipper-network-plugin-0.33.1" = + { + host = repositories.jcenter; + path = + "com/facebook/flipper/flipper-network-plugin/0.33.1/flipper-network-plugin-0.33.1"; + type = "aar"; + pom = { + sha1 = "3472d3295a65b774f582bc7b8d82cf38641614df"; + sha256 = "1ggw20hzr22c1bj5l70lp0zabf4kk7r6xwvxc6chrwn0mkm1mjsv"; + }; + jar = { + sha1 = "8a0846e672ecc4666054a2cb213060c74e20714e"; + sha256 = "06qp6a0rdj14icady2v4lqa2srg4il11y9kfdwvck9z4sfmdfrrh"; + }; + }; + "https://jcenter.bintray.com/com/facebook/flipper/flipper/0.33.1/flipper-0.33.1" = + { + host = repositories.jcenter; + path = + "com/facebook/flipper/flipper/0.33.1/flipper-0.33.1"; + type = "aar"; + pom = { + sha1 = "ac06aa3761739fe8ffab76b1898650ad1d0e2fd4"; + sha256 = "0j7i7jmhh1lj5fp2ar9jg1ry7zyvjx5yyvxyni78khgsrj9wfvgf"; + }; + jar = { + sha1 = "b873b5080b747ecb8d60dfef99eae2178d5ee604"; + sha256 = "12n21sq04m1di114hg067zrx8mn24s9vrm0s1am4isd1ry16ch4g"; + }; + }; "https://jcenter.bintray.com/com/facebook/fresco/animated-base/2.0.0/animated-base-2.0.0" = { host = repositories.jcenter; @@ -4763,6 +4823,21 @@ in { sha256 = "1535zqgjyfrks3a04g4057yw1v348c0f669g6bxy59mlvsfkd6b2"; }; }; + "https://jcenter.bintray.com/com/facebook/fresco/flipper/2.0.0/flipper-2.0.0" = + { + host = repositories.jcenter; + path = + "com/facebook/fresco/flipper/2.0.0/flipper-2.0.0"; + type = "aar"; + pom = { + sha1 = "708122c079b9ffd542ddb4f8f490cf7bedc1d8b3"; + sha256 = "0jdz059r9fs0i4b753awlpafcpij5glp9zkd8wc4iw9sx4j8mhha"; + }; + jar = { + sha1 = "1ee13ccd1b95acf72a1a71b8fa14bc2069a5ac36"; + sha256 = "01jhwsyjv6hv85i5jkwm4hjmnmazixb8z5a9fvvapc94mxhxl25x"; + }; + }; "https://jcenter.bintray.com/com/facebook/fresco/fresco/2.0.0/fresco-2.0.0" = { host = repositories.jcenter; @@ -4778,21 +4853,6 @@ in { sha256 = "0d32n8cjr3pczvd7z51j9jgdkgrnnna47l8dhf3av4mdgasps8vp"; }; }; - "https://jcenter.bintray.com/com/facebook/fresco/imagepipeline/2.0.0/imagepipeline-2.0.0" = - { - host = repositories.jcenter; - path = - "com/facebook/fresco/imagepipeline/2.0.0/imagepipeline-2.0.0"; - type = "aar"; - pom = { - sha1 = "24169782ac4accd2943d78545fefc8f4d802036f"; - sha256 = "0v0wd314xb139vczm9bxhwc4p3r6zhy31k0rzcwn9vzna725xn0p"; - }; - jar = { - sha1 = "7bc59327fb4895c465cbfeede700daf349ea56da"; - sha256 = "1njlsbngxjvyy315ks1a4i1m0zn2x2jczmqyqrsn2qpiwq2swh5y"; - }; - }; "https://jcenter.bintray.com/com/facebook/fresco/imagepipeline-base/2.0.0/imagepipeline-base-2.0.0" = { host = repositories.jcenter; @@ -4823,6 +4883,21 @@ in { sha256 = "0i70dcc7vl30fzzs7jcr2zdib0d0ykyw017nbwiv8myj52qn3x0g"; }; }; + "https://jcenter.bintray.com/com/facebook/fresco/imagepipeline/2.0.0/imagepipeline-2.0.0" = + { + host = repositories.jcenter; + path = + "com/facebook/fresco/imagepipeline/2.0.0/imagepipeline-2.0.0"; + type = "aar"; + pom = { + sha1 = "24169782ac4accd2943d78545fefc8f4d802036f"; + sha256 = "0v0wd314xb139vczm9bxhwc4p3r6zhy31k0rzcwn9vzna725xn0p"; + }; + jar = { + sha1 = "7bc59327fb4895c465cbfeede700daf349ea56da"; + sha256 = "1njlsbngxjvyy315ks1a4i1m0zn2x2jczmqyqrsn2qpiwq2swh5y"; + }; + }; "https://jcenter.bintray.com/com/facebook/fresco/nativeimagefilters/2.0.0/nativeimagefilters-2.0.0" = { host = repositories.jcenter; @@ -4853,6 +4928,21 @@ in { sha256 = "1p29c8q3s8lalviasm95x77r7j1wdgfpsgjadnxmi3shzq1nrjg7"; }; }; + "https://jcenter.bintray.com/com/facebook/fresco/stetho/2.0.0/stetho-2.0.0" = + { + host = repositories.jcenter; + path = + "com/facebook/fresco/stetho/2.0.0/stetho-2.0.0"; + type = "aar"; + pom = { + sha1 = "9dbad55dc263ce32b382aaecf97ecda4211bc5ca"; + sha256 = "1rzly0d8hhzwzmph7iqqna52fgydljz9l6nd995s5d63db0xwk8q"; + }; + jar = { + sha1 = "6973b9cfa7c65ec010960e64048707ff97ce9770"; + sha256 = "1jd3a8jbxz7vz12l4yxrvsmrzlh6aa607af6qsvsgn65bj0crs50"; + }; + }; "https://jcenter.bintray.com/com/facebook/infer/annotation/infer-annotation/0.11.2/infer-annotation-0.11.2" = { host = repositories.jcenter; @@ -4868,19 +4958,109 @@ in { sha256 = "02fm111rcqqcp7avlvcv53n438g0nb5paxk75c15g90k1bx34y79"; }; }; - "https://jcenter.bintray.com/com/facebook/soloader/soloader/0.6.0/soloader-0.6.0" = + "https://jcenter.bintray.com/com/facebook/soloader/annotation/0.8.0/annotation-0.8.0" = { host = repositories.jcenter; path = - "com/facebook/soloader/soloader/0.6.0/soloader-0.6.0"; + "com/facebook/soloader/annotation/0.8.0/annotation-0.8.0"; type = "aar"; pom = { - sha1 = "53cb6e74ea402df0db7b87d27b6d977e3b20d18e"; - sha256 = "17mb6v4vbb9mvs6zmwjacn244px7w4q5pnrmmymq9s3bcsivs6da"; + sha1 = "d63489687ff2981304050ca7a758392d0cdf8247"; + sha256 = "18scnygf28y9zph0vfcpgh18hh5mdwqf4gcmyxpzxbcgjbydai94"; }; jar = { - sha1 = "4de8f64830aff60beb52fb27dffb2fcbe54c39df"; - sha256 = "0bnrcda0pfivhzd2x514p7qfdpkz65fwgz0jgskrkjh45175rqnc"; + sha1 = "ae6d46195467467fae746c6225f79ac41e7039e8"; + sha256 = "0sbzgvkmx351gavaxw4ij27cghhvhhdjxpcsqlbmca2q8qcwwa3s"; + }; + }; + "https://jcenter.bintray.com/com/facebook/soloader/annotation/0.8.2/annotation-0.8.2" = + { + host = repositories.jcenter; + path = + "com/facebook/soloader/annotation/0.8.2/annotation-0.8.2"; + type = "aar"; + pom = { + sha1 = "f6ca5f3e78b1e68d3c8a2f5c8df24c01385ee4bb"; + sha256 = "06x2bf6yfgi21m127wvk48sm1pjips3jw8c5gpjssswlsq3ql8qd"; + }; + jar = { + sha1 = "ae6d46195467467fae746c6225f79ac41e7039e8"; + sha256 = "0sbzgvkmx351gavaxw4ij27cghhvhhdjxpcsqlbmca2q8qcwwa3s"; + }; + }; + "https://jcenter.bintray.com/com/facebook/soloader/nativeloader/0.8.0/nativeloader-0.8.0" = + { + host = repositories.jcenter; + path = + "com/facebook/soloader/nativeloader/0.8.0/nativeloader-0.8.0"; + type = "jar"; + pom = { + sha1 = "d4a89469dc5d7e0d67e1f4af6e953b29be0d712e"; + sha256 = "1s3l0f4lcl10r2mzxiqc6laqxjjwzk7kzcq4867jgciw2dnnpq3v"; + }; + jar = { + sha1 = "50524ca901bccb0540204b8166abb23557809050"; + sha256 = "1zx8535ym084hiba4bx3yk6d4vbalyry14zwlfkxjr37s09pp1pj"; + }; + }; + "https://jcenter.bintray.com/com/facebook/soloader/nativeloader/0.8.2/nativeloader-0.8.2" = + { + host = repositories.jcenter; + path = + "com/facebook/soloader/nativeloader/0.8.2/nativeloader-0.8.2"; + type = "jar"; + pom = { + sha1 = "7209961d42aa840eb60b5c00ca623553b267b5ba"; + sha256 = "01mkkys2xcmglksl0cb5vf87rx8bkiywi01amm38rd15dl6pgx5g"; + }; + jar = { + sha1 = "86cb3da9384707034355ac1e84e9a8cf6de80f7c"; + sha256 = "1kd6ipfaph30qn54mbkmjcaqicnp6r2ixpyncqy8p6yqvy6qyzr8"; + }; + }; + "https://jcenter.bintray.com/com/facebook/soloader/soloader/0.8.0/soloader-0.8.0" = + { + host = repositories.jcenter; + path = + "com/facebook/soloader/soloader/0.8.0/soloader-0.8.0"; + type = "aar"; + pom = { + sha1 = "d5246c18791ac2f5a8ab5928a1dcbe42ab6b9b38"; + sha256 = "1fwkidr0gj1b8g1yxlq0n74049f7qaw0gqbbzcpa2hn0kim0x5s6"; + }; + jar = { + sha1 = "71378622ece36680b9bab7863c3d0259b442305e"; + sha256 = "101vnhmhgrvdfnhiahsbp1yq96y2c7v2hck0kpglgxy35iq1q1ia"; + }; + }; + "https://jcenter.bintray.com/com/facebook/soloader/soloader/0.8.2/soloader-0.8.2" = + { + host = repositories.jcenter; + path = + "com/facebook/soloader/soloader/0.8.2/soloader-0.8.2"; + type = "aar"; + pom = { + sha1 = "ed92ecd4b7f4ba68e2042694d2e1c44eb71b8cf2"; + sha256 = "03mlzkiy7dm0f50dpvm1sz7px7iivjkbm74r56mks34hhy3m5wh1"; + }; + jar = { + sha1 = "8575dbdec464207a19273bd3c09d758a08fa655c"; + sha256 = "05vv6fqngfgq2sppn86csyfrx93igjf444n0nbhx2lkhcvxpv4wn"; + }; + }; + "https://jcenter.bintray.com/com/facebook/yoga/proguard-annotations/1.14.1/proguard-annotations-1.14.1" = + { + host = repositories.jcenter; + path = + "com/facebook/yoga/proguard-annotations/1.14.1/proguard-annotations-1.14.1"; + type = "jar"; + pom = { + sha1 = "59f786ef9485f034cfed3f0c9cd7bdee8155314b"; + sha256 = "1c11zbpsmfyaklgjc5r401li1155jb89f9mx53hb84zp4zd28nqk"; + }; + jar = { + sha1 = "3d015bb821875657ac8e4b808a223aae339defb2"; + sha256 = "02czcs5blwl6l60ka82h5k355ib4szfrawg7s8dnba0jrdm8gs4z"; }; }; "https://jcenter.bintray.com/com/google/auto/value/auto-value/1.5.2/auto-value-1.5.2" = @@ -4988,36 +5168,6 @@ in { sha256 = "10bxiss29jdkyvdap3p97dvxr6xicvicz0ynvdp9yp1nzi4h2fi3"; }; }; - "https://jcenter.bintray.com/com/googlecode/json-simple/json-simple/1.1/json-simple-1.1" = - { - host = repositories.jcenter; - path = - "com/googlecode/json-simple/json-simple/1.1/json-simple-1.1"; - type = "jar"; - pom = { - sha1 = "a2c3a73d894b86ac979b88be6537b284eb4bf916"; - sha256 = "1avxrxknd1xy8ahq67rrkh8jlkb5hwsciljzvdvd9v8gzbh9pa27"; - }; - jar = { - sha1 = "5e303a03d04e6788dddfa3655272580ae0fc13bb"; - sha256 = "0fb49wk04rl324qclzb1cpp715vjzijr8iwsgzs0ixs9qvs8951d"; - }; - }; - "https://jcenter.bintray.com/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3" = - { - host = repositories.jcenter; - path = - "com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3"; - type = "jar"; - pom = { - sha1 = "be6da8320adedafc712d645ddaaad00357b55408"; - sha256 = "0sq85z68pcf87j9vcis5garlxl325lz0q01skcm69kf76ndkjikq"; - }; - jar = { - sha1 = "cd49678784c46aa8789c060538e0154013bb421b"; - sha256 = "0xjakmvlyl4i2lwb1prc19vx0mbbgpb6rhlxwx8vdf4kc68gwyvm"; - }; - }; "https://jcenter.bintray.com/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18" = { host = repositories.jcenter; @@ -5213,6 +5363,21 @@ in { sha256 = "1pbx4lf1y24bgdfaf9bw9p0abnm7mlxhnlc7jfpk1af0swl8x0n4"; }; }; + "https://jcenter.bintray.com/com/google/protobuf/protobuf-java-util/3.4.0/protobuf-java-util-3.4.0" = + { + host = repositories.jcenter; + path = + "com/google/protobuf/protobuf-java-util/3.4.0/protobuf-java-util-3.4.0"; + type = "jar"; + pom = { + sha1 = "72b93eb17c1d5337ec0f4497313a14b315b9e76c"; + sha256 = "1f1wvrr4lpp0mrbf3l5r3gcfbpxznvhnm8x4faxfm87awxrk1i49"; + }; + jar = { + sha1 = "96aba8ab71c16018c6adf66771ce15c6491bc0fe"; + sha256 = "0ll0lslidkl0hp78yf48y4a7b8swqyylzckh1wrz4p5ibazf12a1"; + }; + }; "https://jcenter.bintray.com/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0" = { host = repositories.jcenter; @@ -5258,21 +5423,6 @@ in { sha256 = "194hchg28sckqycfg4c3cm41bdxcm3rsy36sk08insj569mydryw"; }; }; - "https://jcenter.bintray.com/com/google/protobuf/protobuf-java-util/3.4.0/protobuf-java-util-3.4.0" = - { - host = repositories.jcenter; - path = - "com/google/protobuf/protobuf-java-util/3.4.0/protobuf-java-util-3.4.0"; - type = "jar"; - pom = { - sha1 = "72b93eb17c1d5337ec0f4497313a14b315b9e76c"; - sha256 = "1f1wvrr4lpp0mrbf3l5r3gcfbpxznvhnm8x4faxfm87awxrk1i49"; - }; - jar = { - sha1 = "96aba8ab71c16018c6adf66771ce15c6491bc0fe"; - sha256 = "0ll0lslidkl0hp78yf48y4a7b8swqyylzckh1wrz4p5ibazf12a1"; - }; - }; "https://jcenter.bintray.com/com/google/zxing/core/3.3.3/core-3.3.3" = { host = repositories.jcenter; @@ -5288,6 +5438,36 @@ in { sha256 = "1685yb9xdh13bi697km6n0q2jp95svi22rih541wwjryjhggh82q"; }; }; + "https://jcenter.bintray.com/com/googlecode/json-simple/json-simple/1.1/json-simple-1.1" = + { + host = repositories.jcenter; + path = + "com/googlecode/json-simple/json-simple/1.1/json-simple-1.1"; + type = "jar"; + pom = { + sha1 = "a2c3a73d894b86ac979b88be6537b284eb4bf916"; + sha256 = "1avxrxknd1xy8ahq67rrkh8jlkb5hwsciljzvdvd9v8gzbh9pa27"; + }; + jar = { + sha1 = "5e303a03d04e6788dddfa3655272580ae0fc13bb"; + sha256 = "0fb49wk04rl324qclzb1cpp715vjzijr8iwsgzs0ixs9qvs8951d"; + }; + }; + "https://jcenter.bintray.com/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3" = + { + host = repositories.jcenter; + path = + "com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3"; + type = "jar"; + pom = { + sha1 = "be6da8320adedafc712d645ddaaad00357b55408"; + sha256 = "0sq85z68pcf87j9vcis5garlxl325lz0q01skcm69kf76ndkjikq"; + }; + jar = { + sha1 = "cd49678784c46aa8789c060538e0154013bb421b"; + sha256 = "0xjakmvlyl4i2lwb1prc19vx0mbbgpb6rhlxwx8vdf4kc68gwyvm"; + }; + }; "https://jcenter.bintray.com/com/intellij/annotations/12.0/annotations-12.0" = { host = repositories.jcenter; @@ -5303,6 +5483,216 @@ in { sha256 = "0vgdfmihsggnbmcmrspf9ldll3knk5ayb43zc4pzx0709fqi7azq"; }; }; + "https://jcenter.bintray.com/com/parse/bolts/bolts-tasks/1.4.0/bolts-tasks-1.4.0" = + { + host = repositories.jcenter; + path = + "com/parse/bolts/bolts-tasks/1.4.0/bolts-tasks-1.4.0"; + type = "jar"; + pom = { + sha1 = "db60026ffef8aae5e2bac952e74a106a784ea5ae"; + sha256 = "1q0jhg5wv0gdii0aq1vfwy7ymzvsrsvhgv6q1pjvkhb22630gc4c"; + }; + jar = { + sha1 = "d85884acf6810a3bbbecb587f239005cbc846dc4"; + sha256 = "1qnfmkd460j460f57dcmkdhymjdjglqw4qmczgr9sfl5r8z1xicv"; + }; + }; + "https://jcenter.bintray.com/com/squareup/javapoet/1.8.0/javapoet-1.8.0" = + { + host = repositories.jcenter; + path = + "com/squareup/javapoet/1.8.0/javapoet-1.8.0"; + type = "jar"; + pom = { + sha1 = "60f3a32fabfe6c4b7572d8e2d94010ea44af4843"; + sha256 = "0ixnvd7bd5cn3hm9h41y87cx29nr6minbxqqshn5nwwyy500yxmk"; + }; + jar = { + sha1 = "e858dc62ef484048540d27d36f3ec2177a3fa9b1"; + sha256 = "12fpvxgkhy92cmnh3wkai9jgg2g5zg7i3yhhdwcjid3v0a98q44f"; + }; + }; + "https://jcenter.bintray.com/com/squareup/javawriter/2.5.0/javawriter-2.5.0" = + { + host = repositories.jcenter; + path = + "com/squareup/javawriter/2.5.0/javawriter-2.5.0"; + type = "jar"; + pom = { + sha1 = "d932f2476f65ecd95dcd6fd8c568b3f466f6a482"; + sha256 = "1c57k79i2dcyjm63k8xjjr1ck3i0i4hkwsa7k72y1xbc27qxgaz1"; + }; + jar = { + sha1 = "81241ff7078ef14f42ea2a8995fa09c096256e6b"; + sha256 = "1w4p04j3z05k7ihb69pid3j4h4q8k0ipksp7rz9rgam01vxhkyzw"; + }; + }; + "https://jcenter.bintray.com/com/squareup/okhttp3/okhttp-urlconnection/3.12.1/okhttp-urlconnection-3.12.1" = + { + host = repositories.jcenter; + path = + "com/squareup/okhttp3/okhttp-urlconnection/3.12.1/okhttp-urlconnection-3.12.1"; + type = "jar"; + pom = { + sha1 = "3f28e0830ddf8977e67961c8993313c257e91a32"; + sha256 = "025ysyw0cj3sn1nfhrpaf06n38g7yv9j3z12p307ahfi28j7q79r"; + }; + jar = { + sha1 = "f689d3657c3f1fdbde4877bcddc668491a4ad46f"; + sha256 = "0np5vmg40961mwk0664yy64m4rhrwcs4fxayc0biz7fs2s5i7rrs"; + }; + }; + "https://jcenter.bintray.com/com/squareup/okhttp3/okhttp/3.12.1/okhttp-3.12.1" = + { + host = repositories.jcenter; + path = + "com/squareup/okhttp3/okhttp/3.12.1/okhttp-3.12.1"; + type = "jar"; + pom = { + sha1 = "975e0606bfccdffb6dcf5ccb6a823f70be6be18d"; + sha256 = "19lrms9hq7q86rd8kbahwdzxrmw25h3vxybnfnnsivm84jqpc1ll"; + }; + jar = { + sha1 = "dc6d02e4e68514eff5631963e28ca7742ac69efe"; + sha256 = "0ihai288y8a0bp7yvkv0mrln23w6qxyq1nmj00pp5x7alwndihq7"; + }; + }; + "https://jcenter.bintray.com/com/squareup/okhttp3/okhttp/3.14.1/okhttp-3.14.1" = + { + host = repositories.jcenter; + path = + "com/squareup/okhttp3/okhttp/3.14.1/okhttp-3.14.1"; + type = "jar"; + pom = { + sha1 = "92952bd2db127114ec7069b05317c1fe033de54b"; + sha256 = "0x2v74z227bhfl23p5vzd1b9lccmgsjgfwzm01kcfrgxxlkddabs"; + }; + jar = { + sha1 = "67612a22d4b8f33c55263b188bf5a72774d06d18"; + sha256 = "0qz5qggrvrs9pbvb30n8bm5hn1p48pjd4qfkvijalxihcn8ycsss"; + }; + }; + "https://jcenter.bintray.com/com/squareup/okio/okio/1.15.0/okio-1.15.0" = + { + host = repositories.jcenter; + path = + "com/squareup/okio/okio/1.15.0/okio-1.15.0"; + type = "jar"; + pom = { + sha1 = "87f1520a39a954a9aa185c7fe8f144fa7d597690"; + sha256 = "1kmzw5q3p0z6hgp0f5kyx4jjbnkwwdrv41qs0pxpbayih0a0phgi"; + }; + jar = { + sha1 = "bc28b5a964c8f5721eb58ee3f3c47a9bcbf4f4d8"; + sha256 = "1llb25k2n887b3fz4xxmpip10kv7nwil081bc0037178lwcs6gv9"; + }; + }; + "https://jcenter.bintray.com/com/squareup/okio/okio/1.17.2/okio-1.17.2" = + { + host = repositories.jcenter; + path = + "com/squareup/okio/okio/1.17.2/okio-1.17.2"; + type = "jar"; + pom = { + sha1 = "abe9c87bf8b3b4e19cabc0014b76fd633fa467a5"; + sha256 = "1w03pgj28lsb9x7g10gaky8hxvb4xsa1k99x415p2smb8dagfmyd"; + }; + jar = { + sha1 = "78c7820b205002da4d2d137f6f312bd64b3d6049"; + sha256 = "1f72kw6ap0a5rw2ng20sxdy28kb01nc6y7byqka7mi7s5wny837q"; + }; + }; + "https://jcenter.bintray.com/com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0" = + { + host = repositories.jcenter; + path = + "com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0"; + type = "jar"; + pom = { + sha1 = "bdb776ae9b888b7ad8f9f424b9e67837eae916c5"; + sha256 = "0piadm0mqh1p9747mzapw7kkvayphj1irvnvn006jk458plvcygq"; + }; + jar = { + sha1 = "bf744c1e2776ed1de3c55c8dac1057ec331ef744"; + sha256 = "1km9if90zdgjzgc3rxqfj2s0p0as2xymgk3rwwhny1fpdjqh4cwr"; + }; + }; + "https://jcenter.bintray.com/com/sun/istack/istack-commons-runtime/2.21/istack-commons-runtime-2.21" = + { + host = repositories.jcenter; + path = + "com/sun/istack/istack-commons-runtime/2.21/istack-commons-runtime-2.21"; + type = "jar"; + pom = { + sha1 = "04c234cf684a202c5c9bb7f0a198ba97e958f8f4"; + sha256 = "073dc9605ak2zns72l3mac5ynnz5k8rkyzwsbxa51l5zbxxi7rzb"; + }; + jar = { + sha1 = "c969d8f15c467f0ef7d7b04889afbe7b5d48e22f"; + sha256 = "1x2hm4dq75jg8cz4n1ac3b6gki6p5m0kk89d1qmg15bhh2h6fgn3"; + }; + }; + "https://jcenter.bintray.com/com/sun/xml/fastinfoset/FastInfoset/1.2.13/FastInfoset-1.2.13" = + { + host = repositories.jcenter; + path = + "com/sun/xml/fastinfoset/FastInfoset/1.2.13/FastInfoset-1.2.13"; + type = "jar"; + pom = { + sha1 = "bc1ac953addb710ec08dcca6465bb1f6fcfd7ee9"; + sha256 = "1lsm4vzj4n82la9bs72kvj4sgl8i2vvnjr9ym96mnjbxrw75wl5p"; + }; + jar = { + sha1 = "098f56b9354e27bd2941cc5d461344e240ae51ae"; + sha256 = "0f70phr6cysnrsbfsbmd318h81nvy5dcadqs1cy87hpk16wpv9r7"; + }; + }; + "https://jcenter.bintray.com/com/tunnelvisionlabs/antlr4-annotations/4.5/antlr4-annotations-4.5" = + { + host = repositories.jcenter; + path = + "com/tunnelvisionlabs/antlr4-annotations/4.5/antlr4-annotations-4.5"; + type = "jar"; + pom = { + sha1 = "3dfac370b3fca6f90861f3a10fd5445ca6f8cc1b"; + sha256 = "1agr98zh9c7yjji5a5i99bcbdjx2zs7jj2vzj8lk8ms7rxia2l8s"; + }; + jar = { + sha1 = "2c5996120a0ac690de575bd8ac36250e6720a6b8"; + sha256 = "1h49j3bdmlrzfznwqg20bf1xx94ba602wnd94hk40lcxfs0v8b8b"; + }; + }; + "https://jcenter.bintray.com/com/tunnelvisionlabs/antlr4-runtime/4.5/antlr4-runtime-4.5" = + { + host = repositories.jcenter; + path = + "com/tunnelvisionlabs/antlr4-runtime/4.5/antlr4-runtime-4.5"; + type = "jar"; + pom = { + sha1 = "4c01c62d899d8bd5112a182624fca9ae62d42c8e"; + sha256 = "17hpdp5821c4hf22alm4j4slv42nlifc5f5y6qlis1i01scw1bpw"; + }; + jar = { + sha1 = "5067478827a98f5ab77d9fc577903edc57af3da4"; + sha256 = "1gfp423s00i5iaflhsyw51jllm4h56r5pgkrkrpvykyis9vrcwdq"; + }; + }; + "https://jcenter.bintray.com/com/tunnelvisionlabs/antlr4/4.5/antlr4-4.5" = + { + host = repositories.jcenter; + path = + "com/tunnelvisionlabs/antlr4/4.5/antlr4-4.5"; + type = "jar"; + pom = { + sha1 = "2370f47fd57fbea37385e241dd7292bdcfbe8353"; + sha256 = "1fq2v58lf2c4hqxdm3kvpf9h3p8x9p00sjh7qfipsj04hz7r2y1z"; + }; + jar = { + sha1 = "a0e860e317147848e69ac145bc5196901a9993bf"; + sha256 = "0vlqbcihfsgvkzsczp0h6ynz7wnf2d88kvhqfbn1hibry1y7h9wh"; + }; + }; "https://jcenter.bintray.com/commons-codec/commons-codec/1.10/commons-codec-1.10" = { host = repositories.jcenter; @@ -5408,186 +5798,6 @@ in { sha256 = "0dm61zgmgjkg67kf9dyrzgpayd18r656n05kiabmc3xyl0gfmpfs"; }; }; - "https://jcenter.bintray.com/com/parse/bolts/bolts-tasks/1.4.0/bolts-tasks-1.4.0" = - { - host = repositories.jcenter; - path = - "com/parse/bolts/bolts-tasks/1.4.0/bolts-tasks-1.4.0"; - type = "jar"; - pom = { - sha1 = "db60026ffef8aae5e2bac952e74a106a784ea5ae"; - sha256 = "1q0jhg5wv0gdii0aq1vfwy7ymzvsrsvhgv6q1pjvkhb22630gc4c"; - }; - jar = { - sha1 = "d85884acf6810a3bbbecb587f239005cbc846dc4"; - sha256 = "1qnfmkd460j460f57dcmkdhymjdjglqw4qmczgr9sfl5r8z1xicv"; - }; - }; - "https://jcenter.bintray.com/com/squareup/javapoet/1.8.0/javapoet-1.8.0" = - { - host = repositories.jcenter; - path = - "com/squareup/javapoet/1.8.0/javapoet-1.8.0"; - type = "jar"; - pom = { - sha1 = "60f3a32fabfe6c4b7572d8e2d94010ea44af4843"; - sha256 = "0ixnvd7bd5cn3hm9h41y87cx29nr6minbxqqshn5nwwyy500yxmk"; - }; - jar = { - sha1 = "e858dc62ef484048540d27d36f3ec2177a3fa9b1"; - sha256 = "12fpvxgkhy92cmnh3wkai9jgg2g5zg7i3yhhdwcjid3v0a98q44f"; - }; - }; - "https://jcenter.bintray.com/com/squareup/javawriter/2.5.0/javawriter-2.5.0" = - { - host = repositories.jcenter; - path = - "com/squareup/javawriter/2.5.0/javawriter-2.5.0"; - type = "jar"; - pom = { - sha1 = "d932f2476f65ecd95dcd6fd8c568b3f466f6a482"; - sha256 = "1c57k79i2dcyjm63k8xjjr1ck3i0i4hkwsa7k72y1xbc27qxgaz1"; - }; - jar = { - sha1 = "81241ff7078ef14f42ea2a8995fa09c096256e6b"; - sha256 = "1w4p04j3z05k7ihb69pid3j4h4q8k0ipksp7rz9rgam01vxhkyzw"; - }; - }; - "https://jcenter.bintray.com/com/squareup/okhttp3/okhttp/3.12.1/okhttp-3.12.1" = - { - host = repositories.jcenter; - path = - "com/squareup/okhttp3/okhttp/3.12.1/okhttp-3.12.1"; - type = "jar"; - pom = { - sha1 = "975e0606bfccdffb6dcf5ccb6a823f70be6be18d"; - sha256 = "19lrms9hq7q86rd8kbahwdzxrmw25h3vxybnfnnsivm84jqpc1ll"; - }; - jar = { - sha1 = "dc6d02e4e68514eff5631963e28ca7742ac69efe"; - sha256 = "0ihai288y8a0bp7yvkv0mrln23w6qxyq1nmj00pp5x7alwndihq7"; - }; - }; - "https://jcenter.bintray.com/com/squareup/okhttp3/okhttp-urlconnection/3.12.1/okhttp-urlconnection-3.12.1" = - { - host = repositories.jcenter; - path = - "com/squareup/okhttp3/okhttp-urlconnection/3.12.1/okhttp-urlconnection-3.12.1"; - type = "jar"; - pom = { - sha1 = "3f28e0830ddf8977e67961c8993313c257e91a32"; - sha256 = "025ysyw0cj3sn1nfhrpaf06n38g7yv9j3z12p307ahfi28j7q79r"; - }; - jar = { - sha1 = "f689d3657c3f1fdbde4877bcddc668491a4ad46f"; - sha256 = "0np5vmg40961mwk0664yy64m4rhrwcs4fxayc0biz7fs2s5i7rrs"; - }; - }; - "https://jcenter.bintray.com/com/squareup/okio/okio/1.15.0/okio-1.15.0" = - { - host = repositories.jcenter; - path = - "com/squareup/okio/okio/1.15.0/okio-1.15.0"; - type = "jar"; - pom = { - sha1 = "87f1520a39a954a9aa185c7fe8f144fa7d597690"; - sha256 = "1kmzw5q3p0z6hgp0f5kyx4jjbnkwwdrv41qs0pxpbayih0a0phgi"; - }; - jar = { - sha1 = "bc28b5a964c8f5721eb58ee3f3c47a9bcbf4f4d8"; - sha256 = "1llb25k2n887b3fz4xxmpip10kv7nwil081bc0037178lwcs6gv9"; - }; - }; - "https://jcenter.bintray.com/com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0" = - { - host = repositories.jcenter; - path = - "com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0"; - type = "jar"; - pom = { - sha1 = "bdb776ae9b888b7ad8f9f424b9e67837eae916c5"; - sha256 = "0piadm0mqh1p9747mzapw7kkvayphj1irvnvn006jk458plvcygq"; - }; - jar = { - sha1 = "bf744c1e2776ed1de3c55c8dac1057ec331ef744"; - sha256 = "1km9if90zdgjzgc3rxqfj2s0p0as2xymgk3rwwhny1fpdjqh4cwr"; - }; - }; - "https://jcenter.bintray.com/com/sun/istack/istack-commons-runtime/2.21/istack-commons-runtime-2.21" = - { - host = repositories.jcenter; - path = - "com/sun/istack/istack-commons-runtime/2.21/istack-commons-runtime-2.21"; - type = "jar"; - pom = { - sha1 = "04c234cf684a202c5c9bb7f0a198ba97e958f8f4"; - sha256 = "073dc9605ak2zns72l3mac5ynnz5k8rkyzwsbxa51l5zbxxi7rzb"; - }; - jar = { - sha1 = "c969d8f15c467f0ef7d7b04889afbe7b5d48e22f"; - sha256 = "1x2hm4dq75jg8cz4n1ac3b6gki6p5m0kk89d1qmg15bhh2h6fgn3"; - }; - }; - "https://jcenter.bintray.com/com/sun/xml/fastinfoset/FastInfoset/1.2.13/FastInfoset-1.2.13" = - { - host = repositories.jcenter; - path = - "com/sun/xml/fastinfoset/FastInfoset/1.2.13/FastInfoset-1.2.13"; - type = "jar"; - pom = { - sha1 = "bc1ac953addb710ec08dcca6465bb1f6fcfd7ee9"; - sha256 = "1lsm4vzj4n82la9bs72kvj4sgl8i2vvnjr9ym96mnjbxrw75wl5p"; - }; - jar = { - sha1 = "098f56b9354e27bd2941cc5d461344e240ae51ae"; - sha256 = "0f70phr6cysnrsbfsbmd318h81nvy5dcadqs1cy87hpk16wpv9r7"; - }; - }; - "https://jcenter.bintray.com/com/tunnelvisionlabs/antlr4/4.5/antlr4-4.5" = - { - host = repositories.jcenter; - path = - "com/tunnelvisionlabs/antlr4/4.5/antlr4-4.5"; - type = "jar"; - pom = { - sha1 = "2370f47fd57fbea37385e241dd7292bdcfbe8353"; - sha256 = "1fq2v58lf2c4hqxdm3kvpf9h3p8x9p00sjh7qfipsj04hz7r2y1z"; - }; - jar = { - sha1 = "a0e860e317147848e69ac145bc5196901a9993bf"; - sha256 = "0vlqbcihfsgvkzsczp0h6ynz7wnf2d88kvhqfbn1hibry1y7h9wh"; - }; - }; - "https://jcenter.bintray.com/com/tunnelvisionlabs/antlr4-annotations/4.5/antlr4-annotations-4.5" = - { - host = repositories.jcenter; - path = - "com/tunnelvisionlabs/antlr4-annotations/4.5/antlr4-annotations-4.5"; - type = "jar"; - pom = { - sha1 = "3dfac370b3fca6f90861f3a10fd5445ca6f8cc1b"; - sha256 = "1agr98zh9c7yjji5a5i99bcbdjx2zs7jj2vzj8lk8ms7rxia2l8s"; - }; - jar = { - sha1 = "2c5996120a0ac690de575bd8ac36250e6720a6b8"; - sha256 = "1h49j3bdmlrzfznwqg20bf1xx94ba602wnd94hk40lcxfs0v8b8b"; - }; - }; - "https://jcenter.bintray.com/com/tunnelvisionlabs/antlr4-runtime/4.5/antlr4-runtime-4.5" = - { - host = repositories.jcenter; - path = - "com/tunnelvisionlabs/antlr4-runtime/4.5/antlr4-runtime-4.5"; - type = "jar"; - pom = { - sha1 = "4c01c62d899d8bd5112a182624fca9ae62d42c8e"; - sha256 = "17hpdp5821c4hf22alm4j4slv42nlifc5f5y6qlis1i01scw1bpw"; - }; - jar = { - sha1 = "5067478827a98f5ab77d9fc577903edc57af3da4"; - sha256 = "1gfp423s00i5iaflhsyw51jllm4h56r5pgkrkrpvykyis9vrcwdq"; - }; - }; "https://jcenter.bintray.com/de/undercouch/gradle-download-task/3.1.2/gradle-download-task-3.1.2" = { host = repositories.jcenter; @@ -5858,6 +6068,36 @@ in { sha256 = "1l5ihcxdr8ci4bcgh5bzpcfsin40fzwpiyhna88qqw6c39iy7fc2"; }; }; + "https://jcenter.bintray.com/org/antlr/ST4/4.0.8/ST4-4.0.8" = + { + host = repositories.jcenter; + path = + "org/antlr/ST4/4.0.8/ST4-4.0.8"; + type = "jar"; + pom = { + sha1 = "116663d33389525e932a4ff7adaf66eb06caf277"; + sha256 = "0z610q9vn39vf408p0110imzy08r6jgcl16llcxynx0iqzg9021w"; + }; + jar = { + sha1 = "0a1c55e974f8a94d78e2348fa6ff63f4fa1fae64"; + sha256 = "0fvszknribdgm98s5rllj1sw0l2ayvh6in1zk6sv0x4z1k2apjjq"; + }; + }; + "https://jcenter.bintray.com/org/antlr/antlr-runtime/3.5.2/antlr-runtime-3.5.2" = + { + host = repositories.jcenter; + path = + "org/antlr/antlr-runtime/3.5.2/antlr-runtime-3.5.2"; + type = "jar"; + pom = { + sha1 = "af8ae5172f0c499d932d465673c9833c8777c1dd"; + sha256 = "09bzm8h181dj9jh53j19hf89k47lgw4sb9sa2bbjpcdq1chc5aa6"; + }; + jar = { + sha1 = "cd9cd41361c155f3af0f653009dcecb08d8b4afd"; + sha256 = "0d47khwbkhvkzvk1h7hb7p6xjwnja3ijrfywrniyjf8gn7nchgyf"; + }; + }; "https://jcenter.bintray.com/org/antlr/antlr/3.5.2/antlr-3.5.2" = { host = repositories.jcenter; @@ -5888,36 +6128,6 @@ in { sha256 = "1d2g3f5pyrabib54al6bwlqpfbkxd6limycnwrs5flfzrwwyfbd3"; }; }; - "https://jcenter.bintray.com/org/antlr/antlr-runtime/3.5.2/antlr-runtime-3.5.2" = - { - host = repositories.jcenter; - path = - "org/antlr/antlr-runtime/3.5.2/antlr-runtime-3.5.2"; - type = "jar"; - pom = { - sha1 = "af8ae5172f0c499d932d465673c9833c8777c1dd"; - sha256 = "09bzm8h181dj9jh53j19hf89k47lgw4sb9sa2bbjpcdq1chc5aa6"; - }; - jar = { - sha1 = "cd9cd41361c155f3af0f653009dcecb08d8b4afd"; - sha256 = "0d47khwbkhvkzvk1h7hb7p6xjwnja3ijrfywrniyjf8gn7nchgyf"; - }; - }; - "https://jcenter.bintray.com/org/antlr/ST4/4.0.8/ST4-4.0.8" = - { - host = repositories.jcenter; - path = - "org/antlr/ST4/4.0.8/ST4-4.0.8"; - type = "jar"; - pom = { - sha1 = "116663d33389525e932a4ff7adaf66eb06caf277"; - sha256 = "0z610q9vn39vf408p0110imzy08r6jgcl16llcxynx0iqzg9021w"; - }; - jar = { - sha1 = "0a1c55e974f8a94d78e2348fa6ff63f4fa1fae64"; - sha256 = "0fvszknribdgm98s5rllj1sw0l2ayvh6in1zk6sv0x4z1k2apjjq"; - }; - }; "https://jcenter.bintray.com/org/apache/commons/commons-compress/1.12/commons-compress-1.12" = { host = repositories.jcenter; @@ -6308,6 +6518,21 @@ in { sha256 = "0lvsfhbc0ixrrp1y7hnfsp1qsr47pw74ydbn5q455v6g7r4lyrcj"; }; }; + "https://jcenter.bintray.com/org/conscrypt/conscrypt-android/2.0.0/conscrypt-android-2.0.0" = + { + host = repositories.jcenter; + path = + "org/conscrypt/conscrypt-android/2.0.0/conscrypt-android-2.0.0"; + type = "aar"; + pom = { + sha1 = "25e058e27a29aca4bd7fdc8e5025d7692eddc5ba"; + sha256 = "1nirj905nlrkbw040kxhpgvsa846lrdjnykzs356a7ga5w10x7l1"; + }; + jar = { + sha1 = "663deffff43ca9ff12a73662058fa4f3ed918614"; + sha256 = "02gwrljmr2brfjgcgrvyryyn81qiwghcw8ibhs10m1lvlicsa320"; + }; + }; "https://jcenter.bintray.com/org/eclipse/jdt/core/compiler/ecj/4.4.2/ecj-4.4.2" = { host = repositories.jcenter; @@ -6638,21 +6863,6 @@ in { sha256 = "1yhiv7icvfrm1h9gk4xfidh016czlkl1sifhn77xyvsaw1rbicf7"; }; }; - "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.50/kotlin-gradle-plugin-1.3.50" = - { - host = repositories.jcenter; - path = - "org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.50/kotlin-gradle-plugin-1.3.50"; - type = "jar"; - pom = { - sha1 = "89963a567f68092739e0e09bfdf8d2559a01a36b"; - sha256 = "19a1nifvwb94wmf1w6akark71dbphnxd5ap8vv7mk589wv7wy082"; - }; - jar = { - sha1 = "64a7b2a2027c9ff272c09b24817149faa2b1d535"; - sha256 = "09hzhxysaas396m3k7v9lgfhbsm14l4c84g6xb4kzifszr564pb3"; - }; - }; "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.3.50/kotlin-gradle-plugin-api-1.3.50" = { host = repositories.jcenter; @@ -6683,6 +6893,21 @@ in { sha256 = "1pnybswr7j90pbkgf3n3r6wxlfyncgvkrm5jvn3g9p8vi7ckwa7w"; }; }; + "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.50/kotlin-gradle-plugin-1.3.50" = + { + host = repositories.jcenter; + path = + "org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.50/kotlin-gradle-plugin-1.3.50"; + type = "jar"; + pom = { + sha1 = "89963a567f68092739e0e09bfdf8d2559a01a36b"; + sha256 = "19a1nifvwb94wmf1w6akark71dbphnxd5ap8vv7mk589wv7wy082"; + }; + jar = { + sha1 = "64a7b2a2027c9ff272c09b24817149faa2b1d535"; + sha256 = "09hzhxysaas396m3k7v9lgfhbsm14l4c84g6xb4kzifszr564pb3"; + }; + }; "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-native-utils/1.3.50/kotlin-native-utils-1.3.50" = { host = repositories.jcenter; @@ -6758,6 +6983,21 @@ in { sha256 = "196pndsn0701g791sbanxqk44y2zja454nfi3gyswm2sxack2n34"; }; }; + "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-script-runtime/1.3.50/kotlin-script-runtime-1.3.50" = + { + host = repositories.jcenter; + path = + "org/jetbrains/kotlin/kotlin-script-runtime/1.3.50/kotlin-script-runtime-1.3.50"; + type = "jar"; + pom = { + sha1 = "66865d5ba1ee04d5194e38fb7cd247c56db34676"; + sha256 = "12z9p0wlagggnfjh0lv13pqvbasyakgxkcpkpqs8786kc1lp9anx"; + }; + jar = { + sha1 = "59492b8dfb92522ba0ddb5dd1c4d0ef0a4fca1af"; + sha256 = "0k3yzdb7w99p839839279b7v129bp6ln52g7l3hgnah6px90rxvz"; + }; + }; "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-scripting-common/1.3.50/kotlin-scripting-common-1.3.50" = { host = repositories.jcenter; @@ -6818,81 +7058,6 @@ in { sha256 = "1hn0hjkjclls2k2l5a6bwr6bc0vy4366fd8la3wydlz0iavs2vzs"; }; }; - "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-script-runtime/1.3.50/kotlin-script-runtime-1.3.50" = - { - host = repositories.jcenter; - path = - "org/jetbrains/kotlin/kotlin-script-runtime/1.3.50/kotlin-script-runtime-1.3.50"; - type = "jar"; - pom = { - sha1 = "66865d5ba1ee04d5194e38fb7cd247c56db34676"; - sha256 = "12z9p0wlagggnfjh0lv13pqvbasyakgxkcpkpqs8786kc1lp9anx"; - }; - jar = { - sha1 = "59492b8dfb92522ba0ddb5dd1c4d0ef0a4fca1af"; - sha256 = "0k3yzdb7w99p839839279b7v129bp6ln52g7l3hgnah6px90rxvz"; - }; - }; - "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2" = - { - host = repositories.jcenter; - path = - "org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2"; - type = "jar"; - pom = { - sha1 = "652f49d3edbdc251e298b3d1ec74d6488d1ce8da"; - sha256 = "1js5wyzca5bmnvacjaicmcvbs4k5caa0s6f8bvz5v7f86x68gzgq"; - }; - jar = { - sha1 = "9b44c139a4ec57031e0c84ba0e49ba16df6d801c"; - sha256 = "090cwfvy0my5lyv78sp2bkax0kpjwwm94hn0l0jgi0lzhf45527j"; - }; - }; - "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.2.71/kotlin-stdlib-1.2.71" = - { - host = repositories.jcenter; - path = - "org/jetbrains/kotlin/kotlin-stdlib/1.2.71/kotlin-stdlib-1.2.71"; - type = "jar"; - pom = { - sha1 = "e34c8d5c8e7077a037dadcc70b114e130eb9824b"; - sha256 = "1bkmzahsp7jxpg4nq7zal2rl5ncv3c2v08swz5qaciqck9ybfgbi"; - }; - jar = { - sha1 = "d9717625bb3c731561251f8dd2c67a1011d6764c"; - sha256 = "12y6zdmb92sq51y54qg93n1fw1slq64isvkrlb1gxxc71ckmr2ac"; - }; - }; - "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.3.20/kotlin-stdlib-1.3.20" = - { - host = repositories.jcenter; - path = - "org/jetbrains/kotlin/kotlin-stdlib/1.3.20/kotlin-stdlib-1.3.20"; - type = "jar"; - pom = { - sha1 = "9d1e01f424795aa471a8def0b5dc8aeeb537aafd"; - sha256 = "07716p4bm3j9wqcs1qb599x7wnnavmafv5lj2zsflp6p80d9vvrj"; - }; - jar = { - sha1 = "eb2a232734e09fcd1b958a5c7520a93c6de38b32"; - sha256 = "0q9kirl7szl466kf8dza7kc115swpzb4xdnpxal3vyv8m46r27v0"; - }; - }; - "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.3.50/kotlin-stdlib-1.3.50" = - { - host = repositories.jcenter; - path = - "org/jetbrains/kotlin/kotlin-stdlib/1.3.50/kotlin-stdlib-1.3.50"; - type = "jar"; - pom = { - sha1 = "a75b191fa2963dcd96413bab2d0fb385b136a4e6"; - sha256 = "0qaa94ccn4kfhs52604l1hc4qbhj3jampkcvyql6815fc24xfkvh"; - }; - jar = { - sha1 = "b529d1738c7e98bbfa36a4134039528f2ce78ebf"; - sha256 = "0v4d91v6klav42xkn269h90g9p3lqkx9181552sx0rh3xr35gw76"; - }; - }; "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib-common/1.2.71/kotlin-stdlib-common-1.2.71" = { host = repositories.jcenter; @@ -7028,6 +7193,66 @@ in { sha256 = "036sshiy9rm5ck3pp2rl7kjflhl9yi61yk674mava54ww2v1yd8v"; }; }; + "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2" = + { + host = repositories.jcenter; + path = + "org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2"; + type = "jar"; + pom = { + sha1 = "652f49d3edbdc251e298b3d1ec74d6488d1ce8da"; + sha256 = "1js5wyzca5bmnvacjaicmcvbs4k5caa0s6f8bvz5v7f86x68gzgq"; + }; + jar = { + sha1 = "9b44c139a4ec57031e0c84ba0e49ba16df6d801c"; + sha256 = "090cwfvy0my5lyv78sp2bkax0kpjwwm94hn0l0jgi0lzhf45527j"; + }; + }; + "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.2.71/kotlin-stdlib-1.2.71" = + { + host = repositories.jcenter; + path = + "org/jetbrains/kotlin/kotlin-stdlib/1.2.71/kotlin-stdlib-1.2.71"; + type = "jar"; + pom = { + sha1 = "e34c8d5c8e7077a037dadcc70b114e130eb9824b"; + sha256 = "1bkmzahsp7jxpg4nq7zal2rl5ncv3c2v08swz5qaciqck9ybfgbi"; + }; + jar = { + sha1 = "d9717625bb3c731561251f8dd2c67a1011d6764c"; + sha256 = "12y6zdmb92sq51y54qg93n1fw1slq64isvkrlb1gxxc71ckmr2ac"; + }; + }; + "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.3.20/kotlin-stdlib-1.3.20" = + { + host = repositories.jcenter; + path = + "org/jetbrains/kotlin/kotlin-stdlib/1.3.20/kotlin-stdlib-1.3.20"; + type = "jar"; + pom = { + sha1 = "9d1e01f424795aa471a8def0b5dc8aeeb537aafd"; + sha256 = "07716p4bm3j9wqcs1qb599x7wnnavmafv5lj2zsflp6p80d9vvrj"; + }; + jar = { + sha1 = "eb2a232734e09fcd1b958a5c7520a93c6de38b32"; + sha256 = "0q9kirl7szl466kf8dza7kc115swpzb4xdnpxal3vyv8m46r27v0"; + }; + }; + "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.3.50/kotlin-stdlib-1.3.50" = + { + host = repositories.jcenter; + path = + "org/jetbrains/kotlin/kotlin-stdlib/1.3.50/kotlin-stdlib-1.3.50"; + type = "jar"; + pom = { + sha1 = "a75b191fa2963dcd96413bab2d0fb385b136a4e6"; + sha256 = "0qaa94ccn4kfhs52604l1hc4qbhj3jampkcvyql6815fc24xfkvh"; + }; + jar = { + sha1 = "b529d1738c7e98bbfa36a4134039528f2ce78ebf"; + sha256 = "0v4d91v6klav42xkn269h90g9p3lqkx9181552sx0rh3xr35gw76"; + }; + }; "https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-util-io/1.3.50/kotlin-util-io-1.3.50" = { host = repositories.jcenter; @@ -7088,66 +7313,6 @@ in { sha256 = "1d1zh4ymilfc2shm51fcwb7c4i5f6nnmkvkzksqdxh33f7bzf7x3"; }; }; - "https://jcenter.bintray.com/org/ow2/asm/asm/5.0.3/asm-5.0.3" = - { - host = repositories.jcenter; - path = - "org/ow2/asm/asm/5.0.3/asm-5.0.3"; - type = "jar"; - pom = { - sha1 = "7d9570aceff0131a35a87d37b53452be33cf3cd9"; - sha256 = "18565g4264fv0d7hq9fq34dyrybxl5h9d5pis8a7ggk2zqznad3x"; - }; - jar = { - sha1 = "dcc2193db20e19e1feca8b1240dbbc4e190824fa"; - sha256 = "1k265g2nq810yg7sb9h5f1kyp2f0m2z2mz8drkcxr3vv8f7ggi3i"; - }; - }; - "https://jcenter.bintray.com/org/ow2/asm/asm/5.0.4/asm-5.0.4" = - { - host = repositories.jcenter; - path = - "org/ow2/asm/asm/5.0.4/asm-5.0.4"; - type = "jar"; - pom = { - sha1 = "b4b92f4b84715dec57de734ff4c3098aa6904d06"; - sha256 = "043zq0mg31zx5p6hp7jg7zmiibim45c23cd6lx2zh9cbpl4c5cmq"; - }; - jar = { - sha1 = "0da08b8cce7bbf903602a25a3a163ae252435795"; - sha256 = "0852x4qyrk9ykbw1a2ljwq41ljbw5gj7pg3q399049z6ibnihrl9"; - }; - }; - "https://jcenter.bintray.com/org/ow2/asm/asm/5.1/asm-5.1" = - { - host = repositories.jcenter; - path = - "org/ow2/asm/asm/5.1/asm-5.1"; - type = "jar"; - pom = { - sha1 = "87afb3c6d9329d889ef8dc7bded4a5482cb15e99"; - sha256 = "01dj1vq56rz9k9sdsczkfjajxkzmxqxlcs6cmjx27wrrpxd9n1vd"; - }; - jar = { - sha1 = "5ef31c4fe953b1fd00b8a88fa1d6820e8785bb45"; - sha256 = "0m2bfr224dqpvk5cm0ih48n2516jg7x5d4kk4459zik7k6d3knnj"; - }; - }; - "https://jcenter.bintray.com/org/ow2/asm/asm/6.0/asm-6.0" = - { - host = repositories.jcenter; - path = - "org/ow2/asm/asm/6.0/asm-6.0"; - type = "jar"; - pom = { - sha1 = "8e8ac765fb0b5099bde117857df7f7cc7aa08165"; - sha256 = "0bn3281hli8z7dx2cs6s0a0bxc0sbfsbn9jl12cyc4ki35z4kg62"; - }; - jar = { - sha1 = "bc6fa6b19424bb9592fe43bbc20178f92d403105"; - sha256 = "0q8489h5grwm2xxvkikd91nflq47xbjalp79m2cphsaf9b3p32fx"; - }; - }; "https://jcenter.bintray.com/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3" = { host = repositories.jcenter; @@ -7358,6 +7523,66 @@ in { sha256 = "1xm5pi4v9m041csb1956lni7mcd3163qy675c991fw7qn2yzwsim"; }; }; + "https://jcenter.bintray.com/org/ow2/asm/asm/5.0.3/asm-5.0.3" = + { + host = repositories.jcenter; + path = + "org/ow2/asm/asm/5.0.3/asm-5.0.3"; + type = "jar"; + pom = { + sha1 = "7d9570aceff0131a35a87d37b53452be33cf3cd9"; + sha256 = "18565g4264fv0d7hq9fq34dyrybxl5h9d5pis8a7ggk2zqznad3x"; + }; + jar = { + sha1 = "dcc2193db20e19e1feca8b1240dbbc4e190824fa"; + sha256 = "1k265g2nq810yg7sb9h5f1kyp2f0m2z2mz8drkcxr3vv8f7ggi3i"; + }; + }; + "https://jcenter.bintray.com/org/ow2/asm/asm/5.0.4/asm-5.0.4" = + { + host = repositories.jcenter; + path = + "org/ow2/asm/asm/5.0.4/asm-5.0.4"; + type = "jar"; + pom = { + sha1 = "b4b92f4b84715dec57de734ff4c3098aa6904d06"; + sha256 = "043zq0mg31zx5p6hp7jg7zmiibim45c23cd6lx2zh9cbpl4c5cmq"; + }; + jar = { + sha1 = "0da08b8cce7bbf903602a25a3a163ae252435795"; + sha256 = "0852x4qyrk9ykbw1a2ljwq41ljbw5gj7pg3q399049z6ibnihrl9"; + }; + }; + "https://jcenter.bintray.com/org/ow2/asm/asm/5.1/asm-5.1" = + { + host = repositories.jcenter; + path = + "org/ow2/asm/asm/5.1/asm-5.1"; + type = "jar"; + pom = { + sha1 = "87afb3c6d9329d889ef8dc7bded4a5482cb15e99"; + sha256 = "01dj1vq56rz9k9sdsczkfjajxkzmxqxlcs6cmjx27wrrpxd9n1vd"; + }; + jar = { + sha1 = "5ef31c4fe953b1fd00b8a88fa1d6820e8785bb45"; + sha256 = "0m2bfr224dqpvk5cm0ih48n2516jg7x5d4kk4459zik7k6d3knnj"; + }; + }; + "https://jcenter.bintray.com/org/ow2/asm/asm/6.0/asm-6.0" = + { + host = repositories.jcenter; + path = + "org/ow2/asm/asm/6.0/asm-6.0"; + type = "jar"; + pom = { + sha1 = "8e8ac765fb0b5099bde117857df7f7cc7aa08165"; + sha256 = "0bn3281hli8z7dx2cs6s0a0bxc0sbfsbn9jl12cyc4ki35z4kg62"; + }; + jar = { + sha1 = "bc6fa6b19424bb9592fe43bbc20178f92d403105"; + sha256 = "0q8489h5grwm2xxvkikd91nflq47xbjalp79m2cphsaf9b3p32fx"; + }; + }; "https://jitpack.io/com/github/status-im/function/0.0.1/function-0.0.1" = { host = repositories.jitpack; @@ -7515,6 +7740,28 @@ in { sha256 = "023a6xwv1kd9c4dq9jrsbvvj6398hgbr302w7h8kzkgd1xkyrp8a"; }; }; + "https://repo.maven.apache.org/maven2/asm/asm-parent/3.0/asm-parent-3.0" = + { + host = repositories.apache; + path = + "asm/asm-parent/3.0/asm-parent-3.0"; + type = "jar"; + pom = { + sha1 = "526bfebc865ac047ff3fa7d77924a4edff7ba468"; + sha256 = "1bjdlnwchkhy9swv858aff0zgl6q7yj3dzngnmw1ld3bz3b3rbns"; + }; + }; + "https://repo.maven.apache.org/maven2/asm/asm-parent/3.3.1/asm-parent-3.3.1" = + { + host = repositories.apache; + path = + "asm/asm-parent/3.3.1/asm-parent-3.3.1"; + type = "jar"; + pom = { + sha1 = "72945d9cb6faa5082dcd190da850aa06760e4350"; + sha256 = "1w3z1xny1zbafwwwphn9s44iz9ghrhyl8prxzrc7pdbdx09zcqic"; + }; + }; "https://repo.maven.apache.org/maven2/asm/asm/3.0/asm-3.0" = { host = repositories.apache; @@ -7545,28 +7792,6 @@ in { sha256 = "1wzpkm24dlzj5dj3vqf5kcwkkg6sdhka3000fmsbqlg9z1sr5cy2"; }; }; - "https://repo.maven.apache.org/maven2/asm/asm-parent/3.0/asm-parent-3.0" = - { - host = repositories.apache; - path = - "asm/asm-parent/3.0/asm-parent-3.0"; - type = "jar"; - pom = { - sha1 = "526bfebc865ac047ff3fa7d77924a4edff7ba468"; - sha256 = "1bjdlnwchkhy9swv858aff0zgl6q7yj3dzngnmw1ld3bz3b3rbns"; - }; - }; - "https://repo.maven.apache.org/maven2/asm/asm-parent/3.3.1/asm-parent-3.3.1" = - { - host = repositories.apache; - path = - "asm/asm-parent/3.3.1/asm-parent-3.3.1"; - type = "jar"; - pom = { - sha1 = "72945d9cb6faa5082dcd190da850aa06760e4350"; - sha256 = "1w3z1xny1zbafwwwphn9s44iz9ghrhyl8prxzrc7pdbdx09zcqic"; - }; - }; "https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3" = { host = repositories.apache; @@ -7642,36 +7867,6 @@ in { sha256 = "1wcrf6n09bk25lsywy6m9yy7l31m9x85s4l0vibk7iamxl2n39v5"; }; }; - "https://repo.maven.apache.org/maven2/biz/aQute/bnd/bndlib/2.1.0/bndlib-2.1.0" = - { - host = repositories.apache; - path = - "biz/aQute/bnd/bndlib/2.1.0/bndlib-2.1.0"; - type = "jar"; - pom = { - sha1 = "3e1476c680ee36251ba8b9cffe5ef5d1074a5705"; - sha256 = "06c5lwvbpgfjk5ccfmfqqbx0rglriyc5rzvx3x4dsxxpgmyd80an"; - }; - jar = { - sha1 = "7e783c171c84dcb62b66c4359ce4a26871241a96"; - sha256 = "0rph1r4nrxrprnwi34m4llzl6s024y629if2yylx7vyj9v23chk6"; - }; - }; - "https://repo.maven.apache.org/maven2/biz/aQute/bnd/bndlib/2.3.0/bndlib-2.3.0" = - { - host = repositories.apache; - path = - "biz/aQute/bnd/bndlib/2.3.0/bndlib-2.3.0"; - type = "jar"; - pom = { - sha1 = "217e7fae84d64b9d9dd25cb6e37661d0c55e0e47"; - sha256 = "00y1gpfih6v4416nlbsa2dfwri8bzg5hfjqk3r75z9j9vs2x83k8"; - }; - jar = { - sha1 = "73aed9875d5981cfd38d88345103d126ba91c32c"; - sha256 = "1xzk1fx8pyldq16blsn3ijyyyhjzp16nv4wrv7aapq9a26n8nwf7"; - }; - }; "https://repo.maven.apache.org/maven2/biz/aQute/bnd/bnd-maven-plugin/3.1.0/bnd-maven-plugin-3.1.0" = { host = repositories.apache; @@ -7713,19 +7908,34 @@ in { sha256 = "1gc11q982y7fmxf2akyw6qn91cximaza7d157kc19d6rx2g1qz5i"; }; }; - "https://repo.maven.apache.org/maven2/biz/aQute/bndlib/1.50.0/bndlib-1.50.0" = + "https://repo.maven.apache.org/maven2/biz/aQute/bnd/bndlib/2.1.0/bndlib-2.1.0" = { host = repositories.apache; path = - "biz/aQute/bndlib/1.50.0/bndlib-1.50.0"; + "biz/aQute/bnd/bndlib/2.1.0/bndlib-2.1.0"; type = "jar"; pom = { - sha1 = "5ad5386e7481a0c9140b0e5bcf05a4ae290a35fb"; - sha256 = "1ncpvh91npjq4fvc08wgj6g4yibc9b49lgwlwpwhp3q1gn58b9a5"; + sha1 = "3e1476c680ee36251ba8b9cffe5ef5d1074a5705"; + sha256 = "06c5lwvbpgfjk5ccfmfqqbx0rglriyc5rzvx3x4dsxxpgmyd80an"; }; jar = { - sha1 = "feec5ae93db362fcc6116db216629e5345b5ea6c"; - sha256 = "0p1l7id10mw44f53f6m8nhycvq68x6k91zyq4r7p7n2v5wp9qg0n"; + sha1 = "7e783c171c84dcb62b66c4359ce4a26871241a96"; + sha256 = "0rph1r4nrxrprnwi34m4llzl6s024y629if2yylx7vyj9v23chk6"; + }; + }; + "https://repo.maven.apache.org/maven2/biz/aQute/bnd/bndlib/2.3.0/bndlib-2.3.0" = + { + host = repositories.apache; + path = + "biz/aQute/bnd/bndlib/2.3.0/bndlib-2.3.0"; + type = "jar"; + pom = { + sha1 = "217e7fae84d64b9d9dd25cb6e37661d0c55e0e47"; + sha256 = "00y1gpfih6v4416nlbsa2dfwri8bzg5hfjqk3r75z9j9vs2x83k8"; + }; + jar = { + sha1 = "73aed9875d5981cfd38d88345103d126ba91c32c"; + sha256 = "1xzk1fx8pyldq16blsn3ijyyyhjzp16nv4wrv7aapq9a26n8nwf7"; }; }; "https://repo.maven.apache.org/maven2/biz/aQute/bnd/parent/2.1.0/parent-2.1.0" = @@ -7750,6 +7960,21 @@ in { sha256 = "1pbncflkz6x84whbigzzk9h7wdrcp9w8qjvqq0zgjqbnp6051hhb"; }; }; + "https://repo.maven.apache.org/maven2/biz/aQute/bndlib/1.50.0/bndlib-1.50.0" = + { + host = repositories.apache; + path = + "biz/aQute/bndlib/1.50.0/bndlib-1.50.0"; + type = "jar"; + pom = { + sha1 = "5ad5386e7481a0c9140b0e5bcf05a4ae290a35fb"; + sha256 = "1ncpvh91npjq4fvc08wgj6g4yibc9b49lgwlwpwhp3q1gn58b9a5"; + }; + jar = { + sha1 = "feec5ae93db362fcc6116db216629e5345b5ea6c"; + sha256 = "0p1l7id10mw44f53f6m8nhycvq68x6k91zyq4r7p7n2v5wp9qg0n"; + }; + }; "https://repo.maven.apache.org/maven2/bsf/bsf/2.4.0/bsf-2.4.0" = { host = repositories.apache; @@ -7922,39 +8147,6 @@ in { sha256 = "1r7jkm57whmzd0cirby3jxd5vmhwyd8cai751mz92q7cb38hlgjf"; }; }; - "https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx/2.0.10/docbkx-2.0.10" = - { - host = repositories.apache; - path = - "com/agilejava/docbkx/docbkx/2.0.10/docbkx-2.0.10"; - type = "jar"; - pom = { - sha1 = "8bcfe064f6a5cd42835a23b2d82b29a231221d6b"; - sha256 = "090jxdnh589lj80m91ynn3z86vwx5gkg1zkcdj1843ddn2nys07m"; - }; - }; - "https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx/2.0.14/docbkx-2.0.14" = - { - host = repositories.apache; - path = - "com/agilejava/docbkx/docbkx/2.0.14/docbkx-2.0.14"; - type = "jar"; - pom = { - sha1 = "b29562d2a10423577d70f036ade4859d28d22609"; - sha256 = "028hzyllc3gws19lvbd8y20hds5z8n1fxljpd4lgj741gfznr021"; - }; - }; - "https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx/2.0.17/docbkx-2.0.17" = - { - host = repositories.apache; - path = - "com/agilejava/docbkx/docbkx/2.0.17/docbkx-2.0.17"; - type = "jar"; - pom = { - sha1 = "9eddb3eafc1683aad72a05bbe852ed29bce7fc4c"; - sha256 = "0fyzncvr80c5hx56irszr932znc60jxghcz3xfgjayqvxx1y0b72"; - }; - }; "https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx-maven-plugin/2.0.10/docbkx-maven-plugin-2.0.10" = { host = repositories.apache; @@ -8000,6 +8192,39 @@ in { sha256 = "1sq3mzi55yiwljmmdr9hrpz4mzbhyi6rp3lapq4ygymjjaq0nl4a"; }; }; + "https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx/2.0.10/docbkx-2.0.10" = + { + host = repositories.apache; + path = + "com/agilejava/docbkx/docbkx/2.0.10/docbkx-2.0.10"; + type = "jar"; + pom = { + sha1 = "8bcfe064f6a5cd42835a23b2d82b29a231221d6b"; + sha256 = "090jxdnh589lj80m91ynn3z86vwx5gkg1zkcdj1843ddn2nys07m"; + }; + }; + "https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx/2.0.14/docbkx-2.0.14" = + { + host = repositories.apache; + path = + "com/agilejava/docbkx/docbkx/2.0.14/docbkx-2.0.14"; + type = "jar"; + pom = { + sha1 = "b29562d2a10423577d70f036ade4859d28d22609"; + sha256 = "028hzyllc3gws19lvbd8y20hds5z8n1fxljpd4lgj741gfznr021"; + }; + }; + "https://repo.maven.apache.org/maven2/com/agilejava/docbkx/docbkx/2.0.17/docbkx-2.0.17" = + { + host = repositories.apache; + path = + "com/agilejava/docbkx/docbkx/2.0.17/docbkx-2.0.17"; + type = "jar"; + pom = { + sha1 = "9eddb3eafc1683aad72a05bbe852ed29bce7fc4c"; + sha256 = "0fyzncvr80c5hx56irszr932znc60jxghcz3xfgjayqvxx1y0b72"; + }; + }; "https://repo.maven.apache.org/maven2/com/atlassian/maven/plugins/maven-clover2-plugin/2.6.3/maven-clover2-plugin-2.6.3" = { host = repositories.apache; @@ -8246,6 +8471,21 @@ in { sha256 = "1hmpng2xfjblgjcj2m5qwqrsyn29r7kpcj9963xcwaldzbk6sp2f"; }; }; + "https://repo.maven.apache.org/maven2/com/google/android/android/4.1.1.4/android-4.1.1.4" = + { + host = repositories.apache; + path = + "com/google/android/android/4.1.1.4/android-4.1.1.4"; + type = "jar"; + pom = { + sha1 = "469412c22dd395b960813c71d16c252595513d6c"; + sha256 = "097iq5s0y6bijxq9z5raj1djgg3mjwc3hck3d74jh6wkpi0fp51k"; + }; + jar = { + sha1 = "3fb039385e71e9aa2ba547ea9ea8caa34a4ffac7"; + sha256 = "1jyk9w5hwd2w34dynz5sdm29m4jlz07i0xvjkzwfy4dprd0ja1w4"; + }; + }; "https://repo.maven.apache.org/maven2/com/google/auto/auto-common/0.3/auto-common-0.3" = { host = repositories.apache; @@ -8365,21 +8605,6 @@ in { sha256 = "1k9zl76xi2nykixaynss2gk4h861zipdb9xl6q1br0ln4hscx1f8"; }; }; - "https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.7/gson-2.7" = - { - host = repositories.apache; - path = - "com/google/code/gson/gson/2.7/gson-2.7"; - type = "jar"; - pom = { - sha1 = "09f9e39f9b791aeb73ba428ad30872f1a703edb3"; - sha256 = "1phf2qksjf75ykwgp39189jdbqsn5zrmi07g8h522yxq0zn3cfbj"; - }; - jar = { - sha1 = "751f548c85fa49f330cecbb1875893f971b33c4e"; - sha256 = "0clda1xrjfja969xsbrhc61ip588xvsi9k054kpd4cz1m5gfnhrd"; - }; - }; "https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.7/gson-parent-2.7" = { host = repositories.apache; @@ -8413,49 +8638,19 @@ in { sha256 = "09vv4d94lm8blnrmavbw15mln4niqiwggx9rxhwylw8sp5rfq7wg"; }; }; - "https://repo.maven.apache.org/maven2/com/googlecode/java-diff-utils/diffutils/1.3.0/diffutils-1.3.0" = + "https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.7/gson-2.7" = { host = repositories.apache; path = - "com/googlecode/java-diff-utils/diffutils/1.3.0/diffutils-1.3.0"; + "com/google/code/gson/gson/2.7/gson-2.7"; type = "jar"; pom = { - sha1 = "7d5e372ff32c90095800f96d8308c41af0285a41"; - sha256 = "1dj7p0m0kwnjvy1y3kq63zb6bw0azjf79i5xbccmy3wv63b1vqrg"; + sha1 = "09f9e39f9b791aeb73ba428ad30872f1a703edb3"; + sha256 = "1phf2qksjf75ykwgp39189jdbqsn5zrmi07g8h522yxq0zn3cfbj"; }; jar = { - sha1 = "7e060dd5b19431e6d198e91ff670644372f60fbd"; - sha256 = "1hn5plp7iyl626h8mrra56sysfm2qannj1dapr1m5afwkb24vfk1"; - }; - }; - "https://repo.maven.apache.org/maven2/com/googlecode/jmockit/jmockit/1.6/jmockit-1.6" = - { - host = repositories.apache; - path = - "com/googlecode/jmockit/jmockit/1.6/jmockit-1.6"; - type = "jar"; - pom = { - sha1 = "5b9ba01229c06c4d75a13fad979fa5620edc687b"; - sha256 = "13ljcpsr2xljwcd9407rgiq8bpadmr4rqdp4pj8miyypyvvnhi7g"; - }; - jar = { - sha1 = "550872d144cd895333cfad07b16913ae4bd26977"; - sha256 = "0zk1njc15k0k8c4wqabjik6j51kjqnkaia04j375x17ik3rvccq5"; - }; - }; - "https://repo.maven.apache.org/maven2/com/googlecode/maven-download-plugin/download-maven-plugin/1.2.0/download-maven-plugin-1.2.0" = - { - host = repositories.apache; - path = - "com/googlecode/maven-download-plugin/download-maven-plugin/1.2.0/download-maven-plugin-1.2.0"; - type = "jar"; - pom = { - sha1 = "8bfd6d564989e8a94d6c41ac0a4c80deffd62f61"; - sha256 = "18yrd7927kczfzds89fxx9v92q8yj66sl0y4miamnjwgm68pksic"; - }; - jar = { - sha1 = "3bcd9136d5a327e76aceb161533a88769293b7c2"; - sha256 = "14f67yb5y5v6c2ysas52m4iax2dz11c9q4476gmqlcsvmgwp0faj"; + sha1 = "751f548c85fa49f330cecbb1875893f971b33c4e"; + sha256 = "0clda1xrjfja969xsbrhc61ip588xvsi9k054kpd4cz1m5gfnhrd"; }; }; "https://repo.maven.apache.org/maven2/com/google/code/maven-replacer-plugin/replacer/1.5.3/replacer-1.5.3" = @@ -8473,21 +8668,6 @@ in { sha256 = "17cqxjr5fyw35nh57w8y5b6vzpdz0db9zi8x95h0s15mr0wak20d"; }; }; - "https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0" = - { - host = repositories.apache; - path = - "com/google/collections/google-collections/1.0/google-collections-1.0"; - type = "jar"; - pom = { - sha1 = "292197f3cb1ebc0dd03e20897e4250b265177286"; - sha256 = "1ki16xkmabxlazf5kg9r3s8biib8csdf9mqg4a1jzcm1rspmcgc9"; - }; - jar = { - sha1 = "9ffe71ac6dcab6bc03ea13f5c2e7b2804e69b357"; - sha256 = "0p9pvg56gf6a15m1pkiarn2l8wgf1ym5d789fywc90q0mwwddf41"; - }; - }; "https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0-rc1/google-collections-1.0-rc1" = { host = repositories.apache; @@ -8503,6 +8683,21 @@ in { sha256 = "0gzhdcawv82yj06lpc00hd5jq4bviz3cj53vlrldax61107dk0lf"; }; }; + "https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0" = + { + host = repositories.apache; + path = + "com/google/collections/google-collections/1.0/google-collections-1.0"; + type = "jar"; + pom = { + sha1 = "292197f3cb1ebc0dd03e20897e4250b265177286"; + sha256 = "1ki16xkmabxlazf5kg9r3s8biib8csdf9mqg4a1jzcm1rspmcgc9"; + }; + jar = { + sha1 = "9ffe71ac6dcab6bc03ea13f5c2e7b2804e69b357"; + sha256 = "0p9pvg56gf6a15m1pkiarn2l8wgf1ym5d789fywc90q0mwwddf41"; + }; + }; "https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.12/error_prone_annotations-2.0.12" = { host = repositories.apache; @@ -8610,111 +8805,6 @@ in { sha256 = "0a38gd0j67siikp3zabrdgfkk7afnzg30pz0yfkvqgyafdg397g0"; }; }; - "https://repo.maven.apache.org/maven2/com/google/guava/guava/10.0.1/guava-10.0.1" = - { - host = repositories.apache; - path = - "com/google/guava/guava/10.0.1/guava-10.0.1"; - type = "jar"; - pom = { - sha1 = "e931ff2b673f9b0a2202444cbfe59d2eb4d0cdbd"; - sha256 = "08gr4qml32861sw0rybmmxdsjibjd8npw28n4zl1xpbrpxql6036"; - }; - jar = { - sha1 = "292c96f9cb18231528cac4b0bf17d28149d14809"; - sha256 = "1akb74vpsmyjkfgzj9jy5k1j752wnvb5r961gjn7h3fdp4b8l8kx"; - }; - }; - "https://repo.maven.apache.org/maven2/com/google/guava/guava/14.0.1/guava-14.0.1" = - { - host = repositories.apache; - path = - "com/google/guava/guava/14.0.1/guava-14.0.1"; - type = "jar"; - pom = { - sha1 = "7b4c8f117c11a8f1fcaf4f1b0fd07cbe756a1430"; - sha256 = "0ysb88qh241qbnr2cpkm41jv4cmkafw28sjlqshj9d9ysn9akm1x"; - }; - jar = { - sha1 = "69e12f4c6aeac392555f1ea86fab82b5e5e31ad4"; - sha256 = "15xbv4sj0gbikyi7x4r07078g3njy9hdsjpywpq5wq2030rz77fn"; - }; - }; - "https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1" = - { - host = repositories.apache; - path = - "com/google/guava/guava/16.0.1/guava-16.0.1"; - type = "jar"; - pom = { - sha1 = "52f16cd93f1ee1f0d1e1e55f46fa21c35f829f85"; - sha256 = "05q83jxchyc1b4alfhx5bw7i8sh60ps2f26azvfdd2pw8mc5fxn6"; - }; - jar = { - sha1 = "5fa98cd1a63c99a44dd8d3b77e4762b066a5d0c5"; - sha256 = "1lvnyrhxa4pcx7ji187xrwpgdc6rnrbh9g2vvk3khpc40xyqb5m8"; - }; - }; - "https://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0" = - { - host = repositories.apache; - path = - "com/google/guava/guava/19.0/guava-19.0"; - type = "jar"; - pom = { - sha1 = "65a43a21dbddcc19aa3ca50a63a4b33166bfbc77"; - sha256 = "0qxca62zgm95dqpgwx0v1n2r1mvwi2m5l3n99pgpy1zilx6hdp5d"; - }; - jar = { - sha1 = "6ce200f6b23222af3d8abb6b6459e6c44f4bb0e9"; - sha256 = "1r3x0mznza3j1k3g75mhdz5y2fv2flph72snmjxi5c7b0lpcrm2q"; - }; - }; - "https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0" = - { - host = repositories.apache; - path = - "com/google/guava/guava/20.0/guava-20.0"; - type = "jar"; - pom = { - sha1 = "386bd381301224cac5ae8d2c7883b90a12192d79"; - sha256 = "0xlhw5f82l4cw6qn85hw3ky4hvby8q4iwc6mcjjxfq5pcwvwhg1n"; - }; - jar = { - sha1 = "89507701249388e1ed5ddcf8c41f4ce1be7831ef"; - sha256 = "1j48qav9slfmvyjhpxljs69nqvh8gsv58dm2vkqg1rqsnzind9in"; - }; - }; - "https://repo.maven.apache.org/maven2/com/google/guava/guava/21.0/guava-21.0" = - { - host = repositories.apache; - path = - "com/google/guava/guava/21.0/guava-21.0"; - type = "jar"; - pom = { - sha1 = "fe4fa08a8c0897f9896c7e278fb397ede4a2feed"; - sha256 = "03gq1xnmx3950dxqkskg40ml1kl0zvw4pmp9a7502kkqbjl1dc60"; - }; - jar = { - sha1 = "3a3d111be1be1b745edfa7d91678a12d7ed38709"; - sha256 = "105l92cndc1i63x49bvsr4skz41cgg7sijvqza9li2mwi9qkj8cp"; - }; - }; - "https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android" = - { - host = repositories.apache; - path = - "com/google/guava/guava/25.1-android/guava-25.1-android"; - type = "jar"; - pom = { - sha1 = "9d460bdbf0ce0a8e367df9933cacd1d1764c0f0e"; - sha256 = "0qsz34ba5gl9ws4lw7lvy9c2ynh1xxy19345jwxmym2avy3f47jd"; - }; - jar = { - sha1 = "bdaab946ca5ad20253502d873ba0c3313d141036"; - sha256 = "1j5x8pz1v0n3abvrk6djk4fykyyp41rv135r65lczfbns7zgif7p"; - }; - }; "https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/10.0.1/guava-parent-10.0.1" = { host = repositories.apache; @@ -8899,6 +8989,122 @@ in { sha256 = "104slm02qk619clqdgw3gqkzymdm1q9qkdprwhyi1sm5i47qscky"; }; }; + "https://repo.maven.apache.org/maven2/com/google/guava/guava/10.0.1/guava-10.0.1" = + { + host = repositories.apache; + path = + "com/google/guava/guava/10.0.1/guava-10.0.1"; + type = "jar"; + pom = { + sha1 = "e931ff2b673f9b0a2202444cbfe59d2eb4d0cdbd"; + sha256 = "08gr4qml32861sw0rybmmxdsjibjd8npw28n4zl1xpbrpxql6036"; + }; + jar = { + sha1 = "292c96f9cb18231528cac4b0bf17d28149d14809"; + sha256 = "1akb74vpsmyjkfgzj9jy5k1j752wnvb5r961gjn7h3fdp4b8l8kx"; + }; + }; + "https://repo.maven.apache.org/maven2/com/google/guava/guava/14.0.1/guava-14.0.1" = + { + host = repositories.apache; + path = + "com/google/guava/guava/14.0.1/guava-14.0.1"; + type = "jar"; + pom = { + sha1 = "7b4c8f117c11a8f1fcaf4f1b0fd07cbe756a1430"; + sha256 = "0ysb88qh241qbnr2cpkm41jv4cmkafw28sjlqshj9d9ysn9akm1x"; + }; + jar = { + sha1 = "69e12f4c6aeac392555f1ea86fab82b5e5e31ad4"; + sha256 = "15xbv4sj0gbikyi7x4r07078g3njy9hdsjpywpq5wq2030rz77fn"; + }; + }; + "https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1" = + { + host = repositories.apache; + path = + "com/google/guava/guava/16.0.1/guava-16.0.1"; + type = "jar"; + pom = { + sha1 = "52f16cd93f1ee1f0d1e1e55f46fa21c35f829f85"; + sha256 = "05q83jxchyc1b4alfhx5bw7i8sh60ps2f26azvfdd2pw8mc5fxn6"; + }; + jar = { + sha1 = "5fa98cd1a63c99a44dd8d3b77e4762b066a5d0c5"; + sha256 = "1lvnyrhxa4pcx7ji187xrwpgdc6rnrbh9g2vvk3khpc40xyqb5m8"; + }; + }; + "https://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0" = + { + host = repositories.apache; + path = + "com/google/guava/guava/19.0/guava-19.0"; + type = "jar"; + pom = { + sha1 = "65a43a21dbddcc19aa3ca50a63a4b33166bfbc77"; + sha256 = "0qxca62zgm95dqpgwx0v1n2r1mvwi2m5l3n99pgpy1zilx6hdp5d"; + }; + jar = { + sha1 = "6ce200f6b23222af3d8abb6b6459e6c44f4bb0e9"; + sha256 = "1r3x0mznza3j1k3g75mhdz5y2fv2flph72snmjxi5c7b0lpcrm2q"; + }; + }; + "https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0" = + { + host = repositories.apache; + path = + "com/google/guava/guava/20.0/guava-20.0"; + type = "jar"; + pom = { + sha1 = "386bd381301224cac5ae8d2c7883b90a12192d79"; + sha256 = "0xlhw5f82l4cw6qn85hw3ky4hvby8q4iwc6mcjjxfq5pcwvwhg1n"; + }; + jar = { + sha1 = "89507701249388e1ed5ddcf8c41f4ce1be7831ef"; + sha256 = "1j48qav9slfmvyjhpxljs69nqvh8gsv58dm2vkqg1rqsnzind9in"; + }; + }; + "https://repo.maven.apache.org/maven2/com/google/guava/guava/21.0/guava-21.0" = + { + host = repositories.apache; + path = + "com/google/guava/guava/21.0/guava-21.0"; + type = "jar"; + pom = { + sha1 = "fe4fa08a8c0897f9896c7e278fb397ede4a2feed"; + sha256 = "03gq1xnmx3950dxqkskg40ml1kl0zvw4pmp9a7502kkqbjl1dc60"; + }; + jar = { + sha1 = "3a3d111be1be1b745edfa7d91678a12d7ed38709"; + sha256 = "105l92cndc1i63x49bvsr4skz41cgg7sijvqza9li2mwi9qkj8cp"; + }; + }; + "https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android" = + { + host = repositories.apache; + path = + "com/google/guava/guava/25.1-android/guava-25.1-android"; + type = "jar"; + pom = { + sha1 = "9d460bdbf0ce0a8e367df9933cacd1d1764c0f0e"; + sha256 = "0qsz34ba5gl9ws4lw7lvy9c2ynh1xxy19345jwxmym2avy3f47jd"; + }; + jar = { + sha1 = "bdaab946ca5ad20253502d873ba0c3313d141036"; + sha256 = "1j5x8pz1v0n3abvrk6djk4fykyyp41rv135r65lczfbns7zgif7p"; + }; + }; + "https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.0/guice-parent-4.0" = + { + host = repositories.apache; + path = + "com/google/inject/guice-parent/4.0/guice-parent-4.0"; + type = "jar"; + pom = { + sha1 = "a59ca1d3d70552158088d7f71e6c7e8779b9a8a1"; + sha256 = "1azfix7zcpsfcwjiav4xb69bxhalfg2nwvqn1g85js60yaki2pzn"; + }; + }; "https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0" = { host = repositories.apache; @@ -8925,32 +9131,6 @@ in { sha256 = "1a2hl8s5csfpzzmqgdnd20n5akivhjixi2rhgspzxdjrps8khf8r"; }; }; - "https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.0/guice-parent-4.0" = - { - host = repositories.apache; - path = - "com/google/inject/guice-parent/4.0/guice-parent-4.0"; - type = "jar"; - pom = { - sha1 = "a59ca1d3d70552158088d7f71e6c7e8779b9a8a1"; - sha256 = "1azfix7zcpsfcwjiav4xb69bxhalfg2nwvqn1g85js60yaki2pzn"; - }; - }; - "https://repo.maven.apache.org/maven2/com/google/jimfs/jimfs/1.0/jimfs-1.0" = - { - host = repositories.apache; - path = - "com/google/jimfs/jimfs/1.0/jimfs-1.0"; - type = "jar"; - pom = { - sha1 = "9fb13bc26c2ff905d4bb288c3ade975b1f92d27e"; - sha256 = "0bw13asxw3vka71r70phywk4170f4ii0dqh4ifj88kb4rxcnwm20"; - }; - jar = { - sha1 = "edd65a2b792755f58f11134e76485a928aab4c97"; - sha256 = "055p20prhrkn9ign8waw32m8342qiclz77h97s9mk20b75avvn5i"; - }; - }; "https://repo.maven.apache.org/maven2/com/google/jimfs/jimfs-parent/1.0/jimfs-parent-1.0" = { host = repositories.apache; @@ -8973,6 +9153,21 @@ in { sha256 = "1g96idyskcl3ryfc3fd5lq12ay5f4nbars3h528yzq2p3rsma5f7"; }; }; + "https://repo.maven.apache.org/maven2/com/google/jimfs/jimfs/1.0/jimfs-1.0" = + { + host = repositories.apache; + path = + "com/google/jimfs/jimfs/1.0/jimfs-1.0"; + type = "jar"; + pom = { + sha1 = "9fb13bc26c2ff905d4bb288c3ade975b1f92d27e"; + sha256 = "0bw13asxw3vka71r70phywk4170f4ii0dqh4ifj88kb4rxcnwm20"; + }; + jar = { + sha1 = "edd65a2b792755f58f11134e76485a928aab4c97"; + sha256 = "055p20prhrkn9ign8waw32m8342qiclz77h97s9mk20b75avvn5i"; + }; + }; "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.4.1/protobuf-java-2.4.1" = { host = repositories.apache; @@ -9122,6 +9317,61 @@ in { sha256 = "0xlpx5b1adwa3g4m5ghxj1ccmw35f0ns845zgkxr0kbahgxc4zq1"; }; }; + "https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.27/truth-parent-0.27" = + { + host = repositories.apache; + path = + "com/google/truth/truth-parent/0.27/truth-parent-0.27"; + type = "jar"; + pom = { + sha1 = "fa409d7500b640949a6cd2a31ff8e3615b912740"; + sha256 = "06kx5lp4xq8lyjpgrwg3g35dqjbw327i256fkn2d7dbf2dasplma"; + }; + }; + "https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.28/truth-parent-0.28" = + { + host = repositories.apache; + path = + "com/google/truth/truth-parent/0.28/truth-parent-0.28"; + type = "jar"; + pom = { + sha1 = "e0581caeab677ab44fa7148c1b3b052e4e803264"; + sha256 = "15dq9ina8kjnwym6xfhlrng0sdnw9wpddbsms4vj1phnxzqw899x"; + }; + }; + "https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.31/truth-parent-0.31" = + { + host = repositories.apache; + path = + "com/google/truth/truth-parent/0.31/truth-parent-0.31"; + type = "jar"; + pom = { + sha1 = "ff532aa170f5c0701fcafde2b83593c7d5970e7b"; + sha256 = "13f9zl8qj7dfxy7p5h3ygpmrg6ms9bbj9xx0wjs7ipjhvca1zwax"; + }; + }; + "https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.34/truth-parent-0.34" = + { + host = repositories.apache; + path = + "com/google/truth/truth-parent/0.34/truth-parent-0.34"; + type = "jar"; + pom = { + sha1 = "34d36959be3857b095b227f3662dbf6f0395df5e"; + sha256 = "1pa68zg5gj7syry73c9yi9gwqawdchadsv34drr2z4chps03pa3a"; + }; + }; + "https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.42/truth-parent-0.42" = + { + host = repositories.apache; + path = + "com/google/truth/truth-parent/0.42/truth-parent-0.42"; + type = "jar"; + pom = { + sha1 = "52d579abb32d930dd57126cb74b97d22a49eeeb5"; + sha256 = "0xmdg63wjrla3rhdayj4dvdkij48ka0aph6qg8g1z7vgw4sm3ijk"; + }; + }; "https://repo.maven.apache.org/maven2/com/google/truth/truth/0.27/truth-0.27" = { host = repositories.apache; @@ -9197,61 +9447,6 @@ in { sha256 = "0k11lp6xn1366sl6kid3zb5w483ddgyl00xc92cca9s41kgjnrfx"; }; }; - "https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.27/truth-parent-0.27" = - { - host = repositories.apache; - path = - "com/google/truth/truth-parent/0.27/truth-parent-0.27"; - type = "jar"; - pom = { - sha1 = "fa409d7500b640949a6cd2a31ff8e3615b912740"; - sha256 = "06kx5lp4xq8lyjpgrwg3g35dqjbw327i256fkn2d7dbf2dasplma"; - }; - }; - "https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.28/truth-parent-0.28" = - { - host = repositories.apache; - path = - "com/google/truth/truth-parent/0.28/truth-parent-0.28"; - type = "jar"; - pom = { - sha1 = "e0581caeab677ab44fa7148c1b3b052e4e803264"; - sha256 = "15dq9ina8kjnwym6xfhlrng0sdnw9wpddbsms4vj1phnxzqw899x"; - }; - }; - "https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.31/truth-parent-0.31" = - { - host = repositories.apache; - path = - "com/google/truth/truth-parent/0.31/truth-parent-0.31"; - type = "jar"; - pom = { - sha1 = "ff532aa170f5c0701fcafde2b83593c7d5970e7b"; - sha256 = "13f9zl8qj7dfxy7p5h3ygpmrg6ms9bbj9xx0wjs7ipjhvca1zwax"; - }; - }; - "https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.34/truth-parent-0.34" = - { - host = repositories.apache; - path = - "com/google/truth/truth-parent/0.34/truth-parent-0.34"; - type = "jar"; - pom = { - sha1 = "34d36959be3857b095b227f3662dbf6f0395df5e"; - sha256 = "1pa68zg5gj7syry73c9yi9gwqawdchadsv34drr2z4chps03pa3a"; - }; - }; - "https://repo.maven.apache.org/maven2/com/google/truth/truth-parent/0.42/truth-parent-0.42" = - { - host = repositories.apache; - path = - "com/google/truth/truth-parent/0.42/truth-parent-0.42"; - type = "jar"; - pom = { - sha1 = "52d579abb32d930dd57126cb74b97d22a49eeeb5"; - sha256 = "0xmdg63wjrla3rhdayj4dvdkij48ka0aph6qg8g1z7vgw4sm3ijk"; - }; - }; "https://repo.maven.apache.org/maven2/com/google/zxing/zxing-parent/3.3.3/zxing-parent-3.3.3" = { host = repositories.apache; @@ -9263,6 +9458,51 @@ in { sha256 = "0i6lzbd3qiav0c05317h7kfd89g7iw9wjl1msnbrxmh5d1xibm2n"; }; }; + "https://repo.maven.apache.org/maven2/com/googlecode/java-diff-utils/diffutils/1.3.0/diffutils-1.3.0" = + { + host = repositories.apache; + path = + "com/googlecode/java-diff-utils/diffutils/1.3.0/diffutils-1.3.0"; + type = "jar"; + pom = { + sha1 = "7d5e372ff32c90095800f96d8308c41af0285a41"; + sha256 = "1dj7p0m0kwnjvy1y3kq63zb6bw0azjf79i5xbccmy3wv63b1vqrg"; + }; + jar = { + sha1 = "7e060dd5b19431e6d198e91ff670644372f60fbd"; + sha256 = "1hn5plp7iyl626h8mrra56sysfm2qannj1dapr1m5afwkb24vfk1"; + }; + }; + "https://repo.maven.apache.org/maven2/com/googlecode/jmockit/jmockit/1.6/jmockit-1.6" = + { + host = repositories.apache; + path = + "com/googlecode/jmockit/jmockit/1.6/jmockit-1.6"; + type = "jar"; + pom = { + sha1 = "5b9ba01229c06c4d75a13fad979fa5620edc687b"; + sha256 = "13ljcpsr2xljwcd9407rgiq8bpadmr4rqdp4pj8miyypyvvnhi7g"; + }; + jar = { + sha1 = "550872d144cd895333cfad07b16913ae4bd26977"; + sha256 = "0zk1njc15k0k8c4wqabjik6j51kjqnkaia04j375x17ik3rvccq5"; + }; + }; + "https://repo.maven.apache.org/maven2/com/googlecode/maven-download-plugin/download-maven-plugin/1.2.0/download-maven-plugin-1.2.0" = + { + host = repositories.apache; + path = + "com/googlecode/maven-download-plugin/download-maven-plugin/1.2.0/download-maven-plugin-1.2.0"; + type = "jar"; + pom = { + sha1 = "8bfd6d564989e8a94d6c41ac0a4c80deffd62f61"; + sha256 = "18yrd7927kczfzds89fxx9v92q8yj66sl0y4miamnjwgm68pksic"; + }; + jar = { + sha1 = "3bcd9136d5a327e76aceb161533a88769293b7c2"; + sha256 = "14f67yb5y5v6c2ysas52m4iax2dz11c9q4476gmqlcsvmgwp0faj"; + }; + }; "https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/51.2/icu4j-51.2" = { host = repositories.apache; @@ -9293,34 +9533,516 @@ in { sha256 = "1zh5gpy7hrfa1lfcishf9pw5vk7vx8hkq286lclv41jgkmziba2f"; }; }; - "https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6" = + "https://repo.maven.apache.org/maven2/com/simpligility/maven/plugins/android-maven-plugin/4.5.0/android-maven-plugin-4.5.0" = { host = repositories.apache; path = - "commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6"; + "com/simpligility/maven/plugins/android-maven-plugin/4.5.0/android-maven-plugin-4.5.0"; type = "jar"; pom = { - sha1 = "cb6192708aa48ef75e8d04bcde65bc8d5a6ccdbf /home/projects/maven/repository-staging/to-ibiblio/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom"; - sha256 = "0vam9gx3ic4bw1p4nk8y66wxn3d3s1aqw61rpj2l8a34dkdryc7i"; + sha1 = "da9761e976cd720d708330148d63f862282ebec7"; + sha256 = "0k7wk7fq7hkjnn368havkd5f3i282320d6x5zamzy2d7z300q2a8"; }; jar = { - sha1 = "ed3c2b07d1b16ec11440b6656fdbd4845ea6b8be"; - sha256 = "01wlz2q105qj97aib64rn5hyhjiqchiyl6r6w768dcfrgcjzxn3p"; + sha1 = "a0c1be4d39ae5de45a613a4df845006ca5b5f4b6"; + sha256 = "00jhspsl0znn75hwaqzzz5l27ir3lqv4s0rhw2kbqsnzkw4br11z"; }; }; - "https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0" = + "https://repo.maven.apache.org/maven2/com/simpligility/maven/progressive-organization-pom/6.0.0/progressive-organization-pom-6.0.0" = { host = repositories.apache; path = - "commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0"; + "com/simpligility/maven/progressive-organization-pom/6.0.0/progressive-organization-pom-6.0.0"; type = "jar"; pom = { - sha1 = "19eca029edacc1be30030faf43ea6acb30556d1a"; - sha256 = "1naa13q73n0brb7czl8liq90vbch5xq5fp82dxl2gc18b93adb5n"; + sha1 = "9ba9933c19605c86a59d0a7861312e7c3ac83a1d"; + sha256 = "1wzvdvf67dw7zzlwrvb8phl5nw79kqw5sjlplqah16cni6ppfgzb"; + }; + }; + "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/mockwebserver/3.12.1/mockwebserver-3.12.1" = + { + host = repositories.apache; + path = + "com/squareup/okhttp3/mockwebserver/3.12.1/mockwebserver-3.12.1"; + type = "jar"; + pom = { + sha1 = "fea7ef710abf839080391f467074c610cfb6a1b5"; + sha256 = "1pfx6skp39ql4b798vb8cfpay5pfd9ywg32mlgfx0m0ga7q85xxr"; }; jar = { - sha1 = "5675fd96b29656504b86029551973d60fb41339b"; - sha256 = "1x1yh9v1vnlwfzcppwp9w81k95368lafl2hcrrbciixxrhhamg14"; + sha1 = "285880421051c9b6dc3bdb355deacdf999353bfe"; + sha256 = "1yh0fj38fywsq8706qz9cc3323ibrb7vw07m8mvcrn6i1c291zlw"; + }; + }; + "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp-testing-support/3.12.1/okhttp-testing-support-3.12.1" = + { + host = repositories.apache; + path = + "com/squareup/okhttp3/okhttp-testing-support/3.12.1/okhttp-testing-support-3.12.1"; + type = "jar"; + pom = { + sha1 = "6d5a724b40195ef7b2ca9625439c58f167a74c22"; + sha256 = "07r17w01h3a4b1rbikhs07igsnvny3fgbxnl91dradmicbydx0pz"; + }; + jar = { + sha1 = "493be2ce0a9b62112dc0b35c3be0e76d63eaeb2a"; + sha256 = "192jg7fqws85divkcdjj2859lhajqvxspfpdf8d98s7cgrsj06k3"; + }; + }; + "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp-tls/3.12.1/okhttp-tls-3.12.1" = + { + host = repositories.apache; + path = + "com/squareup/okhttp3/okhttp-tls/3.12.1/okhttp-tls-3.12.1"; + type = "jar"; + pom = { + sha1 = "3503aab6bea92dfefb4552128ed23f62dfba3897"; + sha256 = "0874bzl236371qwbq4l1pshkbykfsgfgv1w8z85wsr8g2d4qjwwd"; + }; + jar = { + sha1 = "5f82cf038319971376ba19d5157077caa9537f17"; + sha256 = "05m1aai95lg2kxjwz0qzv7vgk851k8b1zabh4syywhcxfxx223ii"; + }; + }; + "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/parent/3.12.1/parent-3.12.1" = + { + host = repositories.apache; + path = + "com/squareup/okhttp3/parent/3.12.1/parent-3.12.1"; + type = "jar"; + pom = { + sha1 = "a118bcb30283e6df0fa33574d3eeb69804e0f3dd"; + sha256 = "1g7lzfqfpq3jrpm9lgcsmq2lbrwck5kp3jns7jvvbvgfkc46yz7m"; + }; + }; + "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/parent/3.14.1/parent-3.14.1" = + { + host = repositories.apache; + path = + "com/squareup/okhttp3/parent/3.14.1/parent-3.14.1"; + type = "jar"; + pom = { + sha1 = "32696e235dfe284f78e05f9bd24345a2d261633c"; + sha256 = "0hpw4vnnfxvd9yhhmrlq0hqczd1lpa7nrk25zglficjwb15wsm96"; + }; + }; + "https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.15.0/okio-parent-1.15.0" = + { + host = repositories.apache; + path = + "com/squareup/okio/okio-parent/1.15.0/okio-parent-1.15.0"; + type = "jar"; + pom = { + sha1 = "5eb9d8103fd3e21923bcf157066957337d6ca71e"; + sha256 = "1ckd0lhrvgzzjlhj36i607cdmv3slh2hsiwrycfp5kdal8z9mq1l"; + }; + }; + "https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.17.2/okio-parent-1.17.2" = + { + host = repositories.apache; + path = + "com/squareup/okio/okio-parent/1.17.2/okio-parent-1.17.2"; + type = "jar"; + pom = { + sha1 = "57554cc5eac8170d5ea09c38ff7d6b86d7c8db23"; + sha256 = "097h2vz0wxjb9nj8lhdaazkzpfasr1ss38qgn6ab63iadwa407z8"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.0/all-1.2.0" = + { + host = repositories.apache; + path = + "com/sun/activation/all/1.2.0/all-1.2.0"; + type = "jar"; + pom = { + sha1 = "9b1023e38195ea19d1a0ac79192d486da1904f97"; + sha256 = "1i62n3icq23pssrvvii30x9jx63wygg7ggppwh2a2ckmmkiii18x"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons/2.21/istack-commons-2.21" = + { + host = repositories.apache; + path = + "com/sun/istack/istack-commons/2.21/istack-commons-2.21"; + type = "jar"; + pom = { + sha1 = "125168cc27946f32374cef253dbe607486aa3919"; + sha256 = "1341mibhpgaibhvdq6xzdkxjw8bp434nakkbc212j5lvz1vi41y3"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-apache-client4/1.12/jersey-apache-client4-1.12" = + { + host = repositories.apache; + path = + "com/sun/jersey/contribs/jersey-apache-client4/1.12/jersey-apache-client4-1.12"; + type = "jar"; + pom = { + sha1 = "c098d3e3187af8a5944d65177421f95b33b7ac90"; + sha256 = "1g4aj6majp0m1ag0fh742chp3gi9lf3ncw5kn5dqvxb95g7i0dpq"; + }; + jar = { + sha1 = "d4b573e06449d32d3a63d3ac3fdd8233dcaeb3b2"; + sha256 = "15cm6zwd8rgfywqk20vs77ifl583ywkkxhc4m4k9610j3rg8sf1r"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-apache-client4/1.17.1/jersey-apache-client4-1.17.1" = + { + host = repositories.apache; + path = + "com/sun/jersey/contribs/jersey-apache-client4/1.17.1/jersey-apache-client4-1.17.1"; + type = "jar"; + pom = { + sha1 = "8716e5b8e33a82b44942b5b8bdc61055e7e03c59"; + sha256 = "1fl69ymvadmrc5g0n8aw344ljd9488h9ywlpc3v4scw9illjc47r"; + }; + jar = { + sha1 = "31b9839810450b77bc8e09534efde995630a4bc6"; + sha256 = "1iikgnrfyik4jv6svd0icfc1wnjf317470v6wf6iwn6ak8i4gkz4"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.12/jersey-contribs-1.12" = + { + host = repositories.apache; + path = + "com/sun/jersey/contribs/jersey-contribs/1.12/jersey-contribs-1.12"; + type = "jar"; + pom = { + sha1 = "beaaa28cbbe1bcfbd0a2911f479a355776d84b9f"; + sha256 = "1s6190jz5n8cvvdyzgii1sjyhkqip852hpm5ngai5rr4md0cmfnm"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.17.1/jersey-contribs-1.17.1" = + { + host = repositories.apache; + path = + "com/sun/jersey/contribs/jersey-contribs/1.17.1/jersey-contribs-1.17.1"; + type = "jar"; + pom = { + sha1 = "2b20f01b04a633ed5a347709066687c374271305"; + sha256 = "0gs3fvwf7q0x88l4asb28vd7qr6z9rpxq3bah3d6kih3gy6nnyfp"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.12/jersey-client-1.12" = + { + host = repositories.apache; + path = + "com/sun/jersey/jersey-client/1.12/jersey-client-1.12"; + type = "jar"; + pom = { + sha1 = "bcb76e60e4dd7304cc73b1e54c97b9fede3f3d9d"; + sha256 = "0dfbgr79yfdzzkdah6pxmzs72hrx08vvdigsdc5w9hbw1x7y22q3"; + }; + jar = { + sha1 = "d468a05f81031e8b5470f829e3dcedb399d369a2"; + sha256 = "0ll7smj6s8zgv5jw47my57anf3g1zvys4xbzhj1hjsr1nb5x5ib9"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.17.1/jersey-client-1.17.1" = + { + host = repositories.apache; + path = + "com/sun/jersey/jersey-client/1.17.1/jersey-client-1.17.1"; + type = "jar"; + pom = { + sha1 = "edde8010e455ce74dcbcf149ecef4afd3868c67c"; + sha256 = "12376sv5g48sn0xkx2qjrh2wf6n82x370ycdbcjxiynw4hpmic7v"; + }; + jar = { + sha1 = "b92fb0f202ca548f9067d57a133635fc1b8ad0ff"; + sha256 = "0qdf2a0f6h7jq7srxqyyjdz6scc0j79zyjhgd3wzxvg91dv0bf7l"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.12/jersey-core-1.12" = + { + host = repositories.apache; + path = + "com/sun/jersey/jersey-core/1.12/jersey-core-1.12"; + type = "jar"; + pom = { + sha1 = "29becac3ae8c117187d12ec499bbf94b351e3298"; + sha256 = "0kan88py3rfv8xlcv0lnb2h7bxb4kjfy5dqw6rmqmh6crwv1yx55"; + }; + jar = { + sha1 = "b6e4ec5b0f807515e3c18c15cfa62061fca7f706"; + sha256 = "1r517mghysxzdhd6rv374k6ih2bqmc6i4x65rq9hwrzgrxwkxv2i"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.17.1/jersey-core-1.17.1" = + { + host = repositories.apache; + path = + "com/sun/jersey/jersey-core/1.17.1/jersey-core-1.17.1"; + type = "jar"; + pom = { + sha1 = "6fb941a1495582b87a1912473080abdc520f721e"; + sha256 = "04cdsc9mxyipgdg50ihp2a91rcn4fff1xqrl1xv3zhnipwj7nm6v"; + }; + jar = { + sha1 = "7f73259ad9cf7be225f2a42bd4fe72f34ff9b65c"; + sha256 = "0f8iddgc6xqmhwzsgxqk5ikpfhz86qgxzqz7s60fba8wiykpgmdy"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.17.1/jersey-json-1.17.1" = + { + host = repositories.apache; + path = + "com/sun/jersey/jersey-json/1.17.1/jersey-json-1.17.1"; + type = "jar"; + pom = { + sha1 = "43e4a077d4b18910b1ca36f50ccb89284dc6c858"; + sha256 = "19h3ds3g57rvqxk93dgfd35irbj6slfrh534d33k1qaigjbcwaqv"; + }; + jar = { + sha1 = "a06613b2d4a742ecb0df541ac81f90fd148facda"; + sha256 = "05ycsybc75rz0pd2v7zhid1x98af2z2hczgzd29g05mjdvr29l9s"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.12/jersey-project-1.12" = + { + host = repositories.apache; + path = + "com/sun/jersey/jersey-project/1.12/jersey-project-1.12"; + type = "jar"; + pom = { + sha1 = "a96c36d03608235f3ea268ffae18d3656841ec2d"; + sha256 = "066y0bd42p1181xavcm44lc3vqybz4bphmkijcwsc4m6fakrzjd2"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.17.1/jersey-project-1.17.1" = + { + host = repositories.apache; + path = + "com/sun/jersey/jersey-project/1.17.1/jersey-project-1.17.1"; + type = "jar"; + pom = { + sha1 = "804484c7d804b5858e8f25f5dcf16808a8d0cbdf"; + sha256 = "199yy7yna3jgd6xkwfdbmrz8a1r3ajj0zkxjx43kjhx7095k5nd3"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-bom-ext/2.2.11/jaxb-bom-ext-2.2.11" = + { + host = repositories.apache; + path = + "com/sun/xml/bind/jaxb-bom-ext/2.2.11/jaxb-bom-ext-2.2.11"; + type = "jar"; + pom = { + sha1 = "158223fd61f720cf172e1984147b62aa8f2bdf4e"; + sha256 = "1sav7gq6a54zvkb113qhff3zp435767n1r5276q95jr1vs9hcpmj"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1" = + { + host = repositories.apache; + path = + "com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1"; + type = "jar"; + pom = { + sha1 = "a537c835c53dcd0bdf5d63144ac12bea936e3335"; + sha256 = "19kkhlbnjcyh5jfrg8iq79lj1zi02rzafsirpvp7vhhf0b1rqrai"; + }; + jar = { + sha1 = "56baae106392040a45a06d4a41099173425da1e6"; + sha256 = "1y2gcjp0di2camn3wmn9ljp4lfb89ckq2a7h5cqi1hwjn6ci8gps"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-parent/2.2.11/jaxb-parent-2.2.11" = + { + host = repositories.apache; + path = + "com/sun/xml/bind/mvn/jaxb-parent/2.2.11/jaxb-parent-2.2.11"; + type = "jar"; + pom = { + sha1 = "9496f6747e6d5ab5da869941dea4143969122b91"; + sha256 = "10041gr7ra0777sp4cyflhs5slpf6849lpv13dbpwm013iqinc5m"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-runtime-parent/2.2.11/jaxb-runtime-parent-2.2.11" = + { + host = repositories.apache; + path = + "com/sun/xml/bind/mvn/jaxb-runtime-parent/2.2.11/jaxb-runtime-parent-2.2.11"; + type = "jar"; + pom = { + sha1 = "dd7834f63d08408fde8fbb58f1ea557bbb31d444"; + sha256 = "144fllvdhajj6fzzzi046vch28k7h5frm40y4lj7z9pdwjw8r491"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-txw-parent/2.2.11/jaxb-txw-parent-2.2.11" = + { + host = repositories.apache; + path = + "com/sun/xml/bind/mvn/jaxb-txw-parent/2.2.11/jaxb-txw-parent-2.2.11"; + type = "jar"; + pom = { + sha1 = "3fdc8adc054c5418bd76858dce64350bb8655ac5"; + sha256 = "0b1nn9m3wwvklk1ap3nr295dj9fy1s4nhv05y5b3ngsxk9lqqfcs"; + }; + }; + "https://repo.maven.apache.org/maven2/com/sun/xml/fastinfoset/fastinfoset-project/1.2.13/fastinfoset-project-1.2.13" = + { + host = repositories.apache; + path = + "com/sun/xml/fastinfoset/fastinfoset-project/1.2.13/fastinfoset-project-1.2.13"; + type = "jar"; + pom = { + sha1 = "db60407ed97748ffda8b69aee0dd10a82851640d"; + sha256 = "0qf2kzp2qx62a13a70sv82yjcylnizir3z9gghlf0rqhky4mf27x"; + }; + }; + "https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/1.12.1/qdox-1.12.1" = + { + host = repositories.apache; + path = + "com/thoughtworks/qdox/qdox/1.12.1/qdox-1.12.1"; + type = "jar"; + pom = { + sha1 = "461db3fbd183b9ed27751bbdbafcd1bc9654fe7c"; + sha256 = "0p915mapc1r53vw0n0wfsc24s7jrn21fxfgaxp4k1ysfs0b6can5"; + }; + jar = { + sha1 = "f7122f6ab1f64bdf9f5970b0e89bfb355e036897"; + sha256 = "07fxvhcbjg7b501fx4fbn3fbn6hqx2cjvazlgkq6i4hfhcps5yr1"; + }; + }; + "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.10/xstream-parent-1.4.10" = + { + host = repositories.apache; + path = + "com/thoughtworks/xstream/xstream-parent/1.4.10/xstream-parent-1.4.10"; + type = "jar"; + pom = { + sha1 = "19439f7dd9863b57fa69288efac8b172aeba7627"; + sha256 = "1k06hcfr5dknhnxqv4hs3b327c4hbqgckgffvbx3p4qhjiz0qxs6"; + }; + }; + "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.2/xstream-parent-1.4.2" = + { + host = repositories.apache; + path = + "com/thoughtworks/xstream/xstream-parent/1.4.2/xstream-parent-1.4.2"; + type = "jar"; + pom = { + sha1 = "9d86da5cd83aa3fd70ea008d85e9c8cbea41ecfe"; + sha256 = "1lsdad1qnaszc4kcx1zvv6a9amy565fh7j8hsz7p0y1aq0xaq4pf"; + }; + }; + "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.5/xstream-parent-1.4.5" = + { + host = repositories.apache; + path = + "com/thoughtworks/xstream/xstream-parent/1.4.5/xstream-parent-1.4.5"; + type = "jar"; + pom = { + sha1 = "7f79c52865dcfc07b8a2816773314ee01ec11e86"; + sha256 = "0rr5ac4a6qqkmj5aap6j9yzxiq538jc4my4xyg6izkg3yx15sjva"; + }; + }; + "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.7/xstream-parent-1.4.7" = + { + host = repositories.apache; + path = + "com/thoughtworks/xstream/xstream-parent/1.4.7/xstream-parent-1.4.7"; + type = "jar"; + pom = { + sha1 = "15a68d751ca4f347a8480035c3f1397aa44383ac"; + sha256 = "08kz43k1rqw68wklri0d5p5h19614wzbijy4hq5pvy10aw3l0q8g"; + }; + }; + "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.10/xstream-1.4.10" = + { + host = repositories.apache; + path = + "com/thoughtworks/xstream/xstream/1.4.10/xstream-1.4.10"; + type = "jar"; + pom = { + sha1 = "b5f26a4ceed48765954eec5755041ad270467fbf"; + sha256 = "05rlk8fr1m07vdnl9zi1d4z1fpls1h5fa4j4q3ma6gbiixlgzad4"; + }; + jar = { + sha1 = "dfecae23647abc9d9fd0416629a4213a3882b101"; + sha256 = "0n08n108r2lg8pvxg9m3z76qmsz59mp9xv46gih16xb1z8spyn51"; + }; + }; + "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.2/xstream-1.4.2" = + { + host = repositories.apache; + path = + "com/thoughtworks/xstream/xstream/1.4.2/xstream-1.4.2"; + type = "jar"; + pom = { + sha1 = "b8c57a02d6c67065a4e87fccf27cff6a76f045fe"; + sha256 = "1br0k747wbyqv2733ybrzks7q1klakb54m0yfshm1hnhf7i8x5nw"; + }; + jar = { + sha1 = "97e5013f391487cce4de6b0eebcde21549e91872"; + sha256 = "04p2xwj0ykp8ppbhjz580amjh298y6scdqf3dkd531k8i1iy09yw"; + }; + }; + "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.5/xstream-1.4.5" = + { + host = repositories.apache; + path = + "com/thoughtworks/xstream/xstream/1.4.5/xstream-1.4.5"; + type = "jar"; + pom = { + sha1 = "824bf2b482987fe053aefe506297957498f6fc88"; + sha256 = "1p31vfk00yyhjc3fwynz85wk3pyzndcq7v5q24b24nzm2mr2wl91"; + }; + jar = { + sha1 = "61c0a127b237182fdf2ccc9cc2efbb5779a64a3b"; + sha256 = "0q1cwmmd0agih61mk6829wl2bnx7lhidbsbx2s7l7jb0r95j65cf"; + }; + }; + "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.7/xstream-1.4.7" = + { + host = repositories.apache; + path = + "com/thoughtworks/xstream/xstream/1.4.7/xstream-1.4.7"; + type = "jar"; + pom = { + sha1 = "b488ce1ac1c27848cc6012d47bc12b37bec55494"; + sha256 = "0qs6g2wcii7siz65ixafm8x9prp4hrk3fc812502a9375771phl2"; + }; + jar = { + sha1 = "bce3282142b63068260f021fcbe48b72e8d71a1a"; + sha256 = "0r7k6qqrkwazlwrhcsbznds6pwhbq8mmwjsmm71gk13jxv03k03z"; + }; + }; + "https://repo.maven.apache.org/maven2/com/tunnelvisionlabs/antlr4-master/4.4.1/antlr4-master-4.4.1" = + { + host = repositories.apache; + path = + "com/tunnelvisionlabs/antlr4-master/4.4.1/antlr4-master-4.4.1"; + type = "jar"; + pom = { + sha1 = "7e26728b1aed1070f6bed84c80e0053b876cfad6"; + sha256 = "13lfxv0a6150q2yrkmz90ckz5h4z511f4ls9010x11pr82skr7na"; + }; + }; + "https://repo.maven.apache.org/maven2/com/tunnelvisionlabs/antlr4-master/4.5/antlr4-master-4.5" = + { + host = repositories.apache; + path = + "com/tunnelvisionlabs/antlr4-master/4.5/antlr4-master-4.5"; + type = "jar"; + pom = { + sha1 = "6dadb90adc9b3879a4fb9625b08711e578252dfb"; + sha256 = "0cyhq62xqhlkivm5h29j4b48zcaglpmgdwfrg2jlqvvjax0h7lmv"; + }; + }; + "https://repo.maven.apache.org/maven2/com/tunnelvisionlabs/antlr4-maven-plugin/4.4.1/antlr4-maven-plugin-4.4.1" = + { + host = repositories.apache; + path = + "com/tunnelvisionlabs/antlr4-maven-plugin/4.4.1/antlr4-maven-plugin-4.4.1"; + type = "jar"; + pom = { + sha1 = "7d441dde7964db6326e92ff9d43b0cbd05c082c8"; + sha256 = "113gzq8qh5nm8r2r97sm18bnw8ai9kpd2nzn51qccr7l14cfvkdw"; + }; + jar = { + sha1 = "449c34edbeb296a34e0155f20fe19fdde7695296"; + sha256 = "01zsq1kf05lm5y9d3k8vnsc86dk8vn4c73bh58f7al24m2di7xgr"; }; }; "https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils-core/1.7.0/commons-beanutils-core-1.7.0" = @@ -9353,6 +10075,36 @@ in { sha256 = "0l7np518ibnjdca0b6mgx48ik1r9yyc8hmaa0fap7g5ivz9dfnyc"; }; }; + "https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6" = + { + host = repositories.apache; + path = + "commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6"; + type = "jar"; + pom = { + sha1 = "cb6192708aa48ef75e8d04bcde65bc8d5a6ccdbf /home/projects/maven/repository-staging/to-ibiblio/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom"; + sha256 = "0vam9gx3ic4bw1p4nk8y66wxn3d3s1aqw61rpj2l8a34dkdryc7i"; + }; + jar = { + sha1 = "ed3c2b07d1b16ec11440b6656fdbd4845ea6b8be"; + sha256 = "01wlz2q105qj97aib64rn5hyhjiqchiyl6r6w768dcfrgcjzxn3p"; + }; + }; + "https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0" = + { + host = repositories.apache; + path = + "commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0"; + type = "jar"; + pom = { + sha1 = "19eca029edacc1be30030faf43ea6acb30556d1a"; + sha256 = "1naa13q73n0brb7czl8liq90vbch5xq5fp82dxl2gc18b93adb5n"; + }; + jar = { + sha1 = "5675fd96b29656504b86029551973d60fb41339b"; + sha256 = "1x1yh9v1vnlwfzcppwp9w81k95368lafl2hcrrbciixxrhhamg14"; + }; + }; "https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1" = { host = repositories.apache; @@ -9713,6 +10465,21 @@ in { sha256 = "177llblvmkzhq1hqcr2g0ksrr4lgs93kyii4dzar9hkpz04ipwah"; }; }; + "https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1" = + { + host = repositories.apache; + path = + "commons-logging/commons-logging-api/1.1/commons-logging-api-1.1"; + type = "jar"; + pom = { + sha1 = "825395875e4a7ac53277f5f746085a3e13a04248"; + sha256 = "17frwfxmq6b4jzbp3vc0cwj2pckwnnrixcdimh17sv3lm9hvxf39"; + }; + jar = { + sha1 = "7d4cf5231d46c8524f9b9ed75bb2d1c69ab93322"; + sha256 = "0dds0fybdyhy29q0zfzlyhkrh3bss6367n4j6vmy8r27pd3xv91k"; + }; + }; "https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3" = { host = repositories.apache; @@ -9773,21 +10540,6 @@ in { sha256 = "00bnjbpx3jmzjnnmcwhrx654gv6v1gyacjj03xprc6rhfbqh33cy"; }; }; - "https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1" = - { - host = repositories.apache; - path = - "commons-logging/commons-logging-api/1.1/commons-logging-api-1.1"; - type = "jar"; - pom = { - sha1 = "825395875e4a7ac53277f5f746085a3e13a04248"; - sha256 = "17frwfxmq6b4jzbp3vc0cwj2pckwnnrixcdimh17sv3lm9hvxf39"; - }; - jar = { - sha1 = "7d4cf5231d46c8524f9b9ed75bb2d1c69ab93322"; - sha256 = "0dds0fybdyhy29q0zfzlyhkrh3bss6367n4j6vmy8r27pd3xv91k"; - }; - }; "https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0" = { host = repositories.apache; @@ -9818,451 +10570,6 @@ in { sha256 = "138cdkv4ws3inv43yrnc30z6lgdhpbw3iws3zrmylp2fr0v0cs6k"; }; }; - "https://repo.maven.apache.org/maven2/com/simpligility/maven/plugins/android-maven-plugin/4.5.0/android-maven-plugin-4.5.0" = - { - host = repositories.apache; - path = - "com/simpligility/maven/plugins/android-maven-plugin/4.5.0/android-maven-plugin-4.5.0"; - type = "jar"; - pom = { - sha1 = "da9761e976cd720d708330148d63f862282ebec7"; - sha256 = "0k7wk7fq7hkjnn368havkd5f3i282320d6x5zamzy2d7z300q2a8"; - }; - jar = { - sha1 = "a0c1be4d39ae5de45a613a4df845006ca5b5f4b6"; - sha256 = "00jhspsl0znn75hwaqzzz5l27ir3lqv4s0rhw2kbqsnzkw4br11z"; - }; - }; - "https://repo.maven.apache.org/maven2/com/simpligility/maven/progressive-organization-pom/6.0.0/progressive-organization-pom-6.0.0" = - { - host = repositories.apache; - path = - "com/simpligility/maven/progressive-organization-pom/6.0.0/progressive-organization-pom-6.0.0"; - type = "jar"; - pom = { - sha1 = "9ba9933c19605c86a59d0a7861312e7c3ac83a1d"; - sha256 = "1wzvdvf67dw7zzlwrvb8phl5nw79kqw5sjlplqah16cni6ppfgzb"; - }; - }; - "https://repo.maven.apache.org/maven2/com/squareup/okhttp3/parent/3.12.1/parent-3.12.1" = - { - host = repositories.apache; - path = - "com/squareup/okhttp3/parent/3.12.1/parent-3.12.1"; - type = "jar"; - pom = { - sha1 = "a118bcb30283e6df0fa33574d3eeb69804e0f3dd"; - sha256 = "1g7lzfqfpq3jrpm9lgcsmq2lbrwck5kp3jns7jvvbvgfkc46yz7m"; - }; - }; - "https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.15.0/okio-parent-1.15.0" = - { - host = repositories.apache; - path = - "com/squareup/okio/okio-parent/1.15.0/okio-parent-1.15.0"; - type = "jar"; - pom = { - sha1 = "5eb9d8103fd3e21923bcf157066957337d6ca71e"; - sha256 = "1ckd0lhrvgzzjlhj36i607cdmv3slh2hsiwrycfp5kdal8z9mq1l"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.0/all-1.2.0" = - { - host = repositories.apache; - path = - "com/sun/activation/all/1.2.0/all-1.2.0"; - type = "jar"; - pom = { - sha1 = "9b1023e38195ea19d1a0ac79192d486da1904f97"; - sha256 = "1i62n3icq23pssrvvii30x9jx63wygg7ggppwh2a2ckmmkiii18x"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons/2.21/istack-commons-2.21" = - { - host = repositories.apache; - path = - "com/sun/istack/istack-commons/2.21/istack-commons-2.21"; - type = "jar"; - pom = { - sha1 = "125168cc27946f32374cef253dbe607486aa3919"; - sha256 = "1341mibhpgaibhvdq6xzdkxjw8bp434nakkbc212j5lvz1vi41y3"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-apache-client4/1.12/jersey-apache-client4-1.12" = - { - host = repositories.apache; - path = - "com/sun/jersey/contribs/jersey-apache-client4/1.12/jersey-apache-client4-1.12"; - type = "jar"; - pom = { - sha1 = "c098d3e3187af8a5944d65177421f95b33b7ac90"; - sha256 = "1g4aj6majp0m1ag0fh742chp3gi9lf3ncw5kn5dqvxb95g7i0dpq"; - }; - jar = { - sha1 = "d4b573e06449d32d3a63d3ac3fdd8233dcaeb3b2"; - sha256 = "15cm6zwd8rgfywqk20vs77ifl583ywkkxhc4m4k9610j3rg8sf1r"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-apache-client4/1.17.1/jersey-apache-client4-1.17.1" = - { - host = repositories.apache; - path = - "com/sun/jersey/contribs/jersey-apache-client4/1.17.1/jersey-apache-client4-1.17.1"; - type = "jar"; - pom = { - sha1 = "8716e5b8e33a82b44942b5b8bdc61055e7e03c59"; - sha256 = "1fl69ymvadmrc5g0n8aw344ljd9488h9ywlpc3v4scw9illjc47r"; - }; - jar = { - sha1 = "31b9839810450b77bc8e09534efde995630a4bc6"; - sha256 = "1iikgnrfyik4jv6svd0icfc1wnjf317470v6wf6iwn6ak8i4gkz4"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.12/jersey-contribs-1.12" = - { - host = repositories.apache; - path = - "com/sun/jersey/contribs/jersey-contribs/1.12/jersey-contribs-1.12"; - type = "jar"; - pom = { - sha1 = "beaaa28cbbe1bcfbd0a2911f479a355776d84b9f"; - sha256 = "1s6190jz5n8cvvdyzgii1sjyhkqip852hpm5ngai5rr4md0cmfnm"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.17.1/jersey-contribs-1.17.1" = - { - host = repositories.apache; - path = - "com/sun/jersey/contribs/jersey-contribs/1.17.1/jersey-contribs-1.17.1"; - type = "jar"; - pom = { - sha1 = "2b20f01b04a633ed5a347709066687c374271305"; - sha256 = "0gs3fvwf7q0x88l4asb28vd7qr6z9rpxq3bah3d6kih3gy6nnyfp"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.12/jersey-client-1.12" = - { - host = repositories.apache; - path = - "com/sun/jersey/jersey-client/1.12/jersey-client-1.12"; - type = "jar"; - pom = { - sha1 = "bcb76e60e4dd7304cc73b1e54c97b9fede3f3d9d"; - sha256 = "0dfbgr79yfdzzkdah6pxmzs72hrx08vvdigsdc5w9hbw1x7y22q3"; - }; - jar = { - sha1 = "d468a05f81031e8b5470f829e3dcedb399d369a2"; - sha256 = "0ll7smj6s8zgv5jw47my57anf3g1zvys4xbzhj1hjsr1nb5x5ib9"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.17.1/jersey-client-1.17.1" = - { - host = repositories.apache; - path = - "com/sun/jersey/jersey-client/1.17.1/jersey-client-1.17.1"; - type = "jar"; - pom = { - sha1 = "edde8010e455ce74dcbcf149ecef4afd3868c67c"; - sha256 = "12376sv5g48sn0xkx2qjrh2wf6n82x370ycdbcjxiynw4hpmic7v"; - }; - jar = { - sha1 = "b92fb0f202ca548f9067d57a133635fc1b8ad0ff"; - sha256 = "0qdf2a0f6h7jq7srxqyyjdz6scc0j79zyjhgd3wzxvg91dv0bf7l"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.12/jersey-core-1.12" = - { - host = repositories.apache; - path = - "com/sun/jersey/jersey-core/1.12/jersey-core-1.12"; - type = "jar"; - pom = { - sha1 = "29becac3ae8c117187d12ec499bbf94b351e3298"; - sha256 = "0kan88py3rfv8xlcv0lnb2h7bxb4kjfy5dqw6rmqmh6crwv1yx55"; - }; - jar = { - sha1 = "b6e4ec5b0f807515e3c18c15cfa62061fca7f706"; - sha256 = "1r517mghysxzdhd6rv374k6ih2bqmc6i4x65rq9hwrzgrxwkxv2i"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.17.1/jersey-core-1.17.1" = - { - host = repositories.apache; - path = - "com/sun/jersey/jersey-core/1.17.1/jersey-core-1.17.1"; - type = "jar"; - pom = { - sha1 = "6fb941a1495582b87a1912473080abdc520f721e"; - sha256 = "04cdsc9mxyipgdg50ihp2a91rcn4fff1xqrl1xv3zhnipwj7nm6v"; - }; - jar = { - sha1 = "7f73259ad9cf7be225f2a42bd4fe72f34ff9b65c"; - sha256 = "0f8iddgc6xqmhwzsgxqk5ikpfhz86qgxzqz7s60fba8wiykpgmdy"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.17.1/jersey-json-1.17.1" = - { - host = repositories.apache; - path = - "com/sun/jersey/jersey-json/1.17.1/jersey-json-1.17.1"; - type = "jar"; - pom = { - sha1 = "43e4a077d4b18910b1ca36f50ccb89284dc6c858"; - sha256 = "19h3ds3g57rvqxk93dgfd35irbj6slfrh534d33k1qaigjbcwaqv"; - }; - jar = { - sha1 = "a06613b2d4a742ecb0df541ac81f90fd148facda"; - sha256 = "05ycsybc75rz0pd2v7zhid1x98af2z2hczgzd29g05mjdvr29l9s"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.12/jersey-project-1.12" = - { - host = repositories.apache; - path = - "com/sun/jersey/jersey-project/1.12/jersey-project-1.12"; - type = "jar"; - pom = { - sha1 = "a96c36d03608235f3ea268ffae18d3656841ec2d"; - sha256 = "066y0bd42p1181xavcm44lc3vqybz4bphmkijcwsc4m6fakrzjd2"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.17.1/jersey-project-1.17.1" = - { - host = repositories.apache; - path = - "com/sun/jersey/jersey-project/1.17.1/jersey-project-1.17.1"; - type = "jar"; - pom = { - sha1 = "804484c7d804b5858e8f25f5dcf16808a8d0cbdf"; - sha256 = "199yy7yna3jgd6xkwfdbmrz8a1r3ajj0zkxjx43kjhx7095k5nd3"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-bom-ext/2.2.11/jaxb-bom-ext-2.2.11" = - { - host = repositories.apache; - path = - "com/sun/xml/bind/jaxb-bom-ext/2.2.11/jaxb-bom-ext-2.2.11"; - type = "jar"; - pom = { - sha1 = "158223fd61f720cf172e1984147b62aa8f2bdf4e"; - sha256 = "1sav7gq6a54zvkb113qhff3zp435767n1r5276q95jr1vs9hcpmj"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1" = - { - host = repositories.apache; - path = - "com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1"; - type = "jar"; - pom = { - sha1 = "a537c835c53dcd0bdf5d63144ac12bea936e3335"; - sha256 = "19kkhlbnjcyh5jfrg8iq79lj1zi02rzafsirpvp7vhhf0b1rqrai"; - }; - jar = { - sha1 = "56baae106392040a45a06d4a41099173425da1e6"; - sha256 = "1y2gcjp0di2camn3wmn9ljp4lfb89ckq2a7h5cqi1hwjn6ci8gps"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-parent/2.2.11/jaxb-parent-2.2.11" = - { - host = repositories.apache; - path = - "com/sun/xml/bind/mvn/jaxb-parent/2.2.11/jaxb-parent-2.2.11"; - type = "jar"; - pom = { - sha1 = "9496f6747e6d5ab5da869941dea4143969122b91"; - sha256 = "10041gr7ra0777sp4cyflhs5slpf6849lpv13dbpwm013iqinc5m"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-runtime-parent/2.2.11/jaxb-runtime-parent-2.2.11" = - { - host = repositories.apache; - path = - "com/sun/xml/bind/mvn/jaxb-runtime-parent/2.2.11/jaxb-runtime-parent-2.2.11"; - type = "jar"; - pom = { - sha1 = "dd7834f63d08408fde8fbb58f1ea557bbb31d444"; - sha256 = "144fllvdhajj6fzzzi046vch28k7h5frm40y4lj7z9pdwjw8r491"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-txw-parent/2.2.11/jaxb-txw-parent-2.2.11" = - { - host = repositories.apache; - path = - "com/sun/xml/bind/mvn/jaxb-txw-parent/2.2.11/jaxb-txw-parent-2.2.11"; - type = "jar"; - pom = { - sha1 = "3fdc8adc054c5418bd76858dce64350bb8655ac5"; - sha256 = "0b1nn9m3wwvklk1ap3nr295dj9fy1s4nhv05y5b3ngsxk9lqqfcs"; - }; - }; - "https://repo.maven.apache.org/maven2/com/sun/xml/fastinfoset/fastinfoset-project/1.2.13/fastinfoset-project-1.2.13" = - { - host = repositories.apache; - path = - "com/sun/xml/fastinfoset/fastinfoset-project/1.2.13/fastinfoset-project-1.2.13"; - type = "jar"; - pom = { - sha1 = "db60407ed97748ffda8b69aee0dd10a82851640d"; - sha256 = "0qf2kzp2qx62a13a70sv82yjcylnizir3z9gghlf0rqhky4mf27x"; - }; - }; - "https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/1.12.1/qdox-1.12.1" = - { - host = repositories.apache; - path = - "com/thoughtworks/qdox/qdox/1.12.1/qdox-1.12.1"; - type = "jar"; - pom = { - sha1 = "461db3fbd183b9ed27751bbdbafcd1bc9654fe7c"; - sha256 = "0p915mapc1r53vw0n0wfsc24s7jrn21fxfgaxp4k1ysfs0b6can5"; - }; - jar = { - sha1 = "f7122f6ab1f64bdf9f5970b0e89bfb355e036897"; - sha256 = "07fxvhcbjg7b501fx4fbn3fbn6hqx2cjvazlgkq6i4hfhcps5yr1"; - }; - }; - "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.10/xstream-1.4.10" = - { - host = repositories.apache; - path = - "com/thoughtworks/xstream/xstream/1.4.10/xstream-1.4.10"; - type = "jar"; - pom = { - sha1 = "b5f26a4ceed48765954eec5755041ad270467fbf"; - sha256 = "05rlk8fr1m07vdnl9zi1d4z1fpls1h5fa4j4q3ma6gbiixlgzad4"; - }; - jar = { - sha1 = "dfecae23647abc9d9fd0416629a4213a3882b101"; - sha256 = "0n08n108r2lg8pvxg9m3z76qmsz59mp9xv46gih16xb1z8spyn51"; - }; - }; - "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.2/xstream-1.4.2" = - { - host = repositories.apache; - path = - "com/thoughtworks/xstream/xstream/1.4.2/xstream-1.4.2"; - type = "jar"; - pom = { - sha1 = "b8c57a02d6c67065a4e87fccf27cff6a76f045fe"; - sha256 = "1br0k747wbyqv2733ybrzks7q1klakb54m0yfshm1hnhf7i8x5nw"; - }; - jar = { - sha1 = "97e5013f391487cce4de6b0eebcde21549e91872"; - sha256 = "04p2xwj0ykp8ppbhjz580amjh298y6scdqf3dkd531k8i1iy09yw"; - }; - }; - "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.5/xstream-1.4.5" = - { - host = repositories.apache; - path = - "com/thoughtworks/xstream/xstream/1.4.5/xstream-1.4.5"; - type = "jar"; - pom = { - sha1 = "824bf2b482987fe053aefe506297957498f6fc88"; - sha256 = "1p31vfk00yyhjc3fwynz85wk3pyzndcq7v5q24b24nzm2mr2wl91"; - }; - jar = { - sha1 = "61c0a127b237182fdf2ccc9cc2efbb5779a64a3b"; - sha256 = "0q1cwmmd0agih61mk6829wl2bnx7lhidbsbx2s7l7jb0r95j65cf"; - }; - }; - "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream/1.4.7/xstream-1.4.7" = - { - host = repositories.apache; - path = - "com/thoughtworks/xstream/xstream/1.4.7/xstream-1.4.7"; - type = "jar"; - pom = { - sha1 = "b488ce1ac1c27848cc6012d47bc12b37bec55494"; - sha256 = "0qs6g2wcii7siz65ixafm8x9prp4hrk3fc812502a9375771phl2"; - }; - jar = { - sha1 = "bce3282142b63068260f021fcbe48b72e8d71a1a"; - sha256 = "0r7k6qqrkwazlwrhcsbznds6pwhbq8mmwjsmm71gk13jxv03k03z"; - }; - }; - "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.10/xstream-parent-1.4.10" = - { - host = repositories.apache; - path = - "com/thoughtworks/xstream/xstream-parent/1.4.10/xstream-parent-1.4.10"; - type = "jar"; - pom = { - sha1 = "19439f7dd9863b57fa69288efac8b172aeba7627"; - sha256 = "1k06hcfr5dknhnxqv4hs3b327c4hbqgckgffvbx3p4qhjiz0qxs6"; - }; - }; - "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.2/xstream-parent-1.4.2" = - { - host = repositories.apache; - path = - "com/thoughtworks/xstream/xstream-parent/1.4.2/xstream-parent-1.4.2"; - type = "jar"; - pom = { - sha1 = "9d86da5cd83aa3fd70ea008d85e9c8cbea41ecfe"; - sha256 = "1lsdad1qnaszc4kcx1zvv6a9amy565fh7j8hsz7p0y1aq0xaq4pf"; - }; - }; - "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.5/xstream-parent-1.4.5" = - { - host = repositories.apache; - path = - "com/thoughtworks/xstream/xstream-parent/1.4.5/xstream-parent-1.4.5"; - type = "jar"; - pom = { - sha1 = "7f79c52865dcfc07b8a2816773314ee01ec11e86"; - sha256 = "0rr5ac4a6qqkmj5aap6j9yzxiq538jc4my4xyg6izkg3yx15sjva"; - }; - }; - "https://repo.maven.apache.org/maven2/com/thoughtworks/xstream/xstream-parent/1.4.7/xstream-parent-1.4.7" = - { - host = repositories.apache; - path = - "com/thoughtworks/xstream/xstream-parent/1.4.7/xstream-parent-1.4.7"; - type = "jar"; - pom = { - sha1 = "15a68d751ca4f347a8480035c3f1397aa44383ac"; - sha256 = "08kz43k1rqw68wklri0d5p5h19614wzbijy4hq5pvy10aw3l0q8g"; - }; - }; - "https://repo.maven.apache.org/maven2/com/tunnelvisionlabs/antlr4-master/4.4.1/antlr4-master-4.4.1" = - { - host = repositories.apache; - path = - "com/tunnelvisionlabs/antlr4-master/4.4.1/antlr4-master-4.4.1"; - type = "jar"; - pom = { - sha1 = "7e26728b1aed1070f6bed84c80e0053b876cfad6"; - sha256 = "13lfxv0a6150q2yrkmz90ckz5h4z511f4ls9010x11pr82skr7na"; - }; - }; - "https://repo.maven.apache.org/maven2/com/tunnelvisionlabs/antlr4-master/4.5/antlr4-master-4.5" = - { - host = repositories.apache; - path = - "com/tunnelvisionlabs/antlr4-master/4.5/antlr4-master-4.5"; - type = "jar"; - pom = { - sha1 = "6dadb90adc9b3879a4fb9625b08711e578252dfb"; - sha256 = "0cyhq62xqhlkivm5h29j4b48zcaglpmgdwfrg2jlqvvjax0h7lmv"; - }; - }; - "https://repo.maven.apache.org/maven2/com/tunnelvisionlabs/antlr4-maven-plugin/4.4.1/antlr4-maven-plugin-4.4.1" = - { - host = repositories.apache; - path = - "com/tunnelvisionlabs/antlr4-maven-plugin/4.4.1/antlr4-maven-plugin-4.4.1"; - type = "jar"; - pom = { - sha1 = "7d441dde7964db6326e92ff9d43b0cbd05c082c8"; - sha256 = "113gzq8qh5nm8r2r97sm18bnw8ai9kpd2nzn51qccr7l14cfvkdw"; - }; - jar = { - sha1 = "449c34edbeb296a34e0155f20fe19fdde7695296"; - sha256 = "01zsq1kf05lm5y9d3k8vnsc86dk8vn4c73bh58f7al24m2di7xgr"; - }; - }; "https://repo.maven.apache.org/maven2/de/zeigermann/xml/xml-im-exporter/1.1/xml-im-exporter-1.1" = { host = repositories.apache; @@ -10544,6 +10851,21 @@ in { sha256 = "0fwq6k98qr68graj74qgryyi4rrmkffbvb49snpv7y21cq0dhbv0"; }; }; + "https://repo.maven.apache.org/maven2/junit/junit-dep/4.10/junit-dep-4.10" = + { + host = repositories.apache; + path = + "junit/junit-dep/4.10/junit-dep-4.10"; + type = "jar"; + pom = { + sha1 = "432471633be1bbff8ecebd500c14ac018b067dce"; + sha256 = "11mjy43h5nr65m9bsqzcwbwj90wnwkpj3zg2ndmqvkascw7s6q3z"; + }; + jar = { + sha1 = "64417b3bafdecd366afa514bd5beeae6c1f85ece"; + sha256 = "0cnrlj88wcm189s2mx3apl9i6d2jy8daqxgrkpdckknrpvcimf61"; + }; + }; "https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1" = { host = repositories.apache; @@ -10709,21 +11031,6 @@ in { sha256 = "0min2ifj6l8ncwg6wbg3q3wy6c3gg4pspkwj6qb6b4c3q611ciai"; }; }; - "https://repo.maven.apache.org/maven2/junit/junit-dep/4.10/junit-dep-4.10" = - { - host = repositories.apache; - path = - "junit/junit-dep/4.10/junit-dep-4.10"; - type = "jar"; - pom = { - sha1 = "432471633be1bbff8ecebd500c14ac018b067dce"; - sha256 = "11mjy43h5nr65m9bsqzcwbwj90wnwkpj3zg2ndmqvkascw7s6q3z"; - }; - jar = { - sha1 = "64417b3bafdecd366afa514bd5beeae6c1f85ece"; - sha256 = "0cnrlj88wcm189s2mx3apl9i6d2jy8daqxgrkpdckknrpvcimf61"; - }; - }; "https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12" = { host = repositories.apache; @@ -10769,51 +11076,6 @@ in { sha256 = "1q01fmnki6n23qz39hnxvxfvfkc6bw18l5jb4bnhag8zq97kpaby"; }; }; - "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.6.5/byte-buddy-1.6.5" = - { - host = repositories.apache; - path = - "net/bytebuddy/byte-buddy/1.6.5/byte-buddy-1.6.5"; - type = "jar"; - pom = { - sha1 = "21bcf1f645579471618bcb6d5c27e9d193a19cec"; - sha256 = "13937vv4jwwr93v64jp1x67ikl65f1yxxswd1m1167x4v31f4am4"; - }; - jar = { - sha1 = "25cf61dea06b7402a91bd8435af4ecfc0dd5935b"; - sha256 = "19c3sdsqk02s9hp7gqzkdnxaxajcwy4qdikywh10nvp9ah3s2pj4"; - }; - }; - "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.8.10/byte-buddy-1.8.10" = - { - host = repositories.apache; - path = - "net/bytebuddy/byte-buddy/1.8.10/byte-buddy-1.8.10"; - type = "jar"; - pom = { - sha1 = "8a421ccaebc6b48a26112fde1e45145357a81fbb"; - sha256 = "1dhhdl0v1lqnv853kwdsnwsg144ks57kgyi7fcc7kl8jf62cdkhr"; - }; - jar = { - sha1 = "c3dcdb62b4297eacbe8a763f36044e1f1b04709b"; - sha256 = "031qj9dbwij6l6awyg320zxrpgfqy8yi8xfdmpxzkb2nh88y0acc"; - }; - }; - "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.8.5/byte-buddy-1.8.5" = - { - host = repositories.apache; - path = - "net/bytebuddy/byte-buddy/1.8.5/byte-buddy-1.8.5"; - type = "jar"; - pom = { - sha1 = "890fd66dc7ed60d574223a916d56e873830956a3"; - sha256 = "1rq6qladmrp76h1rldzngv41r5vb1hjppwksxjbb7rd3mgjwdkmv"; - }; - jar = { - sha1 = "f16b6f8bf487d06e9f83da3033958a694f57c8a4"; - sha256 = "07k8kmqwcadhfwrll3yjv1lkfi4bd7cfkpc2hdk4w8nj87gkipsw"; - }; - }; "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.6.5/byte-buddy-agent-1.6.5" = { host = repositories.apache; @@ -10859,6 +11121,21 @@ in { sha256 = "0ymvikanigcacqscgg2df32089n69srvy623aq843wzrpy2hskl0"; }; }; + "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.10/byte-buddy-agent-1.9.10" = + { + host = repositories.apache; + path = + "net/bytebuddy/byte-buddy-agent/1.9.10/byte-buddy-agent-1.9.10"; + type = "jar"; + pom = { + sha1 = "856c025dc43c6c68ca5ae431ca2d77b5951b9c09"; + sha256 = "0lj1wr4265jhw5njrnds93km7d72jpgq3fslc37ida6x7wlprh0f"; + }; + jar = { + sha1 = "9674aba5ee793e54b864952b001166848da0f26b"; + sha256 = "10p1lml0gl4150fv2fjly275h1szr7iyilh7sd83441jj793kmwf"; + }; + }; "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.6.5/byte-buddy-parent-1.6.5" = { host = repositories.apache; @@ -10892,6 +11169,77 @@ in { sha256 = "05vs57aznxq0ww6z2czrsvncdhw9mk2v83wmg20swfjga1rs1nf8"; }; }; + "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.9.10/byte-buddy-parent-1.9.10" = + { + host = repositories.apache; + path = + "net/bytebuddy/byte-buddy-parent/1.9.10/byte-buddy-parent-1.9.10"; + type = "jar"; + pom = { + sha1 = "adb368c4cca2acbc8d18380b065f6b5bba0f7b24"; + sha256 = "1sp2y20b89awg523cvf0i63ml72lsm5imm17qhjd2i9l3vm27yr9"; + }; + }; + "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.6.5/byte-buddy-1.6.5" = + { + host = repositories.apache; + path = + "net/bytebuddy/byte-buddy/1.6.5/byte-buddy-1.6.5"; + type = "jar"; + pom = { + sha1 = "21bcf1f645579471618bcb6d5c27e9d193a19cec"; + sha256 = "13937vv4jwwr93v64jp1x67ikl65f1yxxswd1m1167x4v31f4am4"; + }; + jar = { + sha1 = "25cf61dea06b7402a91bd8435af4ecfc0dd5935b"; + sha256 = "19c3sdsqk02s9hp7gqzkdnxaxajcwy4qdikywh10nvp9ah3s2pj4"; + }; + }; + "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.8.10/byte-buddy-1.8.10" = + { + host = repositories.apache; + path = + "net/bytebuddy/byte-buddy/1.8.10/byte-buddy-1.8.10"; + type = "jar"; + pom = { + sha1 = "8a421ccaebc6b48a26112fde1e45145357a81fbb"; + sha256 = "1dhhdl0v1lqnv853kwdsnwsg144ks57kgyi7fcc7kl8jf62cdkhr"; + }; + jar = { + sha1 = "c3dcdb62b4297eacbe8a763f36044e1f1b04709b"; + sha256 = "031qj9dbwij6l6awyg320zxrpgfqy8yi8xfdmpxzkb2nh88y0acc"; + }; + }; + "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.8.5/byte-buddy-1.8.5" = + { + host = repositories.apache; + path = + "net/bytebuddy/byte-buddy/1.8.5/byte-buddy-1.8.5"; + type = "jar"; + pom = { + sha1 = "890fd66dc7ed60d574223a916d56e873830956a3"; + sha256 = "1rq6qladmrp76h1rldzngv41r5vb1hjppwksxjbb7rd3mgjwdkmv"; + }; + jar = { + sha1 = "f16b6f8bf487d06e9f83da3033958a694f57c8a4"; + sha256 = "07k8kmqwcadhfwrll3yjv1lkfi4bd7cfkpc2hdk4w8nj87gkipsw"; + }; + }; + "https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10" = + { + host = repositories.apache; + path = + "net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10"; + type = "jar"; + pom = { + sha1 = "30e93444089cf78a839290ea30ef36fa892e045d"; + sha256 = "0hxy8lkvcinyl5ajk2k7qbri8qc3jsv5rbfc1b0m70s50xwq1mdk"; + }; + jar = { + sha1 = "211a2b4d3df1eeef2a6cacf78d74a1f725e7a840"; + sha256 = "1wrbimj9f3m253kz99i7gxpx12qg5lp42qfk91456v3v9nydwdi9"; + }; + }; "https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1" = { host = repositories.apache; @@ -10999,6 +11347,28 @@ in { sha256 = "0ns05wvsncn1v0c7q00rb3rvsssb9kb0vbd4vgqkssdw7kn7p4yx"; }; }; + "https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5.2/antlr-master-3.5.2" = + { + host = repositories.apache; + path = + "org/antlr/antlr-master/3.5.2/antlr-master-3.5.2"; + type = "jar"; + pom = { + sha1 = "0e9d18b3d8c228ff9786ee977f44800897fe15be"; + sha256 = "1mhv6gqiwdrgypibcwxxhbrfh25rqc1a06jlkfq0w4553r9imna2"; + }; + }; + "https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5/antlr-master-3.5" = + { + host = repositories.apache; + path = + "org/antlr/antlr-master/3.5/antlr-master-3.5"; + type = "jar"; + pom = { + sha1 = "91a98d6eed92200447501242475a67114aa4f1b8"; + sha256 = "0r76dpins0y3vi6ypgc7n0w1a6jram6yd9rq0jbpn6y5zdm4rdd7"; + }; + }; "https://repo.maven.apache.org/maven2/org/antlr/antlr3-maven-plugin/3.5.2/antlr3-maven-plugin-3.5.2" = { host = repositories.apache; @@ -11040,28 +11410,6 @@ in { sha256 = "195jkdpq6v34aa1wd3hznlvzcch3x8s89wfgnvlrkm8awzapf620"; }; }; - "https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5.2/antlr-master-3.5.2" = - { - host = repositories.apache; - path = - "org/antlr/antlr-master/3.5.2/antlr-master-3.5.2"; - type = "jar"; - pom = { - sha1 = "0e9d18b3d8c228ff9786ee977f44800897fe15be"; - sha256 = "1mhv6gqiwdrgypibcwxxhbrfh25rqc1a06jlkfq0w4553r9imna2"; - }; - }; - "https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5/antlr-master-3.5" = - { - host = repositories.apache; - path = - "org/antlr/antlr-master/3.5/antlr-master-3.5"; - type = "jar"; - pom = { - sha1 = "91a98d6eed92200447501242475a67114aa4f1b8"; - sha256 = "0r76dpins0y3vi6ypgc7n0w1a6jram6yd9rq0jbpn6y5zdm4rdd7"; - }; - }; "https://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1" = { host = repositories.apache; @@ -11077,36 +11425,6 @@ in { sha256 = "1mzndmmc005zvcqgrjxkj7mnzmvapb9583h21z5h2lsyjqpffv7n"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.8.4/ant-1.8.4" = - { - host = repositories.apache; - path = - "org/apache/ant/ant/1.8.4/ant-1.8.4"; - type = "jar"; - pom = { - sha1 = "8ff925f72a23c485bb18a3d11dd881348643555d"; - sha256 = "1y1ym75ikdjai839swax7s3pnf4z66vddi8dlah705kq574v99mi"; - }; - jar = { - sha1 = "8acff3fb57e74bc062d4675d9dcfaffa0d524972"; - sha256 = "196vx4va3hc0ifbg10kmi7crlhh1sdinfv4x3l8yvqndm2683igz"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.9.4/ant-1.9.4" = - { - host = repositories.apache; - path = - "org/apache/ant/ant/1.9.4/ant-1.9.4"; - type = "jar"; - pom = { - sha1 = "3f0b3746c0d89c48db6c46503c798a47718e951e"; - sha256 = "1zbpa1d5b5vba5h5bq5cmwc4489n07d20c463wsvw14dy8c3mqjw"; - }; - jar = { - sha1 = "6d473e8653d952045f550f4ef225a9591b79094a"; - sha256 = "1n3147qc89m419hk5wy58wnvk9xv8rnjhj9zj6w0gpji09ry16k4"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/ant/ant-antlr/1.9.4/ant-antlr-1.9.4" = { host = repositories.apache; @@ -11189,6 +11507,47 @@ in { sha256 = "1i2il5d9lbfqyh7b91x9i9mf6w9952p1a31na472p1v5cv3ajfm9"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.8.4/ant-1.8.4" = + { + host = repositories.apache; + path = + "org/apache/ant/ant/1.8.4/ant-1.8.4"; + type = "jar"; + pom = { + sha1 = "8ff925f72a23c485bb18a3d11dd881348643555d"; + sha256 = "1y1ym75ikdjai839swax7s3pnf4z66vddi8dlah705kq574v99mi"; + }; + jar = { + sha1 = "8acff3fb57e74bc062d4675d9dcfaffa0d524972"; + sha256 = "196vx4va3hc0ifbg10kmi7crlhh1sdinfv4x3l8yvqndm2683igz"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.9.4/ant-1.9.4" = + { + host = repositories.apache; + path = + "org/apache/ant/ant/1.9.4/ant-1.9.4"; + type = "jar"; + pom = { + sha1 = "3f0b3746c0d89c48db6c46503c798a47718e951e"; + sha256 = "1zbpa1d5b5vba5h5bq5cmwc4489n07d20c463wsvw14dy8c3mqjw"; + }; + jar = { + sha1 = "6d473e8653d952045f550f4ef225a9591b79094a"; + sha256 = "1n3147qc89m419hk5wy58wnvk9xv8rnjhj9zj6w0gpji09ry16k4"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/apache/1/apache-1" = + { + host = repositories.apache; + path = + "org/apache/apache/1/apache-1"; + type = "jar"; + pom = { + sha1 = "8902526cc8e0fd0373c42c7f3ddc35560c26bf59"; + sha256 = "1yxhf98gh0l483iw1m3fg8fx9n9606466pz3w7pqnv4581p7ly0s"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10" = { host = repositories.apache; @@ -11288,15 +11647,15 @@ in { sha256 = "1pr1xkql02r4kkx8r34dqh1c1jilp7z02vdgrg1blsgajqqa7xwi"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/apache/1/apache-1" = + "https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2" = { host = repositories.apache; path = - "org/apache/apache/1/apache-1"; + "org/apache/apache/2/apache-2"; type = "jar"; pom = { - sha1 = "8902526cc8e0fd0373c42c7f3ddc35560c26bf59"; - sha256 = "1yxhf98gh0l483iw1m3fg8fx9n9606466pz3w7pqnv4581p7ly0s"; + sha1 = "bfe8f1ae400b4fdf0365b6b61cde3a6cae5750e3"; + sha256 = "1qg0nls32k7z5m6cc5q3jfh6paj0v1ckk61fzbnpkbaak542w960"; }; }; "https://repo.maven.apache.org/maven2/org/apache/apache/20/apache-20" = @@ -11332,17 +11691,6 @@ in { sha256 = "07298c2jfkdb6gaxidig2pnl0ckdjfi9qqy5z9vnbwr30r76445w"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2" = - { - host = repositories.apache; - path = - "org/apache/apache/2/apache-2"; - type = "jar"; - pom = { - sha1 = "bfe8f1ae400b4fdf0365b6b61cde3a6cae5750e3"; - sha256 = "1qg0nls32k7z5m6cc5q3jfh6paj0v1ckk61fzbnpkbaak542w960"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3" = { host = repositories.apache; @@ -11420,21 +11768,6 @@ in { sha256 = "1p8qrz7swd6ylwfiv6x4kr3gip6sy2vca8xwydlxm3kwah5fcij9"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10" = - { - host = repositories.apache; - path = - "org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10"; - type = "jar"; - pom = { - sha1 = "38dc8559c1bb27403dd890129d9b49a9c6029121"; - sha256 = "13jq719j96zdh0yhnzxmxk89lkbr1j1mprq1mnhyzblafmrd8r37"; - }; - jar = { - sha1 = "f706a99f061f3049fd9407dc04e97ad5b1314df1"; - sha256 = "18drd2lcd1sk1hx44yv53ydavaj265c69kcnq8k2i8fjzb99mvpq"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/commons/commons-build-plugin/1.1/commons-build-plugin-1.1" = { host = repositories.apache; @@ -11450,6 +11783,21 @@ in { sha256 = "1nw1r0jsf5h3g4agayf3y1b1fxrmkm9yxlaa1n1r7s99h94za7kr"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10" = + { + host = repositories.apache; + path = + "org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10"; + type = "jar"; + pom = { + sha1 = "38dc8559c1bb27403dd890129d9b49a9c6029121"; + sha256 = "13jq719j96zdh0yhnzxmxk89lkbr1j1mprq1mnhyzblafmrd8r37"; + }; + jar = { + sha1 = "f706a99f061f3049fd9407dc04e97ad5b1314df1"; + sha256 = "18drd2lcd1sk1hx44yv53ydavaj265c69kcnq8k2i8fjzb99mvpq"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/commons/commons-build-plugin/1.3/commons-build-plugin-1.3" = { host = repositories.apache; @@ -11797,17 +12145,6 @@ in { sha256 = "0a514gdxpjn909kd30cy23a6b1gpvgj1h48gr0l9gmdfw39vfcak"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/felix/felix/1.0.2/felix-1.0.2" = - { - host = repositories.apache; - path = - "org/apache/felix/felix/1.0.2/felix-1.0.2"; - type = "jar"; - pom = { - sha1 = "e01f8d1b03a6e84a5d4841ab07a32256868035d2"; - sha256 = "0dhzgwip61xfb1y82g00ff0pg1g3pincda67vv8m0zsby114pmwh"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/felix/felix-parent/1.2.1/felix-parent-1.2.1" = { host = repositories.apache; @@ -11863,6 +12200,17 @@ in { sha256 = "15am7c4llfafw3c8afrkx1k6jpjign25khbwqy4g9j7n02rbc21n"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/felix/felix/1.0.2/felix-1.0.2" = + { + host = repositories.apache; + path = + "org/apache/felix/felix/1.0.2/felix-1.0.2"; + type = "jar"; + pom = { + sha1 = "e01f8d1b03a6e84a5d4841ab07a32256868035d2"; + sha256 = "0dhzgwip61xfb1y82g00ff0pg1g3pincda67vv8m0zsby114pmwh"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/1.4.0/maven-bundle-plugin-1.4.0" = { host = repositories.apache; @@ -12073,6 +12421,21 @@ in { sha256 = "1ync8s7qsp6q4642zq095f10qzy08v4wi1xili5lya1jagklxp03"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.0.1/httpclient-4.0.1" = + { + host = repositories.apache; + path = + "org/apache/httpcomponents/httpclient/4.0.1/httpclient-4.0.1"; + type = "jar"; + pom = { + sha1 = "2bd89707ff72268b82c1a6ef901fe1a7cf42461b"; + sha256 = "1cji45wbnlmnv68m5mfmpa0ml15my8r27g0p3n30sw51lhjw1f2i"; + }; + jar = { + sha1 = "1d7d28fa738bdbfe4fbd895d9486308999bdf440"; + sha256 = "00rwar2fx17jvchk7qlxk9kk91q7dnq3ppjmlvcyb6kwvkmrc9bm"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2" = { host = repositories.apache; @@ -12118,6 +12481,17 @@ in { sha256 = "1ipqxr7qsin53q1j6xw5aa3kqciv2fxazmm9axzkzpl5rqdm515i"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.0.1/httpcomponents-client-4.0.1" = + { + host = repositories.apache; + path = + "org/apache/httpcomponents/httpcomponents-client/4.0.1/httpcomponents-client-4.0.1"; + type = "jar"; + pom = { + sha1 = "caa8c590d68feb60218536f4ac95ed3338161791"; + sha256 = "05b5ygrq2bh7kq19lwpw9cddl0c3y50si3hf2p8pzkkp8ikzqp0s"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2" = { host = repositories.apache; @@ -12498,72 +12872,6 @@ in { sha256 = "0hn54hq0r15aa5r5291z38bb8pr72zhmrlnkc6zjxiq3kjkkk11p"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10" = - { - host = repositories.apache; - path = - "org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10"; - type = "jar"; - pom = { - sha1 = "219a2deff42bccd82cd3d5775a86b95ce48d3dd4"; - sha256 = "0f5ry9mbrzn6xcnsp3yn68i122gkm4xsrm3ih9kjcb58s3imb8rc"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7" = - { - host = repositories.apache; - path = - "org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7"; - type = "jar"; - pom = { - sha1 = "fff8727b6ff366d624669f4b8dc4d4c7316bbb0c"; - sha256 = "1ghip0k00myj8pbchsfrpc7w8wcffr3vi8bll21qhh2imjkhc88p"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0" = - { - host = repositories.apache; - path = - "org/apache/maven/doxia/doxia/1.0/doxia-1.0"; - type = "jar"; - pom = { - sha1 = "250d5a027daedc96539e3b3def7da7911feb6aae"; - sha256 = "164fhni5k3cyp4bhz4fhjifgvc1dvvnpyvacyl4gv4wk8f8n491q"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1/doxia-1.1" = - { - host = repositories.apache; - path = - "org/apache/maven/doxia/doxia/1.1/doxia-1.1"; - type = "jar"; - pom = { - sha1 = "b2306ce11082ee839fa2deee1fe4f1122c15227c"; - sha256 = "15pvjq2njzfyfar7s764qbdqm9p8cnlh0mnz603zj0i5swdj4blj"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.2/doxia-1.2" = - { - host = repositories.apache; - path = - "org/apache/maven/doxia/doxia/1.2/doxia-1.2"; - type = "jar"; - pom = { - sha1 = "1cd5c098f618eec281c1b8716f90fa2680c5d26a"; - sha256 = "0zgpwpk5pdxq5f80j37zjrz1vw6l45hg7620p407r6vk62ybjaj7"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.4/doxia-1.4" = - { - host = repositories.apache; - path = - "org/apache/maven/doxia/doxia/1.4/doxia-1.4"; - type = "jar"; - pom = { - sha1 = "121c5566d364de8190fcab422b41870acb86f2de"; - sha256 = "0gwcz10pmc1gpjhmbny6w980l3vwfy4p0x92kh20xw5dcvma547j"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0" = { host = repositories.apache; @@ -12759,39 +13067,6 @@ in { sha256 = "19ydpxcc3bjrkqqnla9q6l5kvnrmpv9zam0gsv5anwcqalvdc1p6"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0" = - { - host = repositories.apache; - path = - "org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0"; - type = "jar"; - pom = { - sha1 = "0995eb509c335f35f0170182e9d64a76ddf4b02a"; - sha256 = "1xsw47fmkwf0jmxmr07jr2y84xaib64a6sinf1m47z3kvcaw4pyx"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.2/doxia-modules-1.2" = - { - host = repositories.apache; - path = - "org/apache/maven/doxia/doxia-modules/1.2/doxia-modules-1.2"; - type = "jar"; - pom = { - sha1 = "0fce38d9ab92c6e5bd6decdc4a7713cec1bff714"; - sha256 = "1r9qlmwx48pyc4fz66plm4gxvvivad5dlz6llxgzww2bxxg2wvp3"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.4/doxia-modules-1.4" = - { - host = repositories.apache; - path = - "org/apache/maven/doxia/doxia-modules/1.4/doxia-modules-1.4"; - type = "jar"; - pom = { - sha1 = "4a72322c7c467a8a4b67993c2d0eee076a294c7c"; - sha256 = "1si1g37hq0w50811xcna5svib53s9kgpcfiv9w78q5y5pmxis7x9"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0" = { host = repositories.apache; @@ -12852,6 +13127,39 @@ in { sha256 = "1l7fp5nbw50gg4hjfc326h872gygrdz2h5r8v3mwddycx0zlf5kp"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0" = + { + host = repositories.apache; + path = + "org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0"; + type = "jar"; + pom = { + sha1 = "0995eb509c335f35f0170182e9d64a76ddf4b02a"; + sha256 = "1xsw47fmkwf0jmxmr07jr2y84xaib64a6sinf1m47z3kvcaw4pyx"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.2/doxia-modules-1.2" = + { + host = repositories.apache; + path = + "org/apache/maven/doxia/doxia-modules/1.2/doxia-modules-1.2"; + type = "jar"; + pom = { + sha1 = "0fce38d9ab92c6e5bd6decdc4a7713cec1bff714"; + sha256 = "1r9qlmwx48pyc4fz66plm4gxvvivad5dlz6llxgzww2bxxg2wvp3"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.4/doxia-modules-1.4" = + { + host = repositories.apache; + path = + "org/apache/maven/doxia/doxia-modules/1.4/doxia-modules-1.4"; + type = "jar"; + pom = { + sha1 = "4a72322c7c467a8a4b67993c2d0eee076a294c7c"; + sha256 = "1si1g37hq0w50811xcna5svib53s9kgpcfiv9w78q5y5pmxis7x9"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10" = { host = repositories.apache; @@ -13020,15 +13328,70 @@ in { sha256 = "11alfcr1rgapbxbwd7wv4jl20c9iqdkrq5jmsyixkm3vfaxvmbwy"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/1.0.1/enforcer-1.0.1" = + "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10" = { host = repositories.apache; path = - "org/apache/maven/enforcer/enforcer/1.0.1/enforcer-1.0.1"; + "org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10"; type = "jar"; pom = { - sha1 = "aed695c360d5f754e9c33c8db01c5ec7425ee1c0"; - sha256 = "1ihwykib8rx7831myfix010gfy96rzw06nc2val2c6s9jzrxhjy6"; + sha1 = "219a2deff42bccd82cd3d5775a86b95ce48d3dd4"; + sha256 = "0f5ry9mbrzn6xcnsp3yn68i122gkm4xsrm3ih9kjcb58s3imb8rc"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7" = + { + host = repositories.apache; + path = + "org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7"; + type = "jar"; + pom = { + sha1 = "fff8727b6ff366d624669f4b8dc4d4c7316bbb0c"; + sha256 = "1ghip0k00myj8pbchsfrpc7w8wcffr3vi8bll21qhh2imjkhc88p"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0" = + { + host = repositories.apache; + path = + "org/apache/maven/doxia/doxia/1.0/doxia-1.0"; + type = "jar"; + pom = { + sha1 = "250d5a027daedc96539e3b3def7da7911feb6aae"; + sha256 = "164fhni5k3cyp4bhz4fhjifgvc1dvvnpyvacyl4gv4wk8f8n491q"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1/doxia-1.1" = + { + host = repositories.apache; + path = + "org/apache/maven/doxia/doxia/1.1/doxia-1.1"; + type = "jar"; + pom = { + sha1 = "b2306ce11082ee839fa2deee1fe4f1122c15227c"; + sha256 = "15pvjq2njzfyfar7s764qbdqm9p8cnlh0mnz603zj0i5swdj4blj"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.2/doxia-1.2" = + { + host = repositories.apache; + path = + "org/apache/maven/doxia/doxia/1.2/doxia-1.2"; + type = "jar"; + pom = { + sha1 = "1cd5c098f618eec281c1b8716f90fa2680c5d26a"; + sha256 = "0zgpwpk5pdxq5f80j37zjrz1vw6l45hg7620p407r6vk62ybjaj7"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.4/doxia-1.4" = + { + host = repositories.apache; + path = + "org/apache/maven/doxia/doxia/1.4/doxia-1.4"; + type = "jar"; + pom = { + sha1 = "121c5566d364de8190fcab422b41870acb86f2de"; + sha256 = "0gwcz10pmc1gpjhmbny6w980l3vwfy4p0x92kh20xw5dcvma547j"; }; }; "https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/1.0-beta-1/enforcer-1.0-beta-1" = @@ -13042,6 +13405,17 @@ in { sha256 = "1l6xybhq4w0jq977zc9cgc773dlnrawm6d3z9adpx1yb9dmdxsag"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/1.0.1/enforcer-1.0.1" = + { + host = repositories.apache; + path = + "org/apache/maven/enforcer/enforcer/1.0.1/enforcer-1.0.1"; + type = "jar"; + pom = { + sha1 = "aed695c360d5f754e9c33c8db01c5ec7425ee1c0"; + sha256 = "1ihwykib8rx7831myfix010gfy96rzw06nc2val2c6s9jzrxhjy6"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/1.0/enforcer-1.0" = { host = repositories.apache; @@ -13097,138 +13471,6 @@ in { sha256 = "0h9phwzzl3jb6m81iv137qy425cbjy3zabw2lc4rms14shybb14i"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.2/maven-2.0.2" = - { - host = repositories.apache; - path = - "org/apache/maven/maven/2.0.2/maven-2.0.2"; - type = "jar"; - pom = { - sha1 = "816e22beec3ee5c4a344959625a824bb6202daeb"; - sha256 = "0163x070172fvygx093pl3vrk0afr9n60rj72b0diinrnn9hdf0y"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.5/maven-2.0.5" = - { - host = repositories.apache; - path = - "org/apache/maven/maven/2.0.5/maven-2.0.5"; - type = "jar"; - pom = { - sha1 = "9801e4423479367099ad4507c51c4f7f5b19bc6f"; - sha256 = "1xcy4fq6i91lcvpm265kc3sqidcwp3mvkza6slgsj441b30za7lq"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6" = - { - host = repositories.apache; - path = - "org/apache/maven/maven/2.0.6/maven-2.0.6"; - type = "jar"; - pom = { - sha1 = "1991be0ed3e1820e135201406d5acabf8c08d426 maven-2.0.6.pom"; - sha256 = "0d7za6zvavxpvjil1ar123nc1f85qq1ixwdsqdhqq14g0l0mqxgm"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.7/maven-2.0.7" = - { - host = repositories.apache; - path = - "org/apache/maven/maven/2.0.7/maven-2.0.7"; - type = "jar"; - pom = { - sha1 = "83e17944aa31363b04e1031efad2af7195831f80"; - sha256 = "04bnwwmcis0ihjfpx7vw2yc6wppmw6bnw8fw5lcwrkw2l0ry0ax5"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.8/maven-2.0.8" = - { - host = repositories.apache; - path = - "org/apache/maven/maven/2.0.8/maven-2.0.8"; - type = "jar"; - pom = { - sha1 = "0b6bdac7d11f0fc5c4c4bb0f336323f7b86cddc0"; - sha256 = "03aggxmmn9jhpm1jkxys8jhyir1ww9sgj670kjchz0cx4ssrxx9k"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9" = - { - host = repositories.apache; - path = - "org/apache/maven/maven/2.0.9/maven-2.0.9"; - type = "jar"; - pom = { - sha1 = "696e3d1eaf254c63347613715faa31e5eecb282d"; - sha256 = "1d0r6s6c0wif1q0crjqragyl7pinyda7df4qfsyl7m32p5amgckd"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0/maven-2.0" = - { - host = repositories.apache; - path = - "org/apache/maven/maven/2.0/maven-2.0"; - type = "jar"; - pom = { - sha1 = "39ab6e95d88924b2ff950099a5ba7040b2280e84 /home/projects/maven/repository-staging/to-ibiblio/maven2/org/apache/maven/maven/2.0/maven-2.0.pom"; - sha256 = "1fzjvnsfrqyqi7wr0wrjzm28gzzpnpf3qwz7jyis1031sx6kbx16"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.0/maven-2.2.0" = - { - host = repositories.apache; - path = - "org/apache/maven/maven/2.2.0/maven-2.2.0"; - type = "jar"; - pom = { - sha1 = "c5bb0fda80306d0d27b3221d511c5032c95b27fa"; - sha256 = "1nx4giimgv7nkj6ajqc4v64k3b5x23j0zq2p6nkzafxa3hj8mzk9"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.1/maven-2.2.1" = - { - host = repositories.apache; - path = - "org/apache/maven/maven/2.2.1/maven-2.2.1"; - type = "jar"; - pom = { - sha1 = "7bc311044fbacb404de025b76feefa3567f0e5d7"; - sha256 = "1vcq5mm8k24afd61v516rxrh6qmfgiahw61hmdgqmg6bdpwwydfi"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0.4/maven-3.0.4" = - { - host = repositories.apache; - path = - "org/apache/maven/maven/3.0.4/maven-3.0.4"; - type = "jar"; - pom = { - sha1 = "84e07094d0da2867c8463ee5206cafecb308036d"; - sha256 = "1xijqqzc7j6513m1icdxpb6l4lfld54yiz7lq5and7anlq0kw8jd"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0" = - { - host = repositories.apache; - path = - "org/apache/maven/maven/3.0/maven-3.0"; - type = "jar"; - pom = { - sha1 = "30c961aaf964aadcc028102ebe03d1afff324ec0"; - sha256 = "1xj8i0aiw8wlw71krhfcbgrjcipjlraysn73y0mzjpsa1ir67z18"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.3.9/maven-3.3.9" = - { - host = repositories.apache; - path = - "org/apache/maven/maven/3.3.9/maven-3.3.9"; - type = "jar"; - pom = { - sha1 = "6e8c698e365e1a895770db9eec7bd3e544e1464f"; - sha256 = "04ywjs7nywn17rcxwnqkrvyjlqdl9n2n7sbz3n6biwl0bhddg1r3"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0" = { host = repositories.apache; @@ -13304,6 +13546,141 @@ in { sha256 = "0xx65hlqpvs8w4dbzlhq27n2kkcb9vhwydvj1km055v5gxgf529a"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2"; + type = "jar"; + pom = { + sha1 = "157c24fb3ec09b9a693f88dc571fc17ed0669cca"; + sha256 = "08k2fm0w7snk7032qpbikvap9d7x7lqxpsb7j7gj3ll5ml3qad4l"; + }; + jar = { + sha1 = "982eee8d0feb92587beb60874c731febc6d9ed9d"; + sha256 = "0g8ylpwl777rfxgqnqyf5arkvd96rny5jdp4a5p6s80xdk3civiw"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5"; + type = "jar"; + pom = { + sha1 = "cc2c71211f52ada0389f3d2c9de16dd1429eccd7"; + sha256 = "0ygspx46ikda0rx2pkp0f2xgj7zsw1r3f289v8dbd8f4dy7v44kw"; + }; + jar = { + sha1 = "d40b64aa03faeb7338713fe2ee41f2a2d0357455"; + sha256 = "1w0rcms6zqqhd0sr3a413rbqbp5gng5i814a99zh6pzsgyz4a72i"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6"; + type = "jar"; + pom = { + sha1 = "8cb8b1dc4d9f7fbd90be4e9c8e9a1d353e28666c"; + sha256 = "0vvdxpqarnpvn6yibm8iaj7b12pj2jd94kwhazdbv7lrmkgq8258"; + }; + jar = { + sha1 = "dc326c3a989c10618e09a7b77cadeff297591942"; + sha256 = "0gij7hm9sszh5bxz3lv49i32cc1714c101yj7irzkscg9x7ygh1c"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.7/maven-artifact-manager-2.0.7" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-artifact-manager/2.0.7/maven-artifact-manager-2.0.7"; + type = "jar"; + pom = { + sha1 = "05f27cc9e9be2cd272fa893d09f1ee8d0d71ef6c"; + sha256 = "1yvnv0i1sl9y84ar5xf2706j4q35fi68n7j8vx1y3fm7c1jq8v8a"; + }; + jar = { + sha1 = "64c385b96a2b0e0cf4c57c90c2fa4f869a2b3e5f"; + sha256 = "0pywj29xvfhdpabvrjm6z053kghkr532lvd14cay0ys13zdb2f25"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8"; + type = "jar"; + pom = { + sha1 = "5c9b2820e6abe0c070c0dedfdacf642a85abf2e6"; + sha256 = "0f8p1zkkipyrr0mvig75a6a366d28bnzggmzy8cwjifn5qr141w3"; + }; + jar = { + sha1 = "bb5ba069e3460450b139075b91f27f7bd4007877"; + sha256 = "1k8rcdxvxrjrr5r8x080s3dplf6b9wb72fb0ygrrziid4m5mcmy2"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9"; + type = "jar"; + pom = { + sha1 = "84c14dcd1d85eebccbba665f95057b5748f51d83"; + sha256 = "1389zb047i1g0g1f6ryyvwrbk0q876fqb8mb8ly54xlcnyqvnwym"; + }; + jar = { + sha1 = "53224a5254101fb9b6d561d5a53c6d0817036d94"; + sha256 = "1w8zy5kqsvn3g1gycd1id182p8chh3lij0166dbsq6g70dg8c4yr"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0"; + type = "jar"; + pom = { + sha1 = "83294af9cf17a6779bbc585079ff6e9920297d37 /home/projects/maven/repository-staging/to-ibiblio/maven2/org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom"; + sha256 = "1mpdvc41zssangd5nkwh5ljk04fmmb9461d4fn7vf9qilkjdmr7v"; + }; + jar = { + sha1 = "8672c4278c184dbd4b18fed7e72688fd6018e112"; + sha256 = "1phgcs2hx8ag6xbk9jng95glppa9pgsxvvpzm52sc79n8qmgx27g"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0"; + type = "jar"; + pom = { + sha1 = "91b2c4b9a4cb63846da595ff15df78ebc7f1b31f"; + sha256 = "122a763sychpk8xmkaw7iih2d2q2g0mk089qn3iqxf29dqvbfn94"; + }; + jar = { + sha1 = "5e79c7ad90bde58e38db5f84f31e7563824dca0b"; + sha256 = "134lhbcqpz47g497a4m6i6q8sihb9lc9k96z9x5540yrgr7vbwb9"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1"; + type = "jar"; + pom = { + sha1 = "062f05a1fc0a40a6ea8fc8f0a1e9e2c02057ebaf"; + sha256 = "0325h338mchn5hh30z9jkcdjkrgcbdq1c8j5if5kj37yz18q7xgc"; + }; + jar = { + sha1 = "ec355b913c34d37080810f98e3f51abecbe1572b"; + sha256 = "1vajg62hzfbn7i7qnl10gpz7q912lar9vb04sxgkhlirxp24gqni"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2" = { host = repositories.apache; @@ -13469,141 +13846,6 @@ in { sha256 = "0pa4qklvf3ab6v4d70r10v3qg8ifjgrdiyq8yg6nwg13y8l2jw0z"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2" = - { - host = repositories.apache; - path = - "org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2"; - type = "jar"; - pom = { - sha1 = "157c24fb3ec09b9a693f88dc571fc17ed0669cca"; - sha256 = "08k2fm0w7snk7032qpbikvap9d7x7lqxpsb7j7gj3ll5ml3qad4l"; - }; - jar = { - sha1 = "982eee8d0feb92587beb60874c731febc6d9ed9d"; - sha256 = "0g8ylpwl777rfxgqnqyf5arkvd96rny5jdp4a5p6s80xdk3civiw"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5" = - { - host = repositories.apache; - path = - "org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5"; - type = "jar"; - pom = { - sha1 = "cc2c71211f52ada0389f3d2c9de16dd1429eccd7"; - sha256 = "0ygspx46ikda0rx2pkp0f2xgj7zsw1r3f289v8dbd8f4dy7v44kw"; - }; - jar = { - sha1 = "d40b64aa03faeb7338713fe2ee41f2a2d0357455"; - sha256 = "1w0rcms6zqqhd0sr3a413rbqbp5gng5i814a99zh6pzsgyz4a72i"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6" = - { - host = repositories.apache; - path = - "org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6"; - type = "jar"; - pom = { - sha1 = "8cb8b1dc4d9f7fbd90be4e9c8e9a1d353e28666c"; - sha256 = "0vvdxpqarnpvn6yibm8iaj7b12pj2jd94kwhazdbv7lrmkgq8258"; - }; - jar = { - sha1 = "dc326c3a989c10618e09a7b77cadeff297591942"; - sha256 = "0gij7hm9sszh5bxz3lv49i32cc1714c101yj7irzkscg9x7ygh1c"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.7/maven-artifact-manager-2.0.7" = - { - host = repositories.apache; - path = - "org/apache/maven/maven-artifact-manager/2.0.7/maven-artifact-manager-2.0.7"; - type = "jar"; - pom = { - sha1 = "05f27cc9e9be2cd272fa893d09f1ee8d0d71ef6c"; - sha256 = "1yvnv0i1sl9y84ar5xf2706j4q35fi68n7j8vx1y3fm7c1jq8v8a"; - }; - jar = { - sha1 = "64c385b96a2b0e0cf4c57c90c2fa4f869a2b3e5f"; - sha256 = "0pywj29xvfhdpabvrjm6z053kghkr532lvd14cay0ys13zdb2f25"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8" = - { - host = repositories.apache; - path = - "org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8"; - type = "jar"; - pom = { - sha1 = "5c9b2820e6abe0c070c0dedfdacf642a85abf2e6"; - sha256 = "0f8p1zkkipyrr0mvig75a6a366d28bnzggmzy8cwjifn5qr141w3"; - }; - jar = { - sha1 = "bb5ba069e3460450b139075b91f27f7bd4007877"; - sha256 = "1k8rcdxvxrjrr5r8x080s3dplf6b9wb72fb0ygrrziid4m5mcmy2"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9" = - { - host = repositories.apache; - path = - "org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9"; - type = "jar"; - pom = { - sha1 = "84c14dcd1d85eebccbba665f95057b5748f51d83"; - sha256 = "1389zb047i1g0g1f6ryyvwrbk0q876fqb8mb8ly54xlcnyqvnwym"; - }; - jar = { - sha1 = "53224a5254101fb9b6d561d5a53c6d0817036d94"; - sha256 = "1w8zy5kqsvn3g1gycd1id182p8chh3lij0166dbsq6g70dg8c4yr"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0" = - { - host = repositories.apache; - path = - "org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0"; - type = "jar"; - pom = { - sha1 = "83294af9cf17a6779bbc585079ff6e9920297d37 /home/projects/maven/repository-staging/to-ibiblio/maven2/org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom"; - sha256 = "1mpdvc41zssangd5nkwh5ljk04fmmb9461d4fn7vf9qilkjdmr7v"; - }; - jar = { - sha1 = "8672c4278c184dbd4b18fed7e72688fd6018e112"; - sha256 = "1phgcs2hx8ag6xbk9jng95glppa9pgsxvvpzm52sc79n8qmgx27g"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0" = - { - host = repositories.apache; - path = - "org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0"; - type = "jar"; - pom = { - sha1 = "91b2c4b9a4cb63846da595ff15df78ebc7f1b31f"; - sha256 = "122a763sychpk8xmkaw7iih2d2q2g0mk089qn3iqxf29dqvbfn94"; - }; - jar = { - sha1 = "5e79c7ad90bde58e38db5f84f31e7563824dca0b"; - sha256 = "134lhbcqpz47g497a4m6i6q8sihb9lc9k96z9x5540yrgr7vbwb9"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1" = - { - host = repositories.apache; - path = - "org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1"; - type = "jar"; - pom = { - sha1 = "062f05a1fc0a40a6ea8fc8f0a1e9e2c02057ebaf"; - sha256 = "0325h338mchn5hh30z9jkcdjkrgcbdq1c8j5if5kj37yz18q7xgc"; - }; - jar = { - sha1 = "ec355b913c34d37080810f98e3f51abecbe1572b"; - sha256 = "1vajg62hzfbn7i7qnl10gpz7q912lar9vb04sxgkhlirxp24gqni"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9" = { host = repositories.apache; @@ -13859,6 +14101,36 @@ in { sha256 = "1v8z154f1n5lkpdxmk4b21bs15h5jjj0jay2apj871cgf125a05k"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0"; + type = "jar"; + pom = { + sha1 = "e4b3e5ffec18728f099d8000e400ac763af2cc20"; + sha256 = "1fn4lvk73ka46n4q4vqmcakv7xb7nvh2cbq72xwvxyns8z73lhf1"; + }; + jar = { + sha1 = "bedc161a3b07a4bcd175b9428cdf18725d292b37"; + sha256 = "0m71410riv91rfmxwvnwdvwy6vilq1ssl40py3n8djxhkvna960w"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9"; + type = "jar"; + pom = { + sha1 = "565b650ca8225bf9b9f84c60a87a9f1def578255"; + sha256 = "04334kzcgz970r8vrm1kzpnqryl27kzwq56652mgn926szbl1347"; + }; + jar = { + sha1 = "e2055f9adb9f3c9a93e6b36fffe79781a785de2d"; + sha256 = "1hwk47153c1pkj9wp89mb1i5j5qah0l8arv0g7gr7rl9jhicn2b9"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5" = { host = repositories.apache; @@ -14024,36 +14296,6 @@ in { sha256 = "1kgg23sqys4hcywizbqs6mqhjpwr3s93937nw5ryb8byz9kxxaqm"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0" = - { - host = repositories.apache; - path = - "org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0"; - type = "jar"; - pom = { - sha1 = "e4b3e5ffec18728f099d8000e400ac763af2cc20"; - sha256 = "1fn4lvk73ka46n4q4vqmcakv7xb7nvh2cbq72xwvxyns8z73lhf1"; - }; - jar = { - sha1 = "bedc161a3b07a4bcd175b9428cdf18725d292b37"; - sha256 = "0m71410riv91rfmxwvnwdvwy6vilq1ssl40py3n8djxhkvna960w"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9" = - { - host = repositories.apache; - path = - "org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9"; - type = "jar"; - pom = { - sha1 = "565b650ca8225bf9b9f84c60a87a9f1def578255"; - sha256 = "04334kzcgz970r8vrm1kzpnqryl27kzwq56652mgn926szbl1347"; - }; - jar = { - sha1 = "e2055f9adb9f3c9a93e6b36fffe79781a785de2d"; - sha256 = "1hwk47153c1pkj9wp89mb1i5j5qah0l8arv0g7gr7rl9jhicn2b9"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6" = { host = repositories.apache; @@ -14144,6 +14386,17 @@ in { sha256 = "1llp1ynda184rpm68vy2czyhi1kav614qkrfk3f0ramgz7ixkw55"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/1/maven-parent-1" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-parent/1/maven-parent-1"; + type = "jar"; + pom = { + sha1 = "56e0447ae4f17f1627ce94a56efe61f36d7046da"; + sha256 = "1xdi614mza2slazwvwfrfadk9va3zxcr7x2pd59n6r5c2nbky2r8"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10" = { host = repositories.apache; @@ -14232,17 +14485,6 @@ in { sha256 = "1z2qw74156dmkmpmbqnwgicblh4sh0p0zjy6pjbxqw82mrq9fnhc"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/1/maven-parent-1" = - { - host = repositories.apache; - path = - "org/apache/maven/maven-parent/1/maven-parent-1"; - type = "jar"; - pom = { - sha1 = "56e0447ae4f17f1627ce94a56efe61f36d7046da"; - sha256 = "1xdi614mza2slazwvwfrfadk9va3zxcr7x2pd59n6r5c2nbky2r8"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/20/maven-parent-20" = { host = repositories.apache; @@ -15277,6 +15519,36 @@ in { sha256 = "1683n733ccpiki0icw10h2f8kyq9vl7hinqxdks4vcyzs79w7g3d"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0"; + type = "jar"; + pom = { + sha1 = "69a41566b573bda12bd2bb7dcb64d30da834cb9c"; + sha256 = "1c52ldxlvhmw6nmfhnlb1v94wm5lwn3rylvmgr9fgazgna370w0y"; + }; + jar = { + sha1 = "08234c1bdf7a9a28c671b0abf11f8adaa66440cd"; + sha256 = "1awyk7s5wzp2zkkb38z3qqf5zby20yvcm68503v57i03dxn70zp1"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9" = + { + host = repositories.apache; + path = + "org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9"; + type = "jar"; + pom = { + sha1 = "d489410b2fb313d152ef951d905150e2681f92ca"; + sha256 = "1s41wgs9y7zdjf1aypb37iz7hcwzdl73hlc6w48zqqax2fadxi3l"; + }; + jar = { + sha1 = "fe5ad82564dc07a31855da543db8d5376def3c26"; + sha256 = "0q2v7pycy3phfrbnkzzf0wppjcgwk27cmcadgjksi5i95vam9nml"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5" = { host = repositories.apache; @@ -15427,34 +15699,136 @@ in { sha256 = "1qlr4zcjzniw5c9hkm0qxyrgq9qqiw4ff8j2g1744xm0afz6kxg4"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0" = + "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.2/maven-2.0.2" = { host = repositories.apache; path = - "org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0"; + "org/apache/maven/maven/2.0.2/maven-2.0.2"; type = "jar"; pom = { - sha1 = "69a41566b573bda12bd2bb7dcb64d30da834cb9c"; - sha256 = "1c52ldxlvhmw6nmfhnlb1v94wm5lwn3rylvmgr9fgazgna370w0y"; - }; - jar = { - sha1 = "08234c1bdf7a9a28c671b0abf11f8adaa66440cd"; - sha256 = "1awyk7s5wzp2zkkb38z3qqf5zby20yvcm68503v57i03dxn70zp1"; + sha1 = "816e22beec3ee5c4a344959625a824bb6202daeb"; + sha256 = "0163x070172fvygx093pl3vrk0afr9n60rj72b0diinrnn9hdf0y"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9" = + "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.5/maven-2.0.5" = { host = repositories.apache; path = - "org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9"; + "org/apache/maven/maven/2.0.5/maven-2.0.5"; type = "jar"; pom = { - sha1 = "d489410b2fb313d152ef951d905150e2681f92ca"; - sha256 = "1s41wgs9y7zdjf1aypb37iz7hcwzdl73hlc6w48zqqax2fadxi3l"; + sha1 = "9801e4423479367099ad4507c51c4f7f5b19bc6f"; + sha256 = "1xcy4fq6i91lcvpm265kc3sqidcwp3mvkza6slgsj441b30za7lq"; }; - jar = { - sha1 = "fe5ad82564dc07a31855da543db8d5376def3c26"; - sha256 = "0q2v7pycy3phfrbnkzzf0wppjcgwk27cmcadgjksi5i95vam9nml"; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6" = + { + host = repositories.apache; + path = + "org/apache/maven/maven/2.0.6/maven-2.0.6"; + type = "jar"; + pom = { + sha1 = "1991be0ed3e1820e135201406d5acabf8c08d426 maven-2.0.6.pom"; + sha256 = "0d7za6zvavxpvjil1ar123nc1f85qq1ixwdsqdhqq14g0l0mqxgm"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.7/maven-2.0.7" = + { + host = repositories.apache; + path = + "org/apache/maven/maven/2.0.7/maven-2.0.7"; + type = "jar"; + pom = { + sha1 = "83e17944aa31363b04e1031efad2af7195831f80"; + sha256 = "04bnwwmcis0ihjfpx7vw2yc6wppmw6bnw8fw5lcwrkw2l0ry0ax5"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.8/maven-2.0.8" = + { + host = repositories.apache; + path = + "org/apache/maven/maven/2.0.8/maven-2.0.8"; + type = "jar"; + pom = { + sha1 = "0b6bdac7d11f0fc5c4c4bb0f336323f7b86cddc0"; + sha256 = "03aggxmmn9jhpm1jkxys8jhyir1ww9sgj670kjchz0cx4ssrxx9k"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9" = + { + host = repositories.apache; + path = + "org/apache/maven/maven/2.0.9/maven-2.0.9"; + type = "jar"; + pom = { + sha1 = "696e3d1eaf254c63347613715faa31e5eecb282d"; + sha256 = "1d0r6s6c0wif1q0crjqragyl7pinyda7df4qfsyl7m32p5amgckd"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0/maven-2.0" = + { + host = repositories.apache; + path = + "org/apache/maven/maven/2.0/maven-2.0"; + type = "jar"; + pom = { + sha1 = "39ab6e95d88924b2ff950099a5ba7040b2280e84 /home/projects/maven/repository-staging/to-ibiblio/maven2/org/apache/maven/maven/2.0/maven-2.0.pom"; + sha256 = "1fzjvnsfrqyqi7wr0wrjzm28gzzpnpf3qwz7jyis1031sx6kbx16"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.0/maven-2.2.0" = + { + host = repositories.apache; + path = + "org/apache/maven/maven/2.2.0/maven-2.2.0"; + type = "jar"; + pom = { + sha1 = "c5bb0fda80306d0d27b3221d511c5032c95b27fa"; + sha256 = "1nx4giimgv7nkj6ajqc4v64k3b5x23j0zq2p6nkzafxa3hj8mzk9"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.1/maven-2.2.1" = + { + host = repositories.apache; + path = + "org/apache/maven/maven/2.2.1/maven-2.2.1"; + type = "jar"; + pom = { + sha1 = "7bc311044fbacb404de025b76feefa3567f0e5d7"; + sha256 = "1vcq5mm8k24afd61v516rxrh6qmfgiahw61hmdgqmg6bdpwwydfi"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0.4/maven-3.0.4" = + { + host = repositories.apache; + path = + "org/apache/maven/maven/3.0.4/maven-3.0.4"; + type = "jar"; + pom = { + sha1 = "84e07094d0da2867c8463ee5206cafecb308036d"; + sha256 = "1xijqqzc7j6513m1icdxpb6l4lfld54yiz7lq5and7anlq0kw8jd"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0" = + { + host = repositories.apache; + path = + "org/apache/maven/maven/3.0/maven-3.0"; + type = "jar"; + pom = { + sha1 = "30c961aaf964aadcc028102ebe03d1afff324ec0"; + sha256 = "1xj8i0aiw8wlw71krhfcbgrjcipjlraysn73y0mzjpsa1ir67z18"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.3.9/maven-3.3.9" = + { + host = repositories.apache; + path = + "org/apache/maven/maven/3.3.9/maven-3.3.9"; + type = "jar"; + pom = { + sha1 = "6e8c698e365e1a895770db9eec7bd3e544e1464f"; + sha256 = "04ywjs7nywn17rcxwnqkrvyjlqdl9n2n7sbz3n6biwl0bhddg1r3"; }; }; "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/1.1/maven-antrun-plugin-1.1" = @@ -15547,21 +15921,6 @@ in { sha256 = "0782klzqng0qm6330qlqwz43k8ncaglh2b6sjspisphfs3zbbb0j"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2.1/maven-assembly-plugin-2.2.1" = - { - host = repositories.apache; - path = - "org/apache/maven/plugins/maven-assembly-plugin/2.2.1/maven-assembly-plugin-2.2.1"; - type = "jar"; - pom = { - sha1 = "abe773a8020a6db7d5651d6b31aabc5a368f99ad"; - sha256 = "002pj19771yhwyh8gcs6iv23v887climhxd9h85kh2kmsfi9jzpw"; - }; - jar = { - sha1 = "701da181eb3d2976ad900e4b58f48101c4d7f25a"; - sha256 = "0wmgqj1gr5n9j9wrmainz0vsw9qbphsrzyxcvpyq34i38a4s3vm4"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-1/maven-assembly-plugin-2.2-beta-1" = { host = repositories.apache; @@ -15592,6 +15951,21 @@ in { sha256 = "1fvnx7g51w58vkkwsf1wv98743jvdgcscn7x93i91kxkaqaimv5m"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2.1/maven-assembly-plugin-2.2.1" = + { + host = repositories.apache; + path = + "org/apache/maven/plugins/maven-assembly-plugin/2.2.1/maven-assembly-plugin-2.2.1"; + type = "jar"; + pom = { + sha1 = "abe773a8020a6db7d5651d6b31aabc5a368f99ad"; + sha256 = "002pj19771yhwyh8gcs6iv23v887climhxd9h85kh2kmsfi9jzpw"; + }; + jar = { + sha1 = "701da181eb3d2976ad900e4b58f48101c4d7f25a"; + sha256 = "0wmgqj1gr5n9j9wrmainz0vsw9qbphsrzyxcvpyq34i38a4s3vm4"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.3/maven-assembly-plugin-2.3" = { host = repositories.apache; @@ -16327,21 +16701,6 @@ in { sha256 = "0vz7j95b582l8lv515vy5zmwagvljgx5v1z94b2sa9pldxb5rkln"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/1.0.1/maven-enforcer-plugin-1.0.1" = - { - host = repositories.apache; - path = - "org/apache/maven/plugins/maven-enforcer-plugin/1.0.1/maven-enforcer-plugin-1.0.1"; - type = "jar"; - pom = { - sha1 = "20680feaeb2687fcbfac8f851ee80590be9fab84"; - sha256 = "1ak8snclx6wp0r20yc9d8nasp7qh7451k12x4bgksq06hqzqn6jg"; - }; - jar = { - sha1 = "f8e35bc563003e0a54fd6a5f75975fc1c84658cc"; - sha256 = "11cjlz0clnimrlyhrg6a21vw4hwjq3biplffmj3m3y7mwy5yvbyf"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/1.0-beta-1/maven-enforcer-plugin-1.0-beta-1" = { host = repositories.apache; @@ -16357,6 +16716,21 @@ in { sha256 = "0gzas0idr84xbfd9mgwvj689nrnwpqm30p4vih7b2fpwqyq3pknd"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/1.0.1/maven-enforcer-plugin-1.0.1" = + { + host = repositories.apache; + path = + "org/apache/maven/plugins/maven-enforcer-plugin/1.0.1/maven-enforcer-plugin-1.0.1"; + type = "jar"; + pom = { + sha1 = "20680feaeb2687fcbfac8f851ee80590be9fab84"; + sha256 = "1ak8snclx6wp0r20yc9d8nasp7qh7451k12x4bgksq06hqzqn6jg"; + }; + jar = { + sha1 = "f8e35bc563003e0a54fd6a5f75975fc1c84658cc"; + sha256 = "11cjlz0clnimrlyhrg6a21vw4hwjq3biplffmj3m3y7mwy5yvbyf"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/1.0/maven-enforcer-plugin-1.0" = { host = repositories.apache; @@ -16972,6 +17346,21 @@ in { sha256 = "09ppgy8lcnkmll1rkr7gspa5jy1fixq318g4iqr9f4d14dvnvja8"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/3.0.1/maven-javadoc-plugin-3.0.1" = + { + host = repositories.apache; + path = + "org/apache/maven/plugins/maven-javadoc-plugin/3.0.1/maven-javadoc-plugin-3.0.1"; + type = "jar"; + pom = { + sha1 = "67926d198726faf4b9b816f5f098f754bebf3ac9"; + sha256 = "1z0hq86d1ql6b6zc9hxxs3bkdg8fw9i3844996rrcfz2i85f3lf9"; + }; + jar = { + sha1 = "c3196efee62d36bac6c32352fca0448a2d0dec99"; + sha256 = "1lc4g2cxabklih7vi68m6irf2757dskcnkgn42sl58rqkwbyh8jv"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/3.2.0/maven-javadoc-plugin-3.2.0" = { host = repositories.apache; @@ -16998,6 +17387,17 @@ in { sha256 = "0ja2kb50sfk9f28swiz0ncd67y5x0h1hbjam611sqmshagkixf7m"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/1/maven-plugins-1" = + { + host = repositories.apache; + path = + "org/apache/maven/plugins/maven-plugins/1/maven-plugins-1"; + type = "jar"; + pom = { + sha1 = "7a8fcbb5c906218537c74b78a7b8526e478c9b3b"; + sha256 = "1zxb57vk7qwl8ip5hfx7c662zkxxfpx78qmrmavai8xh47a1q3az"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/10/maven-plugins-10" = { host = repositories.apache; @@ -17075,17 +17475,6 @@ in { sha256 = "04891j96pgrmrrmj5ipf5r103whzgrw0v4x8rmnb8d6nr59bh1qs"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/1/maven-plugins-1" = - { - host = repositories.apache; - path = - "org/apache/maven/plugins/maven-plugins/1/maven-plugins-1"; - type = "jar"; - pom = { - sha1 = "7a8fcbb5c906218537c74b78a7b8526e478c9b3b"; - sha256 = "1zxb57vk7qwl8ip5hfx7c662zkxxfpx78qmrmavai8xh47a1q3az"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/21/maven-plugins-21" = { host = repositories.apache; @@ -17174,6 +17563,17 @@ in { sha256 = "17x3d03ljzz8xdwg959rp2p2vnfmy3vcnn29d9dclg0hyrc42c1w"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/3/maven-plugins-3" = + { + host = repositories.apache; + path = + "org/apache/maven/plugins/maven-plugins/3/maven-plugins-3"; + type = "jar"; + pom = { + sha1 = "5eef2435337ed336286f1d8b3aa9350d341431e4"; + sha256 = "08ndp88lhq5p5c1s934ymw62q5lf6l2x7fdrx217akkylzgn188a"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/30/maven-plugins-30" = { host = repositories.apache; @@ -17229,17 +17629,6 @@ in { sha256 = "0h844a6blyqfx1g9bvav09slvpf1ncsmkwhp7xly85wd649iiqc3"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/3/maven-plugins-3" = - { - host = repositories.apache; - path = - "org/apache/maven/plugins/maven-plugins/3/maven-plugins-3"; - type = "jar"; - pom = { - sha1 = "5eef2435337ed336286f1d8b3aa9350d341431e4"; - sha256 = "08ndp88lhq5p5c1s934ymw62q5lf6l2x7fdrx217akkylzgn188a"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/8/maven-plugins-8" = { host = repositories.apache; @@ -18046,6 +18435,21 @@ in { sha256 = "1ypym86z52kq1ii6spmn6cv8mfwga4wn7gznj297pngnb2i84vm2"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.22.1/maven-surefire-plugin-2.22.1" = + { + host = repositories.apache; + path = + "org/apache/maven/plugins/maven-surefire-plugin/2.22.1/maven-surefire-plugin-2.22.1"; + type = "jar"; + pom = { + sha1 = "7ebd2eb7c940e24207e910bf4f6491cd38acea5e"; + sha256 = "07cr7mhsjnf59phd3ff4adpjrd095l36kdzdr0445d0qmkmx1mcq"; + }; + jar = { + sha1 = "025468bdffb3d04eb051ca5e0b33d7e8bb10381e"; + sha256 = "0vaby8pqpl9s5249ny8hf6i2drphpgm7kx93xljzpqjfim9xs1jp"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.3/maven-surefire-plugin-2.3" = { host = repositories.apache; @@ -18243,72 +18647,6 @@ in { sha256 = "0yqp6zk6dw4h8ynrfjzzbprmbkdsyvw4l3d9raar6vcnwd70018r"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6" = - { - host = repositories.apache; - path = - "org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6"; - type = "jar"; - pom = { - sha1 = "0257fe61312283ef58817edf197e9c90db0bba25"; - sha256 = "1933qizjq8403wmhh4f9iznla0v4v8yasyg1ybknx05cjzlkp05b"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.7/maven-reporting-2.0.7" = - { - host = repositories.apache; - path = - "org/apache/maven/reporting/maven-reporting/2.0.7/maven-reporting-2.0.7"; - type = "jar"; - pom = { - sha1 = "d333d341bf3e37cbc3dc701439bce04d26cef2ef"; - sha256 = "0nakxm0qwvzg063lgdb9ihl051w3pxk62lx7jnlan9acvkpvj0bh"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9" = - { - host = repositories.apache; - path = - "org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9"; - type = "jar"; - pom = { - sha1 = "92fc48457601be497488cc316bc3617326977a24"; - sha256 = "12apx8qlcbrsikgq8m6nars77xbyvkc8hp815hv51fpmjnpl10qn"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0" = - { - host = repositories.apache; - path = - "org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0"; - type = "jar"; - pom = { - sha1 = "629c69205b4c6c516f8a853fe8e1ab2e697df8ba /home/projects/maven/repository-staging/to-ibiblio/maven2/org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom"; - sha256 = "1li4f1rwznwf8l1iswyp0rajfyq9kpdcx0dmvp25pcafmsj1vkfa"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.2.0/maven-reporting-2.2.0" = - { - host = repositories.apache; - path = - "org/apache/maven/reporting/maven-reporting/2.2.0/maven-reporting-2.2.0"; - type = "jar"; - pom = { - sha1 = "87379f9a763eb43cb43ff63e5af843d8adeb86ed"; - sha256 = "00dxnbnhs5ab38f03952y29fgw9657l0xlbnnqlvp0x00ijxhhr4"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1" = - { - host = repositories.apache; - path = - "org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1"; - type = "jar"; - pom = { - sha1 = "c68c4978e03d8044ba074130178435a4df1bb3dc"; - sha256 = "15aryp8sxy6zbgpi4m4xim3zcbmm1wv5x2g5qlkafxphixz1rvz6"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6" = { host = repositories.apache; @@ -18459,37 +18797,70 @@ in { sha256 = "1hxrj3rbdg16vfn9jakfixhi47qycp432gi7b493p8vrvv2l7b2s"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.3/maven-scm-1.3" = + "https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6" = { host = repositories.apache; path = - "org/apache/maven/scm/maven-scm/1.3/maven-scm-1.3"; + "org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6"; type = "jar"; pom = { - sha1 = "34d7cec02198b4e2f976ea922a43b4e041098f95"; - sha256 = "01d2l8f1jmbxba5bjc8vfy7q4ikqkqyjp48nzw875sqc92zsgf88"; + sha1 = "0257fe61312283ef58817edf197e9c90db0bba25"; + sha256 = "1933qizjq8403wmhh4f9iznla0v4v8yasyg1ybknx05cjzlkp05b"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.9.2/maven-scm-1.9.2" = + "https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.7/maven-reporting-2.0.7" = { host = repositories.apache; path = - "org/apache/maven/scm/maven-scm/1.9.2/maven-scm-1.9.2"; + "org/apache/maven/reporting/maven-reporting/2.0.7/maven-reporting-2.0.7"; type = "jar"; pom = { - sha1 = "4f6fe3cc2964fb7be077a5fb0cef8c4f71713d2f"; - sha256 = "1zsv5wysgdn1i06b1khrqd1fh5i11833lgfhp6qffgl4803l556v"; + sha1 = "d333d341bf3e37cbc3dc701439bce04d26cef2ef"; + sha256 = "0nakxm0qwvzg063lgdb9ihl051w3pxk62lx7jnlan9acvkpvj0bh"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.9.5/maven-scm-1.9.5" = + "https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9" = { host = repositories.apache; path = - "org/apache/maven/scm/maven-scm/1.9.5/maven-scm-1.9.5"; + "org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9"; type = "jar"; pom = { - sha1 = "e6718c4e9c0a2eb4997be4a2a08d9c00148079cd"; - sha256 = "152659qnzx87nlcxp81bv0nvh3r4b6iqiaardbcbpv3blbdd133r"; + sha1 = "92fc48457601be497488cc316bc3617326977a24"; + sha256 = "12apx8qlcbrsikgq8m6nars77xbyvkc8hp815hv51fpmjnpl10qn"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0" = + { + host = repositories.apache; + path = + "org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0"; + type = "jar"; + pom = { + sha1 = "629c69205b4c6c516f8a853fe8e1ab2e697df8ba /home/projects/maven/repository-staging/to-ibiblio/maven2/org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom"; + sha256 = "1li4f1rwznwf8l1iswyp0rajfyq9kpdcx0dmvp25pcafmsj1vkfa"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.2.0/maven-reporting-2.2.0" = + { + host = repositories.apache; + path = + "org/apache/maven/reporting/maven-reporting/2.2.0/maven-reporting-2.2.0"; + type = "jar"; + pom = { + sha1 = "87379f9a763eb43cb43ff63e5af843d8adeb86ed"; + sha256 = "00dxnbnhs5ab38f03952y29fgw9657l0xlbnnqlvp0x00ijxhhr4"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1" = + { + host = repositories.apache; + path = + "org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1"; + type = "jar"; + pom = { + sha1 = "c68c4978e03d8044ba074130178435a4df1bb3dc"; + sha256 = "15aryp8sxy6zbgpi4m4xim3zcbmm1wv5x2g5qlkafxphixz1rvz6"; }; }; "https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-api/1.3/maven-scm-api-1.3" = @@ -18634,6 +19005,28 @@ in { sha256 = "08fb5haqkyvzi3ycri5s0jx93npz1aijk5z69l1rzjh5yacfcrnk"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-git/1.3/maven-scm-providers-git-1.3" = + { + host = repositories.apache; + path = + "org/apache/maven/scm/maven-scm-providers-git/1.3/maven-scm-providers-git-1.3"; + type = "jar"; + pom = { + sha1 = "35acd45e3e971bf898d65388ed4abea240871aca"; + sha256 = "1xb79a4mc7zy8a48wpf7fr2bv11b85vzll8r6ydhiw399q589cap"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-git/1.9.2/maven-scm-providers-git-1.9.2" = + { + host = repositories.apache; + path = + "org/apache/maven/scm/maven-scm-providers-git/1.9.2/maven-scm-providers-git-1.9.2"; + type = "jar"; + pom = { + sha1 = "24fc1e3ff18b5cc70cfa2a9164647b24f050d19a"; + sha256 = "0m9767kpyn7y3x0lpha39d744pkabkbgdchdr62dxjmyn8xy4syf"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers/1.3/maven-scm-providers-1.3" = { host = repositories.apache; @@ -18656,26 +19049,37 @@ in { sha256 = "0xn88raj72ii7xcyvbnld09cp2nqxmra0a6vgd064gr9mnhdh83n"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-git/1.3/maven-scm-providers-git-1.3" = + "https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.3/maven-scm-1.3" = { host = repositories.apache; path = - "org/apache/maven/scm/maven-scm-providers-git/1.3/maven-scm-providers-git-1.3"; + "org/apache/maven/scm/maven-scm/1.3/maven-scm-1.3"; type = "jar"; pom = { - sha1 = "35acd45e3e971bf898d65388ed4abea240871aca"; - sha256 = "1xb79a4mc7zy8a48wpf7fr2bv11b85vzll8r6ydhiw399q589cap"; + sha1 = "34d7cec02198b4e2f976ea922a43b4e041098f95"; + sha256 = "01d2l8f1jmbxba5bjc8vfy7q4ikqkqyjp48nzw875sqc92zsgf88"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-git/1.9.2/maven-scm-providers-git-1.9.2" = + "https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.9.2/maven-scm-1.9.2" = { host = repositories.apache; path = - "org/apache/maven/scm/maven-scm-providers-git/1.9.2/maven-scm-providers-git-1.9.2"; + "org/apache/maven/scm/maven-scm/1.9.2/maven-scm-1.9.2"; type = "jar"; pom = { - sha1 = "24fc1e3ff18b5cc70cfa2a9164647b24f050d19a"; - sha256 = "0m9767kpyn7y3x0lpha39d744pkabkbgdchdr62dxjmyn8xy4syf"; + sha1 = "4f6fe3cc2964fb7be077a5fb0cef8c4f71713d2f"; + sha256 = "1zsv5wysgdn1i06b1khrqd1fh5i11833lgfhp6qffgl4803l556v"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.9.5/maven-scm-1.9.5" = + { + host = repositories.apache; + path = + "org/apache/maven/scm/maven-scm/1.9.5/maven-scm-1.9.5"; + type = "jar"; + pom = { + sha1 = "e6718c4e9c0a2eb4997be4a2a08d9c00148079cd"; + sha256 = "152659qnzx87nlcxp81bv0nvh3r4b6iqiaardbcbpv3blbdd133r"; }; }; "https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.1/file-management-1.1" = @@ -19421,6 +19825,17 @@ in { sha256 = "1k9l5ir64jqnkqj91qkgqykdd0i8qygkv4z3bwj6sh4plzc3cvrv"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.22.1/surefire-2.22.1" = + { + host = repositories.apache; + path = + "org/apache/maven/surefire/surefire/2.22.1/surefire-2.22.1"; + type = "jar"; + pom = { + sha1 = "535508195981dabd311b01bb70daf7558eaf0ea4"; + sha256 = "093d1z6ggj83vqm3lv83jhz9ddm3yfzp2fx88d1n113301vad615"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.3/surefire-2.3" = { host = repositories.apache; @@ -19498,61 +19913,6 @@ in { sha256 = "00p1qfgxc2pknwd7hzvf00fm10k0353xxglnp4m7jfmv54ap21bf"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6" = - { - host = repositories.apache; - path = - "org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6"; - type = "jar"; - pom = { - sha1 = "69aa7db6cd9b32c6026dfb3d77d6a6865a2a9fc3"; - sha256 = "1bqfgdbc3648jqywcia0d8jz4mjr04mcrj7mr0503hqwsjf2nqrn"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-2/wagon-1.0-beta-2" = - { - host = repositories.apache; - path = - "org/apache/maven/wagon/wagon/1.0-beta-2/wagon-1.0-beta-2"; - type = "jar"; - pom = { - sha1 = "6cf8a47018be792d2b1774d2bacd7541c888ae50"; - sha256 = "1yssnc8w2xyak11qnm5xbwl79haxmcspm1l8k1a49v20bg4jrnpc"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6" = - { - host = repositories.apache; - path = - "org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6"; - type = "jar"; - pom = { - sha1 = "0a5a7966afb1b64f97c2f3f23a3e80592dc94986"; - sha256 = "1k43f6drp6ia61vfpg1fwa8s5nr37sn1ig25dkcb833aqp3swp02"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.10/wagon-2.10" = - { - host = repositories.apache; - path = - "org/apache/maven/wagon/wagon/2.10/wagon-2.10"; - type = "jar"; - pom = { - sha1 = "d51307a7a9d4909736d942b1f8a0711c11f90aca"; - sha256 = "0jvh2baa2ff5v1pqbqvgyxj7537yhgm5qndr5ih7m61ig8sgzgl2"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.7/wagon-2.7" = - { - host = repositories.apache; - path = - "org/apache/maven/wagon/wagon/2.7/wagon-2.7"; - type = "jar"; - pom = { - sha1 = "1a0fe7a60815fdfc1515b3b1f7e5b2c119443462"; - sha256 = "1m7dwgf1sqfzda8y4xgjbbq3fl71d03z13kf5yl9dh0vwi71d55l"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-http-shared/2.7/wagon-http-shared-2.7" = { host = repositories.apache; @@ -19665,6 +20025,21 @@ in { sha256 = "1y6pmp3xy4g7mkh9lgfpnjx62220flh2h1pf4p0lj0wsj1a3n9qv"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-webdav-jackrabbit/2.7/wagon-webdav-jackrabbit-2.7" = + { + host = repositories.apache; + path = + "org/apache/maven/wagon/wagon-webdav-jackrabbit/2.7/wagon-webdav-jackrabbit-2.7"; + type = "jar"; + pom = { + sha1 = "b50da345ab381e31464a6545d7dc550e6867cc6c"; + sha256 = "0yp88j12mwdvkdqmb6ak0wn8zkr3810rvcy2p9vq2mwspfdisj01"; + }; + jar = { + sha1 = "f9d5aad91c5a793b90658a9a807300c81cdf4561"; + sha256 = "1jj01i3xcjljhf23qz5zfm3imsi7disbkbf173qc6rvvg3c2qcdp"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-webdav/1.0-beta-2/wagon-webdav-1.0-beta-2" = { host = repositories.apache; @@ -19680,19 +20055,59 @@ in { sha256 = "0l57gcc7l0nhis9dpcpy2q9niw0bh7p8nw49fkzxlwyqvqndd0dd"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-webdav-jackrabbit/2.7/wagon-webdav-jackrabbit-2.7" = + "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6" = { host = repositories.apache; path = - "org/apache/maven/wagon/wagon-webdav-jackrabbit/2.7/wagon-webdav-jackrabbit-2.7"; + "org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6"; type = "jar"; pom = { - sha1 = "b50da345ab381e31464a6545d7dc550e6867cc6c"; - sha256 = "0yp88j12mwdvkdqmb6ak0wn8zkr3810rvcy2p9vq2mwspfdisj01"; + sha1 = "69aa7db6cd9b32c6026dfb3d77d6a6865a2a9fc3"; + sha256 = "1bqfgdbc3648jqywcia0d8jz4mjr04mcrj7mr0503hqwsjf2nqrn"; }; - jar = { - sha1 = "f9d5aad91c5a793b90658a9a807300c81cdf4561"; - sha256 = "1jj01i3xcjljhf23qz5zfm3imsi7disbkbf173qc6rvvg3c2qcdp"; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-2/wagon-1.0-beta-2" = + { + host = repositories.apache; + path = + "org/apache/maven/wagon/wagon/1.0-beta-2/wagon-1.0-beta-2"; + type = "jar"; + pom = { + sha1 = "6cf8a47018be792d2b1774d2bacd7541c888ae50"; + sha256 = "1yssnc8w2xyak11qnm5xbwl79haxmcspm1l8k1a49v20bg4jrnpc"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6" = + { + host = repositories.apache; + path = + "org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6"; + type = "jar"; + pom = { + sha1 = "0a5a7966afb1b64f97c2f3f23a3e80592dc94986"; + sha256 = "1k43f6drp6ia61vfpg1fwa8s5nr37sn1ig25dkcb833aqp3swp02"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.10/wagon-2.10" = + { + host = repositories.apache; + path = + "org/apache/maven/wagon/wagon/2.10/wagon-2.10"; + type = "jar"; + pom = { + sha1 = "d51307a7a9d4909736d942b1f8a0711c11f90aca"; + sha256 = "0jvh2baa2ff5v1pqbqvgyxj7537yhgm5qndr5ih7m61ig8sgzgl2"; + }; + }; + "https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.7/wagon-2.7" = + { + host = repositories.apache; + path = + "org/apache/maven/wagon/wagon/2.7/wagon-2.7"; + type = "jar"; + pom = { + sha1 = "1a0fe7a60815fdfc1515b3b1f7e5b2c119443462"; + sha256 = "1m7dwgf1sqfzda8y4xgjbbq3fl71d03z13kf5yl9dh0vwi71d55l"; }; }; "https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-plugin/0.10/apache-rat-plugin-0.10" = @@ -19944,6 +20359,21 @@ in { sha256 = "0mwy8b07bhkc6j71fplywmhn1bc04hwa5ail9dpavpdj6hbycrix"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0" = + { + host = repositories.apache; + path = + "org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0"; + type = "jar"; + pom = { + sha1 = "dfbd6d8a50df5de5ba9949e9ca9d0cf9af6ca99e "; + sha256 = "158vf8gykfbxb4kjpisywr4rsyh69q9bzjisay6d90928smi6bxi"; + }; + jar = { + sha1 = "69936384de86857018b023a8c56ae0635c56b6a0 "; + sha256 = "1nc8lvgfk3ynkqmsjc9f7qdlqknablyps72p2375vhj8phvfnx5i"; + }; + }; "https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5" = { host = repositories.apache; @@ -19989,32 +20419,6 @@ in { sha256 = "13hd55mf9jimfkb5v32anbpv04s098vg8vmivd34nkq323ldm4pc"; }; }; - "https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0" = - { - host = repositories.apache; - path = - "org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0"; - type = "jar"; - pom = { - sha1 = "dfbd6d8a50df5de5ba9949e9ca9d0cf9af6ca99e "; - sha256 = "158vf8gykfbxb4kjpisywr4rsyh69q9bzjisay6d90928smi6bxi"; - }; - jar = { - sha1 = "69936384de86857018b023a8c56ae0635c56b6a0 "; - sha256 = "1nc8lvgfk3ynkqmsjc9f7qdlqknablyps72p2375vhj8phvfnx5i"; - }; - }; - "https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.4/xbean-3.4" = - { - host = repositories.apache; - path = - "org/apache/xbean/xbean/3.4/xbean-3.4"; - type = "jar"; - pom = { - sha1 = "6b6d0d977f3fb41cfd097a350472baefd82713f5"; - sha256 = "16abb86g4flk4k2wllqx84hjrkcnm40aasq0g5q9nah25mn9rasn"; - }; - }; "https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4" = { host = repositories.apache; @@ -20030,6 +20434,17 @@ in { sha256 = "0fzcjan4fc39xkb0f3xa5fkbmlrh1k2qiywp65i38w0jhyhyzq0p"; }; }; + "https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.4/xbean-3.4" = + { + host = repositories.apache; + path = + "org/apache/xbean/xbean/3.4/xbean-3.4"; + type = "jar"; + pom = { + sha1 = "6b6d0d977f3fb41cfd097a350472baefd82713f5"; + sha256 = "16abb86g4flk4k2wllqx84hjrkcnm40aasq0g5q9nah25mn9rasn"; + }; + }; "https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0" = { host = repositories.apache; @@ -20157,17 +20572,6 @@ in { sha256 = "17h2n22kyfsxqc1xkrf8c74c00yp1qrccg191zzligslak2l53v8"; }; }; - "https://repo.maven.apache.org/maven2/org/codehaus/groovy/maven/gmaven/1.0/gmaven-1.0" = - { - host = repositories.apache; - path = - "org/codehaus/groovy/maven/gmaven/1.0/gmaven-1.0"; - type = "jar"; - pom = { - sha1 = "183ef5fac36be76c2c6fa70857e7960d48aca7ac"; - sha256 = "1q65dmhw05y9ab067qxvggk0if3dasnih1cxlwh2wavr1yzvapr8"; - }; - }; "https://repo.maven.apache.org/maven2/org/codehaus/groovy/maven/gmaven-plugin/1.0/gmaven-plugin-1.0" = { host = repositories.apache; @@ -20183,6 +20587,17 @@ in { sha256 = "1p1l5dmdnyj46n68i39kf5xvf3blv2ww681gxlsamqzwbq26v4qc"; }; }; + "https://repo.maven.apache.org/maven2/org/codehaus/groovy/maven/gmaven/1.0/gmaven-1.0" = + { + host = repositories.apache; + path = + "org/codehaus/groovy/maven/gmaven/1.0/gmaven-1.0"; + type = "jar"; + pom = { + sha1 = "183ef5fac36be76c2c6fa70857e7960d48aca7ac"; + sha256 = "1q65dmhw05y9ab067qxvggk0if3dasnih1cxlwh2wavr1yzvapr8"; + }; + }; "https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.2/jackson-core-asl-1.9.2" = { host = repositories.apache; @@ -20273,6 +20688,21 @@ in { sha256 = "14vb8ghycrx2psrx5yqjidy5sdfcn484fij4mm571sy89hyypb83"; }; }; + "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.15/animal-sniffer-annotations-1.15" = + { + host = repositories.apache; + path = + "org/codehaus/mojo/animal-sniffer-annotations/1.15/animal-sniffer-annotations-1.15"; + type = "jar"; + pom = { + sha1 = "619990be2896b620c1bd44c2a22736bac9313431"; + sha256 = "04n7mxyvk7xh4w4vavv0wwjq0b0rdwf36jcblp4apzrrd9gkd6am"; + }; + jar = { + sha1 = "3f19b51588ad71482ce4c169f54f697b6181d1b4"; + sha256 = "1hg2hp8b7b8yv9523mvdx14q1k963v9bpgqdhf9spd23rljp4700"; + }; + }; "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.10/animal-sniffer-maven-plugin-1.10" = { host = repositories.apache; @@ -20333,6 +20763,21 @@ in { sha256 = "0vca2mgnf5lrprk41vlnv93hm8h4awr614zb9b7nrx20qqgxzf6m"; }; }; + "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.15/animal-sniffer-maven-plugin-1.15" = + { + host = repositories.apache; + path = + "org/codehaus/mojo/animal-sniffer-maven-plugin/1.15/animal-sniffer-maven-plugin-1.15"; + type = "jar"; + pom = { + sha1 = "6460c127c6971b09e2db479231c981836edd60af"; + sha256 = "1d2jlr33knc4cnclg8wnn9sdmywaqdjl40i69za03xiksvcsxr2m"; + }; + jar = { + sha1 = "7547a24a835c4c811045f28284bcc1b6e8bf1e42"; + sha256 = "022ky6rnqsppdg3rr4s6gizcqi9nx83l1lwa8fq4ig6fglz0i7hi"; + }; + }; "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.16/animal-sniffer-maven-plugin-1.16" = { host = repositories.apache; @@ -20407,6 +20852,17 @@ in { sha256 = "1skf65rbw52shb2akgs7xykn06lj1ggp23nbc94vs40ldfh505gm"; }; }; + "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.15/animal-sniffer-parent-1.15" = + { + host = repositories.apache; + path = + "org/codehaus/mojo/animal-sniffer-parent/1.15/animal-sniffer-parent-1.15"; + type = "jar"; + pom = { + sha1 = "fd4ad95baa39049320fb399eff275266ee6adebe"; + sha256 = "1vq1m3hgyw8dg5p0j2hy9cagdvahyxqj0kv7yy7510wr3crc08bl"; + }; + }; "https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.16/animal-sniffer-parent-1.16" = { host = repositories.apache; @@ -20744,28 +21200,6 @@ in { sha256 = "1j5m2sb6ykfxjbz7h2f623k0jxidl3nhz4i8rnmzwxnasia2rvhq"; }; }; - "https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo/17/mojo-17" = - { - host = repositories.apache; - path = - "org/codehaus/mojo/mojo/17/mojo-17"; - type = "jar"; - pom = { - sha1 = "d545008281035e14e691924bd773cd76cef76056"; - sha256 = "1xxaivpv19xanzc7z67ia1dly80qi4crp14jsy8jfdr1qrslr1ap"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo/7/mojo-7" = - { - host = repositories.apache; - path = - "org/codehaus/mojo/mojo/7/mojo-7"; - type = "jar"; - pom = { - sha1 = "b92c961835648c997f63aa2cbb6774e3e591e2ba"; - sha256 = "1grvxgxhcx125917gzgwjh0al2gnvyz4r2dpdb33v7hkdclq61mj"; - }; - }; "https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/23/mojo-parent-23" = { host = repositories.apache; @@ -20876,6 +21310,43 @@ in { sha256 = "0pkmrd1m1s7s2jhvw9qj40c6c5w0z7n18faqw1kbzy04qk6qsr7w"; }; }; + "https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo/17/mojo-17" = + { + host = repositories.apache; + path = + "org/codehaus/mojo/mojo/17/mojo-17"; + type = "jar"; + pom = { + sha1 = "d545008281035e14e691924bd773cd76cef76056"; + sha256 = "1xxaivpv19xanzc7z67ia1dly80qi4crp14jsy8jfdr1qrslr1ap"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo/7/mojo-7" = + { + host = repositories.apache; + path = + "org/codehaus/mojo/mojo/7/mojo-7"; + type = "jar"; + pom = { + sha1 = "b92c961835648c997f63aa2cbb6774e3e591e2ba"; + sha256 = "1grvxgxhcx125917gzgwjh0al2gnvyz4r2dpdb33v7hkdclq61mj"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/mojo/templating-maven-plugin/1.0-alpha-3/templating-maven-plugin-1.0-alpha-3" = + { + host = repositories.apache; + path = + "org/codehaus/mojo/templating-maven-plugin/1.0-alpha-3/templating-maven-plugin-1.0-alpha-3"; + type = "jar"; + pom = { + sha1 = "9ddf35a2c0c032c1c652f00cfd6b22643d6ec98a"; + sha256 = "04z8nlw88bkamjzl0p1vqj8rkxak7f4qjv4j9v9cybqf8k4znwd5"; + }; + jar = { + sha1 = "e9d69c141dbdebe79f60e6a99a3548676c11999d"; + sha256 = "0skc2671dzp83yiabf726fm6ynhpx8fan9c9mjxy37wyn0fkvj6l"; + }; + }; "https://repo.maven.apache.org/maven2/org/codehaus/mojo/templating-maven-plugin/1.0.0/templating-maven-plugin-1.0.0" = { host = repositories.apache; @@ -20891,215 +21362,6 @@ in { sha256 = "162vpl3yf0d46a0k81xvdiv6q6r8n8rqwgvcsq8928h0yp8i5rgb"; }; }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10"; - type = "jar"; - pom = { - sha1 = "039c3f6a3cbe1f9e7b4a3309d9d7062b6e390fa7"; - sha256 = "1a8xi2fgz9b1dmjnqp5jjcfnwxj4ly78dlisrjk2adg7d6lrkf89"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11"; - type = "jar"; - pom = { - sha1 = "4693d4512d50c5159bef1c49def1d2690a327c30"; - sha256 = "09nn4ybb0cd4mgb9335xhfymwpv7p3jjcvcfmfsgadi3rl6n75si"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12"; - type = "jar"; - pom = { - sha1 = "71d4361c71c7454a2626f3e18c789747256fe0b1"; - sha256 = "015dppbvnj5d6xp1f90zfzp0j4smv2r90zzj7a7fl8ca8xlv3zp3"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4"; - type = "jar"; - pom = { - sha1 = "06f66b2f7d2eef1d805c11bca91c89984cda4137 /home/projects/maven/repository-staging/to-ibiblio/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom"; - sha256 = "1hvl5hbx0rs6p9n45vm4ww074l956238jggvcwraf71bs41gshi2"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5"; - type = "jar"; - pom = { - sha1 = "c1ea805e66e5fe377a79ff932cdd0ac70189fa39"; - sha256 = "0m728lbimi9xa5ylkyymvszdmhvxwnwh8m4kk9as91dch3dzf7cs"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8"; - type = "jar"; - pom = { - sha1 = "9e7c8432829962afe796b32587c1bfa841a317d5"; - sha256 = "0ycgx0cl2s9a9q2fmyiwpcys1aykyzsijpz3a8z4n94f12cjz6m8"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9"; - type = "jar"; - pom = { - sha1 = "89d241b1e5ee6a72d3dd95d9eb90f635deebcdb2"; - sha256 = "0x2k7yaikd4fbkjn762igxqd79zmmc42665csq2arz2pg5h8ga8i"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2"; - type = "jar"; - pom = { - sha1 = "b6c97d19090baa51e953fb782e3986b068fb450f"; - sha256 = "0cvaai5a664jxvnl88wdzxa5bfiick2wj8f5xzyqkndmcahf4ip2"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3"; - type = "jar"; - pom = { - sha1 = "bf472ec56fe823f1b4b997fe5b9396490ae9b1dc"; - sha256 = "0xj7baf5cbcbwr89ijgdm18ncvw7vbq74sfrdg0m0k46p06ngigw"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5"; - type = "jar"; - pom = { - sha1 = "c37b8e9129d8860dfdea27da2c5407de7c6faba7"; - sha256 = "1m9srm36v3w3fwmkzwlnzw1bihmgn7jin8j1b17vz9ai2g0ivcvj"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6"; - type = "jar"; - pom = { - sha1 = "da193f47e5ce5a2cb85931851b3698e61cde8227"; - sha256 = "1k2b4cxmh8j5pn0pvv5nppl058fzxcqwg88c85rmxlh8fxs2x8dy"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7"; - type = "jar"; - pom = { - sha1 = "f6ee62f8157f273757b8ffda59714a6a279a174d"; - sha256 = "0x4arhayg4spy9jrlww8cj96hqvh44ja4ywps32ia2mb60h0cn9b"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1"; - type = "jar"; - pom = { - sha1 = "9ae573423303ba80844ed564756442d32b97cc33"; - sha256 = "0chyqjq0brr3hff2bwbq9ii3zaqdcz62s04qddzdslxmm9ygcj8n"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/3.2/plexus-3.2"; - type = "jar"; - pom = { - sha1 = "521733c90c6fb160311e47b51f0471642b69f64f"; - sha256 = "0kyyj5rbsqfhdfqpdahvpqmdpngdkxcb2db8yxd71rrpvhpp6z0w"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1"; - type = "jar"; - pom = { - sha1 = "f081c65405b2d5e403c9d57e791b23f613966322"; - sha256 = "1fqnx2yyynsrg683zik56ni5mc7i8zji8z0n1gwm14n2kf46zjbf"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2"; - type = "jar"; - pom = { - sha1 = "7ba5dd42cae4e80cf4d34ecff014dbf34df26b59"; - sha256 = "1zryv25cg6x4qavsq1ag1kffz5v8l2jz21wmnn5592vxrlx8blrg"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3/plexus-3.3" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/3.3/plexus-3.3"; - type = "jar"; - pom = { - sha1 = "70ab8436286998acce80e63fe75067a70cfe3e43"; - sha256 = "1lha46r9c1ylxqbbydcl048nh4w3870y5bs34jarb7flpyld6aix"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/4.0/plexus-4.0"; - type = "jar"; - pom = { - sha1 = "cdbb31ee91973d16e8f8b0bda51ed4211e7a9f57"; - sha256 = "0skz6bhznd7gc2m79w848njgfj0dcvs50bmfbnjdd46cgwnnj6qa"; - }; - }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.0/plexus-5.0" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus/5.0/plexus-5.0"; - type = "jar"; - pom = { - sha1 = "7733f81581a7b549cef034c9117d4d8c29ea07d6"; - sha256 = "0912d902bwgzgm5s3dp2kymc5fvqng4y7gjjhn246qnnrs2iyxrj"; - }; - }; "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-12/plexus-archiver-1.0-alpha-12" = { host = repositories.apache; @@ -21525,21 +21787,6 @@ in { sha256 = "0b1bgw6fdb5lnkx3c75c0lhvcx73s93yvi4pjlpf6q4dal4k9zip"; }; }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9"; - type = "jar"; - pom = { - sha1 = "d00c65ec36fb3cc8c755182a7ee52d3d80340179"; - sha256 = "1v06ybdgc7pkqxdq9h761f5ry5q7765myi8z272d051n6n7b0r48"; - }; - jar = { - sha1 = "50596183cd7b688d9d7b6d868a0193ca1a8a7b3d"; - sha256 = "0jjqqnf7qdslci2pp2xx1z3yyldg9mxdpsmxwd4ddqj589xc9kyw"; - }; - }; "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1" = { host = repositories.apache; @@ -21555,6 +21802,21 @@ in { sha256 = "1pvfl71v184m0bspwzq9zgd0qzncrpksw8v86zzcr0l7i098cxbw"; }; }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9"; + type = "jar"; + pom = { + sha1 = "d00c65ec36fb3cc8c755182a7ee52d3d80340179"; + sha256 = "1v06ybdgc7pkqxdq9h761f5ry5q7765myi8z272d051n6n7b0r48"; + }; + jar = { + sha1 = "50596183cd7b688d9d7b6d868a0193ca1a8a7b3d"; + sha256 = "0jjqqnf7qdslci2pp2xx1z3yyldg9mxdpsmxwd4ddqj589xc9kyw"; + }; + }; "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.4/plexus-container-default-1.5.4" = { host = repositories.apache; @@ -21585,17 +21847,6 @@ in { sha256 = "1kri16hqfp23fb24bcp96qk4wbgc4nivmjhg9r5vbgl0rn3786b9"; }; }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3"; - type = "jar"; - pom = { - sha1 = "e16f1c9b83cdeb142fc038dd0262c61121d58c4b /home/projects/maven/repository-staging/to-ibiblio/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom"; - sha256 = "03x8ldzzq2i2ggz3156fwddr1aglsb5c9j4lxr1l80fbmmdhfxbw"; - }; - }; "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20" = { host = repositories.apache; @@ -21618,6 +21869,17 @@ in { sha256 = "0fwdhw253pn875h8g0046q0vvynxrzh8299grymwcm44s34kkc3l"; }; }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3"; + type = "jar"; + pom = { + sha1 = "e16f1c9b83cdeb142fc038dd0262c61121d58c4b /home/projects/maven/repository-staging/to-ibiblio/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom"; + sha256 = "03x8ldzzq2i2ggz3156fwddr1aglsb5c9j4lxr1l80fbmmdhfxbw"; + }; + }; "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4" = { host = repositories.apache; @@ -21812,21 +22074,6 @@ in { sha256 = "04axznnhrwxy4495yfc8lqvcw03c657c39p2paiqngl9bpv14zh8"; }; }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.10/plexus-io-2.0.10" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus-io/2.0.10/plexus-io-2.0.10"; - type = "jar"; - pom = { - sha1 = "cc52eeeae8e00a408fd0a7062d17feb93fc76602"; - sha256 = "01fxwq2rhlnvgwg75yz6s5xhvzbqa07mij01crfl21n9693a5f0y"; - }; - jar = { - sha1 = "d0a900a9386ad9118b70f4a21af68c2241e6cd51"; - sha256 = "01dgbagkka4khpzizfmn2p26x7s0l0fygcs05krlhca765k9qnqr"; - }; - }; "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1" = { host = repositories.apache; @@ -21842,6 +22089,21 @@ in { sha256 = "1zk4w5zjcjg5sp3r32g22ay77q95606831splkgrrnhi8i5118xm"; }; }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.10/plexus-io-2.0.10" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus-io/2.0.10/plexus-io-2.0.10"; + type = "jar"; + pom = { + sha1 = "cc52eeeae8e00a408fd0a7062d17feb93fc76602"; + sha256 = "01fxwq2rhlnvgwg75yz6s5xhvzbqa07mij01crfl21n9693a5f0y"; + }; + jar = { + sha1 = "d0a900a9386ad9118b70f4a21af68c2241e6cd51"; + sha256 = "01dgbagkka4khpzizfmn2p26x7s0l0fygcs05krlhca765k9qnqr"; + }; + }; "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2" = { host = repositories.apache; @@ -22112,21 +22374,6 @@ in { sha256 = "0m752vrvw1fhfsjxndrnqb0gxcrspgsj459y8y6k92c1g502rj1h"; }; }; - "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15" = - { - host = repositories.apache; - path = - "org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15"; - type = "jar"; - pom = { - sha1 = "b1f42bc7ebc5be3c0414f67fe2daf3b183acd74f"; - sha256 = "1rw069pn8l9l078c856sjviz6kp18k9zkcfa4d9ckzc25fiwk8qj"; - }; - jar = { - sha1 = "c689598ce1eb94c304817877ed15911099972526"; - sha256 = "15yrwyxk9ysdvpxnpsvwfykj7z21q32ifbdj5j7lsysr3s1j389c"; - }; - }; "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1" = { host = repositories.apache; @@ -22142,6 +22389,21 @@ in { sha256 = "0ljl2s303ahyc88wcbpmg1p4rnfbyczsgvffafkiyq45la5jyn3j"; }; }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15"; + type = "jar"; + pom = { + sha1 = "b1f42bc7ebc5be3c0414f67fe2daf3b183acd74f"; + sha256 = "1rw069pn8l9l078c856sjviz6kp18k9zkcfa4d9ckzc25fiwk8qj"; + }; + jar = { + sha1 = "c689598ce1eb94c304817877ed15911099972526"; + sha256 = "15yrwyxk9ysdvpxnpsvwfykj7z21q32ifbdj5j7lsysr3s1j389c"; + }; + }; "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5" = { host = repositories.apache; @@ -22412,6 +22674,278 @@ in { sha256 = "1bjzniki5zaliw4g6477c8crp7ximzbp4w3ra7a2c5fkpi7rk70w"; }; }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10"; + type = "jar"; + pom = { + sha1 = "039c3f6a3cbe1f9e7b4a3309d9d7062b6e390fa7"; + sha256 = "1a8xi2fgz9b1dmjnqp5jjcfnwxj4ly78dlisrjk2adg7d6lrkf89"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11"; + type = "jar"; + pom = { + sha1 = "4693d4512d50c5159bef1c49def1d2690a327c30"; + sha256 = "09nn4ybb0cd4mgb9335xhfymwpv7p3jjcvcfmfsgadi3rl6n75si"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12"; + type = "jar"; + pom = { + sha1 = "71d4361c71c7454a2626f3e18c789747256fe0b1"; + sha256 = "015dppbvnj5d6xp1f90zfzp0j4smv2r90zzj7a7fl8ca8xlv3zp3"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4"; + type = "jar"; + pom = { + sha1 = "06f66b2f7d2eef1d805c11bca91c89984cda4137 /home/projects/maven/repository-staging/to-ibiblio/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom"; + sha256 = "1hvl5hbx0rs6p9n45vm4ww074l956238jggvcwraf71bs41gshi2"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5"; + type = "jar"; + pom = { + sha1 = "c1ea805e66e5fe377a79ff932cdd0ac70189fa39"; + sha256 = "0m728lbimi9xa5ylkyymvszdmhvxwnwh8m4kk9as91dch3dzf7cs"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8"; + type = "jar"; + pom = { + sha1 = "9e7c8432829962afe796b32587c1bfa841a317d5"; + sha256 = "0ycgx0cl2s9a9q2fmyiwpcys1aykyzsijpz3a8z4n94f12cjz6m8"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9"; + type = "jar"; + pom = { + sha1 = "89d241b1e5ee6a72d3dd95d9eb90f635deebcdb2"; + sha256 = "0x2k7yaikd4fbkjn762igxqd79zmmc42665csq2arz2pg5h8ga8i"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2"; + type = "jar"; + pom = { + sha1 = "b6c97d19090baa51e953fb782e3986b068fb450f"; + sha256 = "0cvaai5a664jxvnl88wdzxa5bfiick2wj8f5xzyqkndmcahf4ip2"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3"; + type = "jar"; + pom = { + sha1 = "bf472ec56fe823f1b4b997fe5b9396490ae9b1dc"; + sha256 = "0xj7baf5cbcbwr89ijgdm18ncvw7vbq74sfrdg0m0k46p06ngigw"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5"; + type = "jar"; + pom = { + sha1 = "c37b8e9129d8860dfdea27da2c5407de7c6faba7"; + sha256 = "1m9srm36v3w3fwmkzwlnzw1bihmgn7jin8j1b17vz9ai2g0ivcvj"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6"; + type = "jar"; + pom = { + sha1 = "da193f47e5ce5a2cb85931851b3698e61cde8227"; + sha256 = "1k2b4cxmh8j5pn0pvv5nppl058fzxcqwg88c85rmxlh8fxs2x8dy"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7"; + type = "jar"; + pom = { + sha1 = "f6ee62f8157f273757b8ffda59714a6a279a174d"; + sha256 = "0x4arhayg4spy9jrlww8cj96hqvh44ja4ywps32ia2mb60h0cn9b"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1"; + type = "jar"; + pom = { + sha1 = "9ae573423303ba80844ed564756442d32b97cc33"; + sha256 = "0chyqjq0brr3hff2bwbq9ii3zaqdcz62s04qddzdslxmm9ygcj8n"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/3.2/plexus-3.2"; + type = "jar"; + pom = { + sha1 = "521733c90c6fb160311e47b51f0471642b69f64f"; + sha256 = "0kyyj5rbsqfhdfqpdahvpqmdpngdkxcb2db8yxd71rrpvhpp6z0w"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1"; + type = "jar"; + pom = { + sha1 = "f081c65405b2d5e403c9d57e791b23f613966322"; + sha256 = "1fqnx2yyynsrg683zik56ni5mc7i8zji8z0n1gwm14n2kf46zjbf"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2"; + type = "jar"; + pom = { + sha1 = "7ba5dd42cae4e80cf4d34ecff014dbf34df26b59"; + sha256 = "1zryv25cg6x4qavsq1ag1kffz5v8l2jz21wmnn5592vxrlx8blrg"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3/plexus-3.3" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/3.3/plexus-3.3"; + type = "jar"; + pom = { + sha1 = "70ab8436286998acce80e63fe75067a70cfe3e43"; + sha256 = "1lha46r9c1ylxqbbydcl048nh4w3870y5bs34jarb7flpyld6aix"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/4.0/plexus-4.0"; + type = "jar"; + pom = { + sha1 = "cdbb31ee91973d16e8f8b0bda51ed4211e7a9f57"; + sha256 = "0skz6bhznd7gc2m79w848njgfj0dcvs50bmfbnjdd46cgwnnj6qa"; + }; + }; + "https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.0/plexus-5.0" = + { + host = repositories.apache; + path = + "org/codehaus/plexus/plexus/5.0/plexus-5.0"; + type = "jar"; + pom = { + sha1 = "7733f81581a7b549cef034c9117d4d8c29ea07d6"; + sha256 = "0912d902bwgzgm5s3dp2kymc5fvqng4y7gjjhn246qnnrs2iyxrj"; + }; + }; + "https://repo.maven.apache.org/maven2/org/conscrypt/conscrypt-openjdk-uber/1.4.0/conscrypt-openjdk-uber-1.4.0" = + { + host = repositories.apache; + path = + "org/conscrypt/conscrypt-openjdk-uber/1.4.0/conscrypt-openjdk-uber-1.4.0"; + type = "jar"; + pom = { + sha1 = "fccecd4a4442f036ccf09133504c8b579fff526b"; + sha256 = "05gxk0qkq6vyql4rqx0mjn94w5i201xw8f17bwhpndgjy9gm417v"; + }; + jar = { + sha1 = "d542eeb9eb86e5ce5ff78dab6ffa39f441f87122"; + sha256 = "0qabmv05px9ddimckmrspnlq60v4s5c9dj6n4bvic4kkv4zzcz24"; + }; + }; + "https://repo.maven.apache.org/maven2/org/conscrypt/conscrypt-openjdk-uber/2.0.0/conscrypt-openjdk-uber-2.0.0" = + { + host = repositories.apache; + path = + "org/conscrypt/conscrypt-openjdk-uber/2.0.0/conscrypt-openjdk-uber-2.0.0"; + type = "jar"; + pom = { + sha1 = "9eec92fdbb14567f27dcff682c4c067e59f9793d"; + sha256 = "1jfwqlvraaq8rwmq0q13kiygf4gvkhzjh7dd1ix2lm9mkmg611qs"; + }; + jar = { + sha1 = "68ea07c806ad889de05a78a508a73adf69f4c33f"; + sha256 = "0750i4jpczbh31i9bb8nl2djzri37c0isv8j4h6ccl0wfyad2prx"; + }; + }; + "https://repo.maven.apache.org/maven2/org/easymock/easymock-parent/3.2/easymock-parent-3.2" = + { + host = repositories.apache; + path = + "org/easymock/easymock-parent/3.2/easymock-parent-3.2"; + type = "jar"; + pom = { + sha1 = "1d130e585b385841b0ac06f546e0fcd859074620"; + sha256 = "13mkvvs81ma80djyn8ikpq3652i5dbj56x38avqxb9gbr7hgfbx6"; + }; + }; + "https://repo.maven.apache.org/maven2/org/easymock/easymock-parent/3.3/easymock-parent-3.3" = + { + host = repositories.apache; + path = + "org/easymock/easymock-parent/3.3/easymock-parent-3.3"; + type = "jar"; + pom = { + sha1 = "6fbb1e8d39522668a09281909ec348999b839576"; + sha256 = "05qddd6sgmyjqrj000ri61nqqv7ahyysk1alq2y8h64qh2bgnp1b"; + }; + }; + "https://repo.maven.apache.org/maven2/org/easymock/easymock-parent/4.0.2/easymock-parent-4.0.2" = + { + host = repositories.apache; + path = + "org/easymock/easymock-parent/4.0.2/easymock-parent-4.0.2"; + type = "jar"; + pom = { + sha1 = "ada624218c05990fe139869399dfe72c75345b06"; + sha256 = "1q9nki2m3371cp38dx3lni90faqffwawricygh22f59cqgwllxlj"; + }; + }; "https://repo.maven.apache.org/maven2/org/easymock/easymock/2.2/easymock-2.2" = { host = repositories.apache; @@ -22517,48 +23051,19 @@ in { sha256 = "16i30xgwij76pwxa1w89kjm84ai6lx33g8hbbbisr6x73sabb23m"; }; }; - "https://repo.maven.apache.org/maven2/org/easymock/easymock-parent/3.2/easymock-parent-3.2" = + "https://repo.maven.apache.org/maven2/org/easytesting/fest-assert-core/2.0M10/fest-assert-core-2.0M10" = { host = repositories.apache; path = - "org/easymock/easymock-parent/3.2/easymock-parent-3.2"; + "org/easytesting/fest-assert-core/2.0M10/fest-assert-core-2.0M10"; type = "jar"; pom = { - sha1 = "1d130e585b385841b0ac06f546e0fcd859074620"; - sha256 = "13mkvvs81ma80djyn8ikpq3652i5dbj56x38avqxb9gbr7hgfbx6"; + sha1 = "d16f3513dab4bc8b964a8278804ce71a34a40ea6"; + sha256 = "1vw11iq2p7v4kvck1kxm63qm6xqaalcfi6j6bbskjk3lqscwsdhg"; }; - }; - "https://repo.maven.apache.org/maven2/org/easymock/easymock-parent/3.3/easymock-parent-3.3" = - { - host = repositories.apache; - path = - "org/easymock/easymock-parent/3.3/easymock-parent-3.3"; - type = "jar"; - pom = { - sha1 = "6fbb1e8d39522668a09281909ec348999b839576"; - sha256 = "05qddd6sgmyjqrj000ri61nqqv7ahyysk1alq2y8h64qh2bgnp1b"; - }; - }; - "https://repo.maven.apache.org/maven2/org/easymock/easymock-parent/4.0.2/easymock-parent-4.0.2" = - { - host = repositories.apache; - path = - "org/easymock/easymock-parent/4.0.2/easymock-parent-4.0.2"; - type = "jar"; - pom = { - sha1 = "ada624218c05990fe139869399dfe72c75345b06"; - sha256 = "1q9nki2m3371cp38dx3lni90faqffwawricygh22f59cqgwllxlj"; - }; - }; - "https://repo.maven.apache.org/maven2/org/easytesting/fest/1.0.15/fest-1.0.15" = - { - host = repositories.apache; - path = - "org/easytesting/fest/1.0.15/fest-1.0.15"; - type = "jar"; - pom = { - sha1 = "1fe60c7c1c053c876a9a0b74114b83d782ab4c75"; - sha256 = "05r3vcwpy5qjzx41vlgqmci99dwc351fq1ka84b5nbq4lz7zl70h"; + jar = { + sha1 = "cb7c91cf614901928ae405f19d9bcdedf82781db"; + sha256 = "0pwa8wg6qdyffl8nd28sf09zvzpqyxrga9qlqfi52z5wzry1g8lb"; }; }; "https://repo.maven.apache.org/maven2/org/easytesting/fest-assert-core/2.0M8/fest-assert-core-2.0M8" = @@ -22591,26 +23096,30 @@ in { sha256 = "04afh7d8skv73cqwx92azsfpaj0cbz5xix63i3jpgzjvs5bcyv7z"; }; }; - "https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2" = + "https://repo.maven.apache.org/maven2/org/easytesting/fest-util/1.2.5/fest-util-1.2.5" = { host = repositories.apache; path = - "org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2"; + "org/easytesting/fest-util/1.2.5/fest-util-1.2.5"; type = "jar"; pom = { - sha1 = "e44bcfab62cbf0ad4f15a47aa9cc48368db2dc6d"; - sha256 = "1kir1m2n6hk8n4cqad5gdsr1cyx71xm5gv045gsvnzpprij8rgrh"; + sha1 = "c1898dc18fcafd93f34cc47c9228331525cf38d6"; + sha256 = "0yhc1rzww98xsvgrxix9z1dl5rz9w4sz1w0ccpfcl380q36q5n51"; + }; + jar = { + sha1 = "c4a8d7305b23b8d043be12c979813b096df11f44"; + sha256 = "0hakpb3k1d7hxlnhvxwfdhr0hziv24riicdnymqyvds1mp9z8lkv"; }; }; - "https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114" = + "https://repo.maven.apache.org/maven2/org/easytesting/fest/1.0.15/fest-1.0.15" = { host = repositories.apache; path = - "org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114"; + "org/easytesting/fest/1.0.15/fest-1.0.15"; type = "jar"; pom = { - sha1 = "ec17511fdf4fe911e5b174b1490c2a1876657511"; - sha256 = "0hw2kk9a5lvnydf9dz4gd29b5n3rnjad6x01mf743gigv56ias2m"; + sha1 = "1fe60c7c1c053c876a9a0b74114b83d782ab4c75"; + sha256 = "05r3vcwpy5qjzx41vlgqmci99dwc351fq1ka84b5nbq4lz7zl70h"; }; }; "https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114" = @@ -22688,6 +23197,28 @@ in { sha256 = "0z71zglkawf0kk562hv5cnhf6mjv0svip12dx4r4f0wqk91mg6ly"; }; }; + "https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2" = + { + host = repositories.apache; + path = + "org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2"; + type = "jar"; + pom = { + sha1 = "e44bcfab62cbf0ad4f15a47aa9cc48368db2dc6d"; + sha256 = "1kir1m2n6hk8n4cqad5gdsr1cyx71xm5gv045gsvnzpprij8rgrh"; + }; + }; + "https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114" = + { + host = repositories.apache; + path = + "org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114"; + type = "jar"; + pom = { + sha1 = "ec17511fdf4fe911e5b174b1490c2a1876657511"; + sha256 = "0hw2kk9a5lvnydf9dz4gd29b5n3rnjad6x01mf743gigv56ias2m"; + }; + }; "https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-parent/14/jetty-parent-14" = { host = repositories.apache; @@ -22810,21 +23341,6 @@ in { sha256 = "0qq3qrc75wz8iilmwsybhqp4qpj336dp0x3bgyrb5swis1yjq0k9"; }; }; - "https://repo.maven.apache.org/maven2/org/fusesource/hawtbuf/hawtbuf/1.9/hawtbuf-1.9" = - { - host = repositories.apache; - path = - "org/fusesource/hawtbuf/hawtbuf/1.9/hawtbuf-1.9"; - type = "jar"; - pom = { - sha1 = "e6bbc81037a29f5560f86ba1132ea574d3db570a"; - sha256 = "1g7an5rn5s4gpf4n5sz758yrbrbvml5aaqfmw9mxpvfwl38gz23x"; - }; - jar = { - sha1 = "4a42b835d1df77db8c9a144a11ebb4600a372f5f"; - sha256 = "11hd6vjzg2w4npbqbdm2r5xm09hiqxvv5i3rxxzdvsz921kchmx0"; - }; - }; "https://repo.maven.apache.org/maven2/org/fusesource/hawtbuf/hawtbuf-project/1.9/hawtbuf-project-1.9" = { host = repositories.apache; @@ -22851,6 +23367,32 @@ in { sha256 = "1g509kxdx328nbhy6psqphj5mjwsk9wv2y09zm0qfkmm916c2cbv"; }; }; + "https://repo.maven.apache.org/maven2/org/fusesource/hawtbuf/hawtbuf/1.9/hawtbuf-1.9" = + { + host = repositories.apache; + path = + "org/fusesource/hawtbuf/hawtbuf/1.9/hawtbuf-1.9"; + type = "jar"; + pom = { + sha1 = "e6bbc81037a29f5560f86ba1132ea574d3db570a"; + sha256 = "1g7an5rn5s4gpf4n5sz758yrbrbvml5aaqfmw9mxpvfwl38gz23x"; + }; + jar = { + sha1 = "4a42b835d1df77db8c9a144a11ebb4600a372f5f"; + sha256 = "11hd6vjzg2w4npbqbdm2r5xm09hiqxvv5i3rxxzdvsz921kchmx0"; + }; + }; + "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi-project/1.11/jansi-project-1.11" = + { + host = repositories.apache; + path = + "org/fusesource/jansi/jansi-project/1.11/jansi-project-1.11"; + type = "jar"; + pom = { + sha1 = "c1fb6dcfa9faf3eafaf00bd66cbea2dbbc8c11d0"; + sha256 = "1s4wrh9gzbfcfhi3m87wi2rk9s2hxf9111yl0i7cyygrandw9acb"; + }; + }; "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/1.11/jansi-1.11" = { host = repositories.apache; @@ -22866,17 +23408,6 @@ in { sha256 = "1f30glhywfjjksfzwpjfxvnrdrr68xawwckicbz5fqpws8z1d0ly"; }; }; - "https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi-project/1.11/jansi-project-1.11" = - { - host = repositories.apache; - path = - "org/fusesource/jansi/jansi-project/1.11/jansi-project-1.11"; - type = "jar"; - pom = { - sha1 = "c1fb6dcfa9faf3eafaf00bd66cbea2dbbc8c11d0"; - sha256 = "1s4wrh9gzbfcfhi3m87wi2rk9s2hxf9111yl0i7cyygrandw9acb"; - }; - }; "https://repo.maven.apache.org/maven2/org/glassfish/copyright/glassfish-copyright-maven-plugin/1.29/glassfish-copyright-maven-plugin-1.29" = { host = repositories.apache; @@ -22944,21 +23475,6 @@ in { sha256 = "0f4d9p4vgidkq2v6s6gqkc5rpm5gz9fv5l2i59x9zp3hy186hbm5"; }; }; - "https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1" = - { - host = repositories.apache; - path = - "org/hamcrest/hamcrest/2.1/hamcrest-2.1"; - type = "jar"; - pom = { - sha1 = "5ec7fedbeb4dddbfdcaf696ae286e1b6c1e1df4b"; - sha256 = "09y9yrnckv8riqigzv5vi6hg0s87aq6y503380i5ljq6mk3xszvq"; - }; - jar = { - sha1 = "9420ba32c29217b54eebd26ff7f9234d31c3fbb2"; - sha256 = "0l10d5784zyp1q19lcakh8ccnmfcvlxbb8gh6aj2nck2lpiv54xs"; - }; - }; "https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-all/1.3/hamcrest-all-1.3" = { host = repositories.apache; @@ -23011,6 +23527,21 @@ in { sha256 = "16qjwhdvq13mcylsfav41606i52k6d87mwn9havbsqxnxya5ylvd"; }; }; + "https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1" = + { + host = repositories.apache; + path = + "org/hamcrest/hamcrest/2.1/hamcrest-2.1"; + type = "jar"; + pom = { + sha1 = "5ec7fedbeb4dddbfdcaf696ae286e1b6c1e1df4b"; + sha256 = "09y9yrnckv8riqigzv5vi6hg0s87aq6y503380i5ljq6mk3xszvq"; + }; + jar = { + sha1 = "9420ba32c29217b54eebd26ff7f9234d31c3fbb2"; + sha256 = "0l10d5784zyp1q19lcakh8ccnmfcvlxbb8gh6aj2nck2lpiv54xs"; + }; + }; "https://repo.maven.apache.org/maven2/org/immutables/tools/maven-shade-plugin/4/maven-shade-plugin-4" = { host = repositories.apache; @@ -23141,6 +23672,21 @@ in { sha256 = "15s8sdmb345zl6nsqvrzaf2l0dp70jfm2jv736ffwdll95a7c5iw"; }; }; + "https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.0/kotlin-stdlib-common-1.3.0" = + { + host = repositories.apache; + path = + "org/jetbrains/kotlin/kotlin-stdlib-common/1.3.0/kotlin-stdlib-common-1.3.0"; + type = "jar"; + pom = { + sha1 = "8aa25749d6a085239627a0a18f0502c19a5560d0"; + sha256 = "16xf747dcx5bqsmqkahkm6ywsfg79bzabq8zjwf012pck058fvkw"; + }; + jar = { + sha1 = "84a2e0288dc17cd64d692eb1e5e0de8cd5ff0846"; + sha256 = "0fgyfmsg8rd70q0qxz9yax1f7x26ir50qkqwkfjd3q7f37v1w5jb"; + }; + }; "https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.2.0/kotlin-stdlib-1.2.0" = { host = repositories.apache; @@ -23186,81 +23732,6 @@ in { sha256 = "077jhzkbxn7iv0hv1caxj5h89c11mlj8qrhjpamb90s9gywzrw2g"; }; }; - "https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.0/kotlin-stdlib-common-1.3.0" = - { - host = repositories.apache; - path = - "org/jetbrains/kotlin/kotlin-stdlib-common/1.3.0/kotlin-stdlib-common-1.3.0"; - type = "jar"; - pom = { - sha1 = "8aa25749d6a085239627a0a18f0502c19a5560d0"; - sha256 = "16xf747dcx5bqsmqkahkm6ywsfg79bzabq8zjwf012pck058fvkw"; - }; - jar = { - sha1 = "84a2e0288dc17cd64d692eb1e5e0de8cd5ff0846"; - sha256 = "0fgyfmsg8rd70q0qxz9yax1f7x26ir50qkqwkfjd3q7f37v1w5jb"; - }; - }; - "https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.1.3-2/kotlin-test-1.1.3-2" = - { - host = repositories.apache; - path = - "org/jetbrains/kotlin/kotlin-test/1.1.3-2/kotlin-test-1.1.3-2"; - type = "jar"; - pom = { - sha1 = "96225213ea90542b378c04ee34f586f87f702f8d"; - sha256 = "04mpysmgnmmnslp3d0fzpla27s15xa4arpzwx6gdrplq78pxgd34"; - }; - jar = { - sha1 = "bfde381a4485e78d3542ec46f231c5e0e22aea28"; - sha256 = "06gnp62a9fg5xfvrczx2vzqmp3k84jh2z5j9nzsl6nhs1aw7dg86"; - }; - }; - "https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.2.71/kotlin-test-1.2.71" = - { - host = repositories.apache; - path = - "org/jetbrains/kotlin/kotlin-test/1.2.71/kotlin-test-1.2.71"; - type = "jar"; - pom = { - sha1 = "cbae5fabd2a7cb73594f12c2b9207f5a40364639"; - sha256 = "13ccxq0mj4z4hd365vyxijxpl5agrh6rincvqccsfslkpgfrf6gl"; - }; - jar = { - sha1 = "71f526c39299e20d2d225898d3a843da1dcfb4dc"; - sha256 = "1znggjivd0yj9sgky9zdhn3hcxmlvfcgmgw2a5rxnmqs6v3vcv0j"; - }; - }; - "https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.20/kotlin-test-1.3.20" = - { - host = repositories.apache; - path = - "org/jetbrains/kotlin/kotlin-test/1.3.20/kotlin-test-1.3.20"; - type = "jar"; - pom = { - sha1 = "458eca280acbc16bcd4230f5e3448fff41dad94e"; - sha256 = "1gv8lf53ni3f5gkwyk4jz4rlchv60vwwrgkncvd29irf00r20y6k"; - }; - jar = { - sha1 = "2c2cfc5de4d1311634e49f92f1c913565f3ccb06"; - sha256 = "1hbnri15j8n7z4rmiswk7y3b4i8pmhzv2m5wy3dqylgz6ai01fc2"; - }; - }; - "https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.50/kotlin-test-1.3.50" = - { - host = repositories.apache; - path = - "org/jetbrains/kotlin/kotlin-test/1.3.50/kotlin-test-1.3.50"; - type = "jar"; - pom = { - sha1 = "66733c42e2946f56c72b656395ba418a69f8a26a"; - sha256 = "19p2ckskwmqlwlw19pn92yll9w1x3h04crmy10644dqqz013gv1m"; - }; - jar = { - sha1 = "92a66b17cc20735cfb1438512210b643813f7516"; - sha256 = "059h0wcangm02h94fwzr8r4lggfggnhaah6ms5w6b9jndwica769"; - }; - }; "https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-annotations-common/1.2.71/kotlin-test-annotations-common-1.2.71" = { host = repositories.apache; @@ -23411,6 +23882,66 @@ in { sha256 = "0amvcsayqbs43fxdvjx54zzbcaqv839xn7q9gl7nmvphjg7wjamw"; }; }; + "https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.1.3-2/kotlin-test-1.1.3-2" = + { + host = repositories.apache; + path = + "org/jetbrains/kotlin/kotlin-test/1.1.3-2/kotlin-test-1.1.3-2"; + type = "jar"; + pom = { + sha1 = "96225213ea90542b378c04ee34f586f87f702f8d"; + sha256 = "04mpysmgnmmnslp3d0fzpla27s15xa4arpzwx6gdrplq78pxgd34"; + }; + jar = { + sha1 = "bfde381a4485e78d3542ec46f231c5e0e22aea28"; + sha256 = "06gnp62a9fg5xfvrczx2vzqmp3k84jh2z5j9nzsl6nhs1aw7dg86"; + }; + }; + "https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.2.71/kotlin-test-1.2.71" = + { + host = repositories.apache; + path = + "org/jetbrains/kotlin/kotlin-test/1.2.71/kotlin-test-1.2.71"; + type = "jar"; + pom = { + sha1 = "cbae5fabd2a7cb73594f12c2b9207f5a40364639"; + sha256 = "13ccxq0mj4z4hd365vyxijxpl5agrh6rincvqccsfslkpgfrf6gl"; + }; + jar = { + sha1 = "71f526c39299e20d2d225898d3a843da1dcfb4dc"; + sha256 = "1znggjivd0yj9sgky9zdhn3hcxmlvfcgmgw2a5rxnmqs6v3vcv0j"; + }; + }; + "https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.20/kotlin-test-1.3.20" = + { + host = repositories.apache; + path = + "org/jetbrains/kotlin/kotlin-test/1.3.20/kotlin-test-1.3.20"; + type = "jar"; + pom = { + sha1 = "458eca280acbc16bcd4230f5e3448fff41dad94e"; + sha256 = "1gv8lf53ni3f5gkwyk4jz4rlchv60vwwrgkncvd29irf00r20y6k"; + }; + jar = { + sha1 = "2c2cfc5de4d1311634e49f92f1c913565f3ccb06"; + sha256 = "1hbnri15j8n7z4rmiswk7y3b4i8pmhzv2m5wy3dqylgz6ai01fc2"; + }; + }; + "https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.50/kotlin-test-1.3.50" = + { + host = repositories.apache; + path = + "org/jetbrains/kotlin/kotlin-test/1.3.50/kotlin-test-1.3.50"; + type = "jar"; + pom = { + sha1 = "66733c42e2946f56c72b656395ba418a69f8a26a"; + sha256 = "19p2ckskwmqlwlw19pn92yll9w1x3h04crmy10644dqqz013gv1m"; + }; + jar = { + sha1 = "92a66b17cc20735cfb1438512210b643813f7516"; + sha256 = "059h0wcangm02h94fwzr8r4lggfggnhaah6ms5w6b9jndwica769"; + }; + }; "https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core-common/1.1.1/kotlinx-coroutines-core-common-1.1.1" = { host = repositories.apache; @@ -23426,6 +23957,21 @@ in { sha256 = "1rvjhpw1f7ychlm3hnc4mrp564xf0q8k5542g1yqm9nkiwb34dq3"; }; }; + "https://repo.maven.apache.org/maven2/org/json/json/20080701/json-20080701" = + { + host = repositories.apache; + path = + "org/json/json/20080701/json-20080701"; + type = "jar"; + pom = { + sha1 = "4bf5daa95eb5c12d753a359a3e00621fdc73d187 /home/maven/repository-staging/to-ibiblio/maven2/org/json/json/20080701/json-20080701.pom"; + sha256 = "17qrwbvlhx7szrv49a3m4y0ycxbx88hr29lwf58bkxckhnfi0xxj"; + }; + jar = { + sha1 = "d652f102185530c93b66158b1859f35d45687258 /home/maven/repository-staging/to-ibiblio/maven2/org/json/json/20080701/json-20080701.jar"; + sha256 = "1srq8qz6w2n30nkx5y9321m2mdizjl71nx8lk3s4g91dmfnxdb03"; + }; + }; "https://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.6.3/jsoup-1.6.3" = { host = repositories.apache; @@ -23456,19 +24002,19 @@ in { sha256 = "1k19sdif66hdm8p291m8snnzbxv9jb00465xby8jks6sh6rg5lmx"; }; }; - "https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.4.0/junit-jupiter-5.4.0" = + "https://repo.maven.apache.org/maven2/org/junit-pioneer/junit-pioneer/0.3.0/junit-pioneer-0.3.0" = { host = repositories.apache; path = - "org/junit/jupiter/junit-jupiter/5.4.0/junit-jupiter-5.4.0"; + "org/junit-pioneer/junit-pioneer/0.3.0/junit-pioneer-0.3.0"; type = "jar"; pom = { - sha1 = "4c382b3b0d340b378a77ebfaf2834d05a479a29e"; - sha256 = "0887yqrdc6rrm0p0l5pnsfpysyrfql719cclgfvq884d07cyp0gc"; + sha1 = "1a78768fd936327edda824c94c07b8bcd80fa72c"; + sha256 = "1kpvjn10wczpa2qfj69qk4g3a9xymclhw6jg72fyrr0sdk8jycid"; }; jar = { - sha1 = "86152263dcb465a6d25db68aaab15ebbab88c691"; - sha256 = "0pqgyrm371wskgkvmqy22ac12pljvs9hxy9a7xxrdnfs36w2d2lw"; + sha1 = "315b4682c87819eeff4d1062be27727d928b6c1e"; + sha256 = "0ckx6m397y3wnjh9nnvw3y607yfs3irzlc2k7ld1yfl4jv6rqmp8"; }; }; "https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.1.1/junit-jupiter-api-5.1.1" = @@ -23561,19 +24107,19 @@ in { sha256 = "0ni4gj9wwh34rjv2l4szf3bz5sgqb4hxvkf5hzbml3nwnhvddy86"; }; }; - "https://repo.maven.apache.org/maven2/org/junit-pioneer/junit-pioneer/0.3.0/junit-pioneer-0.3.0" = + "https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.4.0/junit-jupiter-5.4.0" = { host = repositories.apache; path = - "org/junit-pioneer/junit-pioneer/0.3.0/junit-pioneer-0.3.0"; + "org/junit/jupiter/junit-jupiter/5.4.0/junit-jupiter-5.4.0"; type = "jar"; pom = { - sha1 = "1a78768fd936327edda824c94c07b8bcd80fa72c"; - sha256 = "1kpvjn10wczpa2qfj69qk4g3a9xymclhw6jg72fyrr0sdk8jycid"; + sha1 = "4c382b3b0d340b378a77ebfaf2834d05a479a29e"; + sha256 = "0887yqrdc6rrm0p0l5pnsfpysyrfql719cclgfvq884d07cyp0gc"; }; jar = { - sha1 = "315b4682c87819eeff4d1062be27727d928b6c1e"; - sha256 = "0ckx6m397y3wnjh9nnvw3y607yfs3irzlc2k7ld1yfl4jv6rqmp8"; + sha1 = "86152263dcb465a6d25db68aaab15ebbab88c691"; + sha256 = "0pqgyrm371wskgkvmqy22ac12pljvs9hxy9a7xxrdnfs36w2d2lw"; }; }; "https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.1.1/junit-platform-commons-1.1.1" = @@ -23726,6 +24272,21 @@ in { sha256 = "0gl4axhzr3bfb8blyq31b5wja3hksxn897z8zf90qrr49calfq33"; }; }; + "https://repo.maven.apache.org/maven2/org/khronos/opengl-api/gl1.1-android-2.1_r1/opengl-api-gl1.1-android-2.1_r1" = + { + host = repositories.apache; + path = + "org/khronos/opengl-api/gl1.1-android-2.1_r1/opengl-api-gl1.1-android-2.1_r1"; + type = "jar"; + pom = { + sha1 = "a59312565e85b5ab9ed116bb0270a177d2c05b78"; + sha256 = "16jmg68v81a2m0dcm9xhk39dswjzzr2nbalmfirjv56pnfxi3amc"; + }; + jar = { + sha1 = "8827d279add29cf9115820671e7879de7bf80390"; + sha256 = "0ic1fqsi9gmlcz3a5vnv97p2qf21yy4cslxlk69fy1pp40r3j26c"; + }; + }; "https://repo.maven.apache.org/maven2/org/littleshoot/littleproxy/1.1.0-beta2/littleproxy-1.1.0-beta2" = { host = repositories.apache; @@ -23816,6 +24377,21 @@ in { sha256 = "1af9ldxrvz8n33wxmwnkh9jwlmiqicfdqf1qwy4mqpac2q22xb6n"; }; }; + "https://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.28.2/mockito-core-2.28.2" = + { + host = repositories.apache; + path = + "org/mockito/mockito-core/2.28.2/mockito-core-2.28.2"; + type = "jar"; + pom = { + sha1 = "1faf95a65310f3b1cdd239ba19c6bf67b2f5a308"; + sha256 = "0lwxwmcavrm4838zq5vsm4s7j3x9hnvxp3fn6m4hav7fpwm35gxk"; + }; + jar = { + sha1 = "91110215a8cb9b77a46e045ee758f77d79167cc0"; + sha256 = "09wyxjk1rdnxxwmrylvc37lg9m2gh4fql0nr1iy19hm6sgz3dbxh"; + }; + }; "https://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.7.1/mockito-core-2.7.1" = { host = repositories.apache; @@ -23831,21 +24407,6 @@ in { sha256 = "0dxvbm935dhsy43kj3xnwsmz3jqhq179zf6knx6ijf8in02cb016"; }; }; - "https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty/6.1.26/jetty-6.1.26" = - { - host = repositories.apache; - path = - "org/mortbay/jetty/jetty/6.1.26/jetty-6.1.26"; - type = "jar"; - pom = { - sha1 = "402cdb578cdfc753f22252f8e27602f2f95e8823"; - sha256 = "1ii64wxz5r2i5b0xy21dw218afjmlh9qp08bp2g1z4y4mhhw8sc1"; - }; - jar = { - sha1 = "2f546e289fddd5b1fab1d4199fbb6e9ef43ee4b0"; - sha256 = "1rfldqr568z3zcmc3v47j3c0w12cc15508f4zm0gcj8kkhx1s291"; - }; - }; "https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-parent/10/jetty-parent-10" = { host = repositories.apache; @@ -23883,6 +24444,21 @@ in { sha256 = "0iy0czqxl2kqb5pn3vdahgrjc4mj8pf3fqqjfr5jaj4zp7i4r5wv"; }; }; + "https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty/6.1.26/jetty-6.1.26" = + { + host = repositories.apache; + path = + "org/mortbay/jetty/jetty/6.1.26/jetty-6.1.26"; + type = "jar"; + pom = { + sha1 = "402cdb578cdfc753f22252f8e27602f2f95e8823"; + sha256 = "1ii64wxz5r2i5b0xy21dw218afjmlh9qp08bp2g1z4y4mhhw8sc1"; + }; + jar = { + sha1 = "2f546e289fddd5b1fab1d4199fbb6e9ef43ee4b0"; + sha256 = "1rfldqr568z3zcmc3v47j3c0w12cc15508f4zm0gcj8kkhx1s291"; + }; + }; "https://repo.maven.apache.org/maven2/org/mortbay/jetty/project/6.1.26/project-6.1.26" = { host = repositories.apache; @@ -23909,17 +24485,6 @@ in { sha256 = "0wp4fxp4bl20w9b31a54grvxqqznsrr6cfxc0kv01zlnd44md1q6"; }; }; - "https://repo.maven.apache.org/maven2/org/multiverse/multiverse/0.7.0/multiverse-0.7.0" = - { - host = repositories.apache; - path = - "org/multiverse/multiverse/0.7.0/multiverse-0.7.0"; - type = "jar"; - pom = { - sha1 = "c066b3a9288b9dde4151dde703c5a0a6fd8ca003"; - sha256 = "06520i1ygx33iv11haz7l61m1xgzzhn4c72zjjyqdxirqkqprs7d"; - }; - }; "https://repo.maven.apache.org/maven2/org/multiverse/multiverse-core/0.7.0/multiverse-core-0.7.0" = { host = repositories.apache; @@ -23935,6 +24500,72 @@ in { sha256 = "0l7w20nr2959cr785fkfm6rfb1ysx4x469sjwvxbfm404bq9hhy5"; }; }; + "https://repo.maven.apache.org/maven2/org/multiverse/multiverse/0.7.0/multiverse-0.7.0" = + { + host = repositories.apache; + path = + "org/multiverse/multiverse/0.7.0/multiverse-0.7.0"; + type = "jar"; + pom = { + sha1 = "c066b3a9288b9dde4151dde703c5a0a6fd8ca003"; + sha256 = "06520i1ygx33iv11haz7l61m1xgzzhn4c72zjjyqdxirqkqprs7d"; + }; + }; + "https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/1.3/objenesis-parent-1.3" = + { + host = repositories.apache; + path = + "org/objenesis/objenesis-parent/1.3/objenesis-parent-1.3"; + type = "jar"; + pom = { + sha1 = "5bc56b00482bab5c0ca7b8901b2a7ca954b46010"; + sha256 = "1va9mvmv4wzacz3b1p56ijcdrdqizf32ic81p0sh754jf9jlq47r"; + }; + }; + "https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1" = + { + host = repositories.apache; + path = + "org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1"; + type = "jar"; + pom = { + sha1 = "156a12a0fcf8ed856bdc60ce10550ea46fba8eaa"; + sha256 = "194s8xdx2z9jpmcqh6nd85s3m71qmciq96b6djr3y3j1jcq1lfrl"; + }; + }; + "https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.5/objenesis-parent-2.5" = + { + host = repositories.apache; + path = + "org/objenesis/objenesis-parent/2.5/objenesis-parent-2.5"; + type = "jar"; + pom = { + sha1 = "89ecfab00021515ac5a33c2bcd24b50a8ac1def6"; + sha256 = "0a01zici8pfzlww441d7ihq05p4b4i4vylzzlzfp0qbfzwvlh7wg"; + }; + }; + "https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6" = + { + host = repositories.apache; + path = + "org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6"; + type = "jar"; + pom = { + sha1 = "cfc0966402e8174fbacd5c5dd355b5815364a4fe"; + sha256 = "1aivk380s7n1lzhd9gxvar92ngk4n33cgpk3n00685rw5b5gw99q"; + }; + }; + "https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/3.0.1/objenesis-parent-3.0.1" = + { + host = repositories.apache; + path = + "org/objenesis/objenesis-parent/3.0.1/objenesis-parent-3.0.1"; + type = "jar"; + pom = { + sha1 = "af52f05c2778a0dd939240f421102f37934d00de"; + sha256 = "1kxvv38kfs8jkkw9j3sppassq3xp88xw11vsjdq470f3isz2sdsk"; + }; + }; "https://repo.maven.apache.org/maven2/org/objenesis/objenesis/1.0/objenesis-1.0" = { host = repositories.apache; @@ -24025,61 +24656,6 @@ in { sha256 = "1179sh43bdp3xn7cj8zqwwbadjha1c1n0pvhgifl2j7zp60gg3vs"; }; }; - "https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/1.3/objenesis-parent-1.3" = - { - host = repositories.apache; - path = - "org/objenesis/objenesis-parent/1.3/objenesis-parent-1.3"; - type = "jar"; - pom = { - sha1 = "5bc56b00482bab5c0ca7b8901b2a7ca954b46010"; - sha256 = "1va9mvmv4wzacz3b1p56ijcdrdqizf32ic81p0sh754jf9jlq47r"; - }; - }; - "https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1" = - { - host = repositories.apache; - path = - "org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1"; - type = "jar"; - pom = { - sha1 = "156a12a0fcf8ed856bdc60ce10550ea46fba8eaa"; - sha256 = "194s8xdx2z9jpmcqh6nd85s3m71qmciq96b6djr3y3j1jcq1lfrl"; - }; - }; - "https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.5/objenesis-parent-2.5" = - { - host = repositories.apache; - path = - "org/objenesis/objenesis-parent/2.5/objenesis-parent-2.5"; - type = "jar"; - pom = { - sha1 = "89ecfab00021515ac5a33c2bcd24b50a8ac1def6"; - sha256 = "0a01zici8pfzlww441d7ihq05p4b4i4vylzzlzfp0qbfzwvlh7wg"; - }; - }; - "https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6" = - { - host = repositories.apache; - path = - "org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6"; - type = "jar"; - pom = { - sha1 = "cfc0966402e8174fbacd5c5dd355b5815364a4fe"; - sha256 = "1aivk380s7n1lzhd9gxvar92ngk4n33cgpk3n00685rw5b5gw99q"; - }; - }; - "https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/3.0.1/objenesis-parent-3.0.1" = - { - host = repositories.apache; - path = - "org/objenesis/objenesis-parent/3.0.1/objenesis-parent-3.0.1"; - type = "jar"; - pom = { - sha1 = "af52f05c2778a0dd939240f421102f37934d00de"; - sha256 = "1kxvv38kfs8jkkw9j3sppassq3xp88xw11vsjdq470f3isz2sdsk"; - }; - }; "https://repo.maven.apache.org/maven2/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21" = { host = repositories.apache; @@ -24241,36 +24817,6 @@ in { sha256 = "0cdr7hlzrlwcfr9r15wmphzxaiadc27s6gb58gvz3jrlxcsv86qw"; }; }; - "https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.2/asm-5.0.2" = - { - host = repositories.apache; - path = - "org/ow2/asm/asm/5.0.2/asm-5.0.2"; - type = "jar"; - pom = { - sha1 = "8431de614ac151b4dd5077db8a7f1a3a401add80"; - sha256 = "0nsdsfg8y9x7kmnn3gvsvhsby4zp4y3ql4jhb8da0hjvmhf2dr14"; - }; - jar = { - sha1 = "baa28ca0269720d94c9f0cafef35a9ac63991de7"; - sha256 = "0vvmqjfcvpdfi17qrrqhb6rpk7lybh2ql32ljrr8lq1canpxq2bz"; - }; - }; - "https://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.1.1/asm-6.1.1" = - { - host = repositories.apache; - path = - "org/ow2/asm/asm/6.1.1/asm-6.1.1"; - type = "jar"; - pom = { - sha1 = "a17fe0ad27c271c744e47b42e1c1a68b8c133a01"; - sha256 = "03bp6rxzm4dmllj1h620smwj3kqz400qxc7afzijwl949p3vf01n"; - }; - jar = { - sha1 = "264754515362d92acd39e8d40395f6b8dee7bc08"; - sha256 = "0cyqz3wj646qw9l40q1n4gp261mb51w7rd73xgiasjyx2mj58fyx"; - }; - }; "https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.1/asm-parent-5.0.1" = { host = repositories.apache; @@ -24337,6 +24883,36 @@ in { sha256 = "053xrln1w9nj0aw23wsiqkgn8569fk6zx7mw8dns9jgcp55hc7br"; }; }; + "https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.2/asm-5.0.2" = + { + host = repositories.apache; + path = + "org/ow2/asm/asm/5.0.2/asm-5.0.2"; + type = "jar"; + pom = { + sha1 = "8431de614ac151b4dd5077db8a7f1a3a401add80"; + sha256 = "0nsdsfg8y9x7kmnn3gvsvhsby4zp4y3ql4jhb8da0hjvmhf2dr14"; + }; + jar = { + sha1 = "baa28ca0269720d94c9f0cafef35a9ac63991de7"; + sha256 = "0vvmqjfcvpdfi17qrrqhb6rpk7lybh2ql32ljrr8lq1canpxq2bz"; + }; + }; + "https://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.1.1/asm-6.1.1" = + { + host = repositories.apache; + path = + "org/ow2/asm/asm/6.1.1/asm-6.1.1"; + type = "jar"; + pom = { + sha1 = "a17fe0ad27c271c744e47b42e1c1a68b8c133a01"; + sha256 = "03bp6rxzm4dmllj1h620smwj3kqz400qxc7afzijwl949p3vf01n"; + }; + jar = { + sha1 = "264754515362d92acd39e8d40395f6b8dee7bc08"; + sha256 = "0cyqz3wj646qw9l40q1n4gp261mb51w7rd73xgiasjyx2mj58fyx"; + }; + }; "https://repo.maven.apache.org/maven2/org/ow2/ow2/1.3/ow2-1.3" = { host = repositories.apache; @@ -24385,28 +24961,6 @@ in { sha256 = "0q2m80fnl655mqs7smhfjnfva36ilpch7lnknrl6vs1rwydyvz38"; }; }; - "https://repo.maven.apache.org/maven2/org/powermock/powermock/1.6.4/powermock-1.6.4" = - { - host = repositories.apache; - path = - "org/powermock/powermock/1.6.4/powermock-1.6.4"; - type = "jar"; - pom = { - sha1 = "9e908bbcf3d2c7affc4f982e4676ddd135ab2d0b"; - sha256 = "1xsal3pw1kw8818926c9mdpn040zdyrjqw7wxjfyylg300zfh16q"; - }; - }; - "https://repo.maven.apache.org/maven2/org/powermock/powermock-api/1.6.4/powermock-api-1.6.4" = - { - host = repositories.apache; - path = - "org/powermock/powermock-api/1.6.4/powermock-api-1.6.4"; - type = "jar"; - pom = { - sha1 = "c22a4bb1c50315ec47253bbec649da11fec744b3"; - sha256 = "0z3nxjz8nrzn24fxmzbirsq061z9xn4s8rm30byc8d2daxizyfjy"; - }; - }; "https://repo.maven.apache.org/maven2/org/powermock/powermock-api-mockito/1.6.4/powermock-api-mockito-1.6.4" = { host = repositories.apache; @@ -24437,6 +24991,17 @@ in { sha256 = "16y0k8qcf6l70c3xrayqpdbkwi00win17hlijn2vv3lhvx1lgrxd"; }; }; + "https://repo.maven.apache.org/maven2/org/powermock/powermock-api/1.6.4/powermock-api-1.6.4" = + { + host = repositories.apache; + path = + "org/powermock/powermock-api/1.6.4/powermock-api-1.6.4"; + type = "jar"; + pom = { + sha1 = "c22a4bb1c50315ec47253bbec649da11fec744b3"; + sha256 = "0z3nxjz8nrzn24fxmzbirsq061z9xn4s8rm30byc8d2daxizyfjy"; + }; + }; "https://repo.maven.apache.org/maven2/org/powermock/powermock-core/1.6.4/powermock-core-1.6.4" = { host = repositories.apache; @@ -24452,21 +25017,6 @@ in { sha256 = "17rjdc7nh64isf6dhpmwqr87nskzch1y742d7yhds01ma4ns8kcv"; }; }; - "https://repo.maven.apache.org/maven2/org/powermock/powermock-module-junit4/1.6.4/powermock-module-junit4-1.6.4" = - { - host = repositories.apache; - path = - "org/powermock/powermock-module-junit4/1.6.4/powermock-module-junit4-1.6.4"; - type = "jar"; - pom = { - sha1 = "dfe50e025eae21dd53236c0a51017e953aecf294"; - sha256 = "1ignfqc1p0n3xrwrmmpsnnla95swn238y68jyrimljlla9y8nd5h"; - }; - jar = { - sha1 = "8692eb1d9bb8eb1310ffe8a20c2da7ee6d1b5994"; - sha256 = "0gz6jyd8fqp04178n957m32i8kj09nhz3ndymqp8ajg36p0ln3m9"; - }; - }; "https://repo.maven.apache.org/maven2/org/powermock/powermock-module-junit4-common/1.6.4/powermock-module-junit4-common-1.6.4" = { host = repositories.apache; @@ -24482,6 +25032,21 @@ in { sha256 = "1fs36sdx4jwv8xayfp4jiadw42qyhgvzrxnhjshhlvwf5ba2hj8v"; }; }; + "https://repo.maven.apache.org/maven2/org/powermock/powermock-module-junit4/1.6.4/powermock-module-junit4-1.6.4" = + { + host = repositories.apache; + path = + "org/powermock/powermock-module-junit4/1.6.4/powermock-module-junit4-1.6.4"; + type = "jar"; + pom = { + sha1 = "dfe50e025eae21dd53236c0a51017e953aecf294"; + sha256 = "1ignfqc1p0n3xrwrmmpsnnla95swn238y68jyrimljlla9y8nd5h"; + }; + jar = { + sha1 = "8692eb1d9bb8eb1310ffe8a20c2da7ee6d1b5994"; + sha256 = "0gz6jyd8fqp04178n957m32i8kj09nhz3ndymqp8ajg36p0ln3m9"; + }; + }; "https://repo.maven.apache.org/maven2/org/powermock/powermock-modules/1.6.4/powermock-modules-1.6.4" = { host = repositories.apache; @@ -24508,6 +25073,17 @@ in { sha256 = "0ghw4y6pfiymywnsvjin7npx62cp29f5q51z24wnmnqxc93b1qql"; }; }; + "https://repo.maven.apache.org/maven2/org/powermock/powermock/1.6.4/powermock-1.6.4" = + { + host = repositories.apache; + path = + "org/powermock/powermock/1.6.4/powermock-1.6.4"; + type = "jar"; + pom = { + sha1 = "9e908bbcf3d2c7affc4f982e4676ddd135ab2d0b"; + sha256 = "1xsal3pw1kw8818926c9mdpn040zdyrjqw7wxjfyylg300zfh16q"; + }; + }; "https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-java/2.44.0/selenium-java-2.44.0" = { host = repositories.apache; @@ -24780,17 +25356,6 @@ in { sha256 = "01nwaz4q782gffgdcy357nh5gbdmwybxynmcqsr1k0bnlkffw1kd"; }; }; - "https://repo.maven.apache.org/maven2/org/sonatype/aether/aether/1.13.1/aether-1.13.1" = - { - host = repositories.apache; - path = - "org/sonatype/aether/aether/1.13.1/aether-1.13.1"; - type = "jar"; - pom = { - sha1 = "ca523c26f05bbbf3875acf44ff4df6866eb2e86a"; - sha256 = "1l80wp95gnyg3j50cib15ddbhf2ijca8g77np2kwdr1zzn8y17vi"; - }; - }; "https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.13.1/aether-api-1.13.1" = { host = repositories.apache; @@ -24892,6 +25457,17 @@ in { sha256 = "0m3n7nkbphwm078kafm18d7v40phkfl4rvvr9cxdlyhbapy0ysgz"; }; }; + "https://repo.maven.apache.org/maven2/org/sonatype/aether/aether/1.13.1/aether-1.13.1" = + { + host = repositories.apache; + path = + "org/sonatype/aether/aether/1.13.1/aether-1.13.1"; + type = "jar"; + pom = { + sha1 = "ca523c26f05bbbf3875acf44ff4df6866eb2e86a"; + sha256 = "1l80wp95gnyg3j50cib15ddbhf2ijca8g77np2kwdr1zzn8y17vi"; + }; + }; "https://repo.maven.apache.org/maven2/org/sonatype/buildsupport/buildsupport/3/buildsupport-3" = { host = repositories.apache; @@ -25039,28 +25615,6 @@ in { sha256 = "1n1kx81d2vg43hh1y7m8a0w64n2vrvbbpqsaclh0yk4a1hdv602l"; }; }; - "https://repo.maven.apache.org/maven2/org/sonatype/nexus/buildsupport/nexus-buildsupport/2.7.2-01/nexus-buildsupport-2.7.2-01" = - { - host = repositories.apache; - path = - "org/sonatype/nexus/buildsupport/nexus-buildsupport/2.7.2-01/nexus-buildsupport-2.7.2-01"; - type = "jar"; - pom = { - sha1 = "65220e6bf3b08c20605c475aec3d317e179d884d"; - sha256 = "1qwc2lgwx1b1vb7f6kp0jrwfxzr73sacz2bxa9hin513xvqc136d"; - }; - }; - "https://repo.maven.apache.org/maven2/org/sonatype/nexus/buildsupport/nexus-buildsupport/2.9.1-02/nexus-buildsupport-2.9.1-02" = - { - host = repositories.apache; - path = - "org/sonatype/nexus/buildsupport/nexus-buildsupport/2.9.1-02/nexus-buildsupport-2.9.1-02"; - type = "jar"; - pom = { - sha1 = "7d5d19f88938fe4ca4a984a43fde420bf32ab791"; - sha256 = "0mf7vq013348ilgwf6zbp5ddrdhj9yvzqqzsnd08shv8h0lr3wnf"; - }; - }; "https://repo.maven.apache.org/maven2/org/sonatype/nexus/buildsupport/nexus-buildsupport-all/2.7.2-01/nexus-buildsupport-all-2.7.2-01" = { host = repositories.apache; @@ -25083,6 +25637,28 @@ in { sha256 = "1amaxkqwqgc9yyia24ph9w4lh7pca28yqcnv6zy09lcv3zwdcc8m"; }; }; + "https://repo.maven.apache.org/maven2/org/sonatype/nexus/buildsupport/nexus-buildsupport/2.7.2-01/nexus-buildsupport-2.7.2-01" = + { + host = repositories.apache; + path = + "org/sonatype/nexus/buildsupport/nexus-buildsupport/2.7.2-01/nexus-buildsupport-2.7.2-01"; + type = "jar"; + pom = { + sha1 = "65220e6bf3b08c20605c475aec3d317e179d884d"; + sha256 = "1qwc2lgwx1b1vb7f6kp0jrwfxzr73sacz2bxa9hin513xvqc136d"; + }; + }; + "https://repo.maven.apache.org/maven2/org/sonatype/nexus/buildsupport/nexus-buildsupport/2.9.1-02/nexus-buildsupport-2.9.1-02" = + { + host = repositories.apache; + path = + "org/sonatype/nexus/buildsupport/nexus-buildsupport/2.9.1-02/nexus-buildsupport-2.9.1-02"; + type = "jar"; + pom = { + sha1 = "7d5d19f88938fe4ca4a984a43fde420bf32ab791"; + sha256 = "0mf7vq013348ilgwf6zbp5ddrdhj9yvzqqzsnd08shv8h0lr3wnf"; + }; + }; "https://repo.maven.apache.org/maven2/org/sonatype/nexus/client/nexus-client-core/2.2/nexus-client-core-2.2" = { host = repositories.apache; @@ -25172,17 +25748,6 @@ in { sha256 = "0ydpmgsd2cbxwig7wrs9mp2c62dpmfm5cb1xhxkij07g6kk59b06"; }; }; - "https://repo.maven.apache.org/maven2/org/sonatype/nexus/nexus/2.2/nexus-2.2" = - { - host = repositories.apache; - path = - "org/sonatype/nexus/nexus/2.2/nexus-2.2"; - type = "jar"; - pom = { - sha1 = "557207bcb4e5676a23046b56129e6bb2be980aee"; - sha256 = "1z6wz66ipqhn2vadzbqy21755hj74nnyhw2wkrfjjmlvj25ab8j0"; - }; - }; "https://repo.maven.apache.org/maven2/org/sonatype/nexus/nexus-client-core/2.7.2-01/nexus-client-core-2.7.2-01" = { host = repositories.apache; @@ -25294,26 +25859,15 @@ in { sha256 = "01c8b4707kg3j9rxzhk26514b8vvhdzflwjlvqrf4y9spnq80bjv"; }; }; - "https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-plugins/2.7.2-01/nexus-plugins-2.7.2-01" = + "https://repo.maven.apache.org/maven2/org/sonatype/nexus/nexus/2.2/nexus-2.2" = { host = repositories.apache; path = - "org/sonatype/nexus/plugins/nexus-plugins/2.7.2-01/nexus-plugins-2.7.2-01"; + "org/sonatype/nexus/nexus/2.2/nexus-2.2"; type = "jar"; pom = { - sha1 = "2c677a47a226ac5595bc654bbafbbfabf717a0e0"; - sha256 = "1m9j7055byaa8jblgi58mvizlqai4blkhp3hmcx2fwrhd0bj0ppy"; - }; - }; - "https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-plugins/2.9.1-02/nexus-plugins-2.9.1-02" = - { - host = repositories.apache; - path = - "org/sonatype/nexus/plugins/nexus-plugins/2.9.1-02/nexus-plugins-2.9.1-02"; - type = "jar"; - pom = { - sha1 = "777d08892877660bb402e93758847b814f508dbd"; - sha256 = "04bs98brv649wx06xzgras625ya86ws72343jf534qhvl186jz4h"; + sha1 = "557207bcb4e5676a23046b56129e6bb2be980aee"; + sha256 = "1z6wz66ipqhn2vadzbqy21755hj74nnyhw2wkrfjjmlvj25ab8j0"; }; }; "https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-plugins-restlet1x/2.7.2-01/nexus-plugins-restlet1x-2.7.2-01" = @@ -25338,6 +25892,28 @@ in { sha256 = "1p1d95ks1m06xsy936vakscw0ksj2lwi2qa92waqa2il9jbqh0wg"; }; }; + "https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-plugins/2.7.2-01/nexus-plugins-2.7.2-01" = + { + host = repositories.apache; + path = + "org/sonatype/nexus/plugins/nexus-plugins/2.7.2-01/nexus-plugins-2.7.2-01"; + type = "jar"; + pom = { + sha1 = "2c677a47a226ac5595bc654bbafbbfabf717a0e0"; + sha256 = "1m9j7055byaa8jblgi58mvizlqai4blkhp3hmcx2fwrhd0bj0ppy"; + }; + }; + "https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-plugins/2.9.1-02/nexus-plugins-2.9.1-02" = + { + host = repositories.apache; + path = + "org/sonatype/nexus/plugins/nexus-plugins/2.9.1-02/nexus-plugins-2.9.1-02"; + type = "jar"; + pom = { + sha1 = "777d08892877660bb402e93758847b814f508dbd"; + sha256 = "04bs98brv649wx06xzgras625ya86ws72343jf534qhvl186jz4h"; + }; + }; "https://repo.maven.apache.org/maven2/org/sonatype/nexus/plugins/nexus-restlet1x-model/2.7.2-01/nexus-restlet1x-model-2.7.2-01" = { host = repositories.apache; @@ -25532,17 +26108,6 @@ in { sha256 = "1kb18bh7vn1mbpzqvr876sayy81sifkwvg73myczd8l65i0d2fgh"; }; }; - "https://repo.maven.apache.org/maven2/org/sonatype/security/security-rest/2.8.2/security-rest-2.8.2" = - { - host = repositories.apache; - path = - "org/sonatype/security/security-rest/2.8.2/security-rest-2.8.2"; - type = "jar"; - pom = { - sha1 = "2ba2b8ada705b5a5c754351d623c18d55c5ddc6b"; - sha256 = "0i1gncncl8rw6r0znaw16hngqz5ypxnw6clnqi8jd6b5vdrzjami"; - }; - }; "https://repo.maven.apache.org/maven2/org/sonatype/security/security-rest-model/2.8.2/security-rest-model-2.8.2" = { host = repositories.apache; @@ -25558,6 +26123,17 @@ in { sha256 = "0qh51i06krw5l62x7x19l130y37c2d9s5zzybjj02a0gbphqabrl"; }; }; + "https://repo.maven.apache.org/maven2/org/sonatype/security/security-rest/2.8.2/security-rest-2.8.2" = + { + host = repositories.apache; + path = + "org/sonatype/security/security-rest/2.8.2/security-rest-2.8.2"; + type = "jar"; + pom = { + sha1 = "2ba2b8ada705b5a5c754351d623c18d55c5ddc6b"; + sha256 = "0i1gncncl8rw6r0znaw16hngqz5ypxnw6clnqi8jd6b5vdrzjami"; + }; + }; "https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2" = { host = repositories.apache; @@ -25580,28 +26156,6 @@ in { sha256 = "165d6vipv4sd3yis10x9c3jc1hxj5n1flgjifrh1h6mdwsk6r9hk"; }; }; - "https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta/1.5.2/siesta-1.5.2" = - { - host = repositories.apache; - path = - "org/sonatype/sisu/siesta/siesta/1.5.2/siesta-1.5.2"; - type = "jar"; - pom = { - sha1 = "a958a0fcd748fbc085cbcd0507ac4cd2dbc13b4c"; - sha256 = "18jm7d1955p2j007v0mzjjz8a23q2pnmz2qp110gxxwqci1r0fg0"; - }; - }; - "https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta/1.7/siesta-1.7" = - { - host = repositories.apache; - path = - "org/sonatype/sisu/siesta/siesta/1.7/siesta-1.7"; - type = "jar"; - pom = { - sha1 = "e4aceb45cfd85253598ba06540c0e8de84f43c7b"; - sha256 = "1gwddk042g9lfs1vyklmw6zi2xrnviz7x36w0w5f4pg4ars2242i"; - }; - }; "https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta-client/1.5.2/siesta-client-1.5.2" = { host = repositories.apache; @@ -25677,6 +26231,28 @@ in { sha256 = "0as42s3digiy1kk3afnwasaij70r9cg7rnnbppd9dfd64l6zbxd7"; }; }; + "https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta/1.5.2/siesta-1.5.2" = + { + host = repositories.apache; + path = + "org/sonatype/sisu/siesta/siesta/1.5.2/siesta-1.5.2"; + type = "jar"; + pom = { + sha1 = "a958a0fcd748fbc085cbcd0507ac4cd2dbc13b4c"; + sha256 = "18jm7d1955p2j007v0mzjjz8a23q2pnmz2qp110gxxwqci1r0fg0"; + }; + }; + "https://repo.maven.apache.org/maven2/org/sonatype/sisu/siesta/siesta/1.7/siesta-1.7" = + { + host = repositories.apache; + path = + "org/sonatype/sisu/siesta/siesta/1.7/siesta-1.7"; + type = "jar"; + pom = { + sha1 = "e4aceb45cfd85253598ba06540c0e8de84f43c7b"; + sha256 = "1gwddk042g9lfs1vyklmw6zi2xrnviz7x36w0w5f4pg4ars2242i"; + }; + }; "https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-charger/1.1/sisu-charger-1.1" = { host = repositories.apache; @@ -25718,17 +26294,6 @@ in { sha256 = "1x5r4kxrzssy6filsg0zwjlb6xkq1v7swaxkhaqz1l9gyai16094"; }; }; - "https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2" = - { - host = repositories.apache; - path = - "org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2"; - type = "jar"; - pom = { - sha1 = "780340415a1dc940f10ae38a7b32e84db28c95dd"; - sha256 = "0s1r9mqj70ljrs7ydkfqpha9w1ivrsm99lc5r7wak6r5hnnix6d5"; - }; - }; "https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2" = { host = repositories.apache; @@ -25759,6 +26324,17 @@ in { sha256 = "18yh2iksg0n7ycr33wz7m6ad48bhcg3wbqyp7kbh4hg7zfp2fpm6"; }; }; + "https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2" = + { + host = repositories.apache; + path = + "org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2"; + type = "jar"; + pom = { + sha1 = "780340415a1dc940f10ae38a7b32e84db28c95dd"; + sha256 = "0s1r9mqj70ljrs7ydkfqpha9w1ivrsm99lc5r7wak6r5hnnix6d5"; + }; + }; "https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2" = { host = repositories.apache; @@ -26072,6 +26648,21 @@ in { sha256 = "0p7djinc6g85q3y4gxb58xfwjibg79mh2j7a9g34m0awr2kl1rba"; }; }; + "https://repo.maven.apache.org/maven2/xerces/xmlParserAPIs/2.6.2/xmlParserAPIs-2.6.2" = + { + host = repositories.apache; + path = + "xerces/xmlParserAPIs/2.6.2/xmlParserAPIs-2.6.2"; + type = "jar"; + pom = { + sha1 = "063f9f93725652dd11394c90dc746fb95b982a0d"; + sha256 = "1h92md3jsjyryn9yk1cfh00mk7gh4wzvxd5czrw9zkrw3wfr3xdp"; + }; + jar = { + sha1 = "065acede1e5305bd2b92213d7b5761328c6f4fd9"; + sha256 = "1rfpx609jnjppgkld1h4cc3wvx0xxd0i4qrjj9zccwxa3yz6fa0w"; + }; + }; "https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2" = { host = repositories.apache; @@ -26147,6 +26738,21 @@ in { sha256 = "0qyb4j9r5f0b2br5k33rca6j0nvsbb8p1vf0d6xiq1qn47k8xq1l"; }; }; + "https://repo.maven.apache.org/maven2/xpp3/xpp3/1.1.4c/xpp3-1.1.4c" = + { + host = repositories.apache; + path = + "xpp3/xpp3/1.1.4c/xpp3-1.1.4c"; + type = "jar"; + pom = { + sha1 = "ab2e7aa30b06dc1a01218d17650e9966f65557da xpp3-1.1.4c.pom"; + sha256 = "0g8a1j151h1ijyfkm3kc0xfvbqq1y1l04r983v2vdy60blpn4m2f"; + }; + jar = { + sha1 = "9b988ea84b9e4e9f1874e390ce099b8ac12cfff5 /home/maven/repository-staging/to-ibiblio/maven2/xpp3/xpp3/1.1.4c/xpp3-1.1.4c.jar"; + sha256 = "1f9ifnxxj295xb1494jycbfm76476xm5l52p7608gf0v91d3jh83"; + }; + }; "https://repo.maven.apache.org/maven2/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c" = { host = repositories.apache; diff --git a/src/status_im/core.cljs b/src/status_im/core.cljs index eba9bb5eb3..2c021dfb96 100644 --- a/src/status_im/core.cljs +++ b/src/status_im/core.cljs @@ -24,11 +24,14 @@ (aset js/console "disableYellowBox" true) ;; TODO we must fix all warnings, currently it's just a noise + #_(if js/goog.DEBUG - (.ignoreWarnings (.-YellowBox ^js rn) - #js ["re-frame: overwriting" - "Warning: componentWillMount has been renamed, and is not recommended for use. See https://fb.me/react-async-component-lifecycle-hooks for details." - "Warning: componentWillUpdate has been renamed, and is not recommended for use. See https://fb.me/react-async-component-lifecycle-hooks for details."]) + (do + (.unstable_enableLogBox ^js rn) + (.ignoreWarnings (.-YellowBox ^js rn) + #js ["re-frame: overwriting" + "Warning: componentWillMount has been renamed, and is not recommended for use. See https://fb.me/react-async-component-lifecycle-hooks for details." + "Warning: componentWillUpdate has been renamed, and is not recommended for use. See https://fb.me/react-async-component-lifecycle-hooks for details."])) (aset js/console "disableYellowBox" true)) (def app-registry (.-AppRegistry rn)) diff --git a/src/status_im/ui/components/copyable_text.cljs b/src/status_im/ui/components/copyable_text.cljs index 88277f92f2..66c0a4c2ef 100644 --- a/src/status_im/ui/components/copyable_text.cljs +++ b/src/status_im/ui/components/copyable_text.cljs @@ -79,7 +79,7 @@ :font-size 14}} (i18n/label :sharing-copied-to-clipboard)]]]) -(defn copyable-text-view [{:keys [label copied-text container-style]} +(defn copyable-text-view [{:keys [label container-style]} content] (let [cue-atom (reagent/atom false) width (reagent/atom 0) @@ -89,36 +89,37 @@ (reagent/create-class {:reagent-render (fn [{:keys [copied-text]} _] - [react/view - {:style (if container-style container-style {}) - :on-layout - #(do - (reset! width (-> ^js % .-nativeEvent .-layout .-width)) - (reset! height (-> ^js % .-nativeEvent .-layout .-height)))} - (when label - [react/text - {:style - {:font-size 13 - ;; line height specified here because of figma spec - :line-height 18 - :font-weight "500" - :color colors/gray - :margin-bottom 4}} - (i18n/label label)]) - [copy-action-visual-cue anim-opacity anim-y width cue-atom] - [react/touchable-highlight - {:active-opacity (if @cue-atom 1 0.85) - :underlay-color colors/black - :on-press - #(when (not @cue-atom) - (reset! cue-atom true) - (show-cue-atom - anim-opacity - anim-y - cue-atom - (if (> @height 34) - (- (/ @height 2)) - (- (+ 17 @height)))) - (react/copy-to-clipboard copied-text))} - [react/view {:background-color colors/white} - content]]])}))) + (let [copy-fn #(when (not @cue-atom) + (reset! cue-atom true) + (show-cue-atom + anim-opacity + anim-y + cue-atom + (if (> @height 34) + (- (/ @height 2)) + (- (+ 17 @height)))) + (react/copy-to-clipboard copied-text))] + [react/view + {:style (if container-style container-style {}) + :on-layout + #(do + (reset! width (-> ^js % .-nativeEvent .-layout .-width)) + (reset! height (-> ^js % .-nativeEvent .-layout .-height)))} + (when label + [react/text + {:style + {:font-size 13 + ;; line height specified here because of figma spec + :line-height 18 + :font-weight "500" + :color colors/gray + :margin-bottom 4}} + (i18n/label label)]) + [copy-action-visual-cue anim-opacity anim-y width cue-atom] + [react/touchable-highlight + {:active-opacity (if @cue-atom 1 0.85) + :underlay-color colors/black + :on-press copy-fn + :on-long-press copy-fn} + [react/view {:background-color colors/white} + content]]]))}))) diff --git a/src/status_im/ui/components/react.cljs b/src/status_im/ui/components/react.cljs index 8c4f607da1..480b80c45b 100644 --- a/src/status_im/ui/components/react.cljs +++ b/src/status_im/ui/components/react.cljs @@ -11,6 +11,7 @@ ["react-native-gesture-handler" :refer (TouchableWithoutFeedback)] ["react-native-safe-area-context" :as safe-area-context :refer (SafeAreaView SafeAreaProvider SafeAreaConsumer)] + ["@react-native-community/clipboard" :default Clipboard] [status-im.ui.components.colors :as colors] [status-im.ui.components.typography :as typography])) @@ -200,10 +201,10 @@ (.-Share react-native)) (defn copy-to-clipboard [text] - (.setString ^js (.-Clipboard react-native) text)) + (.setString ^js Clipboard text)) (defn get-from-clipboard [clbk] - (let [clipboard-contents (.getString ^js (.-Clipboard react-native))] + (let [clipboard-contents (.getString ^js Clipboard)] (.then clipboard-contents #(clbk %)))) ;; KeyboardAvoidingView diff --git a/test/appium/tests/atomic/chats/test_chats_management.py b/test/appium/tests/atomic/chats/test_chats_management.py index 3e4e6561f4..8315e9ae96 100644 --- a/test/appium/tests/atomic/chats/test_chats_management.py +++ b/test/appium/tests/atomic/chats/test_chats_management.py @@ -135,7 +135,8 @@ class TestChatManagement(SingleDeviceTestCase): contacts_view.public_key_edit_box.paste_text_from_clipboard() if contacts_view.public_key_edit_box.text != public_key: self.driver.fail('Public key is not pasted from clipboard') - contacts_view.confirm() + contacts_view.public_key_edit_box.click() + contacts_view.confirm_until_presence_of_element(chat.chat_message_input) contacts_view.get_back_to_home_view() if not home.get_chat(basic_user['username']).is_element_present(): self.driver.fail("No chat open in home view") diff --git a/test/appium/tests/atomic/chats/test_public.py b/test/appium/tests/atomic/chats/test_public.py index 834e956064..6cdcbe085d 100644 --- a/test/appium/tests/atomic/chats/test_public.py +++ b/test/appium/tests/atomic/chats/test_public.py @@ -1,4 +1,3 @@ -import time import emoji import random @@ -216,11 +215,11 @@ class TestPublicChatSingleDevice(SingleDeviceTestCase): tag_message = '#spectentur' chat.send_message(tag_message) chat.element_starts_with_text(tag_message).click() - time.sleep(4) + chat.element_by_text_part('montagne-angerufen').wait_for_invisibility_of_element() if not chat.user_name_text.text == tag_message: self.driver.fail('Could not redirect a user to a public chat tapping the tag message.') - home = chat.get_back_to_home_view() - if not home.chat_name_text.text == tag_message: + home_view = chat.get_back_to_home_view() + if not home_view.chat_name_text.text == tag_message: self.driver.fail('Could not find the public chat in user chat list.') @marks.testrail_id(6205)