From 5404743f178bbd6525cd2999c041409733f88f28 Mon Sep 17 00:00:00 2001 From: Koitharu Date: Sat, 20 Jul 2024 11:44:27 +0300 Subject: [PATCH] Update dependencies --- build.gradle | 10 +++++----- buildSrc/build.gradle | 4 ++-- kotatsu-parsers-ksp/build.gradle | 2 +- .../en/{MangaGalaxy.kt => MangaGalaxyParser.kt} | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) rename src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/en/{MangaGalaxy.kt => MangaGalaxyParser.kt} (96%) diff --git a/build.gradle b/build.gradle index b51f4bb0d..f5883e5f4 100644 --- a/build.gradle +++ b/build.gradle @@ -2,8 +2,8 @@ import tasks.ReportGenerateTask plugins { id 'java-library' - id 'org.jetbrains.kotlin.jvm' version '1.9.23' - id 'com.google.devtools.ksp' version '1.9.23-1.0.20' + id 'org.jetbrains.kotlin.jvm' version '2.0.10-RC' + id 'com.google.devtools.ksp' version '2.0.10-RC-1.0.23' id 'maven-publish' } @@ -53,12 +53,12 @@ afterEvaluate { } dependencies { - implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3' + implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC' implementation 'com.squareup.okhttp3:okhttp:4.12.0' implementation 'com.squareup.okio:okio:3.9.0' - api 'org.jsoup:jsoup:1.17.2' + api 'org.jsoup:jsoup:1.18.1' implementation 'org.json:json:20240303' - implementation 'androidx.collection:collection:1.4.0' + implementation 'androidx.collection:collection:1.4.1' ksp project(':kotatsu-parsers-ksp') diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index b4d834344..e83d9827b 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'org.jetbrains.kotlin.jvm' version '1.9.23' + id 'org.jetbrains.kotlin.jvm' version '2.0.10-RC' } repositories { @@ -14,5 +14,5 @@ dependencies { implementation gradleApi() implementation 'org.simpleframework:simple-xml:2.7.1' implementation 'com.soywiz.korlibs.korte:korte-jvm:4.0.10' - implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3' + implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC' } diff --git a/kotatsu-parsers-ksp/build.gradle b/kotatsu-parsers-ksp/build.gradle index ec303d600..4ec426dce 100644 --- a/kotatsu-parsers-ksp/build.gradle +++ b/kotatsu-parsers-ksp/build.gradle @@ -7,5 +7,5 @@ kotlin { } dependencies { - implementation 'com.google.devtools.ksp:symbol-processing-api:1.9.23-1.0.20' + implementation 'com.google.devtools.ksp:symbol-processing-api:2.0.10-RC-1.0.23' } diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/en/MangaGalaxy.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/en/MangaGalaxyParser.kt similarity index 96% rename from src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/en/MangaGalaxy.kt rename to src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/en/MangaGalaxyParser.kt index c0136f655..48cd54d16 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/en/MangaGalaxy.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/en/MangaGalaxyParser.kt @@ -12,7 +12,7 @@ import java.text.SimpleDateFormat import java.util.Collections.emptyMap @MangaSourceParser("MANGAGALAXY", "MangaGalaxy", "en") -internal class ResetScans(context: MangaLoaderContext) : +internal class MangaGalaxyParser(context: MangaLoaderContext) : MadaraParser(context, MangaParserSource.RESETSCANS, "mangagalaxy.org", 18) { override val datePattern = "MM dd"