Skip to content

Commit

Permalink
add native-img reflect-config.json serialization-config.json
Browse files Browse the repository at this point in the history
  • Loading branch information
llongtao committed Dec 12, 2022
1 parent 41d117a commit 18b6b63
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
5 changes: 5 additions & 0 deletions htunnel-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.ApplicationPidFileWriter;
import org.springframework.context.annotation.ImportRuntimeHints;

import java.util.ArrayList;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[
{
"name": "com.dutertry.htunnel.common.ConnectionRequest",
"allDeclaredFields": true,
"allDeclaredConstructors": true,
"allDeclaredMethods": true,
"allPublicMethods": true,
"allDeclaredClasses": true
},
{
"name": "com.dutertry.htunnel.common.ConnectionConfig",
"allDeclaredFields": true,
"allDeclaredConstructors": true,
"allDeclaredMethods": true,
"allPublicMethods": true,
"allDeclaredClasses": true
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[
{
"name": "com.dutertry.htunnel.common.ConnectionRequest"
},
{
"name": "com.dutertry.htunnel.common.ConnectionConfig"
}
]

0 comments on commit 18b6b63

Please sign in to comment.