@@ -4,7 +4,7 @@ import mill._, scalalib._, scalajslib._, scalanativelib._, publish._
4
4
trait SourcecodeModule extends PublishModule {
5
5
def artifactName = " sourcecode"
6
6
7
- def publishVersion = " 0.2.0 "
7
+ def publishVersion = " 0.2.1 "
8
8
9
9
def pomSettings = PomSettings (
10
10
description = artifactName(),
@@ -86,7 +86,7 @@ object sourcecode extends Module {
86
86
87
87
object js extends Cross [JsSourcecodeModule ](
88
88
(" 2.11.12" , " 0.6.28" ), (" 2.12.10" , " 0.6.28" ), (" 2.13.1" , " 0.6.28" ),
89
- (" 2.11.12" , " 1.0.0-RC2 " ), (" 2.12.10" , " 1.0.0-RC2 " ), (" 2.13.1" , " 1.0.0-RC2 " )
89
+ (" 2.11.12" , " 1.0.0" ), (" 2.12.10" , " 1.0.0" ), (" 2.13.1" , " 1.0.0" )
90
90
)
91
91
class JsSourcecodeModule (val crossScalaVersion : String , crossJSVersion : String )
92
92
extends SourcecodeMainModule with ScalaJSModule with SourcecodeModule {
@@ -101,7 +101,7 @@ object sourcecode extends Module {
101
101
val crossScalaVersion = JsSourcecodeModule .this .crossScalaVersion
102
102
}
103
103
}
104
-
104
+ /*
105
105
object native extends Cross[NativeSourcecodeModule](("2.11.12", "0.3.8")/* , ("2.11.12", "0.4.0-M2")*/ )
106
106
class NativeSourcecodeModule(val crossScalaVersion: String, crossScalaNativeVersion: String)
107
107
extends SourcecodeMainModule with ScalaNativeModule with SourcecodeModule {
@@ -116,5 +116,5 @@ object sourcecode extends Module {
116
116
def moduleDeps = Seq(NativeSourcecodeModule.this)
117
117
val crossScalaVersion = NativeSourcecodeModule.this.crossScalaVersion
118
118
}
119
- }
119
+ }*/
120
120
}
0 commit comments