mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-05-17 22:20:22 -04:00
26 lines
398 B
Groovy
26 lines
398 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'application'
|
|
|
|
mainClassName = "com.soundcloud.maze.Main"
|
|
|
|
tasks.withType(JavaCompile) {
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile "junit:junit:4.12"
|
|
testCompile "org.assertj:assertj-core:1.7.1"
|
|
}
|