File tree Expand file tree Collapse file tree 5 files changed +33
-4
lines changed
src/main/java/io/goodforgod/http/common Expand file tree Collapse file tree 5 files changed +33
-4
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ Java 17+ support.
16
16
17
17
[ ** Gradle** ] ( https://mvnrepository.com/artifact/io.goodforgod/http-common )
18
18
``` groovy
19
- implementation "io.goodforgod:http-common:0.10.0 "
19
+ implementation "io.goodforgod:http-common:1.0.0-SNAPSHOT "
20
20
```
21
21
22
22
[ ** Maven** ] ( https://mvnrepository.com/artifact/io.goodforgod/http-common )
23
23
``` xml
24
24
<dependency >
25
25
<groupId >io.goodforgod</groupId >
26
26
<artifactId >http-common</artifactId >
27
- <version >0.10.0 </version >
27
+ <version >1.0.0-SNAPSHOT </version >
28
28
</dependency >
29
29
```
30
30
Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ sourceCompatibility = JavaVersion.VERSION_17
20
20
targetCompatibility = JavaVersion . VERSION_17
21
21
22
22
dependencies {
23
- compileOnly " org.jetbrains:annotations:22.0.0"
23
+ annotationProcessor " io.goodforgod:graalvm-hint-processor:0.19.0"
24
+ compileOnly " io.goodforgod:graalvm-hint-annotations:0.19.0"
25
+ compileOnly " org.jetbrains:annotations:23.0.0"
24
26
25
27
testRuntimeOnly " org.junit.jupiter:junit-jupiter-engine:5.8.2"
26
28
testImplementation " org.junit.jupiter:junit-jupiter-api:5.8.2"
Original file line number Diff line number Diff line change 1
1
groupId =io.goodforgod
2
2
artifactId =http-common
3
- artifactVersion =0.10 .0
3
+ artifactVersion =1.0 .0
4
4
5
5
6
6
# #### GRADLE #####
Original file line number Diff line number Diff line change
1
+ package io .goodforgod .http .common ;
2
+
3
+ import io .goodforgod .graalvm .hint .annotation .InitializationHint ;
4
+
5
+ /**
6
+ * @author Anton Kurako (GoodforGod)
7
+ * @since 21.05.2022
8
+ */
9
+ @ InitializationHint (value = InitializationHint .InitPhase .BUILD ,
10
+ typeNames = "io.goodforgod.http.common" )
11
+ final class GraalVMHint {
12
+
13
+ private GraalVMHint () {}
14
+ }
Original file line number Diff line number Diff line change
1
+ package io .goodforgod .http .common ;
2
+
3
+ import io .goodforgod .graalvm .hint .annotation .InitializationHint ;
4
+
5
+ @ InitializationHint (typeNames = {
6
+ "io.goodforgod.http.common" ,
7
+ "io.goodforgod.http.common.uri" ,
8
+ "io.goodforgod.http.common.exception" },
9
+ value = InitializationHint .InitPhase .BUILD )
10
+ final class GraalVMHints {
11
+
12
+ private GraalVMHints () {}
13
+ }
You can’t perform that action at this time.
0 commit comments