Skip to content

Commit 0bb7e6e

Browse files
committed
fixed dirty testCompileClasspath
1 parent 191d8ae commit 0bb7e6e

File tree

3 files changed

+12
-32
lines changed

3 files changed

+12
-32
lines changed

.idea/modules.xml

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

.idea/modules/kotlin-unsigned.iml

Lines changed: 1 addition & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,26 @@
11
plugins {
22
id 'maven'
3-
id "org.jetbrains.kotlin.jvm" version "1.3.10"
3+
id "org.jetbrains.kotlin.jvm" version "1.3.11"
44
id "com.github.johnrengelman.shadow" version '2.0.4'
55
}
66

77
ext{
88
moduleName = 'com.github.kotlin_graphics.kotlin_unsigned'
9-
kotlintest_version = '3.1.10'
9+
kotlin_version = '1.3.11'
10+
kotlintest_version = '3.1.11'
1011
}
1112

1213
dependencies {
1314

1415
implementation "org.jetbrains.kotlin:kotlin-stdlib"
1516

1617
testImplementation "io.kotlintest:kotlintest-runner-junit5:$kotlintest_version".toString()
18+
19+
constraints {
20+
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version")
21+
testImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version")
22+
testImplementation("org.jetbrains.kotlin:kotlin-reflect:$kotlin_version")
23+
}
1724
}
1825

1926
repositories {

0 commit comments

Comments
 (0)