1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!--
3
+
4
+ Copyright (c) 2024 Oracle and/or its affiliates.
5
+
6
+ Licensed under the Apache License, Version 2.0 (the "License");
7
+ you may not use this file except in compliance with the License.
8
+ You may obtain a copy of the License at
9
+
10
+ http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ Unless required by applicable law or agreed to in writing, software
13
+ distributed under the License is distributed on an "AS IS" BASIS,
14
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ See the License for the specific language governing permissions and
16
+ limitations under the License.
17
+
18
+ -->
19
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
20
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
21
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
22
+ <parent >
23
+ <groupId >io.helidon.tests.integration</groupId >
24
+ <artifactId >helidon-tests-integration</artifactId >
25
+ <version >4.0.0-SNAPSHOT</version >
26
+ </parent >
27
+ <modelVersion >4.0.0</modelVersion >
28
+
29
+ <artifactId >helidon-tests-integration-mp-gh-8495</artifactId >
30
+ <name >Helidon Tests Integration MP GH 8495</name >
31
+ <description >Reproducer for Github issue #8495 - SecurityCdiExtension fails with Oidc</description >
32
+
33
+ <dependencies >
34
+ <dependency >
35
+ <groupId >io.helidon.microprofile.server</groupId >
36
+ <artifactId >helidon-microprofile-server</artifactId >
37
+ </dependency >
38
+ <dependency >
39
+ <groupId >io.helidon.microprofile</groupId >
40
+ <artifactId >helidon-microprofile-oidc</artifactId >
41
+ </dependency >
42
+ <dependency >
43
+ <groupId >io.helidon.microprofile</groupId >
44
+ <artifactId >helidon-microprofile-security</artifactId >
45
+ </dependency >
46
+ <dependency >
47
+ <groupId >io.helidon.logging</groupId >
48
+ <artifactId >helidon-logging-jul</artifactId >
49
+ <scope >runtime</scope >
50
+ </dependency >
51
+
52
+ <dependency >
53
+ <groupId >org.junit.jupiter</groupId >
54
+ <artifactId >junit-jupiter-api</artifactId >
55
+ <scope >test</scope >
56
+ </dependency >
57
+ <dependency >
58
+ <groupId >org.hamcrest</groupId >
59
+ <artifactId >hamcrest-all</artifactId >
60
+ <scope >test</scope >
61
+ </dependency >
62
+ <dependency >
63
+ <groupId >io.helidon.microprofile.testing</groupId >
64
+ <artifactId >helidon-microprofile-testing-junit5</artifactId >
65
+ <scope >test</scope >
66
+ </dependency >
67
+ </dependencies >
68
+ </project >
0 commit comments