Skip to content
This repository was archived by the owner on Dec 4, 2025. It is now read-only.

Commit b931873

Browse files
committed
release 1.1.0
1 parent 90d4ab0 commit b931873

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ When you need to use smart-doc to generate more API document information, you ca
9393
  "skipTransientField": true, // Not currently implemented
9494
"requestFieldToUnderline":true, //convert request field to underline
9595
"responseFieldToUnderline":true,//convert response field to underline
96+
"inlineEnum":true,// Set to true to display enumeration details in the parameter table
97+
"recursionLimit":7,// Set the number of recursive executions to avoid stack overflow, the default is 7
9698
  "dataDictionaries": [// Configure the data dictionary, no need to set
9799
    {
98100
      "title": "Order Status", // The name of the data dictionary

README_CN.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,10 @@ subprojects{
7979
"md5EncryptedHtmlName": false,//只有每个controller生成一个html文件是才使用
8080
"projectName": "smart-doc",//配置自己的项目名称
8181
"skipTransientField": true,//目前未实现
82-
"requestFieldToUnderline":true, //自动将驼峰入参字段在文档中转为下划线格式,//@since 1.8.7 版本开始
83-
"responseFieldToUnderline":true,//自动将驼峰入参字段在文档中转为下划线格式,//@since 1.8.7 版本开始
82+
"requestFieldToUnderline":true, //自动将驼峰入参字段在文档中转为下划线格式,//@since smart-doc 1.8.7 版本开始
83+
"responseFieldToUnderline":true,//自动将驼峰入参字段在文档中转为下划线格式,//@since smart-doc 1.8.7 版本开始
84+
"inlineEnum":true,//设置为true会将枚举详情展示到参数表中,默认关闭,//@since smart-doc 1.8.8版本开始
85+
"recursionLimit":7,//设置允许递归执行的次数用于避免一些对象解析卡主,默认是7,正常为3次以内,//@since smart-doc 1.8.8版本开始
8486
"dataDictionaries": [ //配置数据字典,没有需求可以不设置
8587
{
8688
"title": "订单状态", //数据字典的名称

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ repositories {
2525

2626
dependencies {
2727
testCompile group: 'junit', name: 'junit', version: '4.13'
28-
compile 'com.github.shalousun:smart-doc:1.8.7'
28+
compile 'com.github.shalousun:smart-doc:1.8.8'
2929
}
3030
tasks.withType(JavaCompile) {
3131
options.encoding = "UTF-8"

gradle.properties

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1-
# message
2-
ossrhUsername=12345
3-
ossrhPassword=12345
1+
NEXUS_USERNAME= shalousun
2+
NEXUS_PASSWORD= Chensanyan@5201314
3+
SONATYPE_NEXUS_USERNAME=shalousun
4+
SONATYPE_NEXUS_PASSWORD=Chensanyan@5201314
5+
sonatypeUsername=shalousun
6+
sonatypePassword=Chensanyan@5201314
7+
ossrhUsername=shalousun
8+
ossrhPassword=Chensanyan@5201314
9+
signing.keyId= 51192AE5
10+
signing.password= yusun4123456
11+
signing.secretKeyRingFile= C:/Users/yu/secret.gpg

0 commit comments

Comments
 (0)