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.
2 parents 7cafd23 + 40bf7c6 commit 624b7c4Copy full SHA for 624b7c4
mockito-kotlin/build.gradle
@@ -1,12 +1,14 @@
1
apply plugin: 'kotlin'
2
3
buildscript {
4
+ ext.kotlin_version = '1.0.0'
5
+
6
repositories {
7
mavenCentral()
8
}
9
10
dependencies {
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.0-rc-1036"
11
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
12
13
14
@@ -16,8 +18,8 @@ repositories {
16
18
17
19
20
- compile "org.jetbrains.kotlin:kotlin-stdlib:1.0.0-rc-1036"
- compile "org.jetbrains.kotlin:kotlin-reflect:1.0.0-rc-1036"
21
+ compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
22
+ compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
23
compile "org.mockito:mockito-core:2.0.39-beta"
24
25
/* Tests */
0 commit comments