Merge branch 'quarkus-native-fixes' into 'main'
added register for reflection to SendMessage See merge request c4181/email2telegram-message-service!3
This commit is contained in:
commit
e618dd8ff0
2 changed files with 4 additions and 2 deletions
4
pom.xml
4
pom.xml
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in a new issue