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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. </dependencies>
  26. <build>
  27. <plugins>
  28. <plugin>
  29. <artifactId>maven-assembly-plugin</artifactId>
  30. <configuration>
  31. <finalName>transfer</finalName>
  32. <appendAssemblyId>false</appendAssemblyId>
  33. <archive>
  34. <manifest>
  35. <mainClass>com.jd.blockchain.contract.TransferContractImpl</mainClass>
  36. </manifest>
  37. </archive>
  38. <descriptorRefs>
  39. <descriptorRef>jar-with-dependencies</descriptorRef>
  40. </descriptorRefs>
  41. </configuration>
  42. <executions>
  43. <execution>
  44. <id>make-assembly</id>
  45. <phase>package</phase>
  46. <goals>
  47. <goal>single</goal>
  48. </goals>
  49. </execution>
  50. </executions>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. </project>

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