From 65316165db79f6076ddfbfe878bb93a7fe459ae0 Mon Sep 17 00:00:00 2001
From: Janne Mareike Koschinski <janne@kuschku.de>
Date: Sat, 5 Jun 2021 22:19:01 +0200
Subject: [PATCH] Update dependencies, remove jcenter

---
 build.gradle.kts    | 19 ++-----------------
 gradle.properties   |  2 +-
 settings.gradle.kts | 16 +++++++++-------
 3 files changed, 12 insertions(+), 25 deletions(-)

diff --git a/build.gradle.kts b/build.gradle.kts
index 110e0f0..aa36821 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,30 +11,15 @@
 import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
 
 plugins {
-  kotlin("jvm") version "1.4.21"
+  kotlin("jvm") version "1.5.0"
   id("org.jlleitschuh.gradle.ktlint") version "10.0.0"
-  id("org.jetbrains.dokka") version "1.4.20"
+  id("org.jetbrains.dokka") version "1.4.32"
   id("maven-publish")
   id("com.vanniktech.maven.publish") version "0.13.0"
 }
 
 repositories {
   mavenCentral()
-  exclusiveContent {
-    forRepository {
-      maven {
-        name = "JCenter"
-        setUrl("https://jcenter.bintray.com/")
-      }
-    }
-    filter {
-      // Required for Dokka
-      includeModule("com.soywiz.korlibs.korte", "korte-jvm")
-      includeModule("org.jetbrains.kotlinx", "kotlinx-html-jvm")
-      includeGroup("org.jetbrains.dokka")
-      includeModule("org.jetbrains", "markdown")
-    }
-  }
 }
 
 dependencies {
diff --git a/gradle.properties b/gradle.properties
index dced595..20c9dd6 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,5 +1,5 @@
 kotlin.code.style=official
-junit5Version=5.6.0
+junit5Version=5.7.2
 
 GROUP=de.justjanne
 VERSION_NAME=1.1.0
diff --git a/settings.gradle.kts b/settings.gradle.kts
index 449e05e..048d916 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -1,8 +1,10 @@
-rootProject.name = "kotlin-bitflags"
+/*
+ * Kotlin Bitflags
+ * Copyright (c) 2021 Janne Mareike Koschinski
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public License,
+ * v. 2.0. If a copy of the MPL was not distributed with this file, You can
+ * obtain one at https://mozilla.org/MPL/2.0/.
+ */
 
-pluginManagement {
-  repositories {
-    gradlePluginPortal()
-    jcenter()
-  }
-}
+rootProject.name = "kotlin-bitflags"
-- 
GitLab