-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move scala-xml related code to separate module #610
Conversation
Codecov Report
@@ Coverage Diff @@
## master #610 +/- ##
==========================================
- Coverage 93.15% 93.14% -0.01%
==========================================
Files 65 67 +2
Lines 716 715 -1
Branches 10 10
==========================================
- Hits 667 666 -1
Misses 49 49
Continue to review full report at Codecov.
|
lazy val scalaxml = myCrossProject("scalaxml") | ||
.dependsOn(core % "compile->compile;test->test") | ||
.settings( | ||
libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % scalaXmlVersion |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If scala-xml is available for Scala.js and Scala Native, shouldn't this use %%%
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
scalaxml
as module name is fine with me. The module directory should then be lowercase scalaxml
too.
Sadly, it looks like there's no scala-xml for native:
|
Ok, looks like this is GTG. Merge at will! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Howy!
I'm going to merge this into the series/0.10
branch so that I can still make 0.9.x releases from master.
I'm not sure what the naming of this module should be -
scala-xml
,scalaXml
orscalaxml
? I tried including the hyphenated version but that seemed to cause problems in the build. Feel free to suggest an alternative to the naming and/or the package layout in the new module!Note that the
core
module still depends onscala-xml
because the compiler does - see https://github.com/scala/scala-xml/wiki/FAQ