1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <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>
- <artifactId>ssj-sys</artifactId>
- <packaging>war</packaging>
- <name>ssj-sys</name>
- <description>sys</description>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <elasticsearch.version>7.2.0</elasticsearch.version>
- </properties>
- <dependencies>
-
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-kmt-exercise-service-impl</artifactId>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-sys-service</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-excel</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>org.apache.dubbo</groupId>-->
- <!-- <artifactId>dubbo-registry-nacos</artifactId>-->
- <!-- <version>2.7.5</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>com.alibaba.nacos</groupId>-->
- <!-- <artifactId>nacos-client</artifactId>-->
- <!-- <version>1.1.4</version>-->
- <!-- </dependency>-->
- </dependencies>
- <profiles>
- <profile>
- <id>test</id>
- <properties>
- <!-- 环境标识,需要与配置文件的名称相对应 -->
- <activatedProperties>test</activatedProperties>
- </properties>
- </profile>
- </profiles>
- </project>
|