|
81 | 81 | <name>Jeff Williams</name> |
82 | 82 | <organization>Aspect Security</organization> |
83 | 83 | <roles> |
84 | | - <role>Project Owner</role> |
85 | | - <role>Architect</role> |
86 | | - <role>Developer</role> |
87 | | - </roles> |
88 | | - </developer> |
89 | | - <developer> |
90 | | - <name>Jim Manico</name> |
91 | | - <roles> |
92 | | - <role>Project Manager</role> |
93 | | - <role>BuildMaster</role> |
94 | | - <role>Developer</role> |
95 | | - <role>Architect</role> |
| 84 | + <role>Project Inventor</role> |
96 | 85 | </roles> |
97 | 86 | </developer> |
98 | 87 | <developer> |
99 | 88 | <name>Chris Schmidt</name> |
100 | 89 | <organization>Aspect Security</organization> |
101 | 90 | <roles> |
102 | | - <role>Project Manager</role> |
103 | | - <role>Continuous Integration Admin</role> |
104 | | - <role>Architect</role> |
105 | | - <role>Developer</role> |
| 91 | + <role>Project Owner</role> |
106 | 92 | </roles> |
107 | 93 | </developer> |
108 | 94 | <developer> |
109 | 95 | <name>Kevin W. Wall</name> |
110 | 96 | <organization>Wells Fargo</organization> |
111 | 97 | <roles> |
112 | 98 | <role>Project Manager</role> |
113 | | - <role>Architect</role> |
114 | | - <role>Developer</role> |
115 | | - <role>Crypto Guy</role> |
116 | 99 | </roles> |
117 | 100 | </developer> |
118 | 101 | </developers> |
|
121 | 104 | <contributor> |
122 | 105 | <name>Dave Wichers</name> |
123 | 106 | <organization>Aspect Security</organization> |
124 | | - <roles> |
125 | | - <role>Documentation and Examples</role> |
126 | | - <role>Minor Code Contributions</role> |
127 | | - <role>Project Guidance</role> |
128 | | - </roles> |
| 107 | + </contributor> |
| 108 | + <contributor> |
| 109 | + <name>Jim Manico</name> |
129 | 110 | </contributor> |
130 | 111 | </contributors> |
131 | 112 |
|
|
137 | 118 | <dependency> |
138 | 119 | <groupId>commons-configuration</groupId> |
139 | 120 | <artifactId>commons-configuration</artifactId> |
140 | | - <version>1.5</version> |
| 121 | + <version>1.10</version> |
141 | 122 | </dependency> |
142 | 123 | <dependency> |
143 | 124 | <groupId>commons-beanutils</groupId> |
144 | 125 | <artifactId>commons-beanutils-core</artifactId> |
145 | | - <version>1.7.0</version> |
| 126 | + <version>1.8.3</version> |
146 | 127 | </dependency> |
147 | 128 | <dependency> |
148 | 129 | <groupId>junit</groupId> |
149 | 130 | <artifactId>junit</artifactId> |
150 | | - <version>4.4</version> |
| 131 | + <version>4.5</version> |
151 | 132 | <scope>test</scope> |
152 | 133 | </dependency> |
153 | 134 | <dependency> |
154 | 135 | <groupId>javax.servlet</groupId> |
155 | 136 | <artifactId>servlet-api</artifactId> |
156 | | - <version>2.4</version> |
| 137 | + <version>2.5</version> |
157 | 138 | <scope>provided</scope> |
158 | 139 | </dependency> |
159 | 140 | <dependency> |
|
165 | 146 | <dependency> |
166 | 147 | <groupId>commons-fileupload</groupId> |
167 | 148 | <artifactId>commons-fileupload</artifactId> |
168 | | - <version>1.2</version> |
| 149 | + <version>1.3.1</version> |
169 | 150 | <scope>compile</scope> |
170 | 151 | </dependency> |
171 | | - <!-- unused according to dependancy:analyze |
172 | | - this is a optional dependency of commons-fileupload which |
173 | | - is at least needed for testing... |
174 | | - --> |
175 | 152 | <dependency> |
176 | 153 | <groupId>commons-io</groupId> |
177 | 154 | <artifactId>commons-io</artifactId> |
178 | | - <version>1.3</version> |
| 155 | + <version>2.4</version> |
179 | 156 | <scope>test</scope> |
180 | 157 | </dependency> |
181 | 158 | <dependency> |
182 | 159 | <groupId>commons-collections</groupId> |
183 | 160 | <artifactId>commons-collections</artifactId> |
184 | | - <version>3.2</version> |
| 161 | + <version>3.2.1</version> |
185 | 162 | <scope>compile</scope> |
186 | 163 | </dependency> |
187 | 164 | <dependency> |
|
204 | 181 | <dependency> |
205 | 182 | <groupId>org.owasp.antisamy</groupId> |
206 | 183 | <artifactId>antisamy</artifactId> |
207 | | - <version>1.4.3</version> |
| 184 | + <version>1.5.3</version> |
208 | 185 | </dependency> |
209 | 186 | </dependencies> |
210 | 187 |
|
211 | 188 | <build> |
212 | 189 | <plugins> |
213 | 190 | <plugin> |
214 | 191 | <artifactId>maven-compiler-plugin</artifactId> |
215 | | - <version>2.3.2</version> |
| 192 | + <version>3.1</version> |
216 | 193 | <configuration> |
217 | | - <source>1.5</source> |
218 | | - <target>1.5</target> |
| 194 | + <source>1.6</source> |
| 195 | + <target>1.6</target> |
219 | 196 | <debug>true</debug> |
220 | 197 | <showWarnings>true</showWarnings> |
221 | 198 | <showDeprecation>false</showDeprecation> |
|
225 | 202 | <plugin> |
226 | 203 | <groupId>org.apache.maven.plugins</groupId> |
227 | 204 | <artifactId>maven-eclipse-plugin</artifactId> |
228 | | - <version>2.8</version> |
| 205 | + <version>2.9</version> |
229 | 206 | <configuration> |
230 | 207 | <downloadSources>true</downloadSources> |
231 | 208 | </configuration> |
232 | 209 | </plugin> |
233 | 210 |
|
234 | 211 | <plugin> |
235 | 212 | <artifactId>maven-jar-plugin</artifactId> |
236 | | - <version>2.3.1</version> |
| 213 | + <version>2.4</version> |
237 | 214 | <configuration> |
238 | 215 | <archive> |
239 | 216 | <manifest> |
|
245 | 222 | </plugin> |
246 | 223 |
|
247 | 224 | <!-- Check for updates to dependencies and report on them. --> |
248 | | -<!-- |
249 | 225 | <plugin> |
250 | 226 | <groupId>org.codehaus.mojo</groupId> |
251 | 227 | <artifactId>versions-maven-plugin</artifactId> |
252 | | - <version>1.2</version> |
| 228 | + <version>2.1</version> |
253 | 229 | <executions> |
254 | 230 | <execution> |
255 | 231 | <id>check-for-dependency-updates</id> |
256 | | - <phase>compile</phase> <!– Eclipse q4e plugin needs this –> |
| 232 | + <phase>compile</phase> <!-- Eclipse q4e plugin needs this --> |
257 | 233 | <goals> |
258 | 234 | <goal>display-dependency-updates</goal> |
259 | 235 | <goal>display-plugin-updates</goal> |
260 | | - <goal>display-property-updates</goal> |
| 236 | + <!--<goal>display-property-updates</goal>--> |
261 | 237 | </goals> |
262 | 238 | </execution> |
263 | 239 | </executions> |
264 | 240 | </plugin> |
265 | | ---> |
| 241 | + |
266 | 242 | </plugins> |
267 | 243 | </build> |
268 | 244 |
|
|
271 | 247 | <plugin> |
272 | 248 | <groupId>org.codehaus.mojo</groupId> |
273 | 249 | <artifactId>findbugs-maven-plugin</artifactId> |
274 | | - <version>2.3.1</version> |
| 250 | + <version>2.5.3</version> |
275 | 251 | <configuration> |
276 | 252 | <findbugsXmlOutput>true</findbugsXmlOutput> |
277 | 253 | <findbugsXmlWithMessages>true</findbugsXmlWithMessages> |
|
284 | 260 | <plugin> |
285 | 261 | <groupId>org.codehaus.mojo</groupId> |
286 | 262 | <artifactId>cobertura-maven-plugin</artifactId> |
287 | | - <version>2.4</version> |
| 263 | + <version>2.6</version> |
288 | 264 | <configuration> |
289 | 265 | <formats> |
290 | 266 | <format>html</format> |
|
295 | 271 | <plugin> |
296 | 272 | <groupId>org.codehaus.mojo</groupId> |
297 | 273 | <artifactId>jdepend-maven-plugin</artifactId> |
298 | | - <version>2.0-beta-2</version> |
| 274 | + <version>2.0</version> |
299 | 275 | </plugin> |
300 | 276 | <plugin> |
301 | 277 | <artifactId>maven-pmd-plugin</artifactId> |
302 | | - <version>2.5</version> |
| 278 | + <version>3.1</version> |
303 | 279 | <configuration> |
304 | 280 | <targetJdk>1.5</targetJdk> |
305 | 281 | <sourceEncoding>utf-8</sourceEncoding> |
|
308 | 284 | <plugin> |
309 | 285 | <groupId>org.apache.maven.plugins</groupId> |
310 | 286 | <artifactId>maven-javadoc-plugin</artifactId> |
311 | | - <version>2.7</version> |
| 287 | + <version>2.9.1</version> |
312 | 288 | <configuration> |
313 | 289 | <detectJavaApiLink>false</detectJavaApiLink> |
314 | 290 | <detectLinks>false</detectLinks> |
|
328 | 304 | <issueLinkUrl>http://code.google.com/p/owasp-esapi-java/issues/detail?id=%ISSUE%</issueLinkUrl> |
329 | 305 | <type>date</type> |
330 | 306 | <dates> |
331 | | - <date>2011-05-11 00:00:00</date> |
| 307 | + <date>2013-09-02 00:00:00</date> |
332 | 308 | </dates> |
333 | 309 | </configuration> |
334 | 310 | </plugin> |
335 | 311 | <plugin> |
336 | 312 | <groupId>org.codehaus.mojo</groupId> |
337 | 313 | <artifactId>versions-maven-plugin</artifactId> |
338 | | - <version>1.2</version> |
| 314 | + <version>2.1</version> |
339 | 315 | <reportSets> |
340 | 316 | <reportSet> |
341 | 317 | <reports> |
|
346 | 322 | </reportSet> |
347 | 323 | </reportSets> |
348 | 324 | </plugin> |
| 325 | + <plugin> |
| 326 | + <groupId>org.owasp</groupId> |
| 327 | + <artifactId>dependency-check-maven</artifactId> |
| 328 | + <version>1.1.4</version> |
| 329 | + <configuration> |
| 330 | + <externalReport>false</externalReport> |
| 331 | + </configuration> |
| 332 | + </plugin> |
| 333 | + <plugin> |
| 334 | + <groupId>org.apache.maven.plugins</groupId> |
| 335 | + <artifactId>maven-surefire-report-plugin</artifactId> |
| 336 | + <version>2.17</version> |
| 337 | + </plugin> |
349 | 338 | </plugins> |
350 | 339 | </reporting> |
351 | 340 |
|
|
383 | 372 | <plugin> |
384 | 373 | <groupId>org.apache.maven.plugins</groupId> |
385 | 374 | <artifactId>maven-gpg-plugin</artifactId> |
| 375 | + <version>1.5</version> |
386 | 376 | <executions> |
387 | 377 | <execution> |
388 | 378 | <id>sign-artifacts</id> |
|
400 | 390 | <plugin> |
401 | 391 | <groupId>org.apache.maven.plugins</groupId> |
402 | 392 | <artifactId>maven-jar-plugin</artifactId> |
403 | | - <version>2.3.1</version> |
| 393 | + <version>2.4</version> |
| 394 | +<!-- |
404 | 395 | <executions> |
405 | 396 | <execution> |
406 | 397 | <phase>package</phase> |
|
409 | 400 | </goals> |
410 | 401 | </execution> |
411 | 402 | </executions> |
| 403 | +--> |
412 | 404 | <configuration> |
| 405 | +<!-- |
413 | 406 | <keystore>codesign.keystore</keystore> |
414 | 407 | <alias>owasp foundation, inc.'s godaddy.com, inc. id</alias> |
415 | 408 | <verify>true</verify> |
| 409 | +--> |
416 | 410 | <archive> |
417 | 411 | <manifest> |
418 | 412 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
|
425 | 419 | </configuration> |
426 | 420 | </plugin> |
427 | 421 |
|
428 | | - <!-- Baseline for ESAPI 2.0 is JDK1.5 - Enforces that a JDK1.5 compiler is being |
| 422 | + <!-- Baseline for ESAPI 2.1 is JDK1.6 - Enforces that a JDK1.6 compiler is being |
429 | 423 | used to build this release --> |
430 | 424 | <plugin> |
431 | 425 | <groupId>org.apache.maven.plugins</groupId> |
432 | 426 | <artifactId>maven-enforcer-plugin</artifactId> |
| 427 | + <version>1.3.1</version> |
433 | 428 | <executions> |
434 | 429 | <execution> |
435 | 430 | <id>enforce-jdk-version</id> |
|
439 | 434 | <configuration> |
440 | 435 | <rules> |
441 | 436 | <requireJavaVersion> |
442 | | - <version>1.5</version> |
| 437 | + <version>1.6</version> |
443 | 438 | <message> |
444 | | - ESAPI 2.0 uses the JDK1.5 for it's baseline. Please make sure that your |
445 | | - JAVA_HOME environment variable is pointed to a JDK1.5 distribution. |
| 439 | + ESAPI 2.1 uses the JDK1.6 for it's baseline. Please make sure that your |
| 440 | + JAVA_HOME environment variable is pointed to a JDK1.6 distribution. |
446 | 441 | </message> |
447 | 442 | </requireJavaVersion> |
448 | 443 | </rules> |
|
455 | 450 | <plugin> |
456 | 451 | <groupId>org.apache.maven.plugins</groupId> |
457 | 452 | <artifactId>maven-javadoc-plugin</artifactId> |
| 453 | + <version>2.9.1</version> |
458 | 454 | <executions> |
459 | 455 | <execution> |
460 | 456 | <id>attach-javadocs</id> |
|
469 | 465 | <plugin> |
470 | 466 | <groupId>org.apache.maven.plugins</groupId> |
471 | 467 | <artifactId>maven-assembly-plugin</artifactId> |
472 | | - <version>2.2</version> |
| 468 | + <version>2.4</version> |
473 | 469 | <configuration> |
474 | 470 | <descriptors> |
475 | 471 | <descriptor>src/main/assembly/dist.xml</descriptor> |
|
491 | 487 | <plugin> |
492 | 488 | <groupId>org.apache.maven.plugins</groupId> |
493 | 489 | <artifactId>maven-release-plugin</artifactId> |
494 | | - <version>2.1</version> |
| 490 | + <version>2.5</version> |
495 | 491 | <configuration> |
496 | 492 | <tagBase>https://owasp-esapi-java.googlecode.com/svn/tags/releases/</tagBase> |
497 | 493 | </configuration> |
|
0 commit comments