|
1 | | -<!-- |
2 | | -The MIT License |
3 | | -
|
4 | | -Copyright (C) 2012-2020, Fabien Crespel |
5 | | -
|
6 | | -Permission is hereby granted, free of charge, to any person obtaining a copy |
7 | | -of this software and associated documentation files (the "Software"), to deal |
8 | | -in the Software without restriction, including without limitation the rights |
9 | | -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
10 | | -copies of the Software, and to permit persons to whom the Software is |
11 | | -furnished to do so, subject to the following conditions: |
12 | | -
|
13 | | -The above copyright notice and this permission notice shall be included in |
14 | | -all copies or substantial portions of the Software. |
15 | | -
|
16 | | -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
17 | | -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
18 | | -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
19 | | -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
20 | | -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
21 | | -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
22 | | -THE SOFTWARE. |
23 | | ---> |
24 | | - |
25 | | -<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"> |
26 | | - <modelVersion>4.0.0</modelVersion> |
27 | | - |
28 | | - <parent> |
29 | | - <groupId>org.jenkins-ci.plugins</groupId> |
30 | | - <artifactId>plugin</artifactId> |
31 | | - <version>4.12</version> |
32 | | - <relativePath/> |
33 | | - </parent> |
34 | | - |
35 | | - <artifactId>cas-plugin</artifactId> |
36 | | - <version>${revision}${changelist}</version> |
37 | | - <packaging>hpi</packaging> |
38 | | - <name>CAS Plugin</name> |
39 | | - <url>https://github.com/jenkinsci/cas-plugin</url> |
40 | | - |
41 | | - <scm> |
42 | | - <connection>scm:git:ssh://github.com/${gitHubRepo}.git</connection> |
43 | | - < developerConnection>scm:git:ssh:// [email protected]/ ${gitHubRepo}.git</ developerConnection> |
44 | | - <url>https://github.com/${gitHubRepo}</url> |
45 | | - <tag>${scmTag}</tag> |
46 | | - </scm> |
47 | | - |
48 | | - <developers> |
49 | | - <developer> |
50 | | - <id>fcrespel</id> |
51 | | - <name>Fabien Crespel</name> |
52 | | - |
53 | | - </developer> |
54 | | - </developers> |
55 | | - <contributors> |
56 | | - <contributor> |
57 | | - <name>J. David Beutel</name> |
58 | | - <organization>University of Hawaii ITS/MIS</organization> |
59 | | - |
60 | | - </contributor> |
61 | | - <contributor> |
62 | | - <name>Sebastian Sdorra</name> |
63 | | - <organization>TRIOLOGY GmbH</organization> |
64 | | - |
65 | | - </contributor> |
66 | | - </contributors> |
67 | | - |
68 | | - <licenses> |
69 | | - <license> |
70 | | - <name>The MIT License</name> |
71 | | - <url>http://www.opensource.org/licenses/MIT</url> |
72 | | - </license> |
73 | | - </licenses> |
74 | | - |
75 | | - <repositories> |
76 | | - <repository> |
77 | | - <id>repo.jenkins-ci.org</id> |
78 | | - <url>https://repo.jenkins-ci.org/public/</url> |
79 | | - </repository> |
80 | | - </repositories> |
81 | | - <pluginRepositories> |
82 | | - <pluginRepository> |
83 | | - <id>repo.jenkins-ci.org</id> |
84 | | - <url>https://repo.jenkins-ci.org/public/</url> |
85 | | - </pluginRepository> |
86 | | - </pluginRepositories> |
87 | | - |
88 | | - <properties> |
89 | | - <revision>1.5.0</revision> |
90 | | - <changelist>-SNAPSHOT</changelist> |
91 | | - <gitHubRepo>jenkinsci/cas-plugin</gitHubRepo> |
92 | | - <java.level>8</java.level> |
93 | | - <jenkins.version>2.266</jenkins.version> |
94 | | - <cas-client.version>3.6.1</cas-client.version> |
95 | | - <bouncycastle-api.version>2.18</bouncycastle-api.version> |
96 | | - </properties> |
97 | | - |
98 | | - <dependencyManagement> |
99 | | - <dependencies> |
100 | | - <dependency> |
101 | | - <groupId>io.jenkins.tools.bom</groupId> |
102 | | - <artifactId>bom-2.263.x</artifactId> |
103 | | - <version>18</version> |
104 | | - <scope>import</scope> |
105 | | - <type>pom</type> |
106 | | - </dependency> |
107 | | - <dependency> |
108 | | - <groupId>org.jenkins-ci.plugins</groupId> |
109 | | - <artifactId>bouncycastle-api</artifactId> |
110 | | - <version>${bouncycastle-api.version}</version> |
111 | | - </dependency> |
112 | | - <dependency> |
113 | | - <groupId>org.jasig.cas.client</groupId> |
114 | | - <artifactId>cas-client-core</artifactId> |
115 | | - <version>${cas-client.version}</version> |
116 | | - </dependency> |
117 | | - <dependency> |
118 | | - <groupId>org.jasig.cas.client</groupId> |
119 | | - <artifactId>cas-client-support-saml</artifactId> |
120 | | - <version>${cas-client.version}</version> |
121 | | - </dependency> |
122 | | - </dependencies> |
123 | | - </dependencyManagement> |
124 | | - <dependencies> |
125 | | - <dependency> |
126 | | - <groupId>org.jenkins-ci.plugins</groupId> |
127 | | - <artifactId>bouncycastle-api</artifactId> |
128 | | - </dependency> |
129 | | - <dependency> |
130 | | - <groupId>org.jenkins-ci.plugins</groupId> |
131 | | - <artifactId>mailer</artifactId> |
132 | | - </dependency> |
133 | | - <dependency> |
134 | | - <groupId>org.jenkins-ci.plugins</groupId> |
135 | | - <artifactId>script-security</artifactId> |
136 | | - </dependency> |
137 | | - <dependency> |
138 | | - <groupId>org.jasig.cas.client</groupId> |
139 | | - <artifactId>cas-client-support-saml</artifactId> |
140 | | - </dependency> |
141 | | - <dependency> |
142 | | - <groupId>org.springframework.security</groupId> |
143 | | - <artifactId>spring-security-cas</artifactId> |
144 | | - <exclusions> <!-- provided from jenkins-core --> |
145 | | - <exclusion> |
146 | | - <groupId>org.springframework</groupId> |
147 | | - <artifactId>spring-beans</artifactId> |
148 | | - </exclusion> |
149 | | - <exclusion> |
150 | | - <groupId>org.springframework</groupId> |
151 | | - <artifactId>spring-context</artifactId> |
152 | | - </exclusion> |
153 | | - <exclusion> |
154 | | - <groupId>org.springframework</groupId> |
155 | | - <artifactId>spring-core</artifactId> |
156 | | - </exclusion> |
157 | | - <exclusion> |
158 | | - <groupId>org.springframework</groupId> |
159 | | - <artifactId>spring-web</artifactId> |
160 | | - </exclusion> |
161 | | - <exclusion> |
162 | | - <groupId>org.springframework.security</groupId> |
163 | | - <artifactId>spring-security-core</artifactId> |
164 | | - </exclusion> |
165 | | - <exclusion> |
166 | | - <groupId>org.springframework.security</groupId> |
167 | | - <artifactId>spring-security-web</artifactId> |
168 | | - </exclusion> |
169 | | - </exclusions> |
170 | | - </dependency> |
171 | | - </dependencies> |
172 | | - |
173 | | -</project> |
| 1 | +<!-- |
| 2 | +The MIT License |
| 3 | +
|
| 4 | +Copyright (C) 2012-2020, Fabien Crespel |
| 5 | +
|
| 6 | +Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | +of this software and associated documentation files (the "Software"), to deal |
| 8 | +in the Software without restriction, including without limitation the rights |
| 9 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | +copies of the Software, and to permit persons to whom the Software is |
| 11 | +furnished to do so, subject to the following conditions: |
| 12 | +
|
| 13 | +The above copyright notice and this permission notice shall be included in |
| 14 | +all copies or substantial portions of the Software. |
| 15 | +
|
| 16 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 19 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 22 | +THE SOFTWARE. |
| 23 | +--> |
| 24 | + |
| 25 | +<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"> |
| 26 | + <modelVersion>4.0.0</modelVersion> |
| 27 | + |
| 28 | + <parent> |
| 29 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 30 | + <artifactId>plugin</artifactId> |
| 31 | + <version>4.12</version> |
| 32 | + <relativePath /> |
| 33 | + </parent> |
| 34 | + |
| 35 | + <artifactId>cas-plugin</artifactId> |
| 36 | + <version>1.5.0</version> |
| 37 | + <packaging>hpi</packaging> |
| 38 | + <name>CAS Plugin</name> |
| 39 | + <url>https://github.com/jenkinsci/cas-plugin</url> |
| 40 | + |
| 41 | + <scm> |
| 42 | + <connection>scm:git:ssh://github.com/${gitHubRepo}.git</connection> |
| 43 | + < developerConnection>scm:git:ssh:// [email protected]/ ${gitHubRepo}.git</ developerConnection> |
| 44 | + <url>https://github.com/${gitHubRepo}</url> |
| 45 | + <tag>cas-plugin-1.5.0</tag> |
| 46 | + </scm> |
| 47 | + |
| 48 | + <developers> |
| 49 | + <developer> |
| 50 | + <id>fcrespel</id> |
| 51 | + <name>Fabien Crespel</name> |
| 52 | + |
| 53 | + </developer> |
| 54 | + </developers> |
| 55 | + <contributors> |
| 56 | + <contributor> |
| 57 | + <name>J. David Beutel</name> |
| 58 | + <organization>University of Hawaii ITS/MIS</organization> |
| 59 | + |
| 60 | + </contributor> |
| 61 | + <contributor> |
| 62 | + <name>Sebastian Sdorra</name> |
| 63 | + <organization>TRIOLOGY GmbH</organization> |
| 64 | + |
| 65 | + </contributor> |
| 66 | + </contributors> |
| 67 | + |
| 68 | + <licenses> |
| 69 | + <license> |
| 70 | + <name>The MIT License</name> |
| 71 | + <url>http://www.opensource.org/licenses/MIT</url> |
| 72 | + </license> |
| 73 | + </licenses> |
| 74 | + |
| 75 | + <repositories> |
| 76 | + <repository> |
| 77 | + <id>repo.jenkins-ci.org</id> |
| 78 | + <url>https://repo.jenkins-ci.org/public/</url> |
| 79 | + </repository> |
| 80 | + </repositories> |
| 81 | + <pluginRepositories> |
| 82 | + <pluginRepository> |
| 83 | + <id>repo.jenkins-ci.org</id> |
| 84 | + <url>https://repo.jenkins-ci.org/public/</url> |
| 85 | + </pluginRepository> |
| 86 | + </pluginRepositories> |
| 87 | + |
| 88 | + <properties> |
| 89 | + <revision>1.5.0</revision> |
| 90 | + <changelist>-SNAPSHOT</changelist> |
| 91 | + <gitHubRepo>jenkinsci/cas-plugin</gitHubRepo> |
| 92 | + <java.level>8</java.level> |
| 93 | + <jenkins.version>2.266</jenkins.version> |
| 94 | + <cas-client.version>3.6.1</cas-client.version> |
| 95 | + <bouncycastle-api.version>2.18</bouncycastle-api.version> |
| 96 | + </properties> |
| 97 | + |
| 98 | + <dependencyManagement> |
| 99 | + <dependencies> |
| 100 | + <dependency> |
| 101 | + <groupId>io.jenkins.tools.bom</groupId> |
| 102 | + <artifactId>bom-2.263.x</artifactId> |
| 103 | + <version>18</version> |
| 104 | + <scope>import</scope> |
| 105 | + <type>pom</type> |
| 106 | + </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 109 | + <artifactId>bouncycastle-api</artifactId> |
| 110 | + <version>${bouncycastle-api.version}</version> |
| 111 | + </dependency> |
| 112 | + <dependency> |
| 113 | + <groupId>org.jasig.cas.client</groupId> |
| 114 | + <artifactId>cas-client-core</artifactId> |
| 115 | + <version>${cas-client.version}</version> |
| 116 | + </dependency> |
| 117 | + <dependency> |
| 118 | + <groupId>org.jasig.cas.client</groupId> |
| 119 | + <artifactId>cas-client-support-saml</artifactId> |
| 120 | + <version>${cas-client.version}</version> |
| 121 | + </dependency> |
| 122 | + </dependencies> |
| 123 | + </dependencyManagement> |
| 124 | + <dependencies> |
| 125 | + <dependency> |
| 126 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 127 | + <artifactId>bouncycastle-api</artifactId> |
| 128 | + </dependency> |
| 129 | + <dependency> |
| 130 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 131 | + <artifactId>mailer</artifactId> |
| 132 | + </dependency> |
| 133 | + <dependency> |
| 134 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 135 | + <artifactId>script-security</artifactId> |
| 136 | + </dependency> |
| 137 | + <dependency> |
| 138 | + <groupId>org.jasig.cas.client</groupId> |
| 139 | + <artifactId>cas-client-support-saml</artifactId> |
| 140 | + </dependency> |
| 141 | + <dependency> |
| 142 | + <groupId>org.springframework.security</groupId> |
| 143 | + <artifactId>spring-security-cas</artifactId> |
| 144 | + <exclusions> <!-- provided from jenkins-core --> |
| 145 | + <exclusion> |
| 146 | + <groupId>org.springframework</groupId> |
| 147 | + <artifactId>spring-beans</artifactId> |
| 148 | + </exclusion> |
| 149 | + <exclusion> |
| 150 | + <groupId>org.springframework</groupId> |
| 151 | + <artifactId>spring-context</artifactId> |
| 152 | + </exclusion> |
| 153 | + <exclusion> |
| 154 | + <groupId>org.springframework</groupId> |
| 155 | + <artifactId>spring-core</artifactId> |
| 156 | + </exclusion> |
| 157 | + <exclusion> |
| 158 | + <groupId>org.springframework</groupId> |
| 159 | + <artifactId>spring-web</artifactId> |
| 160 | + </exclusion> |
| 161 | + <exclusion> |
| 162 | + <groupId>org.springframework.security</groupId> |
| 163 | + <artifactId>spring-security-core</artifactId> |
| 164 | + </exclusion> |
| 165 | + <exclusion> |
| 166 | + <groupId>org.springframework.security</groupId> |
| 167 | + <artifactId>spring-security-web</artifactId> |
| 168 | + </exclusion> |
| 169 | + </exclusions> |
| 170 | + </dependency> |
| 171 | + </dependencies> |
| 172 | + |
| 173 | +</project> |
0 commit comments