Skip to content

Commit

Permalink
second commit
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelhoffmann committed Aug 19, 2014
1 parent c5ef093 commit cc28fe2
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.cache
target
project/target
22 changes: 22 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
organization := "com.readr"

name := "connect"

version := "1.0-SNAPSHOT"

resourceDirectory in Compile <<= baseDirectory { _ / "conf" }

libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.2.1",
"com.readr" %% "model" % "1.1-SNAPSHOT",
"com.readr" %% "client" % "1.1-SNAPSHOT",
"org.json4s" %% "json4s-jackson" % "3.2.9"
)

resolvers ++= Seq(
"Readr snapshots" at "http://snapshots.mvn-repo.readr.com",
"Readr releases" at "http://releases.mvn-repo.readr.com"
)

resolvers += "Typesafe Maven Repository" at "http://repo.typesafe.com/typesafe/maven-releases/"

6 changes: 6 additions & 0 deletions conf/application.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
HOST="http://preview.readr.com"
NS="allenai"
EXAMPLE_PROJ="barrons_4th_grade"
USER="a"
PASSWORD="a"

10 changes: 10 additions & 0 deletions shippable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: scala
scala:
- 2.10.4
jdk:
- openjdk7
cache:
directories:
- $HOME/.ivy2/cache
script:
- sbt compile test

0 comments on commit cc28fe2

Please sign in to comment.