mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-10-03 02:36:39 +08:00
390 lines
12 KiB
XML
390 lines
12 KiB
XML
<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/xsd/maven-4.0.0.xsd">
|
||
<parent>
|
||
<groupId>net.1024lab</groupId>
|
||
<artifactId>smart-admin-service-parent</artifactId>
|
||
<version>1.0.0</version>
|
||
<relativePath>../pom.xml</relativePath>
|
||
</parent>
|
||
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<artifactId>smart-admin-api</artifactId>
|
||
<packaging>jar</packaging>
|
||
|
||
<name>smart-admin-api</name>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
<java.version>1.8</java.version>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
|
||
<!--springboot starter dependency begin -->
|
||
<!--
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-log4j2</artifactId>
|
||
</dependency>
|
||
|
||
-->
|
||
|
||
<!--JWT-->
|
||
<dependency>
|
||
<groupId>com.auth0</groupId>
|
||
<artifactId>java-jwt</artifactId>
|
||
<version>3.8.2</version>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-aop</artifactId>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>spring-boot-starter-logging</artifactId>
|
||
<groupId>org.springframework.boot</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-quartz</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-validation</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
<!-- 去除内嵌tomcat -->
|
||
<!--
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
-->
|
||
</dependency>
|
||
<!-- 去除内嵌tomcat后,添加servlet的依赖-->
|
||
<!--
|
||
<dependency>
|
||
<groupId>javax.servlet</groupId>
|
||
<artifactId>javax.servlet-api</artifactId>
|
||
<version>3.1.0</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
-->
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-websocket</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-mail</artifactId>
|
||
</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-actuator</artifactId>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>logback-classic</artifactId>
|
||
<groupId>ch.qos.logback</groupId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<artifactId>spring-boot-starter-logging</artifactId>
|
||
<groupId>org.springframework.boot</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<!--springboot starter dependency end -->
|
||
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
</dependency>
|
||
|
||
<!--velocity begin-->
|
||
<dependency>
|
||
<artifactId>velocity</artifactId>
|
||
<groupId>org.apache.velocity</groupId>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>commons-collections</artifactId>
|
||
<groupId>commons-collections</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.velocity</groupId>
|
||
<artifactId>velocity-engine-core</artifactId>
|
||
</dependency>
|
||
<!--velocity end-->
|
||
|
||
<!--fastjson -->
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
</dependency>
|
||
|
||
<!-- druid -->
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>druid</artifactId>
|
||
</dependency>
|
||
|
||
<!-- p6spy -->
|
||
<dependency>
|
||
<groupId>p6spy</groupId>
|
||
<artifactId>p6spy</artifactId>
|
||
</dependency>
|
||
|
||
<!-- swagger begin -->
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger2</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger-ui</artifactId>
|
||
</dependency>
|
||
<!-- swagger end -->
|
||
|
||
<!-- knife4j begin -->
|
||
<dependency>
|
||
<groupId>com.github.xiaoymin</groupId>
|
||
<artifactId>knife4j-spring-boot-starter</artifactId>
|
||
<version>${knife4j.version}</version>
|
||
</dependency>
|
||
<!-- knife4j end -->
|
||
|
||
<!-- guava -->
|
||
<dependency>
|
||
<groupId>com.google.guava</groupId>
|
||
<artifactId>guava</artifactId>
|
||
</dependency>
|
||
|
||
<!-- oss begin -->
|
||
<dependency>
|
||
<groupId>com.aliyun.oss</groupId>
|
||
<artifactId>aliyun-sdk-oss</artifactId>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>commons-logging</artifactId>
|
||
<groupId>commons-logging</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.qiniu</groupId>
|
||
<artifactId>qiniu-java-sdk</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-fileupload</groupId>
|
||
<artifactId>commons-fileupload</artifactId>
|
||
</dependency>
|
||
<!-- oss end -->
|
||
|
||
<!--jjwt-->
|
||
<dependency>
|
||
<groupId>io.jsonwebtoken</groupId>
|
||
<artifactId>jjwt</artifactId>
|
||
</dependency>
|
||
|
||
<!-- easy poi begin -->
|
||
<dependency>
|
||
<groupId>cn.afterturn</groupId>
|
||
<artifactId>easypoi-spring-boot-starter</artifactId>
|
||
</dependency>
|
||
<!-- easy poi end -->
|
||
|
||
<dependency>
|
||
<groupId>commons-beanutils</groupId>
|
||
<artifactId>commons-beanutils</artifactId>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>commons-logging</artifactId>
|
||
<groupId>commons-logging</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-pool2</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.github.penggle</groupId>
|
||
<artifactId>kaptcha</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
|
||
<artifactId>concurrentlinkedhashmap-lru</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.squareup.okhttp3</groupId>
|
||
<artifactId>okhttp</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>eu.bitwalker</groupId>
|
||
<artifactId>UserAgentUtils</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- zxing生成二维码 -->
|
||
<dependency>
|
||
<groupId>com.google.zxing</groupId>
|
||
<artifactId>core</artifactId>
|
||
<version>3.3.3</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.google.zxing</groupId>
|
||
<artifactId>javase</artifactId>
|
||
<version>3.3.3</version>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>alipay-sdk</groupId>
|
||
<artifactId>alipay-sdk</artifactId>
|
||
<version>1.0.0</version>
|
||
<scope>system</scope>
|
||
<systemPath>${basedir}/lib/alipay-sdk-java20170324180803.jar</systemPath>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>alipay-sdk-source</groupId>
|
||
<artifactId>alipay-sdk</artifactId>
|
||
<version>1.0.0</version>
|
||
<scope>system</scope>
|
||
<systemPath>${basedir}/lib/alipay-sdk-java20170324180803-source.jar</systemPath>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>alipay-commons-logging</groupId>
|
||
<artifactId>alipay-sdk</artifactId>
|
||
<version>1.0.0</version>
|
||
<scope>system</scope>
|
||
<systemPath>${basedir}/lib/commons-logging-1.1.1.jar</systemPath>
|
||
</dependency>
|
||
|
||
|
||
<!-- axis 依赖开始 -->
|
||
<dependency>
|
||
<groupId>org.apache.axis</groupId>
|
||
<artifactId>axis</artifactId>
|
||
<version>1.4</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>axis</groupId>
|
||
<artifactId>axis-jaxrpc</artifactId>
|
||
<version>1.4</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>commons-discovery</groupId>
|
||
<artifactId>commons-discovery</artifactId>
|
||
<version>0.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>wsdl4j</groupId>
|
||
<artifactId>wsdl4j</artifactId>
|
||
<version>1.6.3</version>
|
||
</dependency>
|
||
<!-- axis 依赖结束 -->
|
||
|
||
|
||
</dependencies>
|
||
|
||
<developers>
|
||
<developer>
|
||
<name>wxpay</name>
|
||
<email></email>
|
||
<url>https://pay.weixin.qq.com/wiki/doc/api/wxa/wxa_api.php?chapter=11_1</url>
|
||
</developer>
|
||
</developers>
|
||
|
||
<build>
|
||
<defaultGoal>compile</defaultGoal>
|
||
<resources>
|
||
<resource>
|
||
<directory>src/main/java</directory>
|
||
<includes>
|
||
<include>**/*.*</include>
|
||
</includes>
|
||
</resource>
|
||
<resource>
|
||
<filtering>false</filtering>
|
||
<directory>src/main/resources</directory>
|
||
<excludes>
|
||
<exclude>dev/*</exclude>
|
||
<exclude>sit/*</exclude>
|
||
<exclude>pre/*</exclude>
|
||
<exclude>prod/*</exclude>
|
||
</excludes>
|
||
</resource>
|
||
<resource>
|
||
<directory>src/main/resources/${profiles.active}</directory>
|
||
<filtering>true</filtering>
|
||
<includes>
|
||
<include>*.properties</include>
|
||
<include>*.xml</include>
|
||
</includes>
|
||
</resource>
|
||
</resources>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<configuration>
|
||
<fork>true</fork>
|
||
<includeSystemScope>true</includeSystemScope>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-surefire-plugin</artifactId>
|
||
<configuration>
|
||
<testFailureIgnore>true</testFailureIgnore>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<!-- fix web.xml is missing -->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-war-plugin</artifactId>
|
||
<configuration>
|
||
<failOnMissingWebXml>false</failOnMissingWebXml>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
|
||
</build>
|
||
</project> |