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 1.7 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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>tools</artifactId>
  8. <version>1.1.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>tools-keygen-booter</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.jd.blockchain</groupId>
  14. <artifactId>tools-keygen</artifactId>
  15. <version>${project.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.jd.blockchain</groupId>
  19. <artifactId>crypto-classic</artifactId>
  20. <version>${project.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.jd.blockchain</groupId>
  24. <artifactId>crypto-sm</artifactId>
  25. <version>${project.version}</version>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <plugins>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-jar-plugin</artifactId>
  33. <configuration>
  34. <archive>
  35. <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
  36. <manifest>
  37. <mainClass>com.jd.blockchain.tools.keygen.boot.KeyGenBooter</mainClass>
  38. <addClasspath>true</addClasspath>
  39. <classpathPrefix>../lib</classpathPrefix>
  40. <useUniqueVersions>false</useUniqueVersions>
  41. </manifest>
  42. </archive>
  43. </configuration>
  44. </plugin>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-deploy-plugin</artifactId>
  48. <version>2.8.2</version>
  49. <configuration>
  50. <skip>true</skip>
  51. </configuration>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>

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