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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.jd.blockchain</groupId>
  7. <artifactId>jdchain-samples</artifactId>
  8. <version>1.2.0.RELEASE</version>
  9. </parent>
  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. <scope>provided</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.jd.blockchain</groupId>
  20. <artifactId>crypto-framework</artifactId>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.alibaba</groupId>
  25. <artifactId>fastjson</artifactId>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <plugins>
  30. <plugin>
  31. <artifactId>maven-assembly-plugin</artifactId>
  32. <configuration>
  33. <finalName>complex</finalName>
  34. <appendAssemblyId>false</appendAssemblyId>
  35. <archive>
  36. <manifest>
  37. <mainClass>com.jd.blockchain.contract.ComplexContractImpl</mainClass>
  38. </manifest>
  39. </archive>
  40. <descriptorRefs>
  41. <descriptorRef>jar-with-dependencies</descriptorRef>
  42. </descriptorRefs>
  43. </configuration>
  44. <executions>
  45. <execution>
  46. <id>make-assembly</id>
  47. <phase>package</phase>
  48. <goals>
  49. <goal>single</goal>
  50. </goals>
  51. </execution>
  52. </executions>
  53. </plugin>
  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>

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