|
@@ -10,409 +10,5 @@
|
|
<modules>
|
|
<modules>
|
|
<module>platform-common</module> <!-- 公共模块 -->
|
|
<module>platform-common</module> <!-- 公共模块 -->
|
|
<module>platform-api</module> <!-- API模块 -->
|
|
<module>platform-api</module> <!-- API模块 -->
|
|
- <module>platform-admin</module>
|
|
|
|
- <module>platform-shop</module>
|
|
|
|
- <module>platform-framework</module>
|
|
|
|
</modules>
|
|
</modules>
|
|
-<!-- <parent>-->
|
|
|
|
-<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
|
-<!-- <artifactId>spring-boot-starter-parent</artifactId>-->
|
|
|
|
-<!-- <version>2.3.12.RELEASE</version>-->
|
|
|
|
-<!-- <relativePath/>-->
|
|
|
|
-<!-- </parent>-->
|
|
|
|
-
|
|
|
|
- <properties>
|
|
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
- <server.port>8080</server.port>
|
|
|
|
- <java-version>1.8</java-version>
|
|
|
|
- <servlet-version>3.1.0</servlet-version>
|
|
|
|
- <junit-version>4.12</junit-version>
|
|
|
|
- <springframework-version>4.3.7.RELEASE</springframework-version>
|
|
|
|
- <mysql-version>8.0.11</mysql-version>
|
|
|
|
- <hibernate-validator-version>5.4.1.Final</hibernate-validator-version>
|
|
|
|
- <druid-version>1.0.28</druid-version>
|
|
|
|
- <commons-lang-version>2.6</commons-lang-version>
|
|
|
|
- <commons-fileupload-version>1.3.3</commons-fileupload-version>
|
|
|
|
- <commons-io-version>2.5</commons-io-version>
|
|
|
|
- <commons-codec-version>1.10</commons-codec-version>
|
|
|
|
- <commons-configuration-version>1.10</commons-configuration-version>
|
|
|
|
- <slf4j-version>1.7.19</slf4j-version>
|
|
|
|
- <log4j-version>1.2.17</log4j-version>
|
|
|
|
- <fastjson-version>1.2.75</fastjson-version>
|
|
|
|
- <shiro-version>1.3.2</shiro-version>
|
|
|
|
- <velocity-version>1.7</velocity-version>
|
|
|
|
- <velocity-tools-version>2.0</velocity-tools-version>
|
|
|
|
- <jstl-version>1.2</jstl-version>
|
|
|
|
- <taglibs-version>1.1.2</taglibs-version>
|
|
|
|
- <freemarker-version>2.3.23</freemarker-version>
|
|
|
|
- <kaptcha.version>2.3.2</kaptcha.version>
|
|
|
|
- <j2cache.version>2.7.2-release</j2cache.version>
|
|
|
|
- <ehcache.version>2.10.4</ehcache.version>
|
|
|
|
- <jgroups.version>3.6.13.Final</jgroups.version>
|
|
|
|
- <weixin-java-mp.version>3.2.0</weixin-java-mp.version>
|
|
|
|
- <lombok.version>1.18.4</lombok.version>
|
|
|
|
- <mybatis-plus.version>3.1.0</mybatis-plus.version>
|
|
|
|
-<!-- <mybatis-plus.version>3.3.1.tmp</mybatis-plus.version>-->
|
|
|
|
- <alipay-sdk.version>3.6.0.ALL</alipay-sdk.version>
|
|
|
|
- <qcloudsms.version>1.0.6</qcloudsms.version>
|
|
|
|
- </properties>
|
|
|
|
-
|
|
|
|
- <!-- 阿里云maven仓库 -->
|
|
|
|
- <repositories>
|
|
|
|
- <repository>
|
|
|
|
- <id>public</id>
|
|
|
|
- <name>aliyun nexus</name>
|
|
|
|
- <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
|
|
- <releases>
|
|
|
|
- <enabled>true</enabled>
|
|
|
|
- </releases>
|
|
|
|
- </repository>
|
|
|
|
- </repositories>
|
|
|
|
- <pluginRepositories>
|
|
|
|
- <pluginRepository>
|
|
|
|
- <id>public</id>
|
|
|
|
- <name>aliyun nexus</name>
|
|
|
|
- <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
|
|
- <releases>
|
|
|
|
- <enabled>true</enabled>
|
|
|
|
- </releases>
|
|
|
|
- <snapshots>
|
|
|
|
- <enabled>false</enabled>
|
|
|
|
- </snapshots>
|
|
|
|
- </pluginRepository>
|
|
|
|
- </pluginRepositories>
|
|
|
|
-
|
|
|
|
- <dependencies>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>junit</groupId>
|
|
|
|
- <artifactId>junit</artifactId>
|
|
|
|
- <version>${junit-version}</version>
|
|
|
|
- <scope>test</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>javax.servlet</groupId>
|
|
|
|
- <artifactId>javax.servlet-api</artifactId>
|
|
|
|
- <version>${servlet-version}</version>
|
|
|
|
- <scope>provided</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.hibernate</groupId>
|
|
|
|
- <artifactId>hibernate-validator</artifactId>
|
|
|
|
- <version>${hibernate-validator-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
|
- <artifactId>spring-webmvc</artifactId>
|
|
|
|
- <version>${springframework-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
|
- <artifactId>spring-jdbc</artifactId>
|
|
|
|
- <version>${springframework-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
|
- <artifactId>spring-context-support</artifactId>
|
|
|
|
- <version>${springframework-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
|
- <artifactId>spring-aop</artifactId>
|
|
|
|
- <version>${springframework-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
|
- <artifactId>spring-aspects</artifactId>
|
|
|
|
- <version>${springframework-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
|
- <artifactId>spring-test</artifactId>
|
|
|
|
- <version>${springframework-version}</version>
|
|
|
|
- <scope>test</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
|
- <artifactId>slf4j-api</artifactId>
|
|
|
|
- <version>${slf4j-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
|
- <artifactId>slf4j-log4j12</artifactId>
|
|
|
|
- <version>${slf4j-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>log4j</groupId>
|
|
|
|
- <artifactId>log4j</artifactId>
|
|
|
|
- <version>${log4j-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>mysql</groupId>
|
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
|
- <version>${mysql-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
|
- <artifactId>druid</artifactId>
|
|
|
|
- <version>${druid-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>commons-lang</groupId>
|
|
|
|
- <artifactId>commons-lang</artifactId>
|
|
|
|
- <version>${commons-lang-version}</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>commons-lang</groupId>
|
|
|
|
- <artifactId>commons-lang</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>commons-fileupload</groupId>
|
|
|
|
- <artifactId>commons-fileupload</artifactId>
|
|
|
|
- <version>${commons-fileupload-version}</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>commons-io</groupId>
|
|
|
|
- <artifactId>commons-io</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>commons-io</groupId>
|
|
|
|
- <artifactId>commons-io</artifactId>
|
|
|
|
- <version>${commons-io-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
|
- <artifactId>fastjson</artifactId>
|
|
|
|
- <version>${fastjson-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.thoughtworks.xstream</groupId>
|
|
|
|
- <artifactId>xstream</artifactId>
|
|
|
|
- <version>1.4.16</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>commons-codec</groupId>
|
|
|
|
- <artifactId>commons-codec</artifactId>
|
|
|
|
- <version>${commons-codec-version}</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
- <artifactId>jackson-databind</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>commons-configuration</groupId>
|
|
|
|
- <artifactId>commons-configuration</artifactId>
|
|
|
|
- <version>${commons-configuration-version}</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>commons-logging</groupId>
|
|
|
|
- <artifactId>commons-logging</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.shiro</groupId>
|
|
|
|
- <artifactId>shiro-core</artifactId>
|
|
|
|
- <version>${shiro-version}</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
|
- <artifactId>slf4j-api</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.shiro</groupId>
|
|
|
|
- <artifactId>shiro-spring</artifactId>
|
|
|
|
- <version>${shiro-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- Velocity视图所需jar -->
|
|
|
|
- <dependency>
|
|
|
|
- <artifactId>velocity</artifactId>
|
|
|
|
- <groupId>org.apache.velocity</groupId>
|
|
|
|
- <version>${velocity-version}</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>commons-lang</groupId>
|
|
|
|
- <artifactId>commons-lang</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.velocity</groupId>
|
|
|
|
- <artifactId>velocity-tools</artifactId>
|
|
|
|
- <version>${velocity-tools-version}</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <artifactId>dom4j</artifactId>
|
|
|
|
- <groupId>dom4j</groupId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <artifactId>oro</artifactId>
|
|
|
|
- <groupId>oro</groupId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <artifactId>sslext</artifactId>
|
|
|
|
- <groupId>sslext</groupId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <artifactId>struts-core</artifactId>
|
|
|
|
- <groupId>org.apache.struts</groupId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <artifactId>struts-taglib</artifactId>
|
|
|
|
- <groupId>org.apache.struts</groupId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <artifactId>struts-tiles</artifactId>
|
|
|
|
- <groupId>org.apache.struts</groupId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <artifactId>commons-beanutils</artifactId>
|
|
|
|
- <groupId>commons-beanutils</groupId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <artifactId>commons-chain</artifactId>
|
|
|
|
- <groupId>commons-chain</groupId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <artifactId>commons-collections</artifactId>
|
|
|
|
- <groupId>commons-collections</groupId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>org.apache.velocity</groupId>
|
|
|
|
- <artifactId>velocity</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>commons-logging</groupId>
|
|
|
|
- <artifactId>commons-logging</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- JSP视图所需jar -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>jstl</groupId>
|
|
|
|
- <artifactId>jstl</artifactId>
|
|
|
|
- <version>${jstl-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>taglibs</groupId>
|
|
|
|
- <artifactId>standard</artifactId>
|
|
|
|
- <version>${taglibs-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- Freemarker视图所需jar -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.freemarker</groupId>
|
|
|
|
- <artifactId>freemarker</artifactId>
|
|
|
|
- <version>${freemarker-version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <!--验证码生成工具-->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.github.penggle</groupId>
|
|
|
|
- <artifactId>kaptcha</artifactId>
|
|
|
|
- <version>${kaptcha.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>net.oschina.j2cache</groupId>
|
|
|
|
- <artifactId>j2cache-core</artifactId>
|
|
|
|
- <version>${j2cache.version}</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
|
- <artifactId>fastjson</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
- <artifactId>jackson-core</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
|
- <artifactId>slf4j-api</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency><!-- Ehcache 2.x //-->
|
|
|
|
- <groupId>net.sf.ehcache</groupId>
|
|
|
|
- <artifactId>ehcache</artifactId>
|
|
|
|
- <version>${ehcache.version}</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
|
- <artifactId>slf4j-api</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.jgroups</groupId>
|
|
|
|
- <artifactId>jgroups</artifactId>
|
|
|
|
- <version>${jgroups.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- lombok可使代码更简洁 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.projectlombok</groupId>
|
|
|
|
- <artifactId>lombok</artifactId>
|
|
|
|
- <version>${lombok.version}</version>
|
|
|
|
- <scope>provided</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.baomidou</groupId>
|
|
|
|
- <artifactId>mybatis-plus</artifactId>
|
|
|
|
- <version>${mybatis-plus.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- https://mvnrepository.com/artifact/com.alipay.sdk/alipay-sdk-java -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.alipay.sdk</groupId>
|
|
|
|
- <artifactId>alipay-sdk-java</artifactId>
|
|
|
|
- <version>${alipay-sdk.version}</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>commons-logging</groupId>
|
|
|
|
- <artifactId>commons-logging</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- </dependencies>
|
|
|
|
- <build>
|
|
|
|
- <plugins>
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
- <version>3.1</version>
|
|
|
|
- <configuration>
|
|
|
|
- <source>1.8</source>
|
|
|
|
- <target>1.8</target>
|
|
|
|
- </configuration>
|
|
|
|
- </plugin>
|
|
|
|
- <plugin>
|
|
|
|
- <artifactId>maven-war-plugin</artifactId>
|
|
|
|
- <version>2.6</version>
|
|
|
|
- <configuration>
|
|
|
|
- <warSourceDirectory>src/main/webapp</warSourceDirectory>
|
|
|
|
- <failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
- </configuration>
|
|
|
|
- </plugin>
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
- <artifactId>maven-resources-plugin</artifactId>
|
|
|
|
- <version>2.6</version>
|
|
|
|
- <configuration>
|
|
|
|
- <encoding>UTF-8</encoding>
|
|
|
|
- </configuration>
|
|
|
|
- </plugin>
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
- <artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
- <version>3.0.0</version>
|
|
|
|
- </plugin>
|
|
|
|
- </plugins>
|
|
|
|
- </build>
|
|
|
|
</project>
|
|
</project>
|