Skip to content

Commit d8a789c

Browse files
author
Dennis Labordus
committed
Use full names of classes.
Signed-off-by: Dennis Labordus <[email protected]>
1 parent c2999a5 commit d8a789c

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

app/src/main/java/org/lfenergy/compas/scl/data/rest/CompasReflectionConfiguration.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,15 @@
44
package org.lfenergy.compas.scl.data.rest;
55

66
import io.quarkus.runtime.annotations.RegisterForReflection;
7-
import org.lfenergy.compas.core.jaxrs.model.ErrorMessage;
8-
import org.lfenergy.compas.core.jaxrs.model.ErrorResponse;
9-
import org.lfenergy.compas.scl.data.model.SclMetaInfo;
107

118
/**
129
* Configure class for Quarkus Native Build to be included.
1310
*/
1411
@RegisterForReflection(
1512
targets = {
16-
SclMetaInfo.class,
17-
ErrorMessage.class,
18-
ErrorResponse.class,
13+
org.lfenergy.compas.core.jaxrs.model.ErrorMessage.class,
14+
org.lfenergy.compas.core.jaxrs.model.ErrorResponse.class,
15+
org.lfenergy.compas.scl.data.model.SclMetaInfo.class,
1916
org.lfenergy.compas.scl.data.model.ObjectFactory.class
2017
})
2118
public class CompasReflectionConfiguration {

0 commit comments

Comments
 (0)