Skip to content

Commit 0059443

Browse files
committed
.
1 parent d87798e commit 0059443

File tree

9 files changed

+18
-14
lines changed

9 files changed

+18
-14
lines changed

example/scalalib/basic/1-simple/build.mill

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,10 @@ error: Missing argument: --text <str>
154154
// details on the different task types.
155155
//
156156
// This example uses Mill's YAML-based syntax, which is a good fit for simple builds
157-
// where you are just setting some configuration keys. For scenarios which require
158-
// more customization, see xref:#_programmatic_configuration[Programmatic Configuration]
159-
// discussed below.
157+
// where you are just setting some configuration keys. This is discussed more in the documentation
158+
// for:
159+
//
160+
// * xref:{language-small}lib/simple.adoc[Simple {language} Modules]
161+
//
162+
// For scenarios which require more customization,
163+
// see xref:#_programmatic_configuration[Programmatic Configuration] discussed below.

integration/ide/build-classpath-contents/src/BuildClasspathContentsTests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ object BuildClasspathContentsTests extends UtestIntegrationTestSuite {
4646
"mill-libs-scalalib_3.jar",
4747
"mill-libs-scalanativelib-api_3.jar",
4848
"mill-libs-scalanativelib_3.jar",
49-
"mill-libs-simple_3.jar",
49+
"mill-libs-script_3.jar",
5050
"mill-libs-util_3.jar",
5151
"mill-libs_3.jar",
5252
"mill-moduledefs_3-0.11.10.jar"

integration/ide/gen-idea/resources/extended/idea/mill_modules/mill-build.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
<orderEntry type="library" name="mill-libs-scalalib_3.jar" level="project"/>
8282
<orderEntry type="library" name="mill-libs-scalanativelib-api_3.jar" level="project"/>
8383
<orderEntry type="library" name="mill-libs-scalanativelib_3.jar" level="project"/>
84-
<orderEntry type="library" name="mill-libs-simple_3.jar" level="project"/>
84+
<orderEntry type="library" name="mill-libs-script_3.jar" level="project"/>
8585
<orderEntry type="library" scope="RUNTIME" name="mill-libs-tabcomplete_3.jar" level="project"/>
8686
<orderEntry type="library" name="mill-libs-util_3.jar" level="project"/>
8787
<orderEntry type="library" name="mill-libs_3.jar" level="project"/>

integration/ide/gen-idea/resources/extended/idea/mill_modules/mill-build.mill-build.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<orderEntry type="library" name="mill-libs-scalalib_3.jar" level="project"/>
8383
<orderEntry type="library" name="mill-libs-scalanativelib-api_3.jar" level="project"/>
8484
<orderEntry type="library" name="mill-libs-scalanativelib_3.jar" level="project"/>
85-
<orderEntry type="library" name="mill-libs-simple_3.jar" level="project"/>
85+
<orderEntry type="library" name="mill-libs-script_3.jar" level="project"/>
8686
<orderEntry type="library" scope="RUNTIME" name="mill-libs-tabcomplete_3.jar" level="project"/>
8787
<orderEntry type="library" name="mill-libs-util_3.jar" level="project"/>
8888
<orderEntry type="library" name="mill-libs_3.jar" level="project"/>

integration/ide/gen-idea/resources/hello-idea/idea/mill_modules/mill-build.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
<orderEntry type="library" name="mill-libs-scalalib_3.jar" level="project"/>
7979
<orderEntry type="library" name="mill-libs-scalanativelib-api_3.jar" level="project"/>
8080
<orderEntry type="library" name="mill-libs-scalanativelib_3.jar" level="project"/>
81-
<orderEntry type="library" name="mill-libs-simple_3.jar" level="project"/>
81+
<orderEntry type="library" name="mill-libs-script_3.jar" level="project"/>
8282
<orderEntry type="library" scope="RUNTIME" name="mill-libs-tabcomplete_3.jar" level="project"/>
8383
<orderEntry type="library" name="mill-libs-util_3.jar" level="project"/>
8484
<orderEntry type="library" name="mill-libs_3.jar" level="project"/>

libs/init/buildgen/src/mill/main/buildgen/BuildGenUtil.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package mill.main.buildgen
33
import geny.Generator
44
import mainargs.{Flag, arg}
55
import mill.api.daemon.internal.internal
6-
import mill.constants.CodeGenConstants.{nestedBuildFileNames, rootBuildFileNames, rootModuleAlias}
6+
import mill.constants.CodeGenConstants.rootModuleAlias
77
import mill.main.buildgen.BuildObject.Companions
88
import mill.internal.Util.backtickWrap
99
import mill.api.CrossVersion

website/docs/modules/ROOT/pages/javalib/simple.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
:language: Java
33
:language-small: java
44

5-
This page documents the usage of simple config-based Java modules defined by a
6-
`mill.yaml` file. These are less flexible but easier to get started with than the
5+
This page documents the usage of simple config-based Java modules defined by
6+
`build.mill.yaml` and `package.mill.yaml` files. These are less flexible but easier to get started with than the
77
full `build.mill` or `package.mill` build files, which makes them ideal for small
88
projects which do not need additional flexibility.
99

website/docs/modules/ROOT/pages/kotlinlib/simple.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
:language: Kotlin
33
:language-small: kotlin
44

5-
This page documents the usage of simple config-based Kotlin modules defined by a
6-
`mill.yaml` file. These are less flexible but easier to get started with than the
5+
This page documents the usage of simple config-based Kotlin modules defined by
6+
`build.mill.yaml` and `package.mill.yaml` files. These are less flexible but easier to get started with than the
77
full `build.mill` or `package.mill` build files, which makes them ideal for small
88
projects which do not need additional flexibility.
99

website/docs/modules/ROOT/pages/scalalib/simple.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
:language: Scala
33
:language-small: scala
44

5-
This page documents the usage of simple config-based Scala modules defined by a
6-
`mill.yaml` file. These are less flexible but easier to get started with than the
5+
This page documents the usage of simple config-based Scala modules defined by
6+
`build.mill.yaml` and `package.mill.yaml` files. These are less flexible but easier to get started with than the
77
full `build.mill` or `package.mill` build files, which makes them ideal for small
88
projects which do not need additional flexibility.
99

0 commit comments

Comments
 (0)