We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b97ded4 commit cf0df09Copy full SHA for cf0df09
build.gradle.kts
@@ -1,15 +1,28 @@
1
+
2
plugins {
3
kotlin("jvm") version "1.8.21"
4
application
5
}
6
7
+// atomicfu
8
+buildscript {
9
+ dependencies {
10
+ classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.21.0")
11
+ }
12
+}
13
+apply(plugin = "kotlinx-atomicfu")
14
15
group = "org.example"
16
version = "1.0-SNAPSHOT"
17
18
repositories {
19
mavenCentral()
20
+ maven {
21
+ url = uri("https://plugins.gradle.org/m2/")
22
23
24
25
26
dependencies {
27
testImplementation(kotlin("test"))
28
settings.gradle.kts
@@ -1,3 +1,9 @@
rootProject.name = "csc-kotlin-course-code-practice"
+pluginManagement {
+ repositories {
+ mavenCentral()
+ gradlePluginPortal()
0 commit comments