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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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-test</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.slf4j</groupId>
  13. <artifactId>slf4j-api</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>com.jd.blockchain</groupId>
  17. <artifactId>utils-serialize</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>javax.servlet</groupId>
  22. <artifactId>javax.servlet-api</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.eclipse.jetty</groupId>
  26. <artifactId>jetty-server</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.eclipse.jetty</groupId>
  30. <artifactId>jetty-servlet</artifactId>
  31. </dependency>
  32. <!-- 第三方依赖 -->
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-webmvc</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework</groupId>
  43. <artifactId>spring-beans</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-test</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>junit</groupId>
  51. <artifactId>junit</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.mockito</groupId>
  55. <artifactId>mockito-core</artifactId>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-deploy-plugin</artifactId>
  63. <version>2.8.2</version>
  64. <configuration>
  65. <skip>true</skip>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>

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