You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by cm...@apache.org on 2013/09/22 13:22:41 UTC

git commit: renamed the keystore file to not exclude it from the source distro if it starts with a dot

Updated Branches:
  refs/heads/master 3c031cfa0 -> 1882d557f


renamed the keystore file to not exclude it from the source distro if it starts with a dot


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/1882d557
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/1882d557
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/1882d557

Branch: refs/heads/master
Commit: 1882d557fd8ad1f409f98a85c2e25d62d0cacb0e
Parents: 3c031cf
Author: cmueller <cm...@apache.org>
Authored: Sun Sep 22 13:22:35 2013 +0200
Committer: cmueller <cm...@apache.org>
Committed: Sun Sep 22 13:22:35 2013 +0200

----------------------------------------------------------------------
 .../camel/component/crypto/SignatureTests.java      |   2 +-
 .../camel-crypto/src/test/resources/.keystore       | Bin 3734 -> 0 bytes
 .../camel-crypto/src/test/resources/ks.keystore     | Bin 0 -> 3734 bytes
 3 files changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/1882d557/components/camel-crypto/src/test/java/org/apache/camel/component/crypto/SignatureTests.java
----------------------------------------------------------------------
diff --git a/components/camel-crypto/src/test/java/org/apache/camel/component/crypto/SignatureTests.java b/components/camel-crypto/src/test/java/org/apache/camel/component/crypto/SignatureTests.java
index 5751515..8991695 100644
--- a/components/camel-crypto/src/test/java/org/apache/camel/component/crypto/SignatureTests.java
+++ b/components/camel-crypto/src/test/java/org/apache/camel/component/crypto/SignatureTests.java
@@ -382,7 +382,7 @@ public class SignatureTests extends CamelTestSupport {
 
     public static KeyStore loadKeystore() throws Exception {
         KeyStore keystore = KeyStore.getInstance(KeyStore.getDefaultType());
-        InputStream in = SignatureTests.class.getResourceAsStream("/.keystore");
+        InputStream in = SignatureTests.class.getResourceAsStream("/ks.keystore");
         keystore.load(in, "letmein".toCharArray());
         return keystore;
     }

http://git-wip-us.apache.org/repos/asf/camel/blob/1882d557/components/camel-crypto/src/test/resources/.keystore
----------------------------------------------------------------------
diff --git a/components/camel-crypto/src/test/resources/.keystore b/components/camel-crypto/src/test/resources/.keystore
deleted file mode 100644
index 7db483e..0000000
Binary files a/components/camel-crypto/src/test/resources/.keystore and /dev/null differ

http://git-wip-us.apache.org/repos/asf/camel/blob/1882d557/components/camel-crypto/src/test/resources/ks.keystore
----------------------------------------------------------------------
diff --git a/components/camel-crypto/src/test/resources/ks.keystore b/components/camel-crypto/src/test/resources/ks.keystore
new file mode 100644
index 0000000..7db483e
Binary files /dev/null and b/components/camel-crypto/src/test/resources/ks.keystore differ