| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <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</groupId>
- <artifactId>ssj-kmt-exercise-api</artifactId>
- <packaging>war</packaging>
- <name>ssj-kmt-exercise-api</name>
- <description>爱佳kmt</description>
-
-
- <properties>
- <java.version>1.8</java.version>
-
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-kmt-exercise-service</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-aijia-service</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-controller</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>1.54</version>
- </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-rabbitmq</artifactId>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-config</artifactId>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-excel</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>1.1.16</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-file</artifactId>
- </dependency>
- </dependencies>
- </project>
|