8 Star 29 Fork 25

JeeWeb敏捷开发平台 / jeeweb-bbs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 7.02 KB
一键复制 编辑 原始数据 按行查看 历史
wangcunjian 提交于 2018-10-08 13:04 . 论坛代码第一次提交
<?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">
<!--基于Springboot-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.1.RELEASE</version>
<relativePath/>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>cn.jeeweb</groupId>
<artifactId>jeeweb-bbs</artifactId>
<packaging>jar</packaging>
<version>1.0.4.RELEASE</version>
<url>http://www.jeeweb.cn</url>
<properties>
<bitwalker.version>1.19</bitwalker.version>
<swagger.version>2.7.0</swagger.version>
<jeeweb.version>1.0.4.RELEASE</jeeweb.version>
</properties>
<dependencies>
<!--spring boot 相关开始-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!--spring boot 相关结束-->
<!--热部署动态更新-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<!--springBoot的aop-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
<!--引入标签-->
<dependency>
<groupId>cn.jeeweb</groupId>
<artifactId>jeeweb-common-mybatismvc</artifactId>
<version>${jeeweb.version}</version>
</dependency>
<dependency>
<groupId>cn.jeeweb</groupId>
<artifactId>jeeweb-common-oss</artifactId>
<version>${jeeweb.version}</version>
</dependency>
<dependency>
<groupId>cn.jeeweb</groupId>
<artifactId>jeeweb-common-sms</artifactId>
<version>${jeeweb.version}</version>
</dependency>
<dependency>
<groupId>cn.jeeweb</groupId>
<artifactId>jeeweb-common-email</artifactId>
<version>${jeeweb.version}</version>
</dependency>
<dependency>
<groupId>cn.jeeweb</groupId>
<artifactId>jeeweb-common-quartz</artifactId>
<version>${jeeweb.version}</version>
</dependency>
<dependency>
<groupId>cn.jeeweb</groupId>
<artifactId>jeeweb-ui-static</artifactId>
<version>${jeeweb.version}</version>
</dependency>
<dependency>
<groupId>cn.jeeweb</groupId>
<artifactId>jeeweb-ui-tag</artifactId>
<version>${jeeweb.version}</version>
</dependency>
<!--poi Excel开始-->
<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>
<!--poi Excel结束-->
<!--支付开始-->
<dependency>
<groupId>com.egzosn</groupId>
<artifactId>pay-java-common</artifactId>
<version>2.10.2</version>
</dependency>
<dependency>
<groupId>com.egzosn</groupId>
<artifactId>pay-java-ali</artifactId>
<version>2.10.2</version>
</dependency>
<!--支付支付结束-->
<!-- 解析客户端操作系统、浏览器等 -->
<dependency>
<groupId>eu.bitwalker</groupId>
<artifactId>UserAgentUtils</artifactId>
<version>${bitwalker.version}</version>
</dependency>
<!--整合swagger-->
<dependency>
<groupId>com.spring4all</groupId>
<artifactId>swagger-spring-boot-starter</artifactId>
<version>1.7.0.RELEASE</version>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
<executable>true</executable>
<jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- 编码和编译和JDK版本 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<!--打包插件-->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<!--不推送到仓库-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
1
https://gitee.com/dataact/jeeweb-bbs.git
git@gitee.com:dataact/jeeweb-bbs.git
dataact
jeeweb-bbs
jeeweb-bbs
master

搜索帮助