-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvalidator.dbuild
40 lines (33 loc) · 1.57 KB
/
validator.dbuild
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
//See: https://jenkins.scala-sbt.org:8592/job/sbt%20validator/
vars: {
// propagate resolvers to the scripted tests
// if $SPACE_PREFIX is undefined, or "", then dbuild will compile
// all subprojects on top of each other. If it is anything else,
// each subproject's artifacts will end up in a dummy space, therefore
// they will all be in practice compiled in isolation, using the
// dependencies defined in each of the subprojects.
space-to-prefix: ""
space-to-prefix: ${?SPACE_PREFIX}
sbtVersion: ${sbt}
zincVersion: ${zinc}
ioVersion: ${io}
utilVersion: ${util}
librarymanagementVersion: ${librarymanagement}
versionSuffix: "bin-"${TIMESTAMP}
// sbtBuilderVersion: "1.0.4" // Not all sbt modules have been upgraded to 1.0.2 (needed for the Gigahorse flag)
sbtBuilderVersion: "standard" // use whatever sbt version is used by each project
}
include file("sbt.conf")
include file("all.conf")
build: ${vars.projectsAll}
//(for testing only}
//options.deploy: [{
// projects: ${vars.deployProjectsAll}
// uri: "file:/home/cunei/sbt-snapshots"
//}]
options.resolvers: {
"R0000" : "local"
"R0001" : "proxy-ch-maven: https://proxy-ch.typesafe.com:8082/artifactory/repo"
"R0002" : "proxy-ch-ivy: https://proxy-ch.typesafe.com:8082/artifactory/repo, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext]"
"R0003" : "hedgehog-ivy: https://dl.bintray.com/hedgehogqa/scala-hedgehog, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext]"
}