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

Jacek Kowalski
2022-06-27 479960d1eb936460b97ae2f8df21c536590ff08a
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>
c41509 25     <version>18.0.2</version>
7f7e0c 26     <name>Keycloak CAS Protocol</name>
MP 27     <description />
28
29     <properties>
07e386 30         <keycloak.version>${project.version}</keycloak.version>
9e4259 31         <jboss.logging.version>3.4.1.Final</jboss.logging.version>
35acc1 32         <jboss.logging.tools.version>2.2.1.Final</jboss.logging.tools.version>
4c82cf 33         <junit.version>4.13.2</junit.version>
7f7e0c 34
MP 35         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36         <maven.compiler.target>1.8</maven.compiler.target>
37         <maven.compiler.source>1.8</maven.compiler.source>
479960 38         <project.build.outputTimestamp>1656367890</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
61         <dependency>
62             <groupId>org.jboss.logging</groupId>
63             <artifactId>jboss-logging</artifactId>
64             <version>${jboss.logging.version}</version>
74023a 65             <scope>provided</scope>
7f7e0c 66         </dependency>
MP 67         <dependency>
68             <groupId>org.jboss.logging</groupId>
69             <artifactId>jboss-logging-annotations</artifactId>
70             <version>${jboss.logging.tools.version}</version>
71             <scope>provided</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.jboss.logging</groupId>
75             <artifactId>jboss-logging-processor</artifactId>
76             <version>${jboss.logging.tools.version}</version>
77             <scope>provided</scope>
78             <optional>true</optional>
79         </dependency>
80         <dependency>
81             <groupId>org.keycloak</groupId>
82             <artifactId>keycloak-services</artifactId>
83             <version>${keycloak.version}</version>
84             <scope>provided</scope>
85         </dependency>
86         <dependency>
57a6c1 87             <groupId>org.keycloak</groupId>
MP 88             <artifactId>keycloak-saml-core</artifactId>
89             <version>${keycloak.version}</version>
74023a 90             <scope>provided</scope>
57a6c1 91         </dependency>
MP 92         <dependency>
7f7e0c 93             <groupId>junit</groupId>
MP 94             <artifactId>junit</artifactId>
95             <version>${junit.version}</version>
96             <scope>test</scope>
97         </dependency>
bce810 98         <dependency>
MP 99             <groupId>org.xmlunit</groupId>
100             <artifactId>xmlunit-core</artifactId>
f4c9ba 101             <version>2.9.0</version>
bce810 102             <scope>test</scope>
MP 103         </dependency>
104         <dependency>
105             <groupId>com.jayway.jsonpath</groupId>
106             <artifactId>json-path</artifactId>
9e4259 107             <version>2.7.0</version>
bce810 108             <scope>test</scope>
MP 109         </dependency>
7f7e0c 110     </dependencies>
MP 111     <build>
112         <plugins>
113             <plugin>
114                 <groupId>org.apache.maven.plugins</groupId>
115                 <artifactId>maven-compiler-plugin</artifactId>
b1ec30 116                 <version>3.10.1</version>
7f7e0c 117                 <configuration>
MP 118                     <source>${maven.compiler.source}</source>
119                     <target>${maven.compiler.target}</target>
120                     <compilerArgument>
121                         -AgeneratedTranslationFilesPath=${project.build.directory}/generated-translation-files
122                     </compilerArgument>
123                 </configuration>
124             </plugin>
086235 125             <plugin>
MP 126                 <groupId>org.apache.maven.plugins</groupId>
127                 <artifactId>maven-jar-plugin</artifactId>
b1ec30 128                 <version>3.2.2</version>
086235 129                 <configuration>
MP 130                     <archive>
131                         <manifestEntries>
74023a 132                             <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</Dependencies>
086235 133                         </manifestEntries>
MP 134                     </archive>
135                 </configuration>
136             </plugin>
7f7e0c 137         </plugins>
MP 138     </build>
139 </project>