update project url and upgrade dependencies.
This commit is contained in:
parent
624d2d974b
commit
29f34fac72
|
@ -6,6 +6,7 @@
|
|||
1. 修复Get请求用例参数值被去空格问题。
|
||||
2. 修改复杂参数表树型数据转化的错误。
|
||||
3. 修复非allInOne模板使用渲染错误。
|
||||
4. 修复一些泛型例子解析错误bug。
|
||||
#### 版本号:1.9.2
|
||||
- 更新日期: 2020-08-23
|
||||
- 更新内容:
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
<h1 align="center">Smart-Doc Project</h1>
|
||||
|
||||
[中文文档](https://github.com/shalousun/smart-doc/blob/master/README_CN.md)
|
||||
![maven](https://img.shields.io/maven-central/v/com.github.shalousun/smart-doc)
|
||||
[![License](https://img.shields.io/badge/license-Apache%202-green.svg)](https://www.apache.org/licenses/LICENSE-2.0)
|
||||
![number of issues closed](https://img.shields.io/github/issues-closed-raw/shalousun/smart-doc)
|
||||
![closed pull requests](https://img.shields.io/github/issues-pr-closed/shalousun/smart-doc)
|
||||
![java version](https://img.shields.io/badge/JAVA-1.8+-green.svg)
|
||||
[![chinese](https://img.shields.io/badge/chinese-中文文档-brightgreen)](https://github.com/shalousun/smart-doc/blob/master/README_CN.md)
|
||||
|
||||
## Introduce
|
||||
Smart-doc is a tool that supports both JAVA RESTFUL API and Apache Dubbo RPC interface document generation.. Smart-doc is based on interface source code analysis to generate interface documents, and zero annotation intrusion.
|
||||
|
@ -88,6 +92,7 @@ When you need to use smart-doc to generate more API document information, you ca
|
|||
"md5EncryptedHtmlName": false, // only used if each controller generates an html file
|
||||
"projectName": "smart-doc", // Configure your own project name
|
||||
"skipTransientField": true, // Not currently implemented
|
||||
"sortByTitle":false,//Sort by interface title, the default value is false
|
||||
"requestFieldToUnderline":true, //convert request field to underline
|
||||
"inlineEnum":true,// Set to true to display enumeration details in the parameter table
|
||||
"recursionLimit":7,// Set the number of recursive executions to avoid stack overflow, the default is 7
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<h1 align="center"><a href="https://github.com/shalousun/smart-doc" target="_blank">Smart-Doc Project</a></h1>
|
||||
|
||||
## Introduce
|
||||
smart-doc是一款同时支持JAVA RESTFUL API和Apache Dubbo RPC接口文档生成的工具,smart-doc在业内率先提出基于java泛型定义推导的理念,
|
||||
完全基于接口源码来分析生成接口文档,不采用任何注解侵入到业务代码中。你只需要按照java-doc标准编写注释,
|
||||
|
@ -88,6 +87,7 @@ smart-doc官方目前已经开发完成[maven插件](https://gitee.com/sunyurepo
|
|||
"md5EncryptedHtmlName": false,//只有每个controller生成一个html文件是才使用
|
||||
"projectName": "smart-doc",//配置自己的项目名称
|
||||
"skipTransientField": true,//目前未实现
|
||||
"sortByTitle":false,//接口标题排序,默认为false,@since 1.8.7版本开始
|
||||
"showAuthor":true,//是否显示接口作者名称,默认是true,不想显示可关闭
|
||||
"requestFieldToUnderline":true,//自动将驼峰入参字段在文档中转为下划线格式,//@since 1.8.7版本开始
|
||||
"responseFieldToUnderline":true,//自动将驼峰入参字段在文档中转为下划线格式,//@since 1.8.7版本开始
|
||||
|
|
12
pom.xml
12
pom.xml
|
@ -5,10 +5,10 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>smart-doc</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.9.2.1</version>
|
||||
<version>1.9.3</version>
|
||||
|
||||
<name>smart-doc</name>
|
||||
<url>https://github.com/shalousun/smart-doc.git</url>
|
||||
<url>https://github.com/smart-doc-group/smart-doc.git</url>
|
||||
<description>Smart-doc is a tool that supports both JAVA RESTFUL API and Apache Dubbo RPC interface document generation.</description>
|
||||
|
||||
<licenses>
|
||||
|
@ -19,9 +19,9 @@
|
|||
</license>
|
||||
</licenses>
|
||||
<scm>
|
||||
<url>https://github.com/shalousun/smart-doc.git</url>
|
||||
<connection>scm:https://github.com/shalousun/smart-doc.git</connection>
|
||||
<developerConnection>scm:https://github.com/shalousun/smart-doc.git</developerConnection>
|
||||
<url>https://github.com/smart-doc-group/smart-doc.git</url>
|
||||
<connection>scm:https://github.com/smart-doc-group/smart-doc.git</connection>
|
||||
<developerConnection>scm:https://github.com/smart-doc-group/smart-doc.git</developerConnection>
|
||||
</scm>
|
||||
<developers>
|
||||
<developer>
|
||||
|
@ -65,7 +65,7 @@
|
|||
<dependency>
|
||||
<groupId>com.github.shalousun</groupId>
|
||||
<artifactId>common-util</artifactId>
|
||||
<version>1.9.7</version>
|
||||
<version>1.9.8</version>
|
||||
</dependency>
|
||||
<!--markdown to html-->
|
||||
<dependency>
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
|||
<span class="copyright">Generated by smart-doc at ${createTime}</span>
|
||||
<span class="footer-modification">Suggestions, contact, support and error reporting on
|
||||
<a href="https://gitee.com/sunyurepository/smart-doc" target="_blank">Gitee</a> or
|
||||
<a href="https://github.com/shalousun/smart-doc" target="_blank">Github</a>
|
||||
<a href="https://github.com/smart-doc-group/smart-doc" target="_blank">Github</a>
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
</li>
|
||||
<%}%>
|
||||
<li class="divider"></li>
|
||||
<li class="footer_link"><a href="https://github.com/shalousun/smart-doc" target="_blank" class="gitbook-link">Created by smart-doc</a>
|
||||
<li class="footer_link"><a href="https://github.com/smart-doc-group/smart-doc" target="_blank" class="gitbook-link">Created by smart-doc</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
|
|
@ -125,7 +125,7 @@
|
|||
<span class="copyright">Generated by smart-doc at ${createTime}</span>
|
||||
<span class="footer-modification">Suggestions, contact, support and error reporting on
|
||||
<a href="https://gitee.com/sunyurepository/smart-doc" target="_blank">Gitee</a> or
|
||||
<a href="https://github.com/shalousun/smart-doc" target="_blank">Github</a>
|
||||
<a href="https://github.com/smart-doc-group/smart-doc" target="_blank">Github</a>
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue