File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 14
14
vars: {
15
15
scala-version : ""
16
16
scala-version : ${?scala_ref} // TODO: change param name in jenkins job -- allow overriding scala-version using the scala_version environment variable
17
- scala-binary-version : ""
18
- scala-binary-version : ${?scala_build_bootstrap_opt} // TODO: change param name in jenkins job
19
- scala-xml-version : "1.0.5"
20
- scala-xml-version : ${?scala_xml_version}
21
17
22
18
// TODO: merge required changes upstream to get rid of our forks, maintaining our one won't scale
23
19
browse-ref : "SethTisue/browse.git#topic/2.12-compat"
Original file line number Diff line number Diff line change @@ -42,11 +42,12 @@ build += {
42
42
system: aether
43
43
uri: "aether:org.scala-lang#scala-compiler;"${vars.scala-version}
44
44
}
45
+ // override scalaVersion here since otherwise we get
46
+ // whatever random Scala version the module has
45
47
{
46
- set-version: ${vars.scala-xml-version}
47
- name: scala-xml
48
- system: aether
49
- uri: "aether:org.scala-lang.modules#scala-xml_"${vars.scala-binary-version}";"${vars.scala-xml-version}
48
+ name: "scala-xml"
49
+ uri: "https://github.com/"${vars.scala-xml-ref}
50
+ extra.commands: "set scalaVersion := \""${vars.scala-version}"\""
50
51
}
51
52
]
52
53
}
You can’t perform that action at this time.
0 commit comments