mirror of
https://github.com/201206030/novel.git
synced 2025-04-27 07:30:50 +00:00
231 lines
8.1 KiB
XML
231 lines
8.1 KiB
XML
<?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">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<groupId>com.java2nb</groupId>
|
||
<artifactId>novel-admin</artifactId>
|
||
<version>2.0.1</version>
|
||
<parent>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-parent</artifactId>
|
||
<version>2.0.1.RELEASE</version>
|
||
<relativePath/>
|
||
</parent>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
<java.version>1.8</java.version>
|
||
<velocity.version>1.7</velocity.version>
|
||
<activiti.version>5.22.0</activiti.version>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter</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-aop</artifactId>
|
||
</dependency>
|
||
<!--web -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
</dependency>
|
||
<!-- NekoHTML 是一个简单地HTML扫描器和标签补偿器(tag balancer) ,使得程序能解析HTML文档并用标准的XML接口来访问其中的信息。
|
||
这个解析器能投扫描HTML文件并“修正”许多作者(人或机器)在编写HTML文档过程中常犯的错误。
|
||
NekoHTML 能增补缺失的父元素、自动用结束标签关闭相应的元素,以及不匹配的内嵌元素标签。
|
||
NekoHTML 的开发使用了Xerces Native Interface (XNI),后者是Xerces2的实现基础。-->
|
||
<dependency>
|
||
<groupId>net.sourceforge.nekohtml</groupId>
|
||
<artifactId>nekohtml</artifactId>
|
||
</dependency>
|
||
<!--mybatis -->
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
<version>8.0.11</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.mybatis</groupId>
|
||
<artifactId>mybatis</artifactId>
|
||
<version>3.4.4</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.mybatis.spring.boot</groupId>
|
||
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
<version>1.1.1</version>
|
||
</dependency>
|
||
<!--druid -->
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>druid</artifactId>
|
||
<version>1.0.28</version>
|
||
</dependency>
|
||
<!--commons -->
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-lang3</artifactId>
|
||
<version>3.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-configuration</groupId>
|
||
<artifactId>commons-configuration</artifactId>
|
||
<version>1.10</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-io</groupId>
|
||
<artifactId>commons-io</artifactId>
|
||
<version>2.5</version>
|
||
</dependency>
|
||
<!--shiro -->
|
||
<dependency>
|
||
<groupId>org.apache.shiro</groupId>
|
||
<artifactId>shiro-core</artifactId>
|
||
<version>1.3.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.shiro</groupId>
|
||
<artifactId>shiro-spring</artifactId>
|
||
<version>1.3.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.github.theborakompanioni</groupId>
|
||
<artifactId>thymeleaf-extras-shiro</artifactId>
|
||
<version>2.0.0</version>
|
||
</dependency>
|
||
<!-- utils -->
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>1.2.31</version>
|
||
</dependency>
|
||
<!--velocity代码生成使用模板 -->
|
||
<dependency>
|
||
<groupId>org.apache.velocity</groupId>
|
||
<artifactId>velocity</artifactId>
|
||
<version>1.7</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-cache</artifactId>
|
||
</dependency>
|
||
<!--<dependency>-->
|
||
<!--<groupId>org.springframework.boot</groupId>-->
|
||
<!--<artifactId>spring-boot-starter-data-redis</artifactId>-->
|
||
<!--</dependency>-->
|
||
<!-- quartz -->
|
||
<!--<dependency>-->
|
||
<!--<groupId>org.springframework.boot</groupId>-->
|
||
<!--<artifactId>spring-boot-starter-cache</artifactId>-->
|
||
<!--</dependency>-->
|
||
|
||
<!--<dependency>-->
|
||
<!--<groupId>net.sf.ehcache</groupId>-->
|
||
<!--<artifactId>ehcache</artifactId>-->
|
||
<!--</dependency>-->
|
||
|
||
|
||
<!--<dependency>-->
|
||
<!--<groupId>org.springframework.boot</groupId>-->
|
||
<!--<artifactId>spring-boot-devtools</artifactId>-->
|
||
<!--<optional>true</optional>-->
|
||
<!--</dependency>-->
|
||
|
||
<!--swagger2-->
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger2</artifactId>
|
||
<version>2.6.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger-ui</artifactId>
|
||
<version>2.6.1</version>
|
||
</dependency>
|
||
|
||
<!-- 添加redis支持-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>redis.clients</groupId>
|
||
<artifactId>jedis</artifactId>
|
||
<version>2.9.0</version>
|
||
</dependency>
|
||
|
||
|
||
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-text</artifactId>
|
||
<version>1.4</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.java2nb</groupId>
|
||
<artifactId>java2nb</artifactId>
|
||
<version>1.0.0-release</version>
|
||
<scope>system</scope>
|
||
<systemPath>${pom.basedir}/src/main/resources/jar/java2nb-1.0.0-release.jar</systemPath>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.httpcomponents</groupId>
|
||
<artifactId>httpclient</artifactId>
|
||
<version>4.5.5</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>repackage</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
<configuration>
|
||
<includeSystemScope>true</includeSystemScope>
|
||
</configuration>
|
||
</plugin>
|
||
<!--<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<configuration>
|
||
<source>1.8</source>
|
||
<target>1.8</target>
|
||
</configuration>
|
||
</plugin>-->
|
||
</plugins>
|
||
</build>
|
||
|
||
|
||
</project> |