Skip to content
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

Removed inner Tests traits to avoid no longer supported shadowing #2558

Merged
merged 10 commits into from
May 30, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
.
  • Loading branch information
lefou committed May 30, 2023
commit 2a8d0af080294ae065d021d3a6a6cd580a0f17fd
6 changes: 3 additions & 3 deletions integration/thirdparty/jawn/repo/build.sc
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import mill.scalalib
import mill.Cross
import mill.scalalib.api.ZincWorkerUtil
import mill.scalalib.{Dep, DepSyntax, Lib, TestModule}
import mill.scalalib.{Dep, DepSyntax, TestModule}

val scala212Version = "2.12.3"

object jawn extends Cross[JawnModule]("2.10.6", "2.11.11", scala212Version)
class JawnModule(crossVersion: String) extends mill.Module {
trait JawnModule extends cross.Module[String] {
override def millSourcePath = super.millSourcePath / os.up

trait JawnModule extends scalalib.SbtModule {
def scalaVersion = crossVersion
def scalaVersion = crossValue
def scalacOptions = Seq(
"-deprecation",
"-optimize",
Expand Down