File tree 4 files changed +10
-6
lines changed
src/main/java/jp/co/soramitsu/iroha/java
4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ repositories {
10
10
}
11
11
12
12
final def spockVersion = ' 1.2-groovy-2.4'
13
- final def edSha3Version = ' 2.0.1 '
13
+ final def edSha3Version = ' 2.1.0 '
14
14
final def edDsaVersion = ' 0.3.0'
15
15
final def spockGenesisVersion = ' 0.6.0'
16
16
final def lombokVersion = ' 1.18.4'
@@ -23,7 +23,7 @@ final def objgenesisVersion = '3.0.1'
23
23
24
24
dependencies {
25
25
compile " io.reactivex.rxjava2:rxjava:${ rxjavaVersion} "
26
- compile " com.github.warchant :ed25519-sha3-java:${ edSha3Version} "
26
+ compile " com.github.soramitsu :ed25519-sha3-java:${ edSha3Version} "
27
27
compile " net.i2p.crypto:eddsa:${ edDsaVersion} "
28
28
29
29
compileOnly(" org.projectlombok:lombok:$lombokVersion " )
@@ -46,7 +46,9 @@ dependencies {
46
46
}
47
47
48
48
apply from : ' proto.gradle'
49
-
49
+ tasks. withType(JavaCompile ) {
50
+ options. incremental = false
51
+ }
50
52
sonarqube {
51
53
properties {
52
54
property " sonar.projectKey" , " ${ project.group} :${ rootProject.name} .${ project.name} "
Original file line number Diff line number Diff line change 16
16
import java .util .stream .StreamSupport ;
17
17
import javax .xml .bind .DatatypeConverter ;
18
18
import lombok .val ;
19
- import org .spongycastle .jcajce .provider .digest .SHA3 ;
19
+ import org .bouncycastle .jcajce .provider .digest .SHA3 ;
20
20
21
21
public class Utils {
22
22
Original file line number Diff line number Diff line change 1
1
package jp .co .soramitsu .iroha .java .detail ;
2
2
3
3
import com .google .protobuf .GeneratedMessageV3 .Builder ;
4
- import org .spongycastle .jcajce .provider .digest .SHA3 ;
4
+ import org .bouncycastle .jcajce .provider .digest .SHA3 ;
5
5
6
6
public abstract class Hashable <T extends Builder <T >> {
7
7
Original file line number Diff line number Diff line change @@ -49,7 +49,9 @@ dependencies {
49
49
50
50
testCompile group : ' junit' , name : ' junit' , version : " ${ junitVersion} "
51
51
}
52
-
52
+ tasks. withType(JavaCompile ) {
53
+ options. incremental = false
54
+ }
53
55
sonarqube {
54
56
properties {
55
57
property " sonar.projectKey" , " ${ project.group} :${ rootProject.name} .${ project.name} "
You can’t perform that action at this time.
0 commit comments