added register for reflection to SendMessage #3

Merged
c4181 merged 1 commit from quarkus-native-fixes into main 2023-01-04 23:58:51 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit bca30272d8 - Show all commits

View file

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.c4181</groupId>
<artifactId>email2telegram-message-service</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
<scm>
<connection>scm:git:git://192.168.1.198/c4181/email2telegram-message-service.git</connection>
</scm>
@ -139,7 +139,7 @@
</activation>
<properties>
<skipITs>false</skipITs>
<quarkus.package.type>uber-jar</quarkus.package.type>
<quarkus.package.type>native</quarkus.package.type>
</properties>
</profile>
</profiles>

View file

@ -1,7 +1,9 @@
package com.c4181.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.quarkus.runtime.annotations.RegisterForReflection;
@RegisterForReflection
public class SendMessage {
@JsonProperty("chat_id")