-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathbuild.sbt
More file actions
192 lines (179 loc) · 8.46 KB
/
build.sbt
File metadata and controls
192 lines (179 loc) · 8.46 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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
ThisBuild / organization := "org.apache.texera"
ThisBuild / version := "1.1.0-incubating"
ThisBuild / scalaVersion := "2.13.18"
// Pull JDK 17+ JVM flags from .jvmopts so every JVM the build launches sees the same list.
import com.typesafe.sbt.packager.universal.UniversalPlugin.autoImport.Universal
ThisBuild / Test / javaOptions ++=
JdkOptions.jvmFlags((ThisBuild / baseDirectory).value)
// Fail Java compilation on deprecation warnings so PRs can't reintroduce
// deprecated-API patterns (e.g. scala.collection.JavaConverters in Java
// callers — the modern Java entry point is scala.jdk.javaapi.CollectionConverters).
// -Xlint:deprecation surfaces the per-call-site location, -Werror turns it fatal.
ThisBuild / Compile / javacOptions ++= Seq("-Xlint:deprecation", "-Werror")
// Emit one JUnit-XML file per spec under each module's target/test-reports/.
// Codecov Test Analytics ingests these via `report_type: test_results` to
// surface failing-test stack traces in PR comments and flag tests that have
// gone flaky on main. ScalaTest's `-u` argument is additive — module-level
// testOptions (e.g. amber/build.sbt's filter args) continue to apply.
ThisBuild / Test / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-u", "target/test-reports")
// sbt-jacoco emits only HTML by default; add XML so Codecov can consume
// per-module jacoco.xml at target/scala-2.13/jacoco/report/jacoco.xml.
// JacocoPlugin defines a project-scoped default that overrides ThisBuild,
// so this Seq is bundled into asfLicensingSettings (applied to every module).
import com.github.sbt.jacoco.report.{JacocoReportFormats, JacocoReportSettings}
lazy val coverageReportSettings = Seq(
jacocoReportSettings := JacocoReportSettings()
.withTitle("Apache Texera Coverage")
.withFormats(JacocoReportFormats.ScalaHTML, JacocoReportFormats.XML)
)
lazy val universalJvmFlagsSettings = Seq(
Universal / javaOptions ++=
JdkOptions.jvmFlags((ThisBuild / baseDirectory).value).map("-J" + _)
)
// Per-module ASF licensing: each jar's META-INF/LICENSE describes only what is in that jar.
// Modules without vendored code get Apache 2.0 only; workflow-operator includes mbknor attribution.
// See project/AddMetaInfLicenseFiles.scala.
// Dist-producing modules additionally override Universal / mappings in their own
// build.sbt (not here) — see AddMetaInfLicenseFiles.distMappings.
lazy val asfLicensingSettings = AddMetaInfLicenseFiles.defaultSettings ++ coverageReportSettings ++ universalJvmFlagsSettings
lazy val asfLicensingSettingsWithVendored = AddMetaInfLicenseFiles.workflowOperatorSettings ++ coverageReportSettings ++ universalJvmFlagsSettings
val jacksonVersion = "2.18.6"
lazy val DAO = (project in file("common/dao")).settings(asfLicensingSettings)
lazy val Config = (project in file("common/config")).settings(asfLicensingSettings)
lazy val Auth = (project in file("common/auth"))
.settings(asfLicensingSettings)
.dependsOn(DAO, Config)
lazy val ConfigService = (project in file("config-service"))
.dependsOn(Auth, Config)
.settings(asfLicensingSettings)
.settings(
dependencyOverrides ++= Seq(
// override it as io.dropwizard 4 require 2.16.1 or higher
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion
)
)
lazy val AccessControlService = (project in file("access-control-service"))
.dependsOn(Auth, Config, DAO)
.settings(asfLicensingSettings)
.settings(
dependencyOverrides ++= Seq(
// override it as io.dropwizard 4 require 2.16.1 or higher
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion
)
)
.configs(Test)
.dependsOn(DAO % "test->test", Auth % "test->test")
//This Scala module defines a pyb"..." macro-based DSL for composing Python code templates as an immutable PythonTemplateBuilder.
//Used mainly for Python Native Operators
lazy val PyBuilder = (project in file("common/pybuilder"))
.settings(asfLicensingSettings)
.configs(Test)
.dependsOn(DAO % "test->test") // test scope dependency
lazy val WorkflowCore = (project in file("common/workflow-core"))
.settings(asfLicensingSettings)
.dependsOn(DAO, Config, PyBuilder)
.configs(Test)
.dependsOn(DAO % "test->test") // test scope dependency
lazy val ComputingUnitManagingService = (project in file("computing-unit-managing-service"))
.dependsOn(WorkflowCore, Auth, Config)
.settings(asfLicensingSettings)
.settings(
dependencyOverrides ++= Seq(
// override it as io.dropwizard 4 require 2.16.1 or higher
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion
)
)
lazy val FileService = (project in file("file-service"))
.settings(asfLicensingSettings)
.dependsOn(WorkflowCore, Auth, Config)
.configs(Test)
.dependsOn(DAO % "test->test") // test scope dependency
.settings(
dependencyOverrides ++= Seq(
// override it as io.dropwizard 4 require 2.16.1 or higher
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
"org.glassfish.jersey.core" % "jersey-common" % "3.0.12"
)
)
lazy val WorkflowOperator = (project in file("common/workflow-operator")).settings(asfLicensingSettingsWithVendored).dependsOn(WorkflowCore)
lazy val WorkflowCompilingService = (project in file("workflow-compiling-service"))
.dependsOn(WorkflowOperator, Config)
.settings(asfLicensingSettings)
.settings(
dependencyOverrides ++= Seq(
// override it as io.dropwizard 4 require 2.16.1 or higher
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
"org.glassfish.jersey.core" % "jersey-common" % "3.0.12"
)
)
lazy val WorkflowExecutionService = (project in file("amber"))
.dependsOn(WorkflowOperator, Auth, Config)
.settings(asfLicensingSettings)
.settings(
dependencyOverrides ++= Seq(
"com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion,
"org.slf4j" % "slf4j-api" % "1.7.26",
"org.eclipse.jetty" % "jetty-server" % "9.4.20.v20190813",
"org.eclipse.jetty" % "jetty-servlet" % "9.4.20.v20190813",
"org.eclipse.jetty" % "jetty-http" % "9.4.20.v20190813",
// Netty dependency overrides to ensure compatibility with Arrow 14.0.1
// Arrow requires Netty 4.1.96.Final to avoid NoSuchFieldError: chunkSize
"io.netty" % "netty-all" % "4.1.96.Final",
"io.netty" % "netty-buffer" % "4.1.96.Final",
"io.netty" % "netty-codec" % "4.1.96.Final",
"io.netty" % "netty-codec-http" % "4.1.96.Final",
"io.netty" % "netty-codec-http2" % "4.1.96.Final",
"io.netty" % "netty-common" % "4.1.96.Final",
"io.netty" % "netty-handler" % "4.1.96.Final",
"io.netty" % "netty-resolver" % "4.1.96.Final",
"io.netty" % "netty-transport" % "4.1.96.Final",
"io.netty" % "netty-transport-native-unix-common" % "4.1.96.Final"
),
libraryDependencies ++= Seq(
"com.squareup.okhttp3" % "okhttp" % "4.10.0" force () // Force usage of OkHttp 4.10.0
)
)
.configs(Test)
.dependsOn(DAO % "test->test", Auth % "test->test") // test scope dependency
// root project definition
lazy val TexeraProject = (project in file("."))
.aggregate(
// common libraries
Auth,
Config,
DAO,
PyBuilder,
WorkflowCore,
WorkflowOperator,
// services
AccessControlService,
ComputingUnitManagingService,
ConfigService,
FileService,
WorkflowCompilingService,
WorkflowExecutionService
)
.settings(
name := "texera",
publishMavenStyle := true
)