Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasLongo committed Jan 2, 2015
0 parents commit df79452
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.iml
.idea/
23 changes: 23 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
apply plugin: 'java'

sourceCompatibility = 1.8
version = '0.1-DEV'

repositories {
mavenLocal()
mavenCentral()
}

dependencies {
compile 'com.sparkjava:spark-core:2.0.0'
compile 'org.apache.commons:commons-io:1.3.2'
compile 'org.mongodb:mongo-java-driver:2.12.4'
compile 'ch.qos.logback:logback-classic:1.1.2'
compile 'com.google.code.gson:gson:2.2.4'
compile 'com.github.spullara.mustache.java:compiler:0.8.17'
compile 'org.apache.commons:commons-math3:3.2'


testCompile 'org.assertj:assertj-core:1.7.0'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
2 changes: 2 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
rootProject.name = 'roscoe'

0 comments on commit df79452

Please sign in to comment.