-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
83 lines (64 loc) · 2.44 KB
/
build.gradle
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
plugins {
id 'scala'
id "com.github.maiflai.scalatest" version "0.25"
id "com.github.johnrengelman.shadow" version "5.0.0"
id "net.linguica.maven-settings" version "0.5"
id "application"
id 'com.bmuschko.docker-java-application' version '4.10.0'
}
group 'org.example'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
targetCompatibility = 11
mainClassName = "org.example.teams.WebApp"
shadowJar {
archiveFileName = "teams.jar"
manifest {
attributes "Main-Class": application.mainClassName
}
}
repositories {
mavenCentral()
mavenLocal()
}
ext {
scalaVersion = "2.13.1"
akkaVersion = "2.6.5"
akkaHttpVersion = "10.1.11"
logbackVersion = "1.2.3"
catsVersion = "2.1.0"
circeVersion = "0.12.3"
circeExtrasVersion = "0.12.2"
akkaHttpCirceVersion = "1.30.0"
cassandraDriverVersion = "4.6.0"
}
dependencies {
implementation("org.scala-lang:scala-library:$scalaVersion")
implementation("org.scala-lang:scala-reflect:$scalaVersion")
implementation("com.typesafe.akka:akka-actor-typed_2.13:$akkaVersion")
implementation("com.typesafe.akka:akka-stream-typed_2.13:$akkaVersion")
implementation("com.typesafe.akka:akka-http_2.13:$akkaHttpVersion")
implementation("de.heikoseeberger:akka-http-circe_2.13:$akkaHttpCirceVersion")
implementation("com.typesafe.akka:akka-cluster-typed_2.13:$akkaVersion")
implementation("com.typesafe.akka:akka-cluster-sharding-typed_2.13:$akkaVersion")
implementation("org.typelevel:cats-core_2.13:$catsVersion")
implementation("com.github.cb372:cats-retry-core_2.13:0.3.2")
implementation("com.github.cb372:cats-retry-cats-effect_2.13:0.3.2")
implementation("io.circe:circe-core_2.13:$circeVersion")
implementation("io.circe:circe-generic_2.13:$circeVersion")
implementation("io.circe:circe-parser_2.13:$circeVersion")
implementation("io.circe:circe-generic-extras_2.13:$circeExtrasVersion")
implementation("com.datastax.oss:java-driver-core:$cassandraDriverVersion")
implementation("com.datastax.oss:java-driver-query-builder:$cassandraDriverVersion")
implementation("ch.qos.logback:logback-classic:$logbackVersion")
// test
testImplementation("com.typesafe.akka:akka-actor-testkit-typed_2.13:$akkaVersion")
}
docker {
javaApplication {
maintainer = "pakhomovd"
baseImage = "openjdk:11-jre"
ports = [25521, 7575]
tag = "example/teams-cluster:latest"
}
}