File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed
src/main/java/jp/co/soramitsu/iroha/java Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ repositories {
1010}
1111
1212final def spockVersion = ' 1.2-groovy-2.4'
13- final def edSha3Version = ' 2.0.1 '
13+ final def edSha3Version = ' 2.1.0 '
1414final def edDsaVersion = ' 0.3.0'
1515final def spockGenesisVersion = ' 0.6.0'
1616final def lombokVersion = ' 1.18.4'
@@ -23,7 +23,7 @@ final def objgenesisVersion = '3.0.1'
2323
2424dependencies {
2525 compile " io.reactivex.rxjava2:rxjava:${ rxjavaVersion} "
26- compile " com.github.warchant :ed25519-sha3-java:${ edSha3Version} "
26+ compile " com.github.soramitsu :ed25519-sha3-java:${ edSha3Version} "
2727 compile " net.i2p.crypto:eddsa:${ edDsaVersion} "
2828
2929 compileOnly(" org.projectlombok:lombok:$lombokVersion " )
@@ -46,7 +46,9 @@ dependencies {
4646}
4747
4848apply from : ' proto.gradle'
49-
49+ tasks. withType(JavaCompile ) {
50+ options. incremental = false
51+ }
5052sonarqube {
5153 properties {
5254 property " sonar.projectKey" , " ${ project.group} :${ rootProject.name} .${ project.name} "
Original file line number Diff line number Diff line change 1616import java .util .stream .StreamSupport ;
1717import javax .xml .bind .DatatypeConverter ;
1818import lombok .val ;
19- import org .spongycastle .jcajce .provider .digest .SHA3 ;
19+ import org .bouncycastle .jcajce .provider .digest .SHA3 ;
2020
2121public class Utils {
2222
Original file line number Diff line number Diff line change 11package jp .co .soramitsu .iroha .java .detail ;
22
33import com .google .protobuf .GeneratedMessageV3 .Builder ;
4- import org .spongycastle .jcajce .provider .digest .SHA3 ;
4+ import org .bouncycastle .jcajce .provider .digest .SHA3 ;
55
66public abstract class Hashable <T extends Builder <T >> {
77
Original file line number Diff line number Diff line change @@ -49,7 +49,9 @@ dependencies {
4949
5050 testCompile group : ' junit' , name : ' junit' , version : " ${ junitVersion} "
5151}
52-
52+ tasks. withType(JavaCompile ) {
53+ options. incremental = false
54+ }
5355sonarqube {
5456 properties {
5557 property " sonar.projectKey" , " ${ project.group} :${ rootProject.name} .${ project.name} "
You can’t perform that action at this time.
0 commit comments