289 lines
8.7 KiB
XML
289 lines
8.7 KiB
XML
<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>org.jeewxframework.boot</groupId>
|
|
<description>JeecgBoot捷微——微信管家系统——1.1.0</description>
|
|
<artifactId>jeewx-boot-parent</artifactId>
|
|
<version>1.0.3</version>
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
<modules>
|
|
<module>jeewx-boot-start</module>
|
|
<module>jeewx-boot-base-api</module>
|
|
<module>jeewx-boot-base-system</module>
|
|
<module>jeewx-boot-module-weixin</module>
|
|
<module>huodong</module>
|
|
</modules>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>aliyun</id>
|
|
<name>aliyun Repository</name>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>jeecg</id>
|
|
<name>jeecg Repository</name>
|
|
<url>http://maven.jeewx.com/nexus/content/repositories/jeecg</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<druid.version>1.1.17</druid.version>
|
|
<springboot.version>2.1.3.RELEASE</springboot.version>
|
|
<commons.version>2.6</commons.version>
|
|
<commons-fileupload.version>1.4</commons-fileupload.version>
|
|
<commons-chalics.version>2.7.1</commons-chalics.version>
|
|
<commons-email.version>1.5</commons-email.version>
|
|
<commons-httpclient.version>3.0.1</commons-httpclient.version>
|
|
|
|
<velocity.version>1.7</velocity.version>
|
|
<velocity-tools.version>2.0</velocity-tools.version>
|
|
<guava.version>12.0</guava.version>
|
|
<ueditor-mini.version>1.0</ueditor-mini.version>
|
|
|
|
<jeewx-api.version>1.3.1</jeewx-api.version>
|
|
<jeewx-boot-start-core.version>1.0.7</jeewx-boot-start-core.version>
|
|
|
|
<aliyun-java-sdk-core.version>3.2.3</aliyun-java-sdk-core.version>
|
|
<aliyun-java-sdk-dysmsapi.version>1.0.0</aliyun-java-sdk-dysmsapi.version>
|
|
<xstream.version>1.4.7</xstream.version>
|
|
<autopoi-web>1.0.4</autopoi-web>
|
|
<poi.version>3.9</poi.version>
|
|
<hutool.version>4.5.15</hutool.version>
|
|
<aliyun.oss.version>3.6.0</aliyun.oss.version>
|
|
<jeewx-boot-base-api.version>1.0.0</jeewx-boot-base-api.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<!-- SpringBoot 官方依赖 -->
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>${springboot.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<!-- mybatis -->
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>1.3.2</version>
|
|
</dependency>
|
|
|
|
<!-- Apache Velocity -->
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity</artifactId>
|
|
<version>${velocity.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity-tools</artifactId>
|
|
<version>${velocity-tools.version}</version>
|
|
</dependency>
|
|
|
|
<!--mysql -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>5.1.47</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<!-- druid -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
<version>${druid.version}</version>
|
|
</dependency>
|
|
|
|
<!-- json -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.56</version>
|
|
</dependency>
|
|
|
|
<!-- UE编辑器 -->
|
|
<dependency>
|
|
<groupId>com.baidu.ueditor</groupId>
|
|
<artifactId>ueditor-mini</artifactId>
|
|
<version>${ueditor-mini.version}</version>
|
|
</dependency>
|
|
<!-- jeewx-api -->
|
|
<dependency>
|
|
<groupId>org.jeecgframework</groupId>
|
|
<artifactId>jeewx-api</artifactId>
|
|
<version>${jeewx-api.version}</version>
|
|
</dependency>
|
|
<!-- 架构核心包 -->
|
|
<dependency>
|
|
<groupId>org.jeewxframework.boot</groupId>
|
|
<artifactId>jeewx-boot-start-core</artifactId>
|
|
<version>${jeewx-boot-start-core.version}</version>
|
|
</dependency>
|
|
|
|
<!-- commons -->
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>${commons.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>${commons-fileupload.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-chalics</artifactId>
|
|
<version>${commons-chalics.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-email</artifactId>
|
|
<version>${commons-email.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-httpclient</groupId>
|
|
<artifactId>commons-httpclient</artifactId>
|
|
<version>${commons-httpclient.version}</version>
|
|
</dependency>
|
|
|
|
<!-- poi start -->
|
|
<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>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml-schemas</artifactId>
|
|
<version>${poi.version}</version>
|
|
</dependency>
|
|
<!-- poi end -->
|
|
|
|
<!-- 阿里云短信 -->
|
|
<dependency>
|
|
<groupId>com.aliyun</groupId>
|
|
<artifactId>aliyun-java-sdk-dysmsapi</artifactId>
|
|
<version>${aliyun-java-sdk-dysmsapi.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.aliyun</groupId>
|
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
|
<version>${aliyun-java-sdk-core.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Xml数据导出导入 -->
|
|
<dependency>
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
<artifactId>xstream</artifactId>
|
|
<version>${xstream.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jeecgframework</groupId>
|
|
<artifactId>autopoi-web</artifactId>
|
|
<version>${autopoi-web}</version>
|
|
</dependency>
|
|
<!-- hutool -->
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 上传图片阿里云 -->
|
|
<dependency>
|
|
<groupId>com.aliyun.oss</groupId>
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
<version>${aliyun.oss.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Jeewx Boot 插件 -->
|
|
<dependency>
|
|
<groupId>org.jeewxframework.boot</groupId>
|
|
<artifactId>jeewx-boot-base-api</artifactId>
|
|
<version>${jeewx-boot-base-api.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!-- <plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${springboot.version}</version>
|
|
</plugin> -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.0</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- 打包跳过测试 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.22.1</version>
|
|
<configuration>
|
|
<skipTests>true</skipTests>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- 避免font文件的二进制文件格式压缩破坏 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>3.1.0</version>
|
|
<configuration>
|
|
<nonFilteredFileExtensions>
|
|
<nonFilteredFileExtension>woff</nonFilteredFileExtension>
|
|
<nonFilteredFileExtension>woff2</nonFilteredFileExtension>
|
|
<nonFilteredFileExtension>eot</nonFilteredFileExtension>
|
|
<nonFilteredFileExtension>ttf</nonFilteredFileExtension>
|
|
<nonFilteredFileExtension>svg</nonFilteredFileExtension>
|
|
</nonFilteredFileExtensions>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/java</directory>
|
|
<includes>
|
|
<include>**/*.xml</include>
|
|
</includes>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
</project> |