123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <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</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-sys-service</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-dao</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-mybatis-service-impl</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-rabbitmq</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</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-aliyun-sms</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-alipay</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-easemob</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-xunfei</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-jiguang</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-cmb</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-file</artifactId>
- </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>
- <!-- Package as an executable jar -->
- <build>
- <!-- 产生的构件的文件名,默认值是${artifactId}-${version}。 -->
- <finalName>${project.artifactId}</finalName>
- <resources>
- <resource>
- <directory>src/main/resources/</directory>
- <filtering>true</filtering>
- <includes>
- <include>**/*.properties</include>
- </includes>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <includes>
- <include>**.*</include>
- <include>**/*.*</include><!-- i18n能读取到 -->
- <include>**/*/*.*</include>
- </includes>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <configuration>
- <encoding>utf-8</encoding>
- <useDefaultDelimiters>true</useDefaultDelimiters>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>test</id>
- <properties>
- <!-- 环境标识,需要与配置文件的名称相对应 -->
- <activatedProperties>test</activatedProperties>
- </properties>
- </profile>
- </profiles>
- </project>
|