pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>ssj</artifactId>
  6. <groupId>com.ssj</groupId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>ssj-kmt</artifactId>
  11. <packaging>war</packaging>
  12. <name>ssj-kmt</name>
  13. <url>http://www.example.com</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <java.version>1.8</java.version>
  18. <!--以下两项需要如果不配置,解析themleaft 会有问题-->
  19. <thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>
  20. <thymeleaf-layout-dialect.version>2.0.5</thymeleaf-layout-dialect.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>junit</groupId>
  25. <artifactId>junit</artifactId>
  26. <version>4.11</version>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.ssj</groupId>
  31. <artifactId>ssj-kmt-exercise-service</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.ssj</groupId>
  35. <artifactId>ssj-common-controller</artifactId>
  36. <version>0.0.1-SNAPSHOT</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.ssj</groupId>
  40. <artifactId>ssj-common-config</artifactId>
  41. <version>0.0.1-SNAPSHOT</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.ssj</groupId>
  45. <artifactId>ssj-common-weixin-pay</artifactId>
  46. <version>0.0.1-SNAPSHOT</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.ssj</groupId>
  50. <artifactId>ssj-common-weixin</artifactId>
  51. <version>0.0.1-SNAPSHOT</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.ssj</groupId>
  55. <artifactId>ssj-common-file</artifactId>
  56. <version>0.0.1-SNAPSHOT</version>
  57. </dependency>
  58. </dependencies>
  59. </project>