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 2.9 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.jd.blockchain</groupId>
  6. <artifactId>utils</artifactId>
  7. <version>1.1.2.RELEASE</version>
  8. </parent>
  9. <artifactId>utils-common</artifactId>
  10. <dependencies>
  11. <!-- <dependency>
  12. <groupId>com.jd.blockchain</groupId>
  13. <artifactId>utils-encryption</artifactId>
  14. <version>${project.version}</version>
  15. </dependency> -->
  16. <dependency>
  17. <groupId>org.slf4j</groupId>
  18. <artifactId>slf4j-api</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>commons-codec</groupId>
  22. <artifactId>commons-codec</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>commons-io</groupId>
  26. <artifactId>commons-io</artifactId>
  27. <version>2.4</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>net.i2p.crypto</groupId>
  31. <artifactId>eddsa</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.bouncycastle</groupId>
  35. <artifactId>bcprov-jdk15on</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-beans</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.bitbucket.mstrobel</groupId>
  43. <artifactId>procyon-core</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.bitbucket.mstrobel</groupId>
  47. <artifactId>procyon-expressions</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.bitbucket.mstrobel</groupId>
  51. <artifactId>procyon-reflection</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.bitbucket.mstrobel</groupId>
  55. <artifactId>procyon-compilertools</artifactId>
  56. </dependency>
  57. <!--<dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId>
  58. </dependency> -->
  59. <!-- log dependency for test -->
  60. <dependency>
  61. <groupId>org.slf4j</groupId>
  62. <artifactId>slf4j-log4j12</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.logging.log4j</groupId>
  67. <artifactId>log4j-api</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.logging.log4j</groupId>
  72. <artifactId>log4j-core</artifactId>
  73. <scope>test</scope>
  74. </dependency>
  75. </dependencies>
  76. <!-- <build>
  77. <plugins>
  78. <plugin>
  79. <groupId>org.apache.maven.plugins</groupId>
  80. <artifactId>maven-compiler-plugin</artifactId>
  81. <version>3.3</version>
  82. <configuration>
  83. <source>1.6</source>
  84. <target>1.6</target>
  85. <encoding>UTF-8</encoding>
  86. <optimize>false</optimize>
  87. <debug>true</debug>
  88. <showDeprecation>false</showDeprecation>
  89. <showWarnings>false</showWarnings>
  90. </configuration>
  91. </plugin>
  92. </plugins>
  93. </build> -->
  94. </project>

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