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

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.jd.blockchain</groupId>
  7. <artifactId>docker</artifactId>
  8. <version>1.5.0.RELEASE</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>docker-sdk</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.jd.blockchain</groupId>
  15. <artifactId>crypto-classic</artifactId>
  16. <version>${framework.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.jd.blockchain</groupId>
  20. <artifactId>crypto-sm</artifactId>
  21. <version>${framework.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.jd.blockchain</groupId>
  25. <artifactId>ledger-model</artifactId>
  26. <version>${framework.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.jd.blockchain</groupId>
  30. <artifactId>sdk-client</artifactId>
  31. <version>${framework.version}</version>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <artifactId>maven-assembly-plugin</artifactId>
  38. <configuration>
  39. <appendAssemblyId>false</appendAssemblyId>
  40. <descriptorRefs>
  41. <descriptorRef>jar-with-dependencies</descriptorRef>
  42. </descriptorRefs>
  43. <archive>
  44. <manifest>
  45. <!-- 程序入口 -->
  46. <mainClass>com.jd.blockchain.SDKDemo</mainClass>
  47. </manifest>
  48. </archive>
  49. </configuration>
  50. <executions>
  51. <execution>
  52. <id>make-assembly</id>
  53. <phase>package</phase>
  54. <goals>
  55. <goal>single</goal>
  56. </goals>
  57. </execution>
  58. </executions>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>