|
102 | 102 | <role>Project Co-owner</role>
|
103 | 103 | </roles>
|
104 | 104 | </developer>
|
| 105 | + <developer> |
| 106 | + <name>Chris Schmidt</name> |
| 107 | + <organization>Synopsys</organization> |
| 108 | + <roles> |
| 109 | + <role>Former project co-owner</role> |
| 110 | + </roles> |
| 111 | + </developer> |
105 | 112 | </developers>
|
106 | 113 |
|
107 | 114 | <contributors>
|
|
142 | 149 | <version>4.12</version>
|
143 | 150 | <scope>test</scope>
|
144 | 151 | </dependency>
|
| 152 | + <dependency> |
| 153 | + <groupId>org.bouncycastle</groupId> |
| 154 | + <artifactId>bcprov-jdk15on</artifactId> |
| 155 | + <version>1.58</version> |
| 156 | + <scope>test</scope> |
| 157 | + </dependency> |
145 | 158 | <dependency>
|
146 | 159 | <groupId>javax.servlet</groupId>
|
147 | 160 | <artifactId>javax.servlet-api</artifactId>
|
|
163 | 176 | <dependency>
|
164 | 177 | <groupId>commons-io</groupId>
|
165 | 178 | <artifactId>commons-io</artifactId>
|
166 |
| - <version>2.5</version> |
| 179 | + <version>2.6</version> |
167 | 180 | <scope>test</scope>
|
168 | 181 | </dependency>
|
169 | 182 | <dependency>
|
|
209 | 222 | <dependency>
|
210 | 223 | <groupId>org.apache.xmlgraphics</groupId>
|
211 | 224 | <artifactId>batik-css</artifactId>
|
212 |
| - <version>1.9</version> |
| 225 | + <version>1.9.1</version> |
213 | 226 | </dependency>
|
214 | 227 | <!-- <dependency>
|
215 | 228 | <groupId>org.mockito</groupId>
|
|
266 | 279 | <debug>true</debug>
|
267 | 280 | <showWarnings>true</showWarnings>
|
268 | 281 | <showDeprecation>false</showDeprecation>
|
| 282 | + <compilerArgs> |
| 283 | + <!-- This fails: |
| 284 | + <arg>-Xmaxwarns 2000</arg> |
| 285 | + Must be passed as two separate args, as shown |
| 286 | + below. |
| 287 | + --> |
| 288 | + <arg>-Xmaxwarns</arg> |
| 289 | + <arg>2000</arg> |
| 290 | + <arg> |
| 291 | + <!-- Eventually desire is to use just |
| 292 | + -Xlint:all |
| 293 | + here, but for now, this is just to cross off |
| 294 | + another criteria for CII Badging process. |
| 295 | + However, this is main reason we increased |
| 296 | + maxwarns above. |
| 297 | + --> |
| 298 | + -Xlint:all,-deprecation,-rawtypes,-unchecked |
| 299 | + </arg> |
| 300 | + </compilerArgs> |
269 | 301 | </configuration>
|
270 | 302 | </plugin>
|
271 | 303 |
|
|
330 | 362 | <plugin>
|
331 | 363 | <groupId>org.owasp</groupId>
|
332 | 364 | <artifactId>dependency-check-maven</artifactId>
|
333 |
| - <version>1.4.4</version> |
| 365 | + <version>2.1.0</version> |
334 | 366 | <configuration>
|
335 | 367 | <failBuildOnCVSS>5.9</failBuildOnCVSS>
|
336 | 368 | <suppressionFile>./suppressions.xml</suppressionFile>
|
|
370 | 402 | <artifactId>maven-pmd-plugin</artifactId>
|
371 | 403 | <version>3.6</version>
|
372 | 404 | <configuration>
|
373 |
| - <targetJdk>1.5</targetJdk> |
| 405 | + <targetJdk>1.7</targetJdk> |
374 | 406 | <sourceEncoding>utf-8</sourceEncoding>
|
375 | 407 | </configuration>
|
376 | 408 | </plugin>
|
|
464 | 496 | <plugin>
|
465 | 497 | <groupId>org.apache.maven.plugins</groupId>
|
466 | 498 | <artifactId>maven-javadoc-plugin</artifactId>
|
| 499 | + <version>3.0.0-M1</version> |
467 | 500 | <configuration>
|
468 | 501 | <additionalparam>-Xdoclint:none</additionalparam>
|
469 | 502 | </configuration>
|
|
568 | 601 | </configuration>
|
569 | 602 | </plugin>
|
570 | 603 |
|
571 |
| - <!-- Baseline for ESAPI 2.1 is JDK1.6 - Enforces that a JDK1.6 compiler is being |
| 604 | + <!-- Baseline for ESAPI 2.x is now JDK1.7 - Enforces that a JDK1.7 compiler is being |
572 | 605 | used to build this release -->
|
573 | 606 | <plugin>
|
574 | 607 | <groupId>org.apache.maven.plugins</groupId>
|
|
583 | 616 | <configuration>
|
584 | 617 | <rules>
|
585 | 618 | <requireJavaVersion>
|
586 |
| - <version>1.6</version> |
| 619 | + <version>1.7</version> |
587 | 620 | <message>
|
588 |
| - ESAPI 2.1 uses the JDK1.6 for it's baseline. Please make sure that your |
589 |
| - JAVA_HOME environment variable is pointed to a JDK1.6 distribution. |
| 621 | + ESAPI 2.x now uses the JDK1.7 for it's baseline. Please make sure that your |
| 622 | + JAVA_HOME environment variable is pointed to a JDK1.7 distribution. |
590 | 623 | </message>
|
591 | 624 | </requireJavaVersion>
|
592 | 625 | </rules>
|
|
0 commit comments