blob: 2590fbb94d91bb87ce12a5d26fca7392238f74cf [file] [log] [blame]
Alex Klyubin381b7e62016-09-01 19:04:38 -07001// Generic Gradle project
2
Alex Klyubinc2f7b712016-08-29 14:49:40 -07003apply plugin: 'java'
Alex Klyubin44132f62016-11-28 10:55:19 -08004
5sourceCompatibility = '1.8'
6
7repositories {
8 jcenter()
9}
10
11dependencies {
12 testCompile 'junit:junit:4.12'
13}