@@ -4,7 +4,6 @@ plugins {
4
4
id ' maven-publish'
5
5
id(" com.gradleup.shadow" ) version " 8.3.1"
6
6
id(" io.micronaut.application" ) version " 4.4.0"
7
- id(" io.micronaut.aot" ) version " 4.4.0"
8
7
id " jacoco"
9
8
id(" org.openrewrite.rewrite" ) version " latest.release"
10
9
}
@@ -27,20 +26,6 @@ micronaut {
27
26
incremental(true )
28
27
annotations(" com.objectcomputing.checkins.*" )
29
28
}
30
- aot {
31
- // Please review carefully the optimizations enabled below
32
- // Check https://micronaut-projects.github.io/micronaut-aot/latest/guide/ for more details
33
- optimizeServiceLoading = false
34
- convertYamlToJava = false
35
- precomputeOperations = true
36
- cacheEnvironment = true
37
- optimizeClassLoading = true
38
- deduceEnvironment = true
39
- optimizeNetty = true
40
- replaceLogbackXml = true
41
- configurationProperties. put(" micronaut.security.jwks.enabled" ," false" )
42
- configurationProperties. put(" micronaut.security.openid-configuration.enabled" ," false" )
43
- }
44
29
}
45
30
46
31
dockerBuildNative {
@@ -51,14 +36,6 @@ dockerBuildNative {
51
36
images = [" checkins:latest" ] + imageNameFromGithub
52
37
}
53
38
54
- optimizedDockerBuildNative {
55
- def imageNameFromGithub = []
56
- if (System . getenv(' PROJECT_ID' ) != null && System . getenv(' SERVICE_NAME' ) && System . getenv(' GITHUB_SHA' )) {
57
- imageNameFromGithub = [" gcr.io/${ System.getenv('PROJECT_ID')} /${ System.getenv('SERVICE_NAME')} :${ System.getenv("GITHUB_SHA")} " . toString()]
58
- }
59
- images = [" checkins:latest" ] + imageNameFromGithub
60
- }
61
-
62
39
graalvmNative {
63
40
toolchainDetection = false
64
41
binaries {
0 commit comments