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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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>deployment</artifactId>
  8. <version>0.8.3.RELEASE</version>
  9. </parent>
  10. <artifactId>deployment-peer</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.jd.blockchain</groupId>
  14. <artifactId>peer</artifactId>
  15. <version>${project.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.jd.blockchain</groupId>
  19. <artifactId>runtime-modular</artifactId>
  20. <version>${project.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.jd.blockchain</groupId>
  24. <artifactId>runtime-modular-booter</artifactId>
  25. <version>${project.version}</version>
  26. </dependency>
  27. <!-- <dependency> <groupId>com.jd.blockchain</groupId> <artifactId>gateway</artifactId>
  28. <version>${project.version}</version> </dependency> -->
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId>
  33. <executions> <execution> <id>copy-dependencies</id> <phase>package</phase>
  34. <goals> <goal>copy-dependencies</goal> </goals> <configuration> ${project.build.directory}
  35. class的输出目录不做设置的话默认代表项目根目录的target目录; 也可以使用“自定义文件夹/自定义文件夹 例如:a/b”,也可以使用绝对路径如:“D:\test”
  36. <outputDirectory>${project.build.directory}/dependencies</outputDirectory>
  37. <excludeTransitive>false</excludeTransitive> <stripVersion>false</stripVersion>
  38. <includeScope>runtime</includeScope> </configuration> </execution> </executions>
  39. </plugin> -->
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-jar-plugin</artifactId>
  43. <configuration>
  44. <archive>
  45. <manifest>
  46. <mainClass>com.jd.blockchain.boot.peer.PeerBooter</mainClass>
  47. <addClasspath>true</addClasspath>
  48. <classpathPrefix>.</classpathPrefix>
  49. <useUniqueVersions>false</useUniqueVersions>
  50. </manifest>
  51. </archive>
  52. </configuration>
  53. </plugin>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-assembly-plugin</artifactId>
  57. <executions>
  58. <execution>
  59. <id>make-assembly</id>
  60. <phase>package</phase>
  61. <goals>
  62. <goal>single</goal>
  63. </goals>
  64. <configuration>
  65. <finalName>jdchain-peer</finalName>
  66. <descriptors>
  67. <descriptor>src/main/resources/assembly.xml</descriptor>
  68. </descriptors>
  69. </configuration>
  70. </execution>
  71. </executions>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. </project>

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