Skip to content

Commit

Permalink
- added gradle build
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Tsypuk committed Dec 15, 2017
1 parent 910587b commit 181527f
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
40 changes: 40 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
// classpath 'me.champeau.gradle:antlr4-gradle-plugin:0.1'
}
}

apply plugin: 'java'
apply plugin: 'idea'

repositories {
jcenter()
mavenCentral()
}

sourceCompatibility = 1.8

sourceSets {
main.java.srcDirs 'src/main'
test.java.srcDirs 'src/test'
}

idea {
module {
downloadJavadoc = true
downloadSources = true
}
}

dependencies {
testCompile 'junit:junit:4.12'
testCompile 'org.assertj:assertj-core:3.8.0'
}

task wrapper(type: Wrapper) {
gradleVersion = '4.3.1'
}
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rootProject.name = 'sdr-trunk'

0 comments on commit 181527f

Please sign in to comment.