Skip to content

Commit cc977e7

Browse files
authored
Merge pull request #309 from SethTisue/build-scala-xml-again
build scala-xml again
2 parents f8b5a93 + 06d4121 commit cc977e7

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

common.conf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
vars: {
1515
scala-version : ""
1616
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}
2117

2218
// TODO: merge required changes upstream to get rid of our forks, maintaining our one won't scale
2319
browse-ref : "SethTisue/browse.git#topic/2.12-compat"

community.dbuild

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,12 @@ build += {
4242
system: aether
4343
uri: "aether:org.scala-lang#scala-compiler;"${vars.scala-version}
4444
}
45+
// override scalaVersion here since otherwise we get
46+
// whatever random Scala version the module has
4547
{
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}"\""
5051
}
5152
]
5253
}

0 commit comments

Comments
 (0)