From 50580984c8408f001b1cc2e315bd0b71f83bf566 Mon Sep 17 00:00:00 2001 From: lym Date: Tue, 3 Oct 2023 00:31:25 +0800 Subject: [PATCH] release 0.7.1 --- .drone.yml | 12 ++++++------ CHANGELOG.MD | 2 +- pom.xml | 2 +- shoulder-archetype-simple/pom.xml | 2 +- .../src/main/resources/archetype-resources/pom.xml | 4 ++-- shoulder-build/pom.xml | 2 +- shoulder-build/shoulder-base/pom.xml | 4 ++-- .../shoulder-base/shoulder-api-doc/pom.xml | 2 +- shoulder-build/shoulder-base/shoulder-batch/pom.xml | 2 +- .../shoulder-base/shoulder-cluster/pom.xml | 2 +- shoulder-build/shoulder-base/shoulder-core/pom.xml | 2 +- .../shoulder-crypto-negotiation/pom.xml | 2 +- shoulder-build/shoulder-base/shoulder-crypto/pom.xml | 2 +- .../shoulder-base/shoulder-data-db/pom.xml | 2 +- shoulder-build/shoulder-base/shoulder-http/pom.xml | 2 +- .../shoulder-base/shoulder-monitor/pom.xml | 2 +- .../shoulder-base/shoulder-operation-log/pom.xml | 2 +- .../shoulder-base/shoulder-security-code/pom.xml | 2 +- .../shoulder-base/shoulder-security/pom.xml | 2 +- .../shoulder-base/shoulder-validation/pom.xml | 2 +- shoulder-build/shoulder-base/shoulder-web/pom.xml | 2 +- shoulder-build/shoulder-plugins/pom.xml | 4 ++-- .../shoulder-ext-autoconfiguration/pom.xml | 2 +- .../shoulder-plugins/shoulder-ext-common/pom.xml | 2 +- .../shoulder-plugins/shoulder-ext-config/pom.xml | 2 +- .../shoulder-plugins/shoulder-ext-dictionary/pom.xml | 2 +- shoulder-build/shoulder-starters/pom.xml | 2 +- .../shoulder-autoconfiguration/pom.xml | 2 +- .../shoulder-starter-auth-server/pom.xml | 2 +- .../shoulder-starter-auth-session/pom.xml | 2 +- .../shoulder-starter-auth-token/pom.xml | 2 +- .../shoulder-starter-beanmap/pom.xml | 2 +- .../shoulder-starter-crypto/pom.xml | 2 +- .../shoulder-starter-monitor/pom.xml | 2 +- .../shoulder-starters/shoulder-starter-mysql/pom.xml | 2 +- .../shoulder-starter-operation-log/pom.xml | 2 +- .../shoulder-starter-security-code/pom.xml | 2 +- .../shoulder-starters/shoulder-starter-web/pom.xml | 2 +- .../shoulder-starters/shoulder-starter/pom.xml | 2 +- shoulder-dependencies/pom.xml | 4 ++-- shoulder-parent/pom.xml | 4 ++-- 41 files changed, 51 insertions(+), 51 deletions(-) diff --git a/.drone.yml b/.drone.yml index 8f4ce4816..893ff9ce5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -34,12 +34,8 @@ steps: commands: # 异步快速检查依赖 - curl --location --request POST 'http://10.10.10.1:12345/projects/create' --form 'email=cn_lym@foxmail.com' --form 'pomXml=@shoulder-dependencies/pom.xml' --form 'notifyInstantlyAfterCheck=true' --form 'notifyReason=CI-${DRONE_REPO_NAME}::${DRONE_REPO_BRANCH}
with Drone Build-${DRONE_BUILD_NUMBER}
' || echo '======= SKIP dependency check. =======' - # - mvn clean install -Dmaven.test.skip=true -pl shoulder-dependencies -am - # - mvn clean install -Dmaven.test.skip=true -pl shoulder-parent -am - #- sudo export MAVEN_OPTS="-Xmx400m -Xms400m -XX:MaxPermSize=90m" - # 2C 每个可用 C 2线程;deploy 主要是发布,与网络相关,-T 4 4个线程 -B batch 批量处理 -V Display version information # 改成部署前签名,否则不会上传 - # 发布 release 版本时候更换 version + # ---------【【【发布】】】------ release 版本时候更换 version,正式发布前还需要:清空所有jar,然后运行 shoulder-demos 保证发布功能全部ok;检查 shoulder-maven-plugin.version - sed -i 's#-SNAPSHOT##g' pom.xml - sed -i 's#-SNAPSHOT##g' shoulder-archetype-simple/src/main/resources/archetype-resources/pom.xml - find . -name "pom.xml" | xargs sed -i 's#-SNAPSHOT##g' @@ -48,7 +44,11 @@ steps: - sed -i 's#deploy#package#g' shoulder-parent/pom.xml - sed -i 's#deploy#verify#g' pom.xml - sed -i 's#deploy#verify#g' shoulder-parent/pom.xml - - mvn clean deploy -P release -Dmaven.test.skip=true -B -V -T 1C + # 2C 每个可用 C 2线程;deploy 主要是发布,与网络相关,-T 4 4个线程 -B batch 批量处理 -V Display version information + # - mvn clean install -Dmaven.test.skip=true -pl shoulder-dependencies -am + # - mvn clean install -Dmaven.test.skip=true -pl shoulder-parent -am + #- sudo export MAVEN_OPTS="-Xmx400m -Xms400m -XX:MaxPermSize=90m" + - mvn clean deploy -P release -Dmaven.test.skip=true -B -V -T 1.5C - echo 'FINISHED deploy!!' # # - name: 根据 commit 自动生成 CHANGELOG、README https://github.com/mbinary-toys/csdn-tools diff --git a/CHANGELOG.MD b/CHANGELOG.MD index bacca6bd8..db8a49966 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -13,7 +13,7 @@ jdk21 安全:支持开关,将带@sensitive 注解的字段在自动打印日志中脱敏/不打印 -## 0.7(较大更新:依赖版本,新增功能 2023年10月2日 发布) +## 0.7.1(较大更新:依赖版本,新增功能 2023年10月2日 发布) 更新较多,列出主要更新: diff --git a/pom.xml b/pom.xml index 364f390bb..e25494e2b 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-framework - 0.7.1-SNAPSHOT + 0.7.1 4.0.0 pom diff --git a/shoulder-archetype-simple/pom.xml b/shoulder-archetype-simple/pom.xml index e5f307722..aa0388861 100644 --- a/shoulder-archetype-simple/pom.xml +++ b/shoulder-archetype-simple/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-framework - 0.7.1-SNAPSHOT + 0.7.1 diff --git a/shoulder-archetype-simple/src/main/resources/archetype-resources/pom.xml b/shoulder-archetype-simple/src/main/resources/archetype-resources/pom.xml index 190671a1b..c5342170d 100644 --- a/shoulder-archetype-simple/src/main/resources/archetype-resources/pom.xml +++ b/shoulder-archetype-simple/src/main/resources/archetype-resources/pom.xml @@ -6,7 +6,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ${groupId} @@ -19,7 +19,7 @@ 11 - 0.7.1-SNAPSHOT + 0.7.1 0x000b diff --git a/shoulder-build/pom.xml b/shoulder-build/pom.xml index d2df2f896..35be195cd 100644 --- a/shoulder-build/pom.xml +++ b/shoulder-build/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-framework - 0.7.1-SNAPSHOT + 0.7.1 ../pom.xml diff --git a/shoulder-build/shoulder-base/pom.xml b/shoulder-build/shoulder-base/pom.xml index 1353230f8..38e15d8d2 100644 --- a/shoulder-build/shoulder-base/pom.xml +++ b/shoulder-build/shoulder-base/pom.xml @@ -6,12 +6,12 @@ cn.itlym shoulder-build - 0.7.1-SNAPSHOT + 0.7.1 ../pom.xml shoulder-base - 0.7.1-SNAPSHOT + 0.7.1 pom diff --git a/shoulder-build/shoulder-base/shoulder-api-doc/pom.xml b/shoulder-build/shoulder-base/shoulder-api-doc/pom.xml index 47ef3c2f9..9e6c06a73 100644 --- a/shoulder-build/shoulder-base/shoulder-api-doc/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-api-doc/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-base/shoulder-batch/pom.xml b/shoulder-build/shoulder-base/shoulder-batch/pom.xml index 2e4a041ef..c92236554 100644 --- a/shoulder-build/shoulder-base/shoulder-batch/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-batch/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-base/shoulder-cluster/pom.xml b/shoulder-build/shoulder-base/shoulder-cluster/pom.xml index 7403bede5..7e9929438 100644 --- a/shoulder-build/shoulder-base/shoulder-cluster/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-cluster/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-base/shoulder-core/pom.xml b/shoulder-build/shoulder-base/shoulder-core/pom.xml index 40f473f17..2d9540417 100644 --- a/shoulder-build/shoulder-base/shoulder-core/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-core/pom.xml @@ -6,7 +6,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml diff --git a/shoulder-build/shoulder-base/shoulder-crypto-negotiation/pom.xml b/shoulder-build/shoulder-base/shoulder-crypto-negotiation/pom.xml index c7cbc4c37..cee8c5c83 100644 --- a/shoulder-build/shoulder-base/shoulder-crypto-negotiation/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-crypto-negotiation/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-base/shoulder-crypto/pom.xml b/shoulder-build/shoulder-base/shoulder-crypto/pom.xml index 52382301e..e8e070927 100644 --- a/shoulder-build/shoulder-base/shoulder-crypto/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-crypto/pom.xml @@ -6,7 +6,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml diff --git a/shoulder-build/shoulder-base/shoulder-data-db/pom.xml b/shoulder-build/shoulder-base/shoulder-data-db/pom.xml index d677a103b..db14ee3e1 100644 --- a/shoulder-build/shoulder-base/shoulder-data-db/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-data-db/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-base/shoulder-http/pom.xml b/shoulder-build/shoulder-base/shoulder-http/pom.xml index fd6852864..1edb76b5a 100644 --- a/shoulder-build/shoulder-base/shoulder-http/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-http/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-base/shoulder-monitor/pom.xml b/shoulder-build/shoulder-base/shoulder-monitor/pom.xml index 3f29d46c5..c9e0d40ab 100644 --- a/shoulder-build/shoulder-base/shoulder-monitor/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-monitor/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-base/shoulder-operation-log/pom.xml b/shoulder-build/shoulder-base/shoulder-operation-log/pom.xml index ed08f5cca..c12772eeb 100644 --- a/shoulder-build/shoulder-base/shoulder-operation-log/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-operation-log/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-base/shoulder-security-code/pom.xml b/shoulder-build/shoulder-base/shoulder-security-code/pom.xml index e96e376d2..a4f16fad7 100644 --- a/shoulder-build/shoulder-base/shoulder-security-code/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-security-code/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-base/shoulder-security/pom.xml b/shoulder-build/shoulder-base/shoulder-security/pom.xml index e0ae8c5ae..2866e67e6 100644 --- a/shoulder-build/shoulder-base/shoulder-security/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-security/pom.xml @@ -6,7 +6,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml diff --git a/shoulder-build/shoulder-base/shoulder-validation/pom.xml b/shoulder-build/shoulder-base/shoulder-validation/pom.xml index af4c0376c..bab826624 100644 --- a/shoulder-build/shoulder-base/shoulder-validation/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-validation/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-base/shoulder-web/pom.xml b/shoulder-build/shoulder-base/shoulder-web/pom.xml index 7c826f3ab..e2c4bd9f2 100644 --- a/shoulder-build/shoulder-base/shoulder-web/pom.xml +++ b/shoulder-build/shoulder-base/shoulder-web/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-plugins/pom.xml b/shoulder-build/shoulder-plugins/pom.xml index a664d2578..b34d4d07a 100644 --- a/shoulder-build/shoulder-plugins/pom.xml +++ b/shoulder-build/shoulder-plugins/pom.xml @@ -6,12 +6,12 @@ cn.itlym shoulder-build - 0.7.1-SNAPSHOT + 0.7.1 ../pom.xml shoulder-plugins - 0.7.1-SNAPSHOT + 0.7.1 pom diff --git a/shoulder-build/shoulder-plugins/shoulder-ext-autoconfiguration/pom.xml b/shoulder-build/shoulder-plugins/shoulder-ext-autoconfiguration/pom.xml index 4156fa275..7181d7011 100644 --- a/shoulder-build/shoulder-plugins/shoulder-ext-autoconfiguration/pom.xml +++ b/shoulder-build/shoulder-plugins/shoulder-ext-autoconfiguration/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-plugins/shoulder-ext-common/pom.xml b/shoulder-build/shoulder-plugins/shoulder-ext-common/pom.xml index f9f71cc23..58925dd5b 100644 --- a/shoulder-build/shoulder-plugins/shoulder-ext-common/pom.xml +++ b/shoulder-build/shoulder-plugins/shoulder-ext-common/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-plugins/shoulder-ext-config/pom.xml b/shoulder-build/shoulder-plugins/shoulder-ext-config/pom.xml index 990f8fe13..02552b93f 100644 --- a/shoulder-build/shoulder-plugins/shoulder-ext-config/pom.xml +++ b/shoulder-build/shoulder-plugins/shoulder-ext-config/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-plugins/shoulder-ext-dictionary/pom.xml b/shoulder-build/shoulder-plugins/shoulder-ext-dictionary/pom.xml index a83adc62a..29bc21b84 100644 --- a/shoulder-build/shoulder-plugins/shoulder-ext-dictionary/pom.xml +++ b/shoulder-build/shoulder-plugins/shoulder-ext-dictionary/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-starters/pom.xml b/shoulder-build/shoulder-starters/pom.xml index 60b211af5..6172bd2aa 100644 --- a/shoulder-build/shoulder-starters/pom.xml +++ b/shoulder-build/shoulder-starters/pom.xml @@ -6,7 +6,7 @@ cn.itlym shoulder-build - 0.7.1-SNAPSHOT + 0.7.1 ../pom.xml diff --git a/shoulder-build/shoulder-starters/shoulder-autoconfiguration/pom.xml b/shoulder-build/shoulder-starters/shoulder-autoconfiguration/pom.xml index d75a1705a..4cfc61408 100644 --- a/shoulder-build/shoulder-starters/shoulder-autoconfiguration/pom.xml +++ b/shoulder-build/shoulder-starters/shoulder-autoconfiguration/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml diff --git a/shoulder-build/shoulder-starters/shoulder-starter-auth-server/pom.xml b/shoulder-build/shoulder-starters/shoulder-starter-auth-server/pom.xml index ca8c3a699..36b385627 100644 --- a/shoulder-build/shoulder-starters/shoulder-starter-auth-server/pom.xml +++ b/shoulder-build/shoulder-starters/shoulder-starter-auth-server/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-starters/shoulder-starter-auth-session/pom.xml b/shoulder-build/shoulder-starters/shoulder-starter-auth-session/pom.xml index b9855b5b6..ef92379fb 100644 --- a/shoulder-build/shoulder-starters/shoulder-starter-auth-session/pom.xml +++ b/shoulder-build/shoulder-starters/shoulder-starter-auth-session/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-starters/shoulder-starter-auth-token/pom.xml b/shoulder-build/shoulder-starters/shoulder-starter-auth-token/pom.xml index 3c1ea94f3..3fb5c18f7 100644 --- a/shoulder-build/shoulder-starters/shoulder-starter-auth-token/pom.xml +++ b/shoulder-build/shoulder-starters/shoulder-starter-auth-token/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-starters/shoulder-starter-beanmap/pom.xml b/shoulder-build/shoulder-starters/shoulder-starter-beanmap/pom.xml index 3198dd33b..6228abd1a 100644 --- a/shoulder-build/shoulder-starters/shoulder-starter-beanmap/pom.xml +++ b/shoulder-build/shoulder-starters/shoulder-starter-beanmap/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-starters/shoulder-starter-crypto/pom.xml b/shoulder-build/shoulder-starters/shoulder-starter-crypto/pom.xml index 22326c75a..cf8655fb2 100644 --- a/shoulder-build/shoulder-starters/shoulder-starter-crypto/pom.xml +++ b/shoulder-build/shoulder-starters/shoulder-starter-crypto/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-starters/shoulder-starter-monitor/pom.xml b/shoulder-build/shoulder-starters/shoulder-starter-monitor/pom.xml index c4b7958dd..f272bd40b 100644 --- a/shoulder-build/shoulder-starters/shoulder-starter-monitor/pom.xml +++ b/shoulder-build/shoulder-starters/shoulder-starter-monitor/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-starters/shoulder-starter-mysql/pom.xml b/shoulder-build/shoulder-starters/shoulder-starter-mysql/pom.xml index d9a33eeb1..afe0246a0 100644 --- a/shoulder-build/shoulder-starters/shoulder-starter-mysql/pom.xml +++ b/shoulder-build/shoulder-starters/shoulder-starter-mysql/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-starters/shoulder-starter-operation-log/pom.xml b/shoulder-build/shoulder-starters/shoulder-starter-operation-log/pom.xml index 7588a4151..e296351d3 100644 --- a/shoulder-build/shoulder-starters/shoulder-starter-operation-log/pom.xml +++ b/shoulder-build/shoulder-starters/shoulder-starter-operation-log/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-starters/shoulder-starter-security-code/pom.xml b/shoulder-build/shoulder-starters/shoulder-starter-security-code/pom.xml index ee821ea4a..8851286f4 100644 --- a/shoulder-build/shoulder-starters/shoulder-starter-security-code/pom.xml +++ b/shoulder-build/shoulder-starters/shoulder-starter-security-code/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-starters/shoulder-starter-web/pom.xml b/shoulder-build/shoulder-starters/shoulder-starter-web/pom.xml index 7f18e6272..8c7089814 100644 --- a/shoulder-build/shoulder-starters/shoulder-starter-web/pom.xml +++ b/shoulder-build/shoulder-starters/shoulder-starter-web/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-build/shoulder-starters/shoulder-starter/pom.xml b/shoulder-build/shoulder-starters/shoulder-starter/pom.xml index 8008e075d..d931ebb6b 100644 --- a/shoulder-build/shoulder-starters/shoulder-starter/pom.xml +++ b/shoulder-build/shoulder-starters/shoulder-starter/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-parent - 0.7.1-SNAPSHOT + 0.7.1 ../../../shoulder-parent/pom.xml 4.0.0 diff --git a/shoulder-dependencies/pom.xml b/shoulder-dependencies/pom.xml index 80b7209a1..368e5447e 100644 --- a/shoulder-dependencies/pom.xml +++ b/shoulder-dependencies/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-framework - 0.7.1-SNAPSHOT + 0.7.1 4.0.0 @@ -16,7 +16,7 @@ 0.1 - 0.7.1-SNAPSHOT + 0.7.1 diff --git a/shoulder-parent/pom.xml b/shoulder-parent/pom.xml index cc7f4075d..9c2d748df 100644 --- a/shoulder-parent/pom.xml +++ b/shoulder-parent/pom.xml @@ -5,7 +5,7 @@ cn.itlym shoulder-framework - 0.7.1-SNAPSHOT + 0.7.1 4.0.0 pom @@ -46,7 +46,7 @@ cn.itlym shoulder-dependencies - 0.7.1-SNAPSHOT + 0.7.1 pom import