You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
263 lines
9.3 KiB
263 lines
9.3 KiB
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<groupId>com.zscat.mallplus</groupId>
|
|
<artifactId>mallplus-admin</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>mallplus-admin</name>
|
|
<description>mallplus-admin project for mall</description>
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<!--<version>2.1.3.RELEASE</version>-->
|
|
<version>2.1.3.RELEASE</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>aliyun</id>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>aliyun_thirdparty</id>
|
|
<url>http://maven.aliyun.com/nexus/content/repositories/thirdparty/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>spring-snapshots</id>
|
|
<url>http://repo.spring.io/libs-snapshot</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>aliyun</id>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>spring-snapshots</id>
|
|
<url>http://repo.spring.io/libs-snapshot</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>1.8</java.version>
|
|
<j2cache.version>2.7.2-release</j2cache.version>
|
|
<skipTests>true</skipTests>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
|
|
<dependency>
|
|
<groupId>org.jsoup</groupId>
|
|
<artifactId>jsoup</artifactId>
|
|
<version>1.12.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.geccocrawler</groupId>
|
|
<artifactId>gecco</artifactId>
|
|
<version>1.0.8</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.59</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-configuration</groupId>
|
|
<artifactId>commons-configuration</artifactId>
|
|
<version>1.10</version>
|
|
</dependency>
|
|
|
|
<!--模板引擎-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 定时任务 -->
|
|
<dependency>
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
<artifactId>quartz</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.mchange</groupId>
|
|
<artifactId>c3p0</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zscat.mallplus</groupId>
|
|
<artifactId>mallplus-mbg</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<!--redis依赖配置-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-redis</artifactId>
|
|
<version>1.3.8.RELEASE</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
|
|
<!--Swagger-UI API文档生产工具-->
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
<version>2.7.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
<version>2.7.0</version>
|
|
</dependency>
|
|
<!--JWT(Json Web Token)登录支持-->
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt</artifactId>
|
|
<version>0.9.0</version>
|
|
</dependency>
|
|
<!-- 阿里云OSS -->
|
|
<dependency>
|
|
<groupId>com.aliyun.oss</groupId>
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
<version>2.5.0</version>
|
|
</dependency>
|
|
<!--集成logstash-->
|
|
<dependency>
|
|
<groupId>net.logstash.logback</groupId>
|
|
<artifactId>logstash-logback-encoder</artifactId>
|
|
<version>4.8</version>
|
|
</dependency>
|
|
<!--redis依赖配置-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-redis</artifactId>
|
|
<version>1.3.8.RELEASE</version>
|
|
</dependency>
|
|
<!--lombok依赖-->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.afterturn</groupId>
|
|
<artifactId>easypoi-base</artifactId>
|
|
<version>3.2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.afterturn</groupId>
|
|
<artifactId>easypoi-web</artifactId>
|
|
<version>3.2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.afterturn</groupId>
|
|
<artifactId>easypoi-annotation</artifactId>
|
|
<version>3.2.0</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.getui.push/restful-sdk 个推-->
|
|
<dependency>
|
|
<groupId>com.getui.push</groupId>
|
|
<artifactId>restful-sdk</artifactId>
|
|
<version>1.0.0.11</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/java</directory>
|
|
<includes>
|
|
<include>**/*.xml</include>
|
|
<include>**/*.ftl</include>
|
|
<include>**/*.properties</include>
|
|
</includes>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<includes>
|
|
<include>**/*.xml</include>
|
|
<include>**/*.ftl</include>
|
|
<include>**/*.properties</include>
|
|
</includes>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<!--<plugin>-->
|
|
<!--<groupId>com.spotify</groupId>-->
|
|
<!--<artifactId>docker-maven-plugin</artifactId>-->
|
|
<!--<version>1.1.0</version>-->
|
|
<!--<executions>-->
|
|
<!--<execution>-->
|
|
<!--<id>build-image</id>-->
|
|
<!--<phase>package</phase>-->
|
|
<!--<goals>-->
|
|
<!--<goal>build</goal>-->
|
|
<!--</goals>-->
|
|
<!--</execution>-->
|
|
<!--</executions>-->
|
|
<!--<configuration>-->
|
|
<!--<imageName>mall/${project.artifactId}:${project.version}</imageName>-->
|
|
<!--<dockerHost>http://39.98.190.128:2375</dockerHost>-->
|
|
<!--<baseImage>java:8</baseImage>-->
|
|
<!--<entryPoint>["java", "-jar", "-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]</entryPoint>-->
|
|
<!--<resources>-->
|
|
<!--<resource>-->
|
|
<!--<targetPath>/</targetPath>-->
|
|
<!--<directory>${project.build.directory}</directory>-->
|
|
<!--<include>${project.build.finalName}.jar</include>-->
|
|
<!--</resource>-->
|
|
<!--</resources>-->
|
|
<!--</configuration>-->
|
|
<!--</plugin>-->
|
|
</plugins>
|
|
</build>
|
|
</project>
|
|
|