Skip to content

Commit

Permalink
Update mill-main to 0.11.5 (#2446)
Browse files Browse the repository at this point in the history
* Update mill-main to 0.11.5

* Add --disable-callgraph-invalidation flag to mill invocations

* Add missing dependency

* Format Native Image Configuration files

---------

Co-authored-by: Maciej Gajek <[email protected]>
  • Loading branch information
scala-steward and MaciejG604 authored Nov 8, 2023
1 parent 54a7cb2 commit 1a739e8
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .mill-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.1
0.11.5
4 changes: 4 additions & 0 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -847,6 +847,10 @@ trait Cli extends SbtModule with ProtoBuildModule with CliLaunchers
super.runClasspath() ++ Seq(localRepoJar())
}

def compileIvyDeps = super.ivyDeps() ++ Agg(
Deps.jsoniterMacros
)

// Required by the reflection usage in modules/cli/src/test/scala/cli/tests/SetupScalaCLITests.scala
override def forkArgs: T[Seq[String]] = T {
super.forkArgs() ++ Seq("--add-opens=java.base/java.util=ALL-UNNAMED")
Expand Down
2 changes: 1 addition & 1 deletion mill.bat
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,4 @@ if defined STRIP_VERSION_PARAMS (
)
)

"%MILL%" %MILL_PARAMS%
"%MILL%" "--disable-callgraph-invalidation" %MILL_PARAMS%
2 changes: 1 addition & 1 deletion millw
Original file line number Diff line number Diff line change
Expand Up @@ -172,4 +172,4 @@ unset MILL_VERSION
unset MILL_VERSION_TAG
unset MILL_REPO_URL

exec "${MILL}" "$@"
exec "${MILL}" "--disable-callgraph-invalidation" "$@"
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"methods": [
{
"name": "collectionClassName",
"parameterTypes": [
]
"parameterTypes": []
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@
"methods": [
{
"name": "getPlatformClassLoader",
"parameterTypes": [
]
"parameterTypes": []
}
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -828,8 +828,7 @@
"methods": [
{
"name": "<init>",
"parameterTypes": [
]
"parameterTypes": []
}
]
},
Expand All @@ -838,8 +837,7 @@
"methods": [
{
"name": "<init>",
"parameterTypes": [
]
"parameterTypes": []
}
]
},
Expand Down Expand Up @@ -929,8 +927,7 @@
"methods": [
{
"name": "<init>",
"parameterTypes": [
]
"parameterTypes": []
}
]
},
Expand All @@ -950,8 +947,7 @@
"methods": [
{
"name": "<init>",
"parameterTypes": [
]
"parameterTypes": []
}
]
},
Expand All @@ -961,8 +957,7 @@
"methods": [
{
"name": "<init>",
"parameterTypes": [
]
"parameterTypes": []
}
]
},
Expand All @@ -971,8 +966,7 @@
"methods": [
{
"name": "values",
"parameterTypes": [
]
"parameterTypes": []
}
]
},
Expand All @@ -981,8 +975,7 @@
"methods": [
{
"name": "values",
"parameterTypes": [
]
"parameterTypes": []
}
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,5 @@
}
]
},
"bundles": [
]
"bundles": []
}

0 comments on commit 1a739e8

Please sign in to comment.