summaryrefslogtreecommitdiff
path: root/build.gradle
blob: 0f8d3400d3349687c8ab3042d08aa622e1a25c68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
plugins {
    id 'java'
}

group 'com.redstoner'
version '1.0-SNAPSHOT'

sourceCompatibility = 1.8

repositories {
    mavenCentral()
}

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