Skip to content

Commit f39695e

Browse files
authored
Merge pull request quarkusio#50079 from geoand/rest-data-panache
Fix build failure when `quarkus-rest-data-panache` is used
2 parents b09080c + 00ec104 commit f39695e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

extensions/panache/rest-data-panache/deployment/src/main/java/io/quarkus/rest/data/panache/deployment/properties/ResourcePropertiesProvider.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
import org.jboss.jandex.MethodInfo;
1717

1818
import io.quarkus.rest.data.panache.deployment.utils.ResourceName;
19-
import io.quarkus.security.Authenticated;
2019

2120
public class ResourcePropertiesProvider {
2221

@@ -27,7 +26,7 @@ public class ResourcePropertiesProvider {
2726
io.quarkus.rest.data.panache.MethodProperties.class.getName());
2827

2928
private static final List<String> ANNOTATIONS_TO_COPY = List.of(RolesAllowed.class.getPackageName(),
30-
Authenticated.class.getPackageName(),
29+
"io.quarkus.security.Authenticated",
3130
// To also support `@EndpointDisabled` if used
3231
"io.quarkus.resteasy.reactive.server");
3332

0 commit comments

Comments
 (0)