Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Java 10 support #1660

Merged
merged 21 commits into from Sep 18, 2018
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
9b4b062
Clean up errors for testing
ripcurlx Aug 21, 2018
4725191
Remove files that use classes that can't be accessed anymore
ripcurlx Sep 5, 2018
73e4ee5
Update lombok library
ripcurlx Sep 5, 2018
bd9a208
Update source compatibility to Java 10
ripcurlx Sep 7, 2018
5d23971
Update travis Java version
ripcurlx Sep 7, 2018
e319449
Make power mock tests Java 10 compatibile
ripcurlx Sep 7, 2018
8ed7f42
Add not working JMockit setup (help wanted)
ripcurlx Sep 7, 2018
13266b2
Use FXCollections instead of not existing ObservableListWrapper
ripcurlx Sep 7, 2018
dd6a372
Change progress indicator skin to work with Java 9+
ripcurlx Sep 10, 2018
2efe20a
Add temporary workaround for running desktop build
ripcurlx Sep 11, 2018
672e362
Add -srcdir for Java 10 javapackager
ripcurlx Sep 11, 2018
64370f7
Fix JMockit setup
ripcurlx Sep 13, 2018
1c783e4
Update fontawesome library
ripcurlx Sep 14, 2018
4c068af
Use default security provider instead of Bouncy Castle
ripcurlx Sep 14, 2018
40eadcc
Merge branch 'master' into java10-support
ripcurlx Sep 14, 2018
28c96d6
Merge branch 'master' of github.com:bisq-network/bisq-desktop into ja…
ripcurlx Sep 15, 2018
68fb116
Add Java 10 configuration for merged repositories
ripcurlx Sep 17, 2018
a8dd11c
Add workaround to prevent javapackager to fail because of module conf…
ripcurlx Sep 18, 2018
f7e4e5a
Add missing result handler execution
ripcurlx Sep 18, 2018
0643357
Clear list before setting all currencies
ripcurlx Sep 18, 2018
db17991
Remove not thrown exceptions
ripcurlx Sep 18, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 1 addition & 8 deletions core/src/test/java/bisq/core/crypto/SigTest.java
Expand Up @@ -23,13 +23,6 @@
import bisq.common.crypto.Sig;
import bisq.common.storage.FileUtil;

import org.bouncycastle.jce.provider.BouncyCastleProvider;

import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.Security;
import java.security.cert.CertificateException;

import java.io.File;
import java.io.IOException;

Expand All @@ -50,7 +43,7 @@ public class SigTest {
private File dir;

@Before
public void setup() throws CertificateException, NoSuchAlgorithmException, KeyStoreException, IOException, CryptoException {
public void setup() throws IOException {

dir = File.createTempFile("temp_tests", "");
//noinspection ResultOfMethodCallIgnored
Expand Down