| <?xml version="1.0"?> | 
| <!-- | 
|   ~ Copyright 2016 Red Hat, Inc. and/or its affiliates | 
|   ~ and other contributors as indicated by the @author tags. | 
|   ~ | 
|   ~ Licensed under the Apache License, Version 2.0 (the "License"); | 
|   ~ you may not use this file except in compliance with the License. | 
|   ~ You may obtain a copy of the License at | 
|   ~ | 
|   ~ http://www.apache.org/licenses/LICENSE-2.0 | 
|   ~ | 
|   ~ Unless required by applicable law or agreed to in writing, software | 
|   ~ distributed under the License is distributed on an "AS IS" BASIS, | 
|   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|   ~ See the License for the specific language governing permissions and | 
|   ~ limitations under the License. | 
|   --> | 
|   | 
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 
|         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | 
|     <modelVersion>4.0.0</modelVersion> | 
|   | 
|     <groupId>org.keycloak</groupId> | 
|     <artifactId>keycloak-protocol-cas</artifactId> | 
|     <version>26.4.1</version> | 
|     <name>Keycloak CAS Protocol</name> | 
|     <description /> | 
|   | 
|     <properties> | 
|         <keycloak.version>${project.version}</keycloak.version> | 
|         <apache.httpcomponents.version>4.5.14</apache.httpcomponents.version> | 
|         <jboss.logging.version>3.6.1.Final</jboss.logging.version> | 
|         <jboss.logging.tools.version>3.0.4.Final</jboss.logging.tools.version> | 
|         <junit.version>4.13.2</junit.version> | 
|         <resteasy.version>6.2.12.Final</resteasy.version> | 
|   | 
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
|         <maven.compiler.release>17</maven.compiler.release> | 
|         <project.build.outputTimestamp>1760604855</project.build.outputTimestamp> | 
|     </properties> | 
|   | 
|     <dependencies> | 
|         <dependency> | 
|             <groupId>org.keycloak</groupId> | 
|             <artifactId>keycloak-core</artifactId> | 
|             <version>${keycloak.version}</version> | 
|             <scope>provided</scope> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>org.keycloak</groupId> | 
|             <artifactId>keycloak-server-spi</artifactId> | 
|             <version>${keycloak.version}</version> | 
|             <scope>provided</scope> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>org.keycloak</groupId> | 
|             <artifactId>keycloak-server-spi-private</artifactId> | 
|             <version>${keycloak.version}</version> | 
|             <scope>provided</scope> | 
|         </dependency> | 
|   | 
|         <dependency> | 
|             <groupId>org.apache.httpcomponents</groupId> | 
|             <artifactId>httpclient</artifactId> | 
|             <version>${apache.httpcomponents.version}</version> | 
|             <scope>provided</scope> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>org.jboss.resteasy</groupId> | 
|             <artifactId>resteasy-core-spi</artifactId> | 
|             <version>${resteasy.version}</version> | 
|             <scope>provided</scope> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>org.jboss.logging</groupId> | 
|             <artifactId>jboss-logging</artifactId> | 
|             <version>${jboss.logging.version}</version> | 
|             <scope>provided</scope> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>org.jboss.logging</groupId> | 
|             <artifactId>jboss-logging-annotations</artifactId> | 
|             <version>${jboss.logging.tools.version}</version> | 
|             <scope>provided</scope> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>org.jboss.logging</groupId> | 
|             <artifactId>jboss-logging-processor</artifactId> | 
|             <version>${jboss.logging.tools.version}</version> | 
|             <scope>provided</scope> | 
|             <optional>true</optional> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>org.keycloak</groupId> | 
|             <artifactId>keycloak-services</artifactId> | 
|             <version>${keycloak.version}</version> | 
|             <scope>provided</scope> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>org.keycloak</groupId> | 
|             <artifactId>keycloak-saml-core</artifactId> | 
|             <version>${keycloak.version}</version> | 
|             <scope>provided</scope> | 
|         </dependency> | 
|   | 
|         <dependency> | 
|             <groupId>junit</groupId> | 
|             <artifactId>junit</artifactId> | 
|             <version>${junit.version}</version> | 
|             <scope>test</scope> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>org.xmlunit</groupId> | 
|             <artifactId>xmlunit-core</artifactId> | 
|             <version>2.10.4</version> | 
|             <scope>test</scope> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>com.jayway.jsonpath</groupId> | 
|             <artifactId>json-path</artifactId> | 
|             <version>2.9.0</version> | 
|             <scope>test</scope> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>org.glassfish.jersey.core</groupId> | 
|             <artifactId>jersey-common</artifactId> | 
|             <version>3.1.11</version> | 
|             <scope>test</scope> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>org.mockito</groupId> | 
|             <artifactId>mockito-core</artifactId> | 
|             <version>5.20.0</version> | 
|             <scope>test</scope> | 
|         </dependency> | 
|     </dependencies> | 
|     <build> | 
|         <plugins> | 
|             <plugin> | 
|                 <groupId>org.apache.maven.plugins</groupId> | 
|                 <artifactId>maven-compiler-plugin</artifactId> | 
|                 <version>3.10.1</version> | 
|                 <configuration> | 
|                     <source>${maven.compiler.source}</source> | 
|                     <target>${maven.compiler.target}</target> | 
|                     <compilerArgument> | 
|                         -AgeneratedTranslationFilesPath=${project.build.directory}/generated-translation-files | 
|                     </compilerArgument> | 
|                 </configuration> | 
|             </plugin> | 
|             <plugin> | 
|                 <groupId>org.apache.maven.plugins</groupId> | 
|                 <artifactId>maven-jar-plugin</artifactId> | 
|                 <version>3.2.2</version> | 
|                 <configuration> | 
|                     <archive> | 
|                         <manifestEntries> | 
|                             <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> | 
|                         </manifestEntries> | 
|                     </archive> | 
|                 </configuration> | 
|             </plugin> | 
|         </plugins> | 
|     </build> | 
| </project> |