Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions example/groovylib/basic/4-module-deps/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import mill.*, groovylib.*

object foo extends GroovyModule {

def groovyVersion = "5.0.3"
def groovyVersion = "5.0.6"

def moduleDeps = Seq(build.bar)
def mvnDeps = Seq(
Expand All @@ -13,7 +13,7 @@ object foo extends GroovyModule {

object bar extends GroovyModule {

def groovyVersion = "5.0.3"
def groovyVersion = "5.0.6"

def mvnDeps = Seq(
mvn"org.apache.groovy:groovy-xml"
Expand Down
2 changes: 1 addition & 1 deletion example/groovylib/basic/5-compat-modules/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import mill.*, groovylib.*

object foo extends GroovyMavenModule {

def groovyVersion = "5.0.3"
def groovyVersion = "5.0.6"

object test extends GroovyMavenTests with TestModule.Junit5 {}
object integration extends GroovyMavenTests with TestModule.Junit5 {}
Expand Down
2 changes: 1 addition & 1 deletion example/groovylib/basic/6-programmable/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package build
import mill.*, groovylib.*

object foo extends GroovyModule {
def groovyVersion = "5.0.3"
def groovyVersion = "5.0.6"

// Groovy dependency version have been loaded via BOM from the Module already
def mvnDeps = Seq(
Expand Down
4 changes: 2 additions & 2 deletions example/groovylib/testing/1-test-suite/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import mill.*, groovylib.*

object foo extends GroovyModule {

def groovyVersion = "5.0.3"
def groovyVersion = "5.0.6"

object test extends GroovyTests with TestModule.Junit5 {
def jupiterVersion = "5.13.4"
Expand All @@ -19,7 +19,7 @@ object bar extends GroovyModule {

def mainClass = Some("bar.Bar")

def groovyVersion = "5.0.3"
def groovyVersion = "5.0.6"

object test extends GroovyTests, TestModule.Junit5 {
def jupiterVersion = "5.13.4"
Expand Down
2 changes: 1 addition & 1 deletion example/groovylib/testing/2-integration-suite/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package build
import mill.*, groovylib.*
object qux extends GroovyModule {

def groovyVersion = "5.0.3"
def groovyVersion = "5.0.6"

object test extends GroovyTests with TestModule.Junit5 {
def mvnDeps = super.mvnDeps() ++ Seq(
Expand Down
2 changes: 1 addition & 1 deletion example/groovylib/testing/3-spock/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import mill.*, groovylib.*

object `package` extends GroovyModule {

def groovyVersion = "5.0.3"
def groovyVersion = "5.0.6"

object test extends GroovyTests with TestModule.Spock {
def spockVersion = "2.4-groovy-5.0"
Expand Down
2 changes: 1 addition & 1 deletion example/groovylib/testing/4-spock-for-java/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object `package` extends JavaMavenModuleWithGroovyTests {

object test extends GroovyMavenTests with TestModule.Spock {
def spockVersion = "2.4-groovy-5.0"
def groovyVersion = "5.0.3"
def groovyVersion = "5.0.6"
def jupiterVersion = "5.13.4"
}
}
Expand Down
2 changes: 1 addition & 1 deletion mill-build/src/millbuild/Deps.scala
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ object Deps {
val kotlinStdlib = mvn"org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
val groovyVersion_lowerBound = "4.0.28"
val groovyCompiler_lowerBound = mvn"org.apache.groovy:groovy:$groovyVersion_lowerBound"
val groovyVersion = "5.0.3"
val groovyVersion = "5.0.6"
val groovyCompiler_runtime = mvn"org.apache.groovy:groovy:$groovyVersion"

/** Used for the `mill init` from a Maven project. */
Expand Down
Loading