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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" 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. <parent>
  5. <artifactId>contract</artifactId>
  6. <groupId>com.jd.blockchain</groupId>
  7. <version>1.0.0.RELEASE</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>contract-samples</artifactId>
  11. <name>contract-samples</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.jd.blockchain</groupId>
  15. <artifactId>ledger-model</artifactId>
  16. <version>${project.version}</version>
  17. <scope>provided</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.jd.blockchain</groupId>
  21. <artifactId>crypto-framework</artifactId>
  22. <version>${project.version}</version>
  23. <scope>provided</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.alibaba</groupId>
  27. <artifactId>fastjson</artifactId>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <artifactId>maven-assembly-plugin</artifactId>
  34. <configuration>
  35. <finalName>complex</finalName>
  36. <appendAssemblyId>false</appendAssemblyId>
  37. <archive>
  38. <manifest>
  39. <mainClass>com.jd.blockchain.contract.ComplexContractImpl</mainClass>
  40. </manifest>
  41. </archive>
  42. <descriptorRefs>
  43. <descriptorRef>jar-with-dependencies</descriptorRef>
  44. </descriptorRefs>
  45. </configuration>
  46. <executions>
  47. <execution>
  48. <id>make-assembly</id>
  49. <phase>package</phase>
  50. <goals>
  51. <goal>single</goal>
  52. </goals>
  53. </execution>
  54. </executions>
  55. </plugin>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-deploy-plugin</artifactId>
  59. <version>2.8.2</version>
  60. <configuration>
  61. <skip>true</skip>
  62. </configuration>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>

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