-
Notifications
You must be signed in to change notification settings - Fork 460
Expand file tree
/
Copy pathbuild.sbt
More file actions
224 lines (184 loc) · 8.34 KB
/
build.sbt
File metadata and controls
224 lines (184 loc) · 8.34 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
ThisBuild / version := "1.10.1"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / organization := "com.tesobe"
// Java version compatibility
ThisBuild / javacOptions ++= Seq("-source", "11", "-target", "11")
ThisBuild / scalacOptions ++= Seq(
"-unchecked",
"-explaintypes",
"-target:jvm-1.8",
"-Yrangepos"
)
// Enable SemanticDB for Metals
ThisBuild / semanticdbEnabled := true
ThisBuild / semanticdbVersion := "4.13.9"
// Fix dependency conflicts
ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always
ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-java8-compat" % VersionScheme.Always
lazy val liftVersion = "3.5.0"
lazy val akkaVersion = "2.5.32"
lazy val jettyVersion = "9.4.50.v20221201"
lazy val avroVersion = "1.8.2"
lazy val pekkoVersion = "1.4.0"
lazy val pekkoHttpVersion = "1.3.0"
lazy val http4sVersion = "0.23.30"
lazy val catsEffectVersion = "3.5.7"
lazy val ip4sVersion = "3.7.0"
lazy val jakartaMailVersion = "2.0.1"
lazy val commonSettings = Seq(
resolvers ++= Seq(
"Sonatype OSS Releases" at "https://oss.sonatype.org/content/repositories/releases",
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
"Artima Maven Repository" at "https://repo.artima.com/releases",
"OpenBankProject M2 Repository" at "https://raw.githubusercontent.com/OpenBankProject/OBP-M2-REPO/master",
"jitpack.io" at "https://jitpack.io"
)
)
lazy val obpCommons = (project in file("obp-commons"))
.settings(
commonSettings,
name := "obp-commons",
libraryDependencies ++= Seq(
"net.liftweb" %% "lift-common" % liftVersion,
"net.liftweb" %% "lift-util" % liftVersion,
"net.liftweb" %% "lift-mapper" % liftVersion,
"org.scala-lang" % "scala-reflect" % "2.12.20",
"org.scalatest" %% "scalatest" % "3.0.9" % Test,
"org.scalactic" %% "scalactic" % "3.0.9",
"net.liftweb" %% "lift-json" % liftVersion,
"com.alibaba" % "transmittable-thread-local" % "2.11.5",
"org.apache.commons" % "commons-lang3" % "3.12.0",
"org.apache.commons" % "commons-text" % "1.10.0",
"com.google.guava" % "guava" % "32.0.0-jre"
)
)
lazy val obpApi = (project in file("obp-api"))
.dependsOn(obpCommons)
.settings(
commonSettings,
name := "obp-api",
libraryDependencies ++= Seq(
// Core dependencies
"net.liftweb" %% "lift-mapper" % liftVersion,
"net.databinder.dispatch" %% "dispatch-lift-json" % "0.13.1",
"ch.qos.logback" % "logback-classic" % "1.2.13",
"org.slf4j" % "log4j-over-slf4j" % "1.7.26",
"org.slf4j" % "slf4j-ext" % "1.7.26",
// Security
"org.bouncycastle" % "bcpg-jdk15on" % "1.70",
"org.bouncycastle" % "bcpkix-jdk15on" % "1.70",
"com.nimbusds" % "nimbus-jose-jwt" % "9.37.2",
"com.nimbusds" % "oauth2-oidc-sdk" % "9.27",
// Commons
"org.apache.commons" % "commons-lang3" % "3.12.0",
"org.apache.commons" % "commons-text" % "1.10.0",
"org.apache.commons" % "commons-email" % "1.5",
"org.apache.commons" % "commons-compress" % "1.26.0",
"org.apache.commons" % "commons-pool2" % "2.11.1",
// Database
"org.postgresql" % "postgresql" % "42.4.4",
"com.h2database" % "h2" % "2.2.220" % Runtime,
"mysql" % "mysql-connector-java" % "8.0.30",
"com.microsoft.sqlserver" % "mssql-jdbc" % "11.2.0.jre11",
// Web
"javax.servlet" % "javax.servlet-api" % "3.1.0" % Provided,
"org.eclipse.jetty" % "jetty-server" % jettyVersion % Test,
"org.eclipse.jetty" % "jetty-webapp" % jettyVersion % Test,
"org.eclipse.jetty" % "jetty-util" % jettyVersion,
// Akka
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-remote" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-http-core" % "10.1.6",
// Pekko (ActorSystem + Pekko HTTP used by OBP runtime components)
"org.apache.pekko" %% "pekko-actor" % pekkoVersion,
"org.apache.pekko" %% "pekko-remote" % pekkoVersion,
"org.apache.pekko" %% "pekko-slf4j" % pekkoVersion,
"org.apache.pekko" %% "pekko-stream" % pekkoVersion,
"org.apache.pekko" %% "pekko-http" % pekkoHttpVersion,
// http4s (v7.0.0 experimental stack)
"org.typelevel" %% "cats-effect" % catsEffectVersion,
"com.comcast" %% "ip4s-core" % ip4sVersion,
"org.http4s" %% "http4s-core" % http4sVersion,
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-ember-server" % http4sVersion,
// Avro
"com.sksamuel.avro4s" %% "avro4s-core" % avroVersion,
// Twitter
"com.twitter" %% "chill-akka" % "0.9.1",
"com.twitter" %% "chill-bijection" % "0.9.1",
// Cache
"com.github.cb372" %% "scalacache-redis" % "0.9.3",
"com.github.cb372" %% "scalacache-guava" % "0.9.3",
// Utilities
"com.github.dwickern" %% "scala-nameof" % "1.0.3",
"org.javassist" % "javassist" % "3.25.0-GA",
"com.alibaba" % "transmittable-thread-local" % "2.14.2",
"org.clapper" %% "classutil" % "1.4.0",
"com.github.grumlimited" % "geocalc" % "0.5.7",
"com.github.OpenBankProject" % "scala-macros" % "v1.0.0-alpha.3",
"org.scalameta" %% "scalameta" % "3.7.4",
// Akka Adapter - exclude transitive dependency on obp-commons to use local module
"com.github.OpenBankProject.OBP-Adapter-Akka-SpringBoot" % "adapter-akka-commons" % "v1.1.0" exclude("com.github.OpenBankProject.OBP-API", "obp-commons"),
// JSON Schema
"com.github.everit-org.json-schema" % "org.everit.json.schema" % "1.6.1",
"com.networknt" % "json-schema-validator" % "1.0.87",
// Swagger
"io.swagger.parser.v3" % "swagger-parser" % "2.0.13",
// Text processing
"org.atteo" % "evo-inflector" % "1.2.2",
// Payment
"com.stripe" % "stripe-java" % "12.1.0",
"com.twilio.sdk" % "twilio" % "9.2.0",
// gRPC
"com.thesamet.scalapb" %% "scalapb-runtime-grpc" % "0.8.4",
"io.grpc" % "grpc-all" % "1.48.1",
"io.netty" % "netty-tcnative-boringssl-static" % "2.0.27.Final",
"org.asynchttpclient" % "async-http-client" % "2.10.4",
// Database utilities
"org.scalikejdbc" %% "scalikejdbc" % "3.4.0",
// XML
"org.scala-lang.modules" %% "scala-xml" % "1.2.0",
// IBAN
"org.iban4j" % "iban4j" % "3.2.7-RELEASE",
// JavaScript
"org.graalvm.js" % "js" % "22.0.0.2",
"org.graalvm.js" % "js-scriptengine" % "22.0.0.2",
"ch.obermuhlner" % "java-scriptengine" % "2.0.0",
// Hydra
"sh.ory.hydra" % "hydra-client" % "1.7.0",
// HTTP
"com.squareup.okhttp3" % "okhttp" % "4.12.0",
"com.squareup.okhttp3" % "logging-interceptor" % "4.12.0",
"org.apache.httpcomponents" % "httpclient" % "4.5.13",
// RabbitMQ
"com.rabbitmq" % "amqp-client" % "5.22.0",
"net.liftmodules" %% "amqp_3.1" % "1.5.0",
// Blockchain (Ethereum raw transaction decoding)
"org.web3j" % "core" % "4.14.0",
// Elasticsearch
"org.elasticsearch" % "elasticsearch" % "8.14.0",
"com.sksamuel.elastic4s" %% "elastic4s-client-esjava" % "8.5.2",
// OAuth
"oauth.signpost" % "signpost-commonshttp4" % "1.2.1.2",
// Utilities
"cglib" % "cglib" % "3.3.0",
"com.sun.activation" % "jakarta.activation" % "1.2.2",
"com.sun.mail" % "jakarta.mail" % jakartaMailVersion,
"com.nulab-inc" % "zxcvbn" % "1.9.0",
// Testing - temporarily disabled due to version incompatibility
// "org.scalatest" %% "scalatest" % "2.2.6" % Test,
// Jackson
"com.fasterxml.jackson.core" % "jackson-databind" % "2.12.7.1",
// Flexmark (markdown processing)
"com.vladsch.flexmark" % "flexmark-profile-pegdown" % "0.40.8",
"com.vladsch.flexmark" % "flexmark-util-options" % "0.64.0",
// Connection pool
"com.zaxxer" % "HikariCP" % "4.0.3",
// Test dependencies
"junit" % "junit" % "4.13.2" % Test,
"org.scalatest" %% "scalatest" % "3.0.9" % Test,
"org.seleniumhq.selenium" % "htmlunit-driver" % "2.36.0" % Test,
"org.testcontainers" % "rabbitmq" % "1.20.3" % Test
)
)