summaryrefslogtreecommitdiff
path: root/build.gradle.kts
blob: 40a21de24a3f129464c1c1cc6df4078a23927e48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * This file was generated by the Gradle 'init' task.
 *
 * This is a general purpose Gradle build.
 * Learn how to create Gradle builds at https://guides.gradle.org/creating-new-gradle-builds/
 */

repositories {
       jcenter() 
}

plugins {
    id("com.gradle.build-scan") version "1.15.1" 
    kotlin("jvm") version "1.2.51"
    application
}

dependencies {
    compile(kotlin("stdlib"))
} 

application {
    mainClassName = "HelloKt"
}

buildScan { 
    setTermsOfServiceUrl("https://gradle.com/terms-of-service")
    setTermsOfServiceAgree("yes")
}