Fix warnings caused by wrong BouncyCastle version in pom files

Change-Id: I3380573ff0313b85eeb709e8a15bdbb1b264ff59
This commit is contained in:
Shawn O. Pearce 2012-10-21 19:54:59 -07:00
parent 1a1cf9ed2e
commit f121c1bff1
4 changed files with 8 additions and 6 deletions

View File

@ -73,14 +73,12 @@ limitations under the License.
<dependency>
<groupId>bouncycastle</groupId>
<artifactId>bcprov-jdk15</artifactId>
<version>140</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>bouncycastle</groupId>
<artifactId>bcpg-jdk15</artifactId>
<version>140</version>
<scope>provided</scope>
</dependency>

View File

@ -80,7 +80,6 @@ limitations under the License.
<dependency>
<groupId>bouncycastle</groupId>
<artifactId>bcpg-jdk15</artifactId>
<version>140</version>
<scope>provided</scope>
</dependency>

View File

@ -59,14 +59,12 @@ limitations under the License.
<dependency>
<groupId>bouncycastle</groupId>
<artifactId>bcprov-jdk15</artifactId>
<version>140</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>bouncycastle</groupId>
<artifactId>bcpg-jdk15</artifactId>
<version>140</version>
<scope>provided</scope>
</dependency>

View File

@ -51,6 +51,7 @@ limitations under the License.
<gwtjsonrpcVersion>1.3</gwtjsonrpcVersion>
<gwtexpuiVersion>1.2.6</gwtexpuiVersion>
<gwtVersion>2.4.0</gwtVersion>
<bouncyCastleVersion>140</bouncyCastleVersion>
<slf4jVersion>1.6.1</slf4jVersion>
<guiceVersion>3.0</guiceVersion>
<jettyVersion>7.2.1.v20101111</jettyVersion>
@ -684,7 +685,13 @@ limitations under the License.
<dependency>
<groupId>bouncycastle</groupId>
<artifactId>bcpg-jdk15</artifactId>
<version>140</version>
<version>${bouncyCastleVersion}</version>
</dependency>
<dependency>
<groupId>bouncycastle</groupId>
<artifactId>bcprov-jdk15</artifactId>
<version>${bouncyCastleVersion}</version>
</dependency>
<dependency>