commit | author | age
|
7f7e0c
|
1 |
<?xml version="1.0"?> |
MP |
2 |
<!-- |
|
3 |
~ Copyright 2016 Red Hat, Inc. and/or its affiliates |
|
4 |
~ and other contributors as indicated by the @author tags. |
|
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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
20 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|
21 |
<modelVersion>4.0.0</modelVersion> |
|
22 |
|
|
23 |
<groupId>org.keycloak</groupId> |
|
24 |
<artifactId>keycloak-protocol-cas</artifactId> |
210d1e
|
25 |
<version>23.0.7</version> |
7f7e0c
|
26 |
<name>Keycloak CAS Protocol</name> |
MP |
27 |
<description /> |
|
28 |
|
|
29 |
<properties> |
07e386
|
30 |
<keycloak.version>${project.version}</keycloak.version> |
fdb9f6
|
31 |
<apache.httpcomponents.version>4.5.14</apache.httpcomponents.version> |
JK |
32 |
<jboss.logging.version>3.5.1.Final</jboss.logging.version> |
35acc1
|
33 |
<jboss.logging.tools.version>2.2.1.Final</jboss.logging.tools.version> |
4c82cf
|
34 |
<junit.version>4.13.2</junit.version> |
7f7e0c
|
35 |
|
MP |
36 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
c86251
|
37 |
<maven.compiler.release>17</maven.compiler.release> |
210d1e
|
38 |
<project.build.outputTimestamp>1708678028</project.build.outputTimestamp> |
7f7e0c
|
39 |
</properties> |
MP |
40 |
|
|
41 |
<dependencies> |
|
42 |
<dependency> |
|
43 |
<groupId>org.keycloak</groupId> |
|
44 |
<artifactId>keycloak-core</artifactId> |
|
45 |
<version>${keycloak.version}</version> |
|
46 |
<scope>provided</scope> |
|
47 |
</dependency> |
|
48 |
<dependency> |
|
49 |
<groupId>org.keycloak</groupId> |
|
50 |
<artifactId>keycloak-server-spi</artifactId> |
|
51 |
<version>${keycloak.version}</version> |
|
52 |
<scope>provided</scope> |
|
53 |
</dependency> |
|
54 |
<dependency> |
|
55 |
<groupId>org.keycloak</groupId> |
|
56 |
<artifactId>keycloak-server-spi-private</artifactId> |
|
57 |
<version>${keycloak.version}</version> |
|
58 |
<scope>provided</scope> |
|
59 |
</dependency> |
|
60 |
|
8b93a7
|
61 |
<dependency> |
G |
62 |
<groupId>org.apache.httpcomponents</groupId> |
|
63 |
<artifactId>httpclient</artifactId> |
|
64 |
<version>${apache.httpcomponents.version}</version> |
|
65 |
<scope>provided</scope> |
|
66 |
</dependency> |
7f7e0c
|
67 |
<dependency> |
MP |
68 |
<groupId>org.jboss.logging</groupId> |
|
69 |
<artifactId>jboss-logging</artifactId> |
|
70 |
<version>${jboss.logging.version}</version> |
74023a
|
71 |
<scope>provided</scope> |
7f7e0c
|
72 |
</dependency> |
MP |
73 |
<dependency> |
|
74 |
<groupId>org.jboss.logging</groupId> |
|
75 |
<artifactId>jboss-logging-annotations</artifactId> |
|
76 |
<version>${jboss.logging.tools.version}</version> |
|
77 |
<scope>provided</scope> |
|
78 |
</dependency> |
|
79 |
<dependency> |
|
80 |
<groupId>org.jboss.logging</groupId> |
|
81 |
<artifactId>jboss-logging-processor</artifactId> |
|
82 |
<version>${jboss.logging.tools.version}</version> |
|
83 |
<scope>provided</scope> |
|
84 |
<optional>true</optional> |
|
85 |
</dependency> |
|
86 |
<dependency> |
|
87 |
<groupId>org.keycloak</groupId> |
|
88 |
<artifactId>keycloak-services</artifactId> |
|
89 |
<version>${keycloak.version}</version> |
|
90 |
<scope>provided</scope> |
|
91 |
</dependency> |
|
92 |
<dependency> |
57a6c1
|
93 |
<groupId>org.keycloak</groupId> |
MP |
94 |
<artifactId>keycloak-saml-core</artifactId> |
|
95 |
<version>${keycloak.version}</version> |
74023a
|
96 |
<scope>provided</scope> |
57a6c1
|
97 |
</dependency> |
MP |
98 |
<dependency> |
7f7e0c
|
99 |
<groupId>junit</groupId> |
MP |
100 |
<artifactId>junit</artifactId> |
|
101 |
<version>${junit.version}</version> |
|
102 |
<scope>test</scope> |
|
103 |
</dependency> |
bce810
|
104 |
<dependency> |
MP |
105 |
<groupId>org.xmlunit</groupId> |
|
106 |
<artifactId>xmlunit-core</artifactId> |
be2402
|
107 |
<version>2.9.1</version> |
bce810
|
108 |
<scope>test</scope> |
MP |
109 |
</dependency> |
|
110 |
<dependency> |
|
111 |
<groupId>com.jayway.jsonpath</groupId> |
|
112 |
<artifactId>json-path</artifactId> |
456438
|
113 |
<version>2.9.0</version> |
bce810
|
114 |
<scope>test</scope> |
MP |
115 |
</dependency> |
33e5bc
|
116 |
<dependency> |
JK |
117 |
<groupId>org.mockito</groupId> |
|
118 |
<artifactId>mockito-core</artifactId> |
|
119 |
<version>5.11.0</version> |
|
120 |
<scope>test</scope> |
|
121 |
</dependency> |
7f7e0c
|
122 |
</dependencies> |
MP |
123 |
<build> |
|
124 |
<plugins> |
|
125 |
<plugin> |
|
126 |
<groupId>org.apache.maven.plugins</groupId> |
|
127 |
<artifactId>maven-compiler-plugin</artifactId> |
b1ec30
|
128 |
<version>3.10.1</version> |
7f7e0c
|
129 |
<configuration> |
MP |
130 |
<source>${maven.compiler.source}</source> |
|
131 |
<target>${maven.compiler.target}</target> |
|
132 |
<compilerArgument> |
|
133 |
-AgeneratedTranslationFilesPath=${project.build.directory}/generated-translation-files |
|
134 |
</compilerArgument> |
|
135 |
</configuration> |
|
136 |
</plugin> |
086235
|
137 |
<plugin> |
MP |
138 |
<groupId>org.apache.maven.plugins</groupId> |
|
139 |
<artifactId>maven-jar-plugin</artifactId> |
b1ec30
|
140 |
<version>3.2.2</version> |
086235
|
141 |
<configuration> |
MP |
142 |
<archive> |
|
143 |
<manifestEntries> |
8b93a7
|
144 |
<Dependencies>javax.xml.bind.api,org.keycloak.keycloak-core,org.keycloak.keycloak-server-spi,org.keycloak.keycloak-server-spi-private,org.keycloak.keycloak-services,org.keycloak.keycloak-saml-core,org.keycloak.keycloak-saml-core-public,org.apache.httpcomponents.httpclient</Dependencies> |
086235
|
145 |
</manifestEntries> |
MP |
146 |
</archive> |
|
147 |
</configuration> |
|
148 |
</plugin> |
7f7e0c
|
149 |
</plugins> |
MP |
150 |
</build> |
|
151 |
</project> |