Skip to content

Commit 7394e25

Browse files
author
Aleksey Nikiforov
committed
Initial project setup.
1 parent 1f2ec36 commit 7394e25

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
/target
2+
project/target/
3+
.idea
14
*.class
25
*.log

build.sbt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
organization in ThisBuild := "com.contxt"
2+
scalaVersion in ThisBuild := "2.11.8"
3+
4+
val slf4j = "org.slf4j" % "slf4j-api" % "1.7.21"
5+
val amazonKinesisProducer = "com.amazonaws" % "amazon-kinesis-producer" % "0.12.8"
6+
7+
libraryDependencies ++= Seq(
8+
slf4j,
9+
amazonKinesisProducer
10+
)

project/build.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version=1.0.3

0 commit comments

Comments
 (0)