-
Notifications
You must be signed in to change notification settings - Fork 26
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
try to fix groovy issue #548
Merged
Merged
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
7b4b495
ci: version to 4.0.0 Micronaut 4.0.0-SNAPSHOT githubCoreBranch=4.0.x
wetted 0183531
migrate to version catalog and micronaut-build plugin 6.0.0
wetted 8a163a5
micronaut-build plugin to 6.0.1
wetted 85cd534
revert change that isn't java version
wetted a91be92
Migrate to build plugins 6.1.1, update version catalog and dependenci…
wetted 6141f3c
Remove unnecessary catalog import of `micronaut-test`
wetted 1a4d310
Fix github workflow, update plugin version
wetted 8b23bef
minor changes to github workflow
wetted 7bed902
Merge remote-tracking branch 'origin/master' into prepare-for-mn4
wetted ebe30a3
Merge branch 'master' into prepare-for-mn4
n0tl3ss 78dc422
Merge remote-tracking branch 'origin/prepare-for-mn4' into prepare-fo…
wetted 3f60029
build plugin to 6.2.2
wetted 9b60e88
Merge remote-tracking branch 'origin/prepare-for-mn4' into prepare-fo…
wetted 25ab1e4
build: Micronaut Build 6.3.5
sdelamo 1134b0a
build: Micronaut Framework 4.0.0-M1
sdelamo 6c99aaa
build: Micronaut Test 4.0.0-M1
sdelamo 2f7b811
build: Groovy 4.0.10
sdelamo 7178eb1
build: Discovery 4.0.0-M1
sdelamo 2475ef2
build: Reactor 3.0.0-M1
sdelamo 1a88793
serde 2.0.0-M1
sdelamo b5ff713
use validation module
sdelamo 32b4d0f
use gradle plugin 4.0.0-SNAPSHOT
sdelamo 0134746
remove resolutionStrategy
sdelamo a069f57
build: add prefectProjectModules resolution strategy
sdelamo 7a87654
Merge branch '4.0.x' into prepare-for-mn4
sdelamo 91d6d52
Merge remote-tracking branch 'origin/prepare-for-mn4' into prepare-fo…
wetted a9ccf6a
Fix javax.validation compile errors
wetted 844503f
change to micronaut-logging
wetted 4fe8800
Merge branch 'master' into prepare-for-mn4
sdelamo ce349c8
fix missing client
n0tl3ss 12300a3
try to fix groovy issue
n0tl3ss a473e2a
empty to trigger build
n0tl3ss ef438bd
try to fix groovy issue
n0tl3ss db3c9bb
try to fix groovy issue
n0tl3ss 9f8f987
try to fix groovy issue
n0tl3ss 11f6034
try to fix groovy issue
n0tl3ss 8c08f41
try to fix groovy issue
n0tl3ss d04644e
Update gradle/wrapper/gradle-wrapper.properties
n0tl3ss 4ec390c
Update gradle/libs.versions.toml
n0tl3ss File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
plugins { | ||
id "io.micronaut.build.internal.docs" | ||
id "io.micronaut.build.internal.dependency-updates" | ||
id "io.micronaut.build.internal.quality-reporting" | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" } | ||
} | ||
|
||
configurations.all { | ||
resolutionStrategy { | ||
preferProjectModules() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
plugins { | ||
id 'groovy-gradle-plugin' | ||
} | ||
} | ||
|
||
repositories { | ||
gradlePluginPortal() | ||
mavenCentral() | ||
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" } | ||
} | ||
|
||
dependencies { | ||
implementation libs.micronaut.gradle.plugin | ||
implementation libs.shadow.plugin | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
dependencyResolutionManagement { | ||
versionCatalogs { | ||
libs { | ||
from(files("../gradle/libs.versions.toml")) | ||
} | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
buildSrc/src/main/groovy/io.micronaut.build.internal.kubernetes-base.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
repositories { | ||
mavenCentral() | ||
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" } | ||
} |
9 changes: 9 additions & 0 deletions
9
buildSrc/src/main/groovy/io.micronaut.build.internal.kubernetes-examples.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
plugins { | ||
id "io.micronaut.build.internal.kubernetes-tests" | ||
id 'io.micronaut.application' | ||
id 'com.github.johnrengelman.shadow' | ||
} | ||
|
||
dependencies { | ||
mn.snakeyaml | ||
} |
1 change: 1 addition & 0 deletions
1
buildSrc/src/main/groovy/io.micronaut.build.internal.kubernetes-module.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
plugins { | ||
id "io.micronaut.build.internal.module" | ||
id "io.micronaut.build.internal.kubernetes-base" | ||
} |
4 changes: 0 additions & 4 deletions
4
buildSrc/src/main/groovy/io.micronaut.build.internal.kubernetes-test-module.gradle
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
buildSrc/src/main/groovy/io.micronaut.build.internal.kubernetes-tests.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
plugins { | ||
id "io.micronaut.build.internal.kubernetes-base" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not necessary with Micronaut Framework 4.0, since Micronaut Framework 4.0 does not longer expose
micronaut-jackson-databind
automatically.