Browse Source

1.1.4.RELEASE, sdk-tx-submit and parse the Main-Class;

tags/1.1.4
zhaoguangwei 4 years ago
parent
commit
6fbd6edc00
64 changed files with 75 additions and 74 deletions
  1. +1
    -1
      source/base/pom.xml
  2. +1
    -1
      source/binary-proto/pom.xml
  3. +1
    -1
      source/consensus/consensus-bftsmart/pom.xml
  4. +1
    -1
      source/consensus/consensus-framework/pom.xml
  5. +1
    -1
      source/consensus/consensus-mq/pom.xml
  6. +1
    -1
      source/consensus/pom.xml
  7. +1
    -1
      source/contract/contract-framework/pom.xml
  8. +1
    -1
      source/contract/contract-jvm/pom.xml
  9. +1
    -1
      source/contract/contract-maven-plugin/pom.xml
  10. +1
    -1
      source/contract/contract-samples/pom.xml
  11. +1
    -1
      source/contract/pom.xml
  12. +1
    -1
      source/crypto/crypto-adv/pom.xml
  13. +1
    -1
      source/crypto/crypto-classic/pom.xml
  14. +1
    -1
      source/crypto/crypto-framework/pom.xml
  15. +1
    -1
      source/crypto/crypto-pki/pom.xml
  16. +1
    -1
      source/crypto/crypto-sm/pom.xml
  17. +1
    -1
      source/crypto/pom.xml
  18. +1
    -1
      source/deployment/deployment-gateway/pom.xml
  19. +1
    -1
      source/deployment/deployment-peer/pom.xml
  20. +1
    -1
      source/deployment/pom.xml
  21. +1
    -1
      source/gateway/pom.xml
  22. +1
    -1
      source/ledger/ledger-core/pom.xml
  23. +1
    -1
      source/ledger/ledger-model/pom.xml
  24. +1
    -1
      source/ledger/ledger-rpc/pom.xml
  25. +1
    -1
      source/ledger/pom.xml
  26. +1
    -1
      source/manager/manager-booter/pom.xml
  27. +1
    -1
      source/manager/manager-model/pom.xml
  28. +1
    -1
      source/manager/manager-service/pom.xml
  29. +1
    -1
      source/manager/manager-web/pom.xml
  30. +1
    -1
      source/manager/pom.xml
  31. +1
    -1
      source/peer/pom.xml
  32. +1
    -1
      source/pom.xml
  33. +1
    -1
      source/runtime/pom.xml
  34. +1
    -1
      source/runtime/runtime-context/pom.xml
  35. +1
    -1
      source/runtime/runtime-modular-booter/pom.xml
  36. +1
    -1
      source/runtime/runtime-modular/pom.xml
  37. +1
    -1
      source/sdk/pom.xml
  38. +1
    -1
      source/sdk/sdk-base/pom.xml
  39. +1
    -1
      source/sdk/sdk-client/pom.xml
  40. +1
    -1
      source/sdk/sdk-samples/pom.xml
  41. +9
    -8
      source/sdk/sdk-samples/src/main/java/com/jd/blockchain/sdk/samples/SDKDemo_Params.java
  42. +3
    -3
      source/sdk/sdk-samples/src/main/java/com/jd/blockchain/sdk/samples/SDKDemo_Tx_Persistance.java
  43. +1
    -1
      source/storage/pom.xml
  44. +1
    -1
      source/storage/storage-composite/pom.xml
  45. +1
    -1
      source/storage/storage-redis/pom.xml
  46. +1
    -1
      source/storage/storage-rocksdb/pom.xml
  47. +1
    -1
      source/storage/storage-service/pom.xml
  48. +1
    -1
      source/test/pom.xml
  49. +1
    -1
      source/test/test-consensus-client/pom.xml
  50. +2
    -2
      source/test/test-consensus-node/pom.xml
  51. +1
    -1
      source/test/test-integration/pom.xml
  52. +1
    -1
      source/test/test-ledger/pom.xml
  53. +1
    -1
      source/tools/pom.xml
  54. +1
    -1
      source/tools/tools-initializer-booter/pom.xml
  55. +1
    -1
      source/tools/tools-initializer/pom.xml
  56. +1
    -1
      source/tools/tools-keygen-booter/pom.xml
  57. +1
    -1
      source/tools/tools-keygen/pom.xml
  58. +1
    -1
      source/utils/pom.xml
  59. +1
    -1
      source/utils/utils-common/pom.xml
  60. +1
    -1
      source/utils/utils-http/pom.xml
  61. +1
    -1
      source/utils/utils-serialize/pom.xml
  62. +1
    -1
      source/utils/utils-test/pom.xml
  63. +1
    -1
      source/utils/utils-web-server/pom.xml
  64. +1
    -1
      source/utils/utils-web/pom.xml

