You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 3.6 kB

6 years ago
5 years ago
6 years ago
5 years ago
6 years ago
5 years ago
6 years ago
5 years ago
6 years ago
5 years ago
6 years ago
5 years ago
6 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>deploy-root</artifactId>
  7. <groupId>com.jd.blockchain</groupId>
  8. <version>1.2.0.RELEASE</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>deploy-kvdb</artifactId>
  12. <version>1.0.0.RELEASE</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.jd.blockchain</groupId>
  16. <artifactId>kvdb-protocol</artifactId>
  17. <version>${kvdb.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.jd.blockchain</groupId>
  21. <artifactId>kvdb-engine</artifactId>
  22. <version>${kvdb.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.jd.blockchain</groupId>
  26. <artifactId>kvdb-server</artifactId>
  27. <version>${kvdb.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.jd.blockchain</groupId>
  31. <artifactId>kvdb-cli</artifactId>
  32. <version>${kvdb.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.jd.blockchain</groupId>
  36. <artifactId>kvdb-benchmark</artifactId>
  37. <version>${kvdb.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.jd.blockchain</groupId>
  41. <artifactId>kvdb-client</artifactId>
  42. <version>${kvdb.version}</version>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.apache.maven.plugins</groupId>
  49. <artifactId>maven-assembly-plugin</artifactId>
  50. <executions>
  51. <execution>
  52. <id>make-assembly</id>
  53. <phase>package</phase>
  54. <goals>
  55. <goal>single</goal>
  56. </goals>
  57. <configuration>
  58. <finalName>kvdb</finalName>
  59. <descriptors>
  60. <descriptor>src/main/resources/assembly.xml</descriptor>
  61. </descriptors>
  62. </configuration>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. <!-- 生成SHA-256校验文件 -->
  67. <plugin>
  68. <groupId>net.nicoulaj.maven.plugins</groupId>
  69. <artifactId>checksum-maven-plugin</artifactId>
  70. <version>1.8</version>
  71. <executions>
  72. <execution>
  73. <goals>
  74. <goal>artifacts</goal>
  75. </goals>
  76. </execution>
  77. </executions>
  78. <configuration>
  79. <algorithms>
  80. <algorithm>SHA-256</algorithm> <!--采用SHA-256算法,还支持其他算法-->
  81. </algorithms>
  82. <file>${project.basedir}/target/deployment-kvdb-${project.version}.zip</file><!--给zip文件进行加密-->
  83. <xmlSummary>true</xmlSummary><!--生成XML格式的md5文件-->
  84. <xmlSummaryFile>${project.basedir}/target/SHA-256.xml</xmlSummaryFile>
  85. </configuration>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>

一个面向企业应用场景的通用区块链框架系统,能够作为企业级基础设施,为业务创新提供高效、灵活和安全的解决方案