Skip to content

Commit 26dd4e1

Browse files
committed
up
1 parent 2a56e73 commit 26dd4e1

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.idea/modules/kotlin-unsigned.iml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
// maven { url = "https://dl.bintray.com/kotlin/kotlin-eap" }
99
}
1010
dependencies {
11-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version".toString()
1212
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
1313
classpath "org.junit.platform:junit-platform-gradle-plugin:1.2.0"
1414
}
@@ -24,15 +24,16 @@ ext.moduleName = 'com.github.kotlin_graphics.kotlin_unsigned'
2424

2525
dependencies {
2626

27-
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
27+
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version".toString()
28+
implementation "org.jetbrains.kotlin:kotlin-reflect" // fix kotlintest classpath warnings
2829

2930
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.1.10'
3031
}
3132

3233
repositories {
3334
mavenCentral()
34-
maven { url = "https://dl.bintray.com/kotlin/kotlin-eap" }
35-
maven { url = "https://jitpack.io" }
35+
// maven { url = "https://dl.bintray.com/kotlin/kotlin-eap" }
36+
// maven { url = "https://jitpack.io" }
3637
}
3738

3839
task sourcesJar(type: Jar, dependsOn: classes) {

0 commit comments

Comments
 (0)