-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (27 loc) · 806 Bytes
/
build.gradle
File metadata and controls
31 lines (27 loc) · 806 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
25
26
27
28
29
30
31
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
apply plugin: 'scala'
repositories {
mavenLocal()
mavenCentral()
maven {
url "https://nexus.intuit.net/nexus/content/groups/public"
}
}
dependencies {
compile 'com.typesafe.akka:akka-actor_2.12:2.5.3'
testCompile 'com.typesafe.akka:akka-testkit_2.12:2.5.3'
testCompile 'junit:junit:4.12'
compile 'org.scala-lang.modules:scala-java8-compat_2.11:0.7.0'
compile 'com.typesafe:config:1.3.1'
compile 'com.microsoft.sqlserver:mssql-jdbc:6.2.1.jre8'
compile 'org.jasypt:jasypt:1.9.0'
compile 'c3p0:c3p0:0.9.1.2'
compile 'org.bouncycastle:bcprov-jdk15on:1.57'
compile fileTree(dir: 'lib', include: '*.jar')
}
mainClassName = "com.lightbend.akka.sample.AkkaQuickstart"
run {
standardInput = System.in
}