Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jodersky committed Nov 2, 2024
1 parent 5584cae commit d3ab700
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def zippedExamples = T {
build.example.cookies.millSourcePath,
build.example.decorated.millSourcePath,
build.example.decorated2.millSourcePath,
build.example.decoratedContext.millSourcePath,
build.example.endpoints.millSourcePath,
build.example.formJsonPost.millSourcePath,
build.example.httpMethods.millSourcePath,
Expand Down
7 changes: 4 additions & 3 deletions example/decoratedContext/package.mill
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package build.example.decoratedContext
import mill._, scalalib._

object app extends Cross[AppModule](build.scala3)
trait AppModule extends CrossScalaModule{
object app extends ScalaModule{

def moduleDeps = Seq(build.cask(crossScalaVersion))
def scalaVersion = build.scala3

def moduleDeps = Seq(build.cask(build.scala3))

def ivyDeps = Agg[Dep](
)
Expand Down

0 comments on commit d3ab700

Please sign in to comment.