mirror of
https://github.com/ethauvin/kobalt-line-count.git
synced 2025-04-24 10:47:11 -07:00
Update to 0.329.
This commit is contained in:
parent
d51ee7ca6b
commit
75bf30a16c
2 changed files with 9 additions and 7 deletions
11
Build.kt
11
Build.kt
|
@ -4,10 +4,10 @@ import com.beust.kobalt.plugin.kotlin.*
|
|||
import com.beust.kobalt.plugin.publish.*
|
||||
//import com.beust.kobalt.plugin.linecount.lineCount
|
||||
|
||||
val plugins = plugins(
|
||||
"com.beust.kobalt:kobalt-line-count:0.14"
|
||||
//val plugins = plugins(
|
||||
// "com.beust.kobalt:kobalt-line-count:0.14"
|
||||
// file(homeDir("kotlin/kobalt-line-count/kobaltBuild/libs/kobalt-line-count-0.14.jar"))
|
||||
)
|
||||
//)
|
||||
|
||||
//val lc = lineCount {
|
||||
// suffix = "**Plugin.kt"
|
||||
|
@ -17,11 +17,10 @@ val project = kotlinProject {
|
|||
name = "kobalt-line-count"
|
||||
group = "com.beust.kobalt"
|
||||
artifactId = name
|
||||
version = "0.16"
|
||||
version = "0.17"
|
||||
|
||||
dependencies {
|
||||
// compile("file:" + homeDir("kotlin/kobalt/kobaltBuild/libs/kobalt-0.168.jar"))
|
||||
compile("com.beust:kobalt:0.226")
|
||||
compile("com.beust:kobalt:0.329")
|
||||
}
|
||||
|
||||
assemble {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
buildscript {
|
||||
ext.kotlin_version = '1.0.0-beta-3595'
|
||||
ext.kotlin_version = '0.14.449'
|
||||
repositories {
|
||||
jcenter()
|
||||
|
@ -10,6 +11,7 @@ buildscript {
|
|||
dependencies {
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlin_version}"
|
||||
classpath "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -23,7 +25,8 @@ apply plugin: 'kotlin'
|
|||
|
||||
dependencies {
|
||||
compile "com.google.guava:guava:18.0"
|
||||
compile "com.beust:kobalt:0.174"
|
||||
compile "com.beust:kobalt:0.329"
|
||||
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||||
}
|
||||
sourceSets {
|
||||
main.java.srcDirs += 'src/main/kotlin'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue