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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.jd.blockchain</groupId>
  7. <artifactId>consensus</artifactId>
  8. <version>1.1.2.RELEASE</version>
  9. </parent>
  10. <artifactId>consensus-mq</artifactId>
  11. <name>consensus-mq</name>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.jd.blockchain</groupId>
  20. <artifactId>consensus-framework</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.jd.blockchain</groupId>
  25. <artifactId>tools-keygen</artifactId>
  26. <version>${project.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.jd.blockchain</groupId>
  30. <artifactId>ledger-model</artifactId>
  31. <version>${project.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.lmax</groupId>
  35. <artifactId>disruptor</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.nats</groupId>
  39. <artifactId>jnats</artifactId>
  40. </dependency>
  41. <!-- rabbitmq -->
  42. <dependency>
  43. <groupId>com.rabbitmq</groupId>
  44. <artifactId>amqp-client</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>junit</groupId>
  48. <artifactId>junit</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-deploy-plugin</artifactId>
  57. <version>2.8.2</version>
  58. <configuration>
  59. <skip>true</skip>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>

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