Commit 9780757c authored by Liang Ding's avatar Liang Ding

Merge remote-tracking branch 'refs/remotes/origin/2.2.0-dev'

parents f6f6adf2 923fe529
......@@ -43,8 +43,6 @@ Solo 沉淀至今的**每一个功能你应该都会用到**。我们不会将
如果有新版可用,升级过程也是非常简单的,只需要重新部署新版本就可以,不用运行额外的任何脚本。
另外,如果你想让我们将 Solo 修改为 CMS,我们只能对你说:“出门[右转](https://github.com/WordPress/WordPress)”。
## 安装
JDK 环境准备好之后[下载](http://pan.baidu.com/share/link?shareid=541735&uk=3255126224)最新的 Solo 包解压,进入解压目录执行:
......@@ -94,7 +92,7 @@ Solo 的诞生离不开以下开源项目:
* [Highlight.js](https://github.com/isagalaev/highlight.js):又一个代码高亮库
* [emojify.js](https://github.com/Ranks/emojify.js):前端 Emoji 处理库
* [jsoup](https://github.com/jhy/jsoup):Java HTML 解析器
* [pegdown](https://github.com/sirthias/pegdown):Java Markdown 处理库
* [flexmark](https://github.com/vsch/flexmark-java):Java Markdown 处理库
* [Apache Commons](http://commons.apache.org):Java 工具库集
* [emoji-java](https://github.com/vdurmont/emoji-java):Java Emoji 处理库
* [FreeMarker](http://freemarker.org):好用的 Java 模版引擎
......
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: Solo POM.
Version: 3.16.1.38, May 25, 2017
Version: 3.16.1.39, Jun 2, 2017
Author: <a href="http://88250.b3log.org">Liang Ding</a>
Author: <a href="http://www.annpeter.cn">Ann Peter</a>
Author: <a href="http://vanessa.b3log.org">Vanessa</a>
......@@ -105,6 +105,7 @@
<slf4j.version>1.7.5</slf4j.version>
<jsoup.version>1.9.1</jsoup.version>
<pegdown.version>1.6.0</pegdown.version>
<flexmark.version>0.19.5</flexmark.version>
<qiniu.version>7.0.4.1</qiniu.version>
<jetty.version>9.2.7.v20150116</jetty.version>
<commons-cli.version>1.3.1</commons-cli.version>
......@@ -181,6 +182,26 @@
<version>${pegdown.version}</version>
</dependency>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-all</artifactId>
<version>${flexmark.version}</version>
<exclusions>
<exclusion>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-pdf-converter</artifactId>
</exclusion>
<exclusion>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-youtrack-converter</artifactId>
</exclusion>
<exclusion>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-jira-converter</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.vdurmont</groupId>
<artifactId>emoji-java</artifactId>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment