]> WPIA git - gigi.git/blob - tests/club/wpia/gigi/testUtils/InitTruststore.java
upd: rename package name and all references to it
[gigi.git] / tests / club / wpia / gigi / testUtils / InitTruststore.java
1 package club.wpia.gigi.testUtils;
2
3 public class InitTruststore {
4
5     private InitTruststore() {}
6
7     static {
8         System.setProperty("javax.net.ssl.trustStorePassword", "changeit");
9         System.setProperty("javax.net.ssl.trustStore", "config/cacerts.jks");
10     }
11
12     public static void run() {
13
14     }
15 }