forked from micronaut-projects/micronaut-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44af7f6
commit 3a9d83d
Showing
19 changed files
with
70 additions
and
59 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 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,11 +1,13 @@ | ||
dependencies { | ||
annotationProcessor project(":inject-java") | ||
compileOnly "com.oracle.substratevm:svm:$graalVersion" | ||
compileOnly project(":graal") | ||
api project(":buffer-netty") | ||
|
||
api project(":http") | ||
api project(":websocket") | ||
annotationProcessor project(":inject-java") | ||
api dependencyVersion("netty") | ||
api dependencyVersion("rxjava2") | ||
api dependencyModuleVersion("netty", "netty-handler") | ||
api project(":buffer-netty") | ||
|
||
implementation dependencyVersion("netty") | ||
implementation dependencyVersion("rxjava2") | ||
implementation dependencyModuleVersion("netty", "netty-handler") | ||
} |
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,8 +1,9 @@ | ||
dependencies { | ||
annotationProcessor project(":inject-java") | ||
annotationProcessor project(":inject-java") | ||
|
||
api project(":inject") | ||
|
||
compileOnly project(":spring") | ||
compileOnly dependencyModuleVersion("spring", "spring-jdbc") | ||
compileOnly dependencyModuleVersion("spring", "spring-tx") | ||
|
||
api project(":inject") | ||
} |
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
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,18 +1,20 @@ | ||
dependencies { | ||
annotationProcessor project(":inject-java") | ||
compileOnly project(":http-server") | ||
|
||
api project(":inject") | ||
api project(":http") | ||
api dependencyVersion("validation") | ||
|
||
compileOnly dependencyVersion("gorm") | ||
compileOnly project(":http-server") | ||
|
||
testAnnotationProcessor project(":inject-java") | ||
testImplementation project(":http-server-netty") | ||
testImplementation project(":websocket") | ||
testImplementation project(":http-client") | ||
testImplementation project(":inject-groovy") | ||
testImplementation dependencyModuleVersion("groovy", "groovy-json") | ||
testImplementation project(":inject-java-test") | ||
|
||
testAnnotationProcessor project(":inject-java") | ||
} | ||
//compileTestGroovy.groovyOptions.forkOptions.jvmArgs = ['-Xdebug', '-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005'] |
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,10 +1,9 @@ | ||
dependencies { | ||
annotationProcessor project(":inject-java") | ||
api project(":http") | ||
api project(":inject") | ||
api project(':aop') | ||
|
||
api dependencyVersion("rxjava2") | ||
annotationProcessor project(":inject-java") | ||
|
||
testImplementation project(":inject-groovy") | ||
} |