Skip to content
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

multiple micronaut releases #28

Merged
merged 25 commits into from
Jan 31, 2022
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
d15bcfa
support for multiple Micronaut versions
musketyr Jan 26, 2022
26df02b
upgraded gradle to the latest 6.x
musketyr Jan 26, 2022
d66743b
fixed micronaut-hibernate-gorm coordinates for MN 2.+
musketyr Jan 26, 2022
603a60c
using the micronautMigratedDependency to obtain the appropriate group id
musketyr Jan 26, 2022
1a709b6
safeguard MN 2.x dependencies
musketyr Jan 26, 2022
4c5451c
migrated Nonnull annotation
musketyr Jan 26, 2022
9a77ba3
fixed property to update
musketyr Jan 27, 2022
2210cf7
using newer version of micronaut locally, newer version of MN AWS SDK
musketyr Jan 28, 2022
d30f902
fixed nonnull migration, local version based on MN 2.x
musketyr Jan 28, 2022
71fb882
fixed resolution of available entries for EachProperty beans
musketyr Jan 31, 2022
b1701b7
removed @Override from the method which only exists in 2.x and newer
musketyr Jan 31, 2022
74ceb82
using Grails 5.x for Micronaut 2.x and 3.x
musketyr Jan 31, 2022
38a569f
few more compatibility tweaks
musketyr Jan 31, 2022
eeda1d5
added introspected to the entity so it's found in Micronaut 3
musketyr Jan 31, 2022
8bfc99c
added grails source folders to migration
musketyr Jan 31, 2022
2b52c9b
disabled integration tests for MN 2.x due Grails 5 supports on MN 3.x
musketyr Jan 31, 2022
896fb86
upgraded codenarc and fixed violations
musketyr Jan 31, 2022
ae825df
trying to harmonize plugins and classpath deps for gorm/hibernate
musketyr Jan 31, 2022
04f559b
varying gorm.version number
musketyr Jan 31, 2022
ddfe77c
using non-deprecated method to create application context instance
musketyr Jan 31, 2022
0c516cb
removed offedning plugins from the example application
musketyr Jan 31, 2022
03ccde7
simplify example
musketyr Jan 31, 2022
ba0a1a1
fixed wrong local rollbacks
musketyr Jan 31, 2022
82692d6
fixed client payload for ping action
musketyr Jan 31, 2022
de467d0
verify health response, back to 1.x on the main branch
musketyr Jan 31, 2022
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
Prev Previous commit
Next Next commit
migrated Nonnull annotation
  • Loading branch information
musketyr committed Jan 26, 2022
commit 4c5451c6f8986f9bea00e1d96cb2f72917fd53bf
1 change: 1 addition & 0 deletions buildSrc/src/main/groovy/micronaut-compatibility.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import groovy.transform.Field

@Field static final Map<String, Object> IMPORTS = [
'javax.annotation.Nullable': 'io.micronaut.core.annotation.Nullable',
'javax.annotation.Nonnull': 'io.micronaut.core.annotation.NonNull',
'javax.inject.Singleton': 'jakarta.inject.Singleton',
'javax.inject.Named': 'jakarta.inject.Named',
'javax.inject.Inject': 'jakarta.inject.Inject',
Expand Down