12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>ssj</artifactId>
- <groupId>com.ssj</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>ssj-kmt</artifactId>
- <packaging>war</packaging>
- <name>ssj-kmt</name>
- <url>http://www.example.com</url>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <java.version>1.8</java.version>
- <!--以下两项需要如果不配置,解析themleaft 会有问题-->
- <thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>
- <thymeleaf-layout-dialect.version>2.0.5</thymeleaf-layout-dialect.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.11</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-kmt-exercise-service</artifactId>
- </dependency>
-
-
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-controller</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
-
-
-
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-config</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
-
-
-
-
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-weixin-pay</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
-
-
-
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-weixin</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
-
-
-
-
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-file</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
-
-
-
- </dependencies>
- </project>
|