aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: 20b4f62cd7f30538982c50aa2c2cb29d65c72d95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
plugins {
    id 'java'
    id 'org.jetbrains.intellij' version '0.4.9'
}

group 'me.laria.code'
version '0.7.0'

sourceCompatibility = 1.8

repositories {
    mavenCentral()
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
}

// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
    version '2018.1.1'
    updateSinceUntilBuild false
}