Remove dependency to bouncycastle from acceptance tests

Bouncycastle is not needed for the acceptance tests. If bouncycastle
is available InitSshd uses it to generate the SSH daemon key for the
server when a new test site is initialized. Without bouncycastle a
simple RSA key is generated which is sufficient for sites which are
only used for testing.

This change is important since on Windows the generation of the key
with bouncycastle hangs so that the tests never finish.

Change-Id: Id0c8e201daf6e3d449057d552dcbda9720c16131
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin 2013-02-12 09:00:58 +01:00 committed by Edwin Kempin
parent a3b4b63caf
commit 13eca99dce

View File

@ -65,18 +65,6 @@ limitations under the License.
</exclusions>
</dependency>
<dependency>
<groupId>bouncycastle</groupId>
<artifactId>bcprov-jdk15</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>bouncycastle</groupId>
<artifactId>bcpg-jdk15</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>