+ 1
- 1
source/base/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>base</artifactId> <artifactId>base</artifactId>




+ 1
- 1
source/binary-proto/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>binary-proto</artifactId> <artifactId>binary-proto</artifactId>




+ 1
- 1
source/consensus/consensus-bftsmart/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>consensus</artifactId> <artifactId>consensus</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>consensus-bftsmart</artifactId> <artifactId>consensus-bftsmart</artifactId>




+ 1
- 1
source/consensus/consensus-framework/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>consensus</artifactId> <artifactId>consensus</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>consensus-framework</artifactId> <artifactId>consensus-framework</artifactId>




+ 1
- 1
source/consensus/consensus-mq/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>consensus</artifactId> <artifactId>consensus</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>consensus-mq</artifactId> <artifactId>consensus-mq</artifactId>




+ 1
- 1
source/consensus/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>consensus</artifactId> <artifactId>consensus</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>


+ 1
- 1
source/contract/contract-framework/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>contract</artifactId> <artifactId>contract</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>contract-framework</artifactId> <artifactId>contract-framework</artifactId>




+ 1
- 1
source/contract/contract-jvm/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>contract</artifactId> <artifactId>contract</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>contract-jvm</artifactId> <artifactId>contract-jvm</artifactId>




+ 1
- 1
source/contract/contract-maven-plugin/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>contract</artifactId> <artifactId>contract</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>contract-maven-plugin</artifactId> <artifactId>contract-maven-plugin</artifactId>
<packaging>maven-plugin</packaging> <packaging>maven-plugin</packaging>


+ 1
- 1
source/contract/contract-samples/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>contract</artifactId> <artifactId>contract</artifactId>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>




+ 1
- 1
source/contract/pom.xml View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>contract</artifactId> <artifactId>contract</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>


+ 1
- 1
source/crypto/crypto-adv/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>crypto</artifactId> <artifactId>crypto</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>crypto-adv</artifactId> <artifactId>crypto-adv</artifactId>




+ 1
- 1
source/crypto/crypto-classic/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>crypto</artifactId> <artifactId>crypto</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>crypto-classic</artifactId> <artifactId>crypto-classic</artifactId>




+ 1
- 1
source/crypto/crypto-framework/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>crypto</artifactId> <artifactId>crypto</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>crypto-framework</artifactId> <artifactId>crypto-framework</artifactId>




+ 1
- 1
source/crypto/crypto-pki/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>crypto</artifactId> <artifactId>crypto</artifactId>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>




+ 1
- 1
source/crypto/crypto-sm/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>crypto</artifactId> <artifactId>crypto</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>crypto-sm</artifactId> <artifactId>crypto-sm</artifactId>




+ 1
- 1
source/crypto/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>crypto</artifactId> <artifactId>crypto</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>


+ 1
- 1
source/deployment/deployment-gateway/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>deployment</artifactId> <artifactId>deployment</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>deployment-gateway</artifactId> <artifactId>deployment-gateway</artifactId>




+ 1
- 1
source/deployment/deployment-peer/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>deployment</artifactId> <artifactId>deployment</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>deployment-peer</artifactId> <artifactId>deployment-peer</artifactId>




+ 1
- 1
source/deployment/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>deployment</artifactId> <artifactId>deployment</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>


+ 1
- 1
source/gateway/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>gateway</artifactId> <artifactId>gateway</artifactId>




