-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
24 lines (19 loc) · 695 Bytes
/
build.gradle
File metadata and controls
24 lines (19 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
apply plugin: 'java'
repositories {
mavenCentral()
}
def alpakkaVersion = '1.0-M1'
dependencies {
compile "com.lightbend.akka:akka-stream-alpakka-file_2.12:${alpakkaVersion}"
compile "com.lightbend.akka:akka-stream-alpakka-csv_2.12:${alpakkaVersion}"
compile "com.lightbend.akka:akka-stream-alpakka-cassandra_2.12:${alpakkaVersion}"
compile 'com.typesafe.akka:akka-http_2.12:10.1.5'
}
task httpServer(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = 'org.kunicki.reactive_integration.HttpServer'
}
task csvImporter(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = 'org.kunicki.reactive_integration.CsvImporter'
}