|
1 |
| -<!-- |
2 |
| -
|
3 |
| - Licensed to Apereo under one or more contributor license |
4 |
| - agreements. See the NOTICE file distributed with this work |
5 |
| - for additional information regarding copyright ownership. |
6 |
| - Apereo licenses this file to you under the Apache License, |
7 |
| - Version 2.0 (the "License"); you may not use this file |
8 |
| - except in compliance with the License. You may obtain a |
9 |
| - copy of the License at the following location: |
10 |
| -
|
11 |
| - http://www.apache.org/licenses/LICENSE-2.0 |
12 |
| -
|
13 |
| - Unless required by applicable law or agreed to in writing, |
14 |
| - software distributed under the License is distributed on an |
15 |
| - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
16 |
| - KIND, either express or implied. See the License for the |
17 |
| - specific language governing permissions and limitations |
18 |
| - under the License. |
19 |
| -
|
20 |
| ---> |
21 |
| -<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
22 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
23 |
| - <parent> |
24 |
| - <groupId>org.apereo.cas.client</groupId> |
25 |
| - <version>4.0.0-SNAPSHOT</version> |
26 |
| - <artifactId>cas-client</artifactId> |
27 |
| - </parent> |
28 |
| - <modelVersion>4.0.0</modelVersion> |
29 |
| - <artifactId>cas-client-core</artifactId> |
30 |
| - <packaging>jar</packaging> |
31 |
| - <name>Apereo CAS Client for Java - Core</name> |
32 |
| - |
33 |
| - <build> |
34 |
| - <plugins> |
35 |
| - <plugin> |
36 |
| - <groupId>org.apache.maven.plugins</groupId> |
37 |
| - <artifactId>maven-jar-plugin</artifactId> |
38 |
| - <version>3.3.0</version> |
39 |
| - <executions> |
40 |
| - <execution> |
41 |
| - <goals> |
42 |
| - <goal>test-jar</goal> |
43 |
| - </goals> |
44 |
| - </execution> |
45 |
| - </executions> |
46 |
| - </plugin> |
47 |
| - </plugins> |
48 |
| - </build> |
49 |
| - |
50 |
| - <dependencies> |
51 |
| - <dependency> |
52 |
| - <groupId>xml-security</groupId> |
53 |
| - <artifactId>xmlsec</artifactId> |
54 |
| - <version>${xmlsec.version}</version> |
55 |
| - <scope>runtime</scope> |
56 |
| - <optional>true</optional> |
57 |
| - </dependency> |
58 |
| - |
59 |
| - <dependency> |
60 |
| - <groupId>com.fasterxml.jackson.core</groupId> |
61 |
| - <artifactId>jackson-databind</artifactId> |
62 |
| - </dependency> |
63 |
| - |
64 |
| - <dependency> |
65 |
| - <groupId>org.springframework</groupId> |
66 |
| - <artifactId>spring-beans</artifactId> |
67 |
| - <version>${spring.version}</version> |
68 |
| - <scope>provided</scope> |
69 |
| - </dependency> |
70 |
| - |
71 |
| - <dependency> |
72 |
| - <groupId>org.springframework</groupId> |
73 |
| - <artifactId>spring-web</artifactId> |
74 |
| - <scope>provided</scope> |
75 |
| - </dependency> |
76 |
| - |
77 |
| - <dependency> |
78 |
| - <groupId>org.springframework</groupId> |
79 |
| - <artifactId>spring-test</artifactId> |
80 |
| - <scope>test</scope> |
81 |
| - </dependency> |
82 |
| - |
83 |
| - <dependency> |
84 |
| - <groupId>org.springframework</groupId> |
85 |
| - <artifactId>spring-core</artifactId> |
86 |
| - <scope>test</scope> |
87 |
| - </dependency> |
88 |
| - |
89 |
| - <dependency> |
90 |
| - <groupId>org.springframework</groupId> |
91 |
| - <artifactId>spring-context</artifactId> |
92 |
| - <scope>test</scope> |
93 |
| - </dependency> |
94 |
| - |
95 |
| - <dependency> |
96 |
| - <groupId>log4j</groupId> |
97 |
| - <artifactId>log4j</artifactId> |
98 |
| - <scope>test</scope> |
99 |
| - </dependency> |
100 |
| - </dependencies> |
101 |
| - |
102 |
| -</project> |
| 1 | +<!-- |
| 2 | +
|
| 3 | + Licensed to Apereo under one or more contributor license |
| 4 | + agreements. See the NOTICE file distributed with this work |
| 5 | + for additional information regarding copyright ownership. |
| 6 | + Apereo licenses this file to you under the Apache License, |
| 7 | + Version 2.0 (the "License"); you may not use this file |
| 8 | + except in compliance with the License. You may obtain a |
| 9 | + copy of the License at the following location: |
| 10 | +
|
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +
|
| 13 | + Unless required by applicable law or agreed to in writing, |
| 14 | + software distributed under the License is distributed on an |
| 15 | + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | + KIND, either express or implied. See the License for the |
| 17 | + specific language governing permissions and limitations |
| 18 | + under the License. |
| 19 | +
|
| 20 | +--> |
| 21 | +<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"> |
| 22 | + <parent> |
| 23 | + <groupId>org.apereo.cas.client</groupId> |
| 24 | + <version>4.0.0-RC1</version> |
| 25 | + <artifactId>cas-client</artifactId> |
| 26 | + </parent> |
| 27 | + <modelVersion>4.0.0</modelVersion> |
| 28 | + <artifactId>cas-client-core</artifactId> |
| 29 | + <packaging>jar</packaging> |
| 30 | + <name>Apereo CAS Client for Java - Core</name> |
| 31 | + |
| 32 | + <build> |
| 33 | + <plugins> |
| 34 | + <plugin> |
| 35 | + <groupId>org.apache.maven.plugins</groupId> |
| 36 | + <artifactId>maven-jar-plugin</artifactId> |
| 37 | + <version>3.3.0</version> |
| 38 | + <executions> |
| 39 | + <execution> |
| 40 | + <goals> |
| 41 | + <goal>test-jar</goal> |
| 42 | + </goals> |
| 43 | + </execution> |
| 44 | + </executions> |
| 45 | + </plugin> |
| 46 | + </plugins> |
| 47 | + </build> |
| 48 | + |
| 49 | + <dependencies> |
| 50 | + <dependency> |
| 51 | + <groupId>xml-security</groupId> |
| 52 | + <artifactId>xmlsec</artifactId> |
| 53 | + <version>${xmlsec.version}</version> |
| 54 | + <scope>runtime</scope> |
| 55 | + <optional>true</optional> |
| 56 | + </dependency> |
| 57 | + |
| 58 | + <dependency> |
| 59 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 60 | + <artifactId>jackson-databind</artifactId> |
| 61 | + </dependency> |
| 62 | + |
| 63 | + <dependency> |
| 64 | + <groupId>org.springframework</groupId> |
| 65 | + <artifactId>spring-beans</artifactId> |
| 66 | + <version>${spring.version}</version> |
| 67 | + <scope>provided</scope> |
| 68 | + </dependency> |
| 69 | + |
| 70 | + <dependency> |
| 71 | + <groupId>org.springframework</groupId> |
| 72 | + <artifactId>spring-web</artifactId> |
| 73 | + <scope>provided</scope> |
| 74 | + </dependency> |
| 75 | + |
| 76 | + <dependency> |
| 77 | + <groupId>org.springframework</groupId> |
| 78 | + <artifactId>spring-test</artifactId> |
| 79 | + <scope>test</scope> |
| 80 | + </dependency> |
| 81 | + |
| 82 | + <dependency> |
| 83 | + <groupId>org.springframework</groupId> |
| 84 | + <artifactId>spring-core</artifactId> |
| 85 | + <scope>test</scope> |
| 86 | + </dependency> |
| 87 | + |
| 88 | + <dependency> |
| 89 | + <groupId>org.springframework</groupId> |
| 90 | + <artifactId>spring-context</artifactId> |
| 91 | + <scope>test</scope> |
| 92 | + </dependency> |
| 93 | + |
| 94 | + <dependency> |
| 95 | + <groupId>log4j</groupId> |
| 96 | + <artifactId>log4j</artifactId> |
| 97 | + <scope>test</scope> |
| 98 | + </dependency> |
| 99 | + </dependencies> |
| 100 | + |
| 101 | +</project> |
0 commit comments