+ 1
- 1
source/ledger/ledger-core/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>ledger</artifactId> <artifactId>ledger</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>ledger-core</artifactId> <artifactId>ledger-core</artifactId>




+ 1
- 1
source/ledger/ledger-model/pom.xml View File

@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>ledger</artifactId> <artifactId>ledger</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>ledger-model</artifactId> <artifactId>ledger-model</artifactId>




+ 1
- 1
source/ledger/ledger-rpc/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>ledger</artifactId> <artifactId>ledger</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>ledger-rpc</artifactId> <artifactId>ledger-rpc</artifactId>




+ 1
- 1
source/ledger/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>ledger</artifactId> <artifactId>ledger</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>


+ 1
- 1
source/manager/manager-booter/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>manager</artifactId> <artifactId>manager</artifactId>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>




+ 1
- 1
source/manager/manager-model/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>manager</artifactId> <artifactId>manager</artifactId>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>




+ 1
- 1
source/manager/manager-service/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>manager</artifactId> <artifactId>manager</artifactId>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>




+ 1
- 1
source/manager/manager-web/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>manager</artifactId> <artifactId>manager</artifactId>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>




+ 1
- 1
source/manager/pom.xml View File

@@ -11,7 +11,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>manager</artifactId> <artifactId>manager</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>


+ 1
- 1
source/peer/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>peer</artifactId> <artifactId>peer</artifactId>




+ 1
- 1
source/pom.xml View File

@@ -11,7 +11,7 @@


<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<description>jdchain</description> <description>jdchain</description>




+ 1
- 1
source/runtime/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>runtime</artifactId> <artifactId>runtime</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>


+ 1
- 1
source/runtime/runtime-context/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>runtime</artifactId> <artifactId>runtime</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>runtime-context</artifactId> <artifactId>runtime-context</artifactId>




+ 1
- 1
source/runtime/runtime-modular-booter/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>runtime</artifactId> <artifactId>runtime</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>runtime-modular-booter</artifactId> <artifactId>runtime-modular-booter</artifactId>
</project> </project>

+ 1
- 1
source/runtime/runtime-modular/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>runtime</artifactId> <artifactId>runtime</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>runtime-modular</artifactId> <artifactId>runtime-modular</artifactId>




+ 1
- 1
source/sdk/pom.xml View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>sdk</artifactId> <artifactId>sdk</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>


+ 1
- 1
source/sdk/sdk-base/pom.xml View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>sdk</artifactId> <artifactId>sdk</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>sdk-base</artifactId> <artifactId>sdk-base</artifactId>




+ 1
- 1
source/sdk/sdk-client/pom.xml View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>sdk</artifactId> <artifactId>sdk</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>sdk-client</artifactId> <artifactId>sdk-client</artifactId>




+ 1
- 1
source/sdk/sdk-samples/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>sdk</artifactId> <artifactId>sdk</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>sdk-samples</artifactId> <artifactId>sdk-samples</artifactId>




+ 9
- 8
source/sdk/sdk-samples/src/main/java/com/jd/blockchain/sdk/samples/SDKDemo_Params.java View File

