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

Matthias Piepkorn
2017-11-14 8352fb1726e5efab21531bc0b15df784dc5ae0df
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>
8352fb 25     <version>2.1.0</version>
7f7e0c 26     <name>Keycloak CAS Protocol</name>
MP 27     <description />
28
29     <properties>
f75caf 30         <keycloak.version>3.2.0.Final</keycloak.version>
7f7e0c 31         <jboss.logging.version>3.3.0.Final</jboss.logging.version>
MP 32         <jboss.logging.tools.version>2.0.1.Final</jboss.logging.tools.version>
33         <junit.version>4.12</junit.version>
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>
64         </dependency>
65         <dependency>
66             <groupId>org.jboss.logging</groupId>
67             <artifactId>jboss-logging-annotations</artifactId>
68             <version>${jboss.logging.tools.version}</version>
69             <scope>provided</scope>
70         </dependency>
71         <dependency>
72             <groupId>org.jboss.logging</groupId>
73             <artifactId>jboss-logging-processor</artifactId>
74             <version>${jboss.logging.tools.version}</version>
75             <scope>provided</scope>
76             <optional>true</optional>
77         </dependency>
78         <dependency>
79             <groupId>org.keycloak</groupId>
80             <artifactId>keycloak-services</artifactId>
81             <version>${keycloak.version}</version>
82             <scope>provided</scope>
83         </dependency>
84         <dependency>
57a6c1 85             <groupId>org.keycloak</groupId>
MP 86             <artifactId>keycloak-saml-core</artifactId>
87             <version>${keycloak.version}</version>
88             <scope>provided</scope>
89         </dependency>
90         <dependency>
7f7e0c 91             <groupId>junit</groupId>
MP 92             <artifactId>junit</artifactId>
93             <version>${junit.version}</version>
94             <scope>test</scope>
95         </dependency>
bce810 96         <dependency>
MP 97             <groupId>org.xmlunit</groupId>
98             <artifactId>xmlunit-core</artifactId>
99             <version>2.3.0</version>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>com.jayway.jsonpath</groupId>
104             <artifactId>json-path</artifactId>
105             <version>2.2.0</version>
106             <scope>test</scope>
107         </dependency>
7f7e0c 108     </dependencies>
MP 109     <build>
110         <plugins>
111             <plugin>
112                 <groupId>org.apache.maven.plugins</groupId>
113                 <artifactId>maven-compiler-plugin</artifactId>
114                 <version>3.1</version>
115                 <configuration>
116                     <source>${maven.compiler.source}</source>
117                     <target>${maven.compiler.target}</target>
118                     <compilerArgument>
119                         -AgeneratedTranslationFilesPath=${project.build.directory}/generated-translation-files
120                     </compilerArgument>
121                 </configuration>
122             </plugin>
086235 123             <plugin>
MP 124                 <groupId>org.apache.maven.plugins</groupId>
125                 <artifactId>maven-jar-plugin</artifactId>
126                 <configuration>
127                     <archive>
128                         <manifestEntries>
6580a6 129                             <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 130                         </manifestEntries>
MP 131                     </archive>
132                 </configuration>
133             </plugin>
7f7e0c 134         </plugins>
MP 135     </build>
136 </project>