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

4 years ago
3 years ago
4 years ago
3 years ago
4 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <groupId>com.jd.blockchain</groupId>
  6. <artifactId>jdchain-samples</artifactId>
  7. <version>1.6.0.RELEASE</version>
  8. <packaging>pom</packaging>
  9. <properties>
  10. <framework.version>1.6.0.RELEASE</framework.version>
  11. <core.version>1.6.0.RELEASE</core.version>
  12. </properties>
  13. <modules>
  14. <module>sdk-samples</module>
  15. <module>contract-samples</module>
  16. </modules>
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.apache.maven.plugins</groupId>
  21. <artifactId>maven-compiler-plugin</artifactId>
  22. <version>3.8.1</version>
  23. <configuration>
  24. <source>1.8</source>
  25. <target>1.8</target>
  26. <encoding>UTF-8</encoding>
  27. <optimize>false</optimize>
  28. <debug>true</debug>
  29. <showDeprecation>false</showDeprecation>
  30. <showWarnings>false</showWarnings>
  31. </configuration>
  32. </plugin>
  33. </plugins>
  34. </build>
  35. </project>