-
Notifications
You must be signed in to change notification settings - Fork 432
Remove default version from kotlin plugin dependency spec
#521
Conversation
| @@ -1,5 +1,5 @@ | |||
| plugins { | |||
| kotlin("jvm") | |||
| kotlin("jvm") version "1.1.51" | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❌ This introduces the version string twice in this sole sample, better request without applying in the root project and request with no versions in sub-projects
| } | ||
| dependencies { | ||
| compile(gradleKotlinDsl()) | ||
| `kotlin-dsl` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
|
|
||
| dependencies { | ||
| "compile"(kotlin("stdlib")) | ||
| compile(kotlin("stdlib")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
\o/
|
|
||
| apply { | ||
| plugin("kotlin") | ||
| kotlin("jvm") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
\o/
| @@ -1,8 +1,8 @@ | |||
| import org.jetbrains.kotlin.gradle.tasks.KotlinCompile | |||
|
|
|||
| buildscript { | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
\o/
See #520