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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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>0.8.3.RELEASE</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. </dependencies>
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <groupId>org.apache.maven.plugins</groupId>
  22. <artifactId>maven-jar-plugin</artifactId>
  23. <configuration>
  24. <archive>
  25. <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
  26. <manifest>
  27. <mainClass>com.jd.blockchain.tools.keygen.boot.KeyGenBooter</mainClass>
  28. <addClasspath>true</addClasspath>
  29. <classpathPrefix>../lib</classpathPrefix>
  30. <useUniqueVersions>false</useUniqueVersions>
  31. </manifest>
  32. </archive>
  33. </configuration>
  34. </plugin>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-deploy-plugin</artifactId>
  38. <version>2.8.2</version>
  39. <configuration>
  40. <skip>true</skip>
  41. </configuration>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. </project>

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