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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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>contract</artifactId>
  8. <version>0.9.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>contract-tools</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.jd.blockchain</groupId>
  14. <artifactId>contract-compiler</artifactId>
  15. <version>${project.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.jd.blockchain</groupId>
  19. <artifactId>contract-jar</artifactId>
  20. <version>${project.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>commons-io</groupId>
  24. <artifactId>commons-io</artifactId>
  25. <version>${commons-io.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>junit</groupId>
  29. <artifactId>junit</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.mockito</groupId>
  34. <artifactId>mockito-core</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.slf4j</groupId>
  39. <artifactId>slf4j-log4j12</artifactId>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-surefire-plugin</artifactId>
  47. <version>2.5</version>
  48. <configuration>
  49. <skipTests>true</skipTests>
  50. </configuration>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. <!--<build>-->
  55. <!--<plugins>-->
  56. <!--<plugin>-->
  57. <!--<groupId>org.apache.maven.plugins</groupId>-->
  58. <!--<artifactId>maven-compiler-plugin</artifactId>-->
  59. <!--<version>3.1</version>-->
  60. <!--<configuration>-->
  61. <!--<source>1.8</source>-->
  62. <!--<target>1.8</target>-->
  63. <!--<encoding>UTF-8</encoding>-->
  64. <!--<compilerArgs>-->
  65. <!--&lt;!&ndash;<arg>-verbose</arg>&ndash;&gt;-->
  66. <!--&lt;!&ndash;<arg>-Xlint:unchecked</arg>&ndash;&gt;-->
  67. <!--&lt;!&ndash;<arg>-Xlint:deprecation</arg>&ndash;&gt;-->
  68. <!--&lt;!&ndash;<arg>-bootclasspath</arg>&ndash;&gt;-->
  69. <!--&lt;!&ndash;<arg>${env.JAVA_HOME}/jre/lib/rt.jar</arg>&ndash;&gt;-->
  70. <!--<arg>-extdirs</arg>-->
  71. <!--<arg>${project.basedir}/../contract/contract-libs;$JAVA_HOME/jre/lib/ext</arg>-->
  72. <!--</compilerArgs>-->
  73. <!--</configuration>-->
  74. <!--</plugin>-->
  75. <!--</plugins>-->
  76. <!--</build>-->
  77. </project>

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