Skip to content

Commit

Permalink
build: 增加 pom.xml 的 description 描述字段内容
Browse files Browse the repository at this point in the history
  • Loading branch information
houkunlin committed Nov 6, 2021
1 parent d48477c commit d4d269a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ plugins {
group = 'com.houkunlin'
version = '1.4.4.1'
sourceCompatibility = '1.8'
description = """
系统数据字典自动翻译成字典文本。可集合系统数据库中存储的用户数据字典,也可使用枚举做系统数据字典,主要用在返回数据给前端时自动把字典值翻译成字典文本信息;
The system data dictionary is automatically translated into dictionary text.
The user data dictionary stored in the system database can be aggregated, and the enumeration can also be used as the system data dictionary.
It is mainly used to automatically translate dictionary values into dictionary text information when returning data to the front end.
"""

def gitRepo = "github.com/houkunlin-starter/system-dict-starter.git"
def isSnapshot = findProperty("snapshot") != null || version.endsWith('SNAPSHOT')
Expand Down Expand Up @@ -67,7 +73,7 @@ publishing {
pom {
name = project.name
packaging = 'jar'
description = project.name
description = project.description
url = "https://${gitRepo}"
// properties = []
licenses {
Expand Down

0 comments on commit d4d269a

Please sign in to comment.