Skip to content

Commit 34cb54e

Browse files
committed
Fix mima setup
1 parent e4a3e5d commit 34cb54e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

libs/groovylib/package.mill

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@ object `package` extends MillStableScalaModule with BuildInfo {
2121
BuildInfo.Value("groovyVersion", Deps.groovyVersion, "Version of Groovy")
2222
)
2323

24-
object api extends MillStableScalaModule {
24+
// this module wasn't released in these versions
25+
def mimaPreviousVersions: T[Seq[String]] = super.mimaPreviousVersions().filterNot(
26+
Seq("1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4", "1.0.5").contains
27+
)
28+
29+
object api extends MillPublishScalaModule {
2530
def moduleDeps = Seq(build.libs.javalib.testrunner)
2631

2732
override def compileMvnDeps: T[Seq[Dep]] = Seq(

website/package.mill

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ object `package` extends mill.Module {
2525
def scalaVersion = Deps.scalaVersion
2626
def moduleDeps = build.moduleInternal.modules.collect {
2727
case m: MillStableScalaModule => m
28-
case m @ (build.libs.kotlinlib) => m
2928
}
3029
def unidocSourceUrl = Task {
3130
val sha = "main" // VcsVersion.vcsState().currentRevision

0 commit comments

Comments
 (0)