Skip to content

Commit

Permalink
prepare release 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
shalousun committed Aug 29, 2020
1 parent a725a66 commit 2aa970a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
<h1 align="center">Smart-Doc Gradle Plugin</a></h1>
<h1 align="center">Smart-Doc Gradle Plugin</h1>

[中文文档](https://github.com/smart-doc-group/smart-doc-gradle-plugin/blob/master/README_CN.md)
![maven](https://img.shields.io/maven-central/v/com.github.shalousun/smart-doc-gradle-plugin)
[![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-gradle-plugin)
![closed pull requests](https://img.shields.io/github/issues-pr-closed-raw/shalousun/smart-doc-gradle-plugin)
![java version](https://img.shields.io/badge/JAVA-1.8+-green.svg)
[![chinese](https://img.shields.io/badge/chinese-中文文档-brightgreen)](https://github.com/smart-doc-group/smart-doc-gradle-plugin/blob/master/README_CN.md)

## Introduce
smart-doc-gradle-plugin is a `gradle` plugin developed by the smart-doc official team.
Expand Down Expand Up @@ -91,6 +96,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
"responseFieldToUnderline":true,//convert response field to underline
"inlineEnum":true,// Set to true to display enumeration details in the parameter table
Expand Down
6 changes: 6 additions & 0 deletions README_CN.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<h1 align="center"><a href="https://github.com/shalousun/smart-doc-gradle-plugin" target="_blank">Smart-Doc Gradle Plugin</a></h1>

![maven](https://img.shields.io/maven-central/v/com.github.shalousun/smart-doc-gradle-plugin)
[![License](https://img.shields.io/badge/license-Apache%202-green.svg)](https://www.apache.org/licenses/LICENSE-2.0)
![closed pull requests](https://img.shields.io/github/issues-pr-closed-raw/shalousun/smart-doc-gradle-plugin)
![java version](https://img.shields.io/badge/JAVA-1.8+-green.svg)

## Introduce
smart-doc-gradle-plugin是smart-doc官方团队开发的`gradle`插件,该插件从smart-doc 1.8.6版本开始提供,
使用smart-doc-gradle-plugin更方便用户集成到自己的项目中,集成也更加轻量,你不再需要在项目中编写单元测试来
Expand Down Expand Up @@ -79,6 +84,7 @@ subprojects{
"md5EncryptedHtmlName": false,//只有每个controller生成一个html文件是才使用
"projectName": "smart-doc",//配置自己的项目名称
"skipTransientField": true,//目前未实现
"sortByTitle":false,//接口标题排序,默认为false,@since 1.8.7版本开始
"requestFieldToUnderline":true, //自动将驼峰入参字段在文档中转为下划线格式,//@since smart-doc 1.8.7 版本开始
"responseFieldToUnderline":true,//自动将驼峰入参字段在文档中转为下划线格式,//@since smart-doc 1.8.7 版本开始
"inlineEnum":true,//设置为true会将枚举详情展示到参数表中,默认关闭,//@since smart-doc 1.8.8版本开始
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
}

group 'com.github.shalousun'
version '1.1.5'
version '1.1.7'

sourceCompatibility = 1.8

Expand All @@ -26,7 +26,7 @@ repositories {

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.13'
compile 'com.github.shalousun:smart-doc:1.9.2'
compile 'com.github.shalousun:smart-doc:1.9.3'
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
Expand Down

0 comments on commit 2aa970a

Please sign in to comment.