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

github-actions
2024-04-17 58117a155fc1e445d252c654a543a841bc9d0674
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>
58117a 25     <version>24.0.3</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>
7f7e0c 35
MP 36         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
c86251 37         <maven.compiler.release>17</maven.compiler.release>
58117a 38         <project.build.outputTimestamp>1713343635</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>
118ee0 98
57a6c1 99         <dependency>
7f7e0c 100             <groupId>junit</groupId>
MP 101             <artifactId>junit</artifactId>
102             <version>${junit.version}</version>
103             <scope>test</scope>
104         </dependency>
bce810 105         <dependency>
MP 106             <groupId>org.xmlunit</groupId>
107             <artifactId>xmlunit-core</artifactId>
be2402 108             <version>2.9.1</version>
bce810 109             <scope>test</scope>
MP 110         </dependency>
111         <dependency>
112             <groupId>com.jayway.jsonpath</groupId>
113             <artifactId>json-path</artifactId>
456438 114             <version>2.9.0</version>
bce810 115             <scope>test</scope>
MP 116         </dependency>
33e5bc 117         <dependency>
902b7d 118             <groupId>org.glassfish.jersey.core</groupId>
JK 119             <artifactId>jersey-common</artifactId>
58117a 120             <version>3.1.6</version>
902b7d 121             <scope>test</scope>
JK 122         </dependency>
123         <dependency>
33e5bc 124             <groupId>org.mockito</groupId>
JK 125             <artifactId>mockito-core</artifactId>
126             <version>5.11.0</version>
127             <scope>test</scope>
128         </dependency>
7f7e0c 129     </dependencies>
MP 130     <build>
131         <plugins>
132             <plugin>
133                 <groupId>org.apache.maven.plugins</groupId>
134                 <artifactId>maven-compiler-plugin</artifactId>
b1ec30 135                 <version>3.10.1</version>
7f7e0c 136                 <configuration>
MP 137                     <source>${maven.compiler.source}</source>
138                     <target>${maven.compiler.target}</target>
139                     <compilerArgument>
140                         -AgeneratedTranslationFilesPath=${project.build.directory}/generated-translation-files
141                     </compilerArgument>
142                 </configuration>
143             </plugin>
086235 144             <plugin>
MP 145                 <groupId>org.apache.maven.plugins</groupId>
146                 <artifactId>maven-jar-plugin</artifactId>
b1ec30 147                 <version>3.2.2</version>
086235 148                 <configuration>
MP 149                     <archive>
150                         <manifestEntries>
8b93a7 151                             <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 152                         </manifestEntries>
MP 153                     </archive>
154                 </configuration>
155             </plugin>
7f7e0c 156         </plugins>
MP 157     </build>
158 </project>