Skip to content

Commit 66841c1

Browse files
committed
kotlin gradle script
1 parent 4d8a585 commit 66841c1

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

build.gradle.kts

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
group = "groupId"
2+
version = "1.0-SNAPSHOT"
3+
14
buildscript {
25

36
repositories {
7+
maven { setUrl("http://dl.bintray.com/kotlin/kotlin-eap-1.1") }
8+
mavenCentral()
49
gradleScriptKotlin()
510
}
611

@@ -17,14 +22,16 @@ apply {
1722
plugin("kotlin")
1823
}
1924

20-
configure<ApplicationPluginConvention> {
21-
// mainClassName = "samples.HelloWorldKt"
22-
}
25+
//configure<ApplicationPluginConvention> {
26+
// mainClassName = "samples.HelloWorldKt"
27+
//}
2328

2429
repositories {
30+
maven { setUrl("http://dl.bintray.com/kotlin/kotlin-eap-1.1") }
2531
gradleScriptKotlin()
2632
}
2733

2834
dependencies {
2935
compile(kotlinModule("stdlib"))
36+
testCompile("io.kotlintest:kotlintest:1.3.5")
3037
}

0 commit comments

Comments
 (0)