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.3 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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>0.8.3.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>net.i2p.crypto</groupId>
  26. <artifactId>eddsa</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.bouncycastle</groupId>
  30. <artifactId>bcprov-jdk15on</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-beans</artifactId>
  35. </dependency>
  36. <!--<dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId>
  37. </dependency> -->
  38. <!-- log dependency for test -->
  39. <dependency>
  40. <groupId>org.slf4j</groupId>
  41. <artifactId>slf4j-log4j12</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.logging.log4j</groupId>
  46. <artifactId>log4j-api</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.logging.log4j</groupId>
  51. <artifactId>log4j-core</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. </dependencies>
  55. <!-- <build>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-compiler-plugin</artifactId>
  60. <version>3.3</version>
  61. <configuration>
  62. <source>1.6</source>
  63. <target>1.6</target>
  64. <encoding>UTF-8</encoding>
  65. <optimize>false</optimize>
  66. <debug>true</debug>
  67. <showDeprecation>false</showDeprecation>
  68. <showWarnings>false</showWarnings>
  69. </configuration>
  70. </plugin>
  71. </plugins>
  72. </build> -->
  73. </project>

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