@@ -22,16 +22,17 @@ import com.jd.blockchain.crypto.PubKey;
public class SDKDemo_Params { public class SDKDemo_Params {
public static final String PASSWORD = "abc"; public static final String PASSWORD = "abc";


public static final String[] PUB_KEYS = { "endPsK36koyFr1D245Sa9j83vt6pZUdFBJoJRB3xAsWM6cwhRbna",
"endPsK36sC5JdPCDPDAXUwZtS3sxEmqEhFcC4whayAsTTh8Z6eoZ",
"endPsK36jEG281HMHeh6oSqzqLkT95DTnCM6REDURjdb2c67uR3R",
"endPsK36nse1dck4uF19zPvAMijCV336Y3zWdgb4rQG8QoRj5ktR" };
public static final String[] PUB_KEYS = {
"3snPdw7i7PjVKiTH2VnXZu5H8QmNaSXpnk4ei533jFpuifyjS5zzH9",
"3snPdw7i7PajLB35tEau1kmixc6ZrjLXgxwKbkv5bHhP7nT5dhD9eX",
"3snPdw7i7PZi6TStiyc6mzjprnNhgs2atSGNS8wPYzhbKaUWGFJt7x",
"3snPdw7i7PifPuRX7fu3jBjsb3rJRfDe9GtbDfvFJaJ4V4hHXQfhwk" };


public static final String[] PRIV_KEYS = { public static final String[] PRIV_KEYS = {
"177gjsj5PHeCpbAtJE7qnbmhuZMHAEKuMsd45zHkv8F8AWBvTBbff8yRKdCyT3kwrmAjSnY",
"177gjw9u84WtuCsK8u2WeH4nWqzgEoJWY7jJF9AU6XwLHSosrcNX3H6SSBsfvR53HgX7KR2",
"177gk2FpjufgEon92mf2oRRFXDBZkRy8SkFci7Jxc5pApZEJz3oeCoxieWatDD3Xg7i1QEN",
"177gjvv7qvfCAXroFezSn23UFXLVLFofKS3y6DXkJ2DwVWS4LcRNtxRgiqWmQEeWNz4KQ3J" };
"177gjzHTznYdPgWqZrH43W3yp37onm74wYXT4v9FukpCHBrhRysBBZh7Pzdo5AMRyQGJD7x",
"177gju9p5zrNdHJVEQnEEKF4ZjDDYmAXyfG84V5RPGVc5xFfmtwnHA7j51nyNLUFffzz5UT",
"177gjtwLgmSx5v1hFb46ijh7L9kdbKUpJYqdKVf9afiEmAuLgo8Rck9yu5UuUcHknWJuWaF",
"177gk1pudweTq5zgJTh8y3ENCTwtSFsKyX7YnpuKPo7rKgCkCBXVXh5z2syaTCPEMbuWRns" };


public static PrivKey privkey0 = KeyGenUtils.decodePrivKeyWithRawPassword(PRIV_KEYS[0], PASSWORD); public static PrivKey privkey0 = KeyGenUtils.decodePrivKeyWithRawPassword(PRIV_KEYS[0], PASSWORD);
public static PrivKey privkey1 = KeyGenUtils.decodePrivKeyWithRawPassword(PRIV_KEYS[1], PASSWORD); public static PrivKey privkey1 = KeyGenUtils.decodePrivKeyWithRawPassword(PRIV_KEYS[1], PASSWORD);


+ 3
- 3
source/sdk/sdk-samples/src/main/java/com/jd/blockchain/sdk/samples/SDKDemo_Tx_Persistance.java View File

@@ -32,7 +32,7 @@ public class SDKDemo_Tx_Persistance {
public static void main(String[] args) { public static void main(String[] args) {


String GATEWAY_IPADDR = "127.0.0.1"; String GATEWAY_IPADDR = "127.0.0.1";
int GATEWAY_PORT = 8081;
int GATEWAY_PORT = 11000;
if (args != null && args.length == 2) { if (args != null && args.length == 2) {
GATEWAY_IPADDR = args[0]; GATEWAY_IPADDR = args[0];
GATEWAY_PORT = Integer.parseInt(args[1]); GATEWAY_PORT = Integer.parseInt(args[1]);
@@ -46,8 +46,8 @@ public class SDKDemo_Tx_Persistance {
DataContractRegistry.register(EndpointRequest.class); DataContractRegistry.register(EndpointRequest.class);
DataContractRegistry.register(TransactionResponse.class); DataContractRegistry.register(TransactionResponse.class);


PrivKey privKey1 = SDKDemo_Params.privkey1;
PubKey pubKey1 = SDKDemo_Params.pubKey1;
PrivKey privKey1 = SDKDemo_Params.privkey0;
PubKey pubKey1 = SDKDemo_Params.pubKey0;
PrivKey privKey2 = SDKDemo_Params.privkey1; PrivKey privKey2 = SDKDemo_Params.privkey1;
PubKey pubKey2 = SDKDemo_Params.pubKey1; PubKey pubKey2 = SDKDemo_Params.pubKey1;




+ 1
- 1
source/storage/pom.xml View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>storage</artifactId> <artifactId>storage</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>


+ 1
- 1
source/storage/storage-composite/pom.xml View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>storage</artifactId> <artifactId>storage</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>storage-composite</artifactId> <artifactId>storage-composite</artifactId>




+ 1
- 1
source/storage/storage-redis/pom.xml View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>storage</artifactId> <artifactId>storage</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>storage-redis</artifactId> <artifactId>storage-redis</artifactId>




+ 1
- 1
source/storage/storage-rocksdb/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>storage</artifactId> <artifactId>storage</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>storage-rocksdb</artifactId> <artifactId>storage-rocksdb</artifactId>




+ 1
- 1
source/storage/storage-service/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>storage</artifactId> <artifactId>storage</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>storage-service</artifactId> <artifactId>storage-service</artifactId>




+ 1
- 1
source/test/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>test</artifactId> <artifactId>test</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>


+ 1
- 1
source/test/test-consensus-client/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>test</artifactId> <artifactId>test</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>test-consensus-client</artifactId> <artifactId>test-consensus-client</artifactId>




+ 2
- 2
source/test/test-consensus-node/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>test</artifactId> <artifactId>test</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>test-consensus-node</artifactId> <artifactId>test-consensus-node</artifactId>
<dependencies> <dependencies>
@@ -38,7 +38,7 @@
<dependency> <dependency>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>consensus-bftsmart</artifactId> <artifactId>consensus-bftsmart</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>


+ 1
- 1
source/test/test-integration/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>test</artifactId> <artifactId>test</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>test-integration</artifactId> <artifactId>test-integration</artifactId>




+ 1
- 1
source/test/test-ledger/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>test</artifactId> <artifactId>test</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>test-ledger</artifactId> <artifactId>test-ledger</artifactId>




+ 1
- 1
source/tools/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>tools</artifactId> <artifactId>tools</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>


+ 1
- 1
source/tools/tools-initializer-booter/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>tools</artifactId> <artifactId>tools</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>tools-initializer-booter</artifactId> <artifactId>tools-initializer-booter</artifactId>




+ 1
- 1
source/tools/tools-initializer/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>tools</artifactId> <artifactId>tools</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>tools-initializer</artifactId> <artifactId>tools-initializer</artifactId>




+ 1
- 1
source/tools/tools-keygen-booter/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>tools</artifactId> <artifactId>tools</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>tools-keygen-booter</artifactId> <artifactId>tools-keygen-booter</artifactId>




+ 1
- 1
source/tools/tools-keygen/pom.xml View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>tools</artifactId> <artifactId>tools</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>tools-keygen</artifactId> <artifactId>tools-keygen</artifactId>




+ 1
- 1
source/utils/pom.xml View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>jdchain-root</artifactId> <artifactId>jdchain-root</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>utils</artifactId> <artifactId>utils</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>


+ 1
- 1
source/utils/utils-common/pom.xml View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>utils</artifactId> <artifactId>utils</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>utils-common</artifactId> <artifactId>utils-common</artifactId>




+ 1
- 1
source/utils/utils-http/pom.xml View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>utils</artifactId> <artifactId>utils</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>


<properties> <properties>


+ 1
- 1
source/utils/utils-serialize/pom.xml View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>utils</artifactId> <artifactId>utils</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>utils-serialize</artifactId> <artifactId>utils-serialize</artifactId>




+ 1
- 1
source/utils/utils-test/pom.xml View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>utils</artifactId> <artifactId>utils</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>utils-test</artifactId> <artifactId>utils-test</artifactId>




+ 1
- 1
source/utils/utils-web-server/pom.xml View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>utils</artifactId> <artifactId>utils</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>utils-web-server</artifactId> <artifactId>utils-web-server</artifactId>




+ 1
- 1
source/utils/utils-web/pom.xml View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.jd.blockchain</groupId> <groupId>com.jd.blockchain</groupId>
<artifactId>utils</artifactId> <artifactId>utils</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4.RELEASE</version>
</parent> </parent>
<artifactId>utils-web</artifactId> <artifactId>utils-web</artifactId>
<dependencies> <dependencies>


Loading…
Cancel
Save