12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.ssj</groupId>
- <artifactId>ssj</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <groupId>com.ssj.weixin.api</groupId>
- <artifactId>ssj-weixin-api</artifactId>
- <packaging>war</packaging>
- <name>ssj-weixin-api</name>
- <description>私塾家找好书上好课</description>
- <dependencies>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-kmt-exercise-service</artifactId>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- <version>2.7.0</version>
- </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-baidu-aipface</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-config</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>
-
-
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-mongodb</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>1.54</version>
- </dependency>
-
-
-
-
- </dependencies>
- </project>
|