Skip to content

Commit

Permalink
release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shalousun committed Jun 21, 2020
1 parent 90d4ab0 commit b931873
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ When you need to use smart-doc to generate more API document information, you ca
  "skipTransientField": true, // Not currently implemented
"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
"recursionLimit":7,// Set the number of recursive executions to avoid stack overflow, the default is 7
  "dataDictionaries": [// Configure the data dictionary, no need to set
    {
      "title": "Order Status", // The name of the data dictionary
Expand Down
6 changes: 4 additions & 2 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,10 @@ subprojects{
"md5EncryptedHtmlName": false,//只有每个controller生成一个html文件是才使用
"projectName": "smart-doc",//配置自己的项目名称
"skipTransientField": true,//目前未实现
"requestFieldToUnderline":true, //自动将驼峰入参字段在文档中转为下划线格式,//@since 1.8.7 版本开始
"responseFieldToUnderline":true,//自动将驼峰入参字段在文档中转为下划线格式,//@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版本开始
"recursionLimit":7,//设置允许递归执行的次数用于避免一些对象解析卡主,默认是7,正常为3次以内,//@since smart-doc 1.8.8版本开始
"dataDictionaries": [ //配置数据字典,没有需求可以不设置
{
"title": "订单状态", //数据字典的名称
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repositories {

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.13'
compile 'com.github.shalousun:smart-doc:1.8.7'
compile 'com.github.shalousun:smart-doc:1.8.8'
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
Expand Down
14 changes: 11 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# message
ossrhUsername=12345
ossrhPassword=12345
NEXUS_USERNAME= shalousun
NEXUS_PASSWORD= Chensanyan@5201314
SONATYPE_NEXUS_USERNAME=shalousun
SONATYPE_NEXUS_PASSWORD=Chensanyan@5201314
sonatypeUsername=shalousun
sonatypePassword=Chensanyan@5201314
ossrhUsername=shalousun
ossrhPassword=Chensanyan@5201314
signing.keyId= 51192AE5
signing.password= yusun4123456
signing.secretKeyRingFile= C:/Users/yu/secret.gpg

0 comments on commit b931873

Please sign in to comment.