From 7775e9dd76c7831ae5f7dcc222793fa756f06e08 Mon Sep 17 00:00:00 2001 From: Niko Strijbol Date: Tue, 12 Dec 2023 16:59:07 +0100 Subject: [PATCH] Use our own fork of Easy Random for now Gradle 8 has issues with the snapshots. --- app/build.gradle | 2 +- build.gradle | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 0d0e83b4e..6bfadb7de 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -233,7 +233,7 @@ dependencies { testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.15.2' testImplementation 'com.shazam:shazamcrest:0.11' testImplementation 'org.skyscreamer:jsonassert:1.5.1' - testImplementation 'org.jeasy:easy-random-core:6.0.0-SNAPSHOT' + testImplementation 'com.github.niknetniko:easy-random:master-SNAPSHOT' testImplementation 'org.apache.commons:commons-lang3:3.13.0' testImplementation 'commons-validator:commons-validator:1.7' testImplementation 'com.google.guava:guava:32.1.3-jre' diff --git a/build.gradle b/build.gradle index 3af6d7260..3af829f90 100644 --- a/build.gradle +++ b/build.gradle @@ -39,10 +39,6 @@ allprojects { google() // Other libraries mavenCentral() - // Snapshots - maven { - url("https://oss.sonatype.org/content/repositories/snapshots") - } // Some custom libraries maven { url 'https://jitpack.io' } }