-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '2.0.x' into renovate/major-managed.eclipsestore
- Loading branch information
Showing
26 changed files
with
103 additions
and
78 deletions.
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 was deleted.
Oops, something went wrong.
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.docs") | ||
id("io.micronaut.build.internal.quality-reporting") | ||
id("io.micronaut.internal.build.eclipsestore-rest-cli") | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} |
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 |
---|---|---|
|
@@ -2,3 +2,6 @@ repositories { | |
mavenCentral() | ||
} | ||
|
||
configurations.configureEach { | ||
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,7 +1,7 @@ | ||
plugins { | ||
id("io.micronaut.internal.build.eclipsestore-module") | ||
} | ||
|
||
dependencies { | ||
implementation(mn.micronaut.aop) | ||
implementation(mn.micronaut.core.processor) | ||
compileOnly(mn.micronaut.core.processor) | ||
} |
3 changes: 0 additions & 3 deletions
3
...ions/src/main/resources/META-INF/services/io.micronaut.inject.annotation.AnnotationMapper
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
plugins { | ||
id("io.micronaut.internal.build.eclipsestore-module") | ||
} | ||
|
||
dependencies { | ||
implementation(mn.micronaut.core.processor) | ||
implementation(projects.micronautEclipsestoreAnnotations) | ||
} | ||
|
||
// REMOVE ONCE FIRST RELEASE IS RELEASED | ||
micronautBuild { | ||
binaryCompatibility { | ||
enabled.set(false) | ||
} | ||
} |
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
3 changes: 3 additions & 0 deletions
3
...ssor/src/main/resources/META-INF/services/io.micronaut.inject.annotation.AnnotationMapper
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,3 @@ | ||
io.micronaut.eclipsestore.processor.StoreRootAnnotationMapper | ||
io.micronaut.eclipsestore.processor.StoreReturnAnnotationMapper | ||
io.micronaut.eclipsestore.processor.StoreParamsAnnotationMapper |
5 changes: 4 additions & 1 deletion
5
...ns/StoreParamsAnnotationMapperSpec.groovy → ...or/StoreParamsAnnotationMapperSpec.groovy
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
5 changes: 4 additions & 1 deletion
5
...ns/StoreReturnAnnotationMapperSpec.groovy → ...or/StoreReturnAnnotationMapperSpec.groovy
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
5 changes: 4 additions & 1 deletion
5
...ions/StoreRootAnnotationMapperSpec.groovy → ...ssor/StoreRootAnnotationMapperSpec.groovy
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
This section will document breaking changes that may happen during milestone or release candidate releases, as well as major releases eg (1.x.x -> 2.x.x). | ||
|
||
== Micronaut EclipseStore 2.0.0 breaking changes | ||
|
||
- The annotation mappers have been moved from `micronaut-eclipsestore-annotations` to a new module `micronaut-eclipsestore-processor`. | ||
+ | ||
You will need to replace the `micronaut-eclipsestore-annotations` annotation processor (or `compileOnly` dependency with a Groovy project) with `micronaut-eclipsestore-processor` in your project. |
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,7 +1,5 @@ | ||
To start, add the following dependencies to your classpath. | ||
|
||
dependency:micronaut-eclipsestore-annotations[groupId="io.micronaut.eclipsestore",scope=annotationProcessor] | ||
|
||
dependency:micronaut-eclipsestore-annotations[groupId="io.micronaut.eclipsestore"] | ||
dependency:micronaut-eclipsestore-processor[groupId="io.micronaut.eclipsestore",scope=annotationProcessor] | ||
|
||
dependency:micronaut-eclipsestore[groupId="io.micronaut.eclipsestore"] |
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
6 changes: 3 additions & 3 deletions
6
test-suite-groovy/build.gradle → test-suite-groovy/build.gradle.kts
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.