forked from microsoft/hyperspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
188 lines (157 loc) · 5.15 KB
/
build.sbt
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
/*
* Copyright (2020) The Hyperspace Project Authors.
*
* Licensed 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.
*/
name := "hyperspace-core"
sparkVersion := "2.4.2"
lazy val scala212 = "2.12.8"
lazy val scala211 = "2.11.12"
lazy val supportedScalaVersions = List(scala212, scala211)
scalaVersion := scala212
crossScalaVersions := supportedScalaVersions
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-sql" % sparkVersion.value % "provided" withSources(),
"org.apache.spark" %% "spark-core" % sparkVersion.value % "provided" withSources(),
"org.apache.spark" %% "spark-catalyst" % sparkVersion.value % "provided" withSources(),
// Test dependencies
"org.scalatest" %% "scalatest" % "3.0.5" % "test",
"org.mockito" %% "mockito-scala" % "0.4.0" % "test",
"org.apache.spark" %% "spark-catalyst" % sparkVersion.value % "test" classifier "tests",
"org.apache.spark" %% "spark-core" % sparkVersion.value % "test" classifier "tests",
"org.apache.spark" %% "spark-sql" % sparkVersion.value % "test" classifier "tests",
"org.apache.spark" %% "spark-hive" % sparkVersion.value % "test" classifier "tests"
)
scalacOptions ++= Seq(
"-target:jvm-1.8"
)
javaOptions += "-Xmx1024m"
/*****************************
* ScalaStyle configurations *
*****************************/
scalastyleConfig := baseDirectory.value / "scalastyle-config.xml"
// Run as part of compile task.
lazy val compileScalastyle = taskKey[Unit]("compileScalastyle")
compileScalastyle := scalastyle.in(Compile).toTask("").value
(compile in Compile) := ((compile in Compile) dependsOn compileScalastyle).value
// Run as part of test task.
lazy val testScalastyle = taskKey[Unit]("testScalastyle")
testScalastyle := scalastyle.in(Test).toTask("").value
(test in Test) := ((test in Test) dependsOn testScalastyle).value
/***************************
* Spark Packages settings *
***************************/
spName := "microsoft/hyperspace-core"
spAppendScalaVersion := true
spIncludeMaven := true
spIgnoreProvided := true
packageBin in Compile := spPackage.value
/***********************
* Test configurations *
***********************/
// Tests cannot be run in parallel since mutiple Spark contexts cannot run in the same JVM.
parallelExecution in Test := false
fork in Test := true
javaOptions in Test ++= Seq(
"-Dspark.ui.enabled=false",
"-Dspark.ui.showConsoleProgress=false",
"-Xmx1024m"
)
/**************************
* Release configurations *
**************************/
organization := "com.microsoft.hyperspace"
organizationName := "Microsoft"
organizationHomepage := Some(url("http://www.microsoft.com/"))
releaseCrossBuild := true
scmInfo := Some(
ScmInfo(
url("https://github.com/microsoft/hyperspace"),
"scm:git@github.com:microsoft/hyperspace.git"
)
)
developers := List(
Developer(
id = "rapoth",
name = "Rahul Potharaju",
email = "",
url = url("https://github.com/rapoth")
),
Developer(
id = "imback82",
name = "Terry Kim",
email = "",
url = url("https://github.com/imback82")
),
Developer(
id = "apoorvedave1",
name = "Apoorve Dave",
email = "",
url = url("https://github.com/apoorvedave1")
),
Developer(
id = "pirz",
name = "Pouria Pirzadeh",
email = "",
url = url("https://github.com/pirz")
),
Developer(
id = "thrajput",
name = "Tarun Rajput",
email = "",
url = url("https://github.com/thrajput")
),
Developer(
id = "AFFogarty",
name = "Andrew Fogarty",
email = "",
url = url("https://github.com/AFFogarty")
),
Developer(
id = "laserljy",
name = "Jiying Li",
email = "",
url = url("https://github.com/laserljy")
),
Developer(
id = "sezruby",
name = "Eunjin Song",
email = "",
url = url("https://github.com/sezruby")
)
)
description := "Hyperspace: An Indexing Subsystem for Apache Spark"
licenses := List("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt"))
homepage := Some(url("https://github.com/microsoft/hyperspace"))
// Remove all additional repository other than Maven Central from POM
pomIncludeRepository := { _ => false }
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots")
else Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
publishMavenStyle := true
import ReleaseTransformations._
releasePublishArtifactsAction := PgpKeys.publishSigned.value
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
runTest,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
publishArtifacts,
setNextVersion,
commitNextVersion
)