blob: 4ee246fdc70b562106366bb5061fca10fb14aeaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
plugins {
id 'java'
id 'java-library'
id 'idea'
id 'application'
}
def versions = [
ScalaBinary: "2.13"
]
version 'unspecified'
repositories {
jcenter()
mavenCentral()
}
dependencies {
implementation platform("com.typesafe.akka:akka-bom_${versions.ScalaBinary}:2.6.15")
implementation "com.typesafe.akka:akka-actor-typed_${versions.ScalaBinary}"
implementation "com.typesafe.akka:akka-stream_${versions.ScalaBinary}"
implementation 'ch.qos.logback:logback-classic:1.2.3'
implementation 'junit:junit:4.12'
implementation 'org.junit.jupiter:junit-jupiter:5.7.0'
implementation 'org.junit.jupiter:junit-jupiter:5.7.0'
implementation 'org.junit.jupiter:junit-jupiter:5.7.0'
implementation 'org.junit.jupiter:junit-jupiter:5.7.0'
implementation 'org.junit.jupiter:junit-jupiter:5.7.0'
testImplementation "com.typesafe.akka:akka-actor-testkit-typed_${versions.ScalaBinary}"
testImplementation "com.typesafe.akka:akka-stream-testkit_${versions.ScalaBinary}"
implementation 'com.google.code.gson:gson:2.8.7'
testImplementation 'junit:junit:4.12'
testRuntimeOnly 'junit:junit:4.12'
}
test {
useJUnitPlatform()
}
application {
// Define the main class for the application.
mainClassName = 'akkamon.domain.iot.IotEntryPoint'
}
ext {
BartMarco = "presentatie.Marco"
}
task BartMarco(type: JavaExec) {
group = "Execution"
description = "Run BartMarco Example"
classpath = sourceSets.main.runtimeClasspath
main = BartMarco
}
run {
standardInput = System.in
}
|