mirror of https://github.com/jacekkow/keycloak-protocol-cas

Jacek Kowalski
2024-07-16 3458cda2598eaebc3a85211f1f2ea9af8a9014a9
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>
3458cd 25     <version>25.0.0</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>
118ee0 32         <jboss.logging.version>3.5.3.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>
3458cd 35         <resteasy.version>6.2.7.Final</resteasy.version>
7f7e0c 36
MP 37         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
c86251 38         <maven.compiler.release>17</maven.compiler.release>
3458cd 39         <project.build.outputTimestamp>1718009227</project.build.outputTimestamp>
7f7e0c 40     </properties>
MP 41
42     <dependencies>
43         <dependency>
44             <groupId>org.keycloak</groupId>
45             <artifactId>keycloak-core</artifactId>
46             <version>${keycloak.version}</version>
47             <scope>provided</scope>
48         </dependency>
49         <dependency>
50             <groupId>org.keycloak</groupId>
51             <artifactId>keycloak-server-spi</artifactId>
52             <version>${keycloak.version}</version>
53             <scope>provided</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.keycloak</groupId>
57             <artifactId>keycloak-server-spi-private</artifactId>
58             <version>${keycloak.version}</version>
59             <scope>provided</scope>
60         </dependency>
61
8b93a7 62         <dependency>
G 63             <groupId>org.apache.httpcomponents</groupId>
64             <artifactId>httpclient</artifactId>
65             <version>${apache.httpcomponents.version}</version>
66             <scope>provided</scope>
67         </dependency>
7f7e0c 68         <dependency>
3458cd 69             <groupId>org.jboss.resteasy</groupId>
JK 70             <artifactId>resteasy-core-spi</artifactId>
71             <version>${resteasy.version}</version>
72             <scope>provided</scope>
73         </dependency>
74         <dependency>
7f7e0c 75             <groupId>org.jboss.logging</groupId>
MP 76             <artifactId>jboss-logging</artifactId>
77             <version>${jboss.logging.version}</version>
74023a 78             <scope>provided</scope>
7f7e0c 79         </dependency>
MP 80         <dependency>
81             <groupId>org.jboss.logging</groupId>
82             <artifactId>jboss-logging-annotations</artifactId>
83             <version>${jboss.logging.tools.version}</version>
84             <scope>provided</scope>
85         </dependency>
86         <dependency>
87             <groupId>org.jboss.logging</groupId>
88             <artifactId>jboss-logging-processor</artifactId>
89             <version>${jboss.logging.tools.version}</version>
90             <scope>provided</scope>
91             <optional>true</optional>
92         </dependency>
93         <dependency>
94             <groupId>org.keycloak</groupId>
95             <artifactId>keycloak-services</artifactId>
96             <version>${keycloak.version}</version>
97             <scope>provided</scope>
98         </dependency>
99         <dependency>
57a6c1 100             <groupId>org.keycloak</groupId>
MP 101             <artifactId>keycloak-saml-core</artifactId>
102             <version>${keycloak.version}</version>
74023a 103             <scope>provided</scope>
57a6c1 104         </dependency>
118ee0 105
57a6c1 106         <dependency>
7f7e0c 107             <groupId>junit</groupId>
MP 108             <artifactId>junit</artifactId>
109             <version>${junit.version}</version>
110             <scope>test</scope>
111         </dependency>
bce810 112         <dependency>
MP 113             <groupId>org.xmlunit</groupId>
114             <artifactId>xmlunit-core</artifactId>
50f216 115             <version>2.10.0</version>
bce810 116             <scope>test</scope>
MP 117         </dependency>
118         <dependency>
119             <groupId>com.jayway.jsonpath</groupId>
120             <artifactId>json-path</artifactId>
456438 121             <version>2.9.0</version>
bce810 122             <scope>test</scope>
MP 123         </dependency>
33e5bc 124         <dependency>
902b7d 125             <groupId>org.glassfish.jersey.core</groupId>
JK 126             <artifactId>jersey-common</artifactId>
0b18af 127             <version>3.1.7</version>
902b7d 128             <scope>test</scope>
JK 129         </dependency>
130         <dependency>
33e5bc 131             <groupId>org.mockito</groupId>
JK 132             <artifactId>mockito-core</artifactId>
0b18af 133             <version>5.12.0</version>
33e5bc 134             <scope>test</scope>
JK 135         </dependency>
7f7e0c 136     </dependencies>
MP 137     <build>
138         <plugins>
139             <plugin>
140                 <groupId>org.apache.maven.plugins</groupId>
141                 <artifactId>maven-compiler-plugin</artifactId>
b1ec30 142                 <version>3.10.1</version>
7f7e0c 143                 <configuration>
MP 144                     <source>${maven.compiler.source}</source>
145                     <target>${maven.compiler.target}</target>
146                     <compilerArgument>
147                         -AgeneratedTranslationFilesPath=${project.build.directory}/generated-translation-files
148                     </compilerArgument>
149                 </configuration>
150             </plugin>
086235 151             <plugin>
MP 152                 <groupId>org.apache.maven.plugins</groupId>
153                 <artifactId>maven-jar-plugin</artifactId>
b1ec30 154                 <version>3.2.2</version>
086235 155                 <configuration>
MP 156                     <archive>
157                         <manifestEntries>
8b93a7 158                             <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 159                         </manifestEntries>
MP 160                     </archive>
161                 </configuration>
162             </plugin>
7f7e0c 163         </plugins>
MP 164     </build>
165 </project>