We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f2ec36 commit 7394e25Copy full SHA for 7394e25
.gitignore
@@ -1,2 +1,5 @@
1
+/target
2
+project/target/
3
+.idea
4
*.class
5
*.log
build.sbt
@@ -0,0 +1,10 @@
+organization in ThisBuild := "com.contxt"
+scalaVersion in ThisBuild := "2.11.8"
+
+val slf4j = "org.slf4j" % "slf4j-api" % "1.7.21"
+val amazonKinesisProducer = "com.amazonaws" % "amazon-kinesis-producer" % "0.12.8"
6
7
+libraryDependencies ++= Seq(
8
+ slf4j,
9
+ amazonKinesisProducer
10
+)
project/build.properties
@@ -0,0 +1 @@
+sbt.version=1.0.3
0 commit comments