| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.cyzh</groupId>
- <artifactId>yinchuan-wuye</artifactId>
- <packaging>pom</packaging>
- <version>1.0</version>
- <modules>
- <module>wuye-eureka</module>
- <module>wuye-api-gateway</module>
- <module>wuye-config</module>
- <module>wuye-common</module>
- <module>wuye-gateway</module>
- <module>wuye-pay</module>
- <module>wuye-permissions</module>
- <module>wuye-device</module>
- <module>wuye-estate</module>
- <module>wuye-ad</module>
- <module>wuye-statistics</module>
- <module>wuye-lcn</module>
- <module>wuye-iot</module>
- <module>wuye-video-cloud</module>
- <module>wuye-third</module>
- </modules>
- <properties>
- <!-- 编码 -->
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <!-- Maven 编译版本 -->
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
- <!-- Mysql -->
- <mysql.version>8.0.11</mysql.version>
- <!-- Spring Boot -->
- <spring-boot-dependencies.version>2.0.7.RELEASE</spring-boot-dependencies.version>
- <!-- Spring Cloud -->
- <spring-cloud-dependencies.version>Finchley.SR2</spring-cloud-dependencies.version>
- <!-- lombok -->
- <lombok.version>1.18.2</lombok.version>
- <!-- mybatis-plus -->
- <mbp.boot.version>2.3</mbp.boot.version>
- <!-- druid 数据源 -->
- <druid.version>1.1.9</druid.version>
- <!-- Apache工具组件 -->
- <commons-io.version>2.6</commons-io.version>
- <commons-fileupload.version>1.3.1</commons-fileupload.version>
- <commons-codec.version>1.11</commons-codec.version>
- <poi.version>3.17</poi.version>
- <poi-ooxml.version>3.17</poi-ooxml.version>
- <easyexcel.version>1.1.2-beta5</easyexcel.version>
- <!-- FastDfs 客户端 -->
- <fastdfs-client.version>1.26.3</fastdfs-client.version>
- <!-- Lcn 分布式事务框架 -->
- <lcn-tx.version>5.0.2.RELEASE</lcn-tx.version>
- </properties>
- <distributionManagement>
- <repository>
- <id>nexus-releases</id>
- <name>ReleasesProxy</name>
- <url>http://800pharm.7766.org:9081/repository/maven-releases/</url>
- </repository>
- <snapshotRepository>
- <id>nexus-snapshots</id>
- <url>http://800pharm.7766.org:9081/repository/maven-snapshots/</url>
- </snapshotRepository>
- </distributionManagement>
- <!-- 依赖管理 -->
- <dependencyManagement>
- <dependencies>
- <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib -->
- <dependency>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <version>2.4</version>
- </dependency>
- <!-- LCN 分布式事务服务端 -->
- <dependency>
- <groupId>com.codingapi.txlcn</groupId>
- <artifactId>txlcn-tm</artifactId>
- <version>${lcn-tx.version}</version>
- </dependency>
- <!-- LCN 分布式事务客户端 -->
- <dependency>
- <groupId>com.codingapi.txlcn</groupId>
- <artifactId>txlcn-tc</artifactId>
- <version>${lcn-tx.version}</version>
- </dependency>
- <dependency>
- <groupId>com.codingapi.txlcn</groupId>
- <artifactId>txlcn-txmsg-netty</artifactId>
- <version>${lcn-tx.version}</version>
- </dependency>
- <!-- FastDfs 客户端 -->
- <dependency>
- <groupId>com.github.tobato</groupId>
- <artifactId>fastdfs-client</artifactId>
- <version>${fastdfs-client.version}</version>
- </dependency>
- <!-- Mysql -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.version}</version>
- </dependency>
- <!-- Spring Boot -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>${spring-boot-dependencies.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <!-- Spring Cloud -->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-dependencies</artifactId>
- <version>${spring-cloud-dependencies.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <!-- Lombok -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${lombok.version}</version>
- <scope>provided</scope>
- </dependency>
- <!-- mybatis-plus -->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-core</artifactId>
- <version>${mbp.boot.version}</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mbp.boot.version}</version>
- </dependency>
- <!-- 连接池druid 数据源 -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>${druid.version}</version>
- </dependency>
- <!-- Apache工具组件 -->
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>${commons-codec.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>${commons-io.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>${commons-fileupload.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>${easyexcel.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <dependencies>
- <!-- 模板引擎 -->
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity-engine-core</artifactId>
- <version>2.0</version>
- </dependency>
- </dependencies>
- <repositories>
- <!-- 使用阿里云镜像 -->
- <repository>
- <id>aliyun</id>
- <name>aliyun</name>
- <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
- </repository>
- <repository>
- <id>spring-milestones</id>
- <name>Spring Milestones</name>
- <url>https://repo.spring.io/milestone</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- </repositories>
- <!--<profiles>
- <!– 开发环境,默认激活 –>
- <profile>
- <id>dev</id>
- <properties>
- <env>dev</env>
- <config-url>http://smart-house-config:4001</config-url>
- </properties>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- <profile>
- <id>test</id>
- <properties>
- <env>test</env>
- <config-url>http://smart-house-config:4001</config-url>
- </properties>
- </profile>
- <profile>
- <id>prod</id>
- <properties>
- <env>prod</env>
- <config-url>http://smart-house-config:4001</config-url>
- </properties>
- </profile>
- </profiles>-->
- <build>
- <finalName>${project.artifactId}</finalName>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- <includes>
- <include>conf/*.yml</include>
- <include>*.yml</include>
- <include>*.properties</include>
- </includes>
- </resource>
- </resources>
- <pluginManagement>
- <plugins>
- <!-- Spring Boot 打包插件( 非“Web模块”请勿引入) -->
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring-boot-dependencies.version}</version>
- <configuration>
- <!-- 没有该配置,devtools 不生效 -->
- <fork>true</fork>
- <addResources>true</addResources>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </pluginManagement>
- <!-- 公共插件 -->
- <plugins>
- <!-- Maven 打包时跳过测试用例 -->
- <!-- <plugin>-->
- <!-- <groupId>org.apache.maven.plugins</groupId>-->
- <!-- <artifactId>maven-surefire-plugin</artifactId>-->
- <!-- <version>3.0.0-M3</version>-->
- <!-- <configuration>-->
- <!-- <!– <skip>true</skip> –>-->
- <!-- <skipTests>true</skipTests>-->
- <!-- <systemProperties>-->
- <!-- <property>-->
- <!-- <name>env</name>-->
- <!-- <value>${env}</value>-->
- <!-- </property>-->
- <!-- </systemProperties>-->
- <!-- </configuration>-->
- <!-- </plugin>-->
- </plugins>
- </build>
- </project>
|