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

Updater Bot
2020-03-25 fca7b4d14404bed7d277c1083f17e9ff7bf1b826
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>
fca7b4 25     <version>9.0.2</version>
7f7e0c 26     <name>Keycloak CAS Protocol</name>
MP 27     <description />
28
29     <properties>
07e386 30         <keycloak.version>${project.version}</keycloak.version>
MP 31         <jboss.logging.version>3.3.2.Final</jboss.logging.version>
32         <jboss.logging.tools.version>2.1.0.Final</jboss.logging.tools.version>
7f7e0c 33         <junit.version>4.12</junit.version>
MP 34
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>
38     </properties>
39
40     <dependencies>
41         <dependency>
42             <groupId>org.keycloak</groupId>
43             <artifactId>keycloak-core</artifactId>
44             <version>${keycloak.version}</version>
45             <scope>provided</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.keycloak</groupId>
49             <artifactId>keycloak-server-spi</artifactId>
50             <version>${keycloak.version}</version>
51             <scope>provided</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.keycloak</groupId>
55             <artifactId>keycloak-server-spi-private</artifactId>
56             <version>${keycloak.version}</version>
57             <scope>provided</scope>
58         </dependency>
59
60         <dependency>
61             <groupId>org.jboss.logging</groupId>
62             <artifactId>jboss-logging</artifactId>
63             <version>${jboss.logging.version}</version>
74023a 64             <scope>provided</scope>
7f7e0c 65         </dependency>
MP 66         <dependency>
67             <groupId>org.jboss.logging</groupId>
68             <artifactId>jboss-logging-annotations</artifactId>
69             <version>${jboss.logging.tools.version}</version>
70             <scope>provided</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.jboss.logging</groupId>
74             <artifactId>jboss-logging-processor</artifactId>
75             <version>${jboss.logging.tools.version}</version>
76             <scope>provided</scope>
77             <optional>true</optional>
78         </dependency>
79         <dependency>
80             <groupId>org.keycloak</groupId>
81             <artifactId>keycloak-services</artifactId>
82             <version>${keycloak.version}</version>
83             <scope>provided</scope>
84         </dependency>
85         <dependency>
57a6c1 86             <groupId>org.keycloak</groupId>
MP 87             <artifactId>keycloak-saml-core</artifactId>
88             <version>${keycloak.version}</version>
74023a 89             <scope>provided</scope>
57a6c1 90         </dependency>
MP 91         <dependency>
7f7e0c 92             <groupId>junit</groupId>
MP 93             <artifactId>junit</artifactId>
94             <version>${junit.version}</version>
95             <scope>test</scope>
96         </dependency>
bce810 97         <dependency>
MP 98             <groupId>org.xmlunit</groupId>
99             <artifactId>xmlunit-core</artifactId>
100             <version>2.3.0</version>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>com.jayway.jsonpath</groupId>
105             <artifactId>json-path</artifactId>
106             <version>2.2.0</version>
107             <scope>test</scope>
108         </dependency>
7f7e0c 109     </dependencies>
MP 110     <build>
111         <plugins>
112             <plugin>
113                 <groupId>org.apache.maven.plugins</groupId>
114                 <artifactId>maven-compiler-plugin</artifactId>
74023a 115                 <version>3.8.0</version>
7f7e0c 116                 <configuration>
MP 117                     <source>${maven.compiler.source}</source>
118                     <target>${maven.compiler.target}</target>
119                     <compilerArgument>
120                         -AgeneratedTranslationFilesPath=${project.build.directory}/generated-translation-files
121                     </compilerArgument>
122                 </configuration>
123             </plugin>
086235 124             <plugin>
MP 125                 <groupId>org.apache.maven.plugins</groupId>
126                 <artifactId>maven-jar-plugin</artifactId>
07e386 127                 <version>3.1.1</version>
086235 128                 <configuration>
MP 129                     <archive>
130                         <manifestEntries>
74023a 131                             <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 132                         </manifestEntries>
MP 133                     </archive>
134                 </configuration>
135             </plugin>
7f7e0c 136         </plugins>
MP 137     </build>
138 </project>