aboutsummaryrefslogtreecommitdiff
path: root/template/groovy/base-gradle-java.gradle
blob: ce829127fe91060dfdfa394a85a7a4a8b74cea2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
apply {
    plugin 'java'
    plugin 'eclipse'
    plugin 'idea'
}

repositories {
    mavenCentral()
}

dependencies {
    testCompile 'junit:junit:4.+'
    {{_cursor_}}
}