From 9e769280c807e3bf4b4a7caa525257cff8d81378 Mon Sep 17 00:00:00 2001 From: xujun Date: Tue, 21 Apr 2026 15:52:17 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 35 ++++----- README.md | 21 +++++- pom.xml | 207 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 244 insertions(+), 19 deletions(-) create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore index 26a62dc..85f0387 100644 --- a/.gitignore +++ b/.gitignore @@ -1,20 +1,21 @@ -# ---> Actionscript -# Build and Release Folders -bin-debug/ -bin-release/ -[Oo]bj/ -[Bb]in/ +# ---> Maven +target/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +pom.xml.next +release.properties +dependency-reduced-pom.xml +buildNumber.properties +.mvn/timing.properties +# https://github.com/takari/maven-wrapper#usage-without-binary-jar +.mvn/wrapper/maven-wrapper.jar -# Other files and folders +# ---> Eclipse .settings/ +.project +.classpath -# Executables -*.swf -*.air -*.ipa -*.apk - -# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` -# should NOT be excluded as they contain compiler settings and other important -# information for Eclipse / Flash Builder. - +# ---> Idea +.idea/ +*.iml \ No newline at end of file diff --git a/README.md b/README.md index 89bf06b..672e1bc 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,20 @@ -# xtools-dependencies +# xtools-parent -低调大师工具箱,Jar依赖,适配JDK25 \ No newline at end of file +低调大师工具箱,Jar包依赖,主要管理xtools分装的jar包版本 + +## 更新记录 + +* 2026-01-01 创建项目 + +## Maven 打包命令 + +```sh +# 清理并打包 +mvn clean package -DskipTests=true + +# 清理,打包并安装到本地Maven仓库 +mvn clean package install -DskipTests=true + +# 清理,打包,安装到本地Maven仓库并发布到远程私有Maven仓库 +mvn clean package install deploy -DskipTests=true +``` \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..c1c2270 --- /dev/null +++ b/pom.xml @@ -0,0 +1,207 @@ + + 4.0.0 + org.xujun + xtools-dependencies + 5.0.0 + pom + xtools-dependencies + 低调大师工具箱,Jar依赖,适配JDK25 + + + + org.xujun + https://www.xujun.org + + + + + + 5.0.0 + + + + + + + + + org.xujun + xtools-core + ${xtools.version} + + + + org.xujun + xtools-web + ${xtools.version} + + + + org.xujun + xtools-extend + ${xtools.version} + + + * + * + + + + + + org.xujun + xtools-api + ${xtools.version} + + + + + + + org.xujun + xtools-boot-api + ${xtools.version} + + + + org.xujun + xtools-boot-core + ${xtools.version} + + + + org.xujun + xtools-boot-cache-redis + ${xtools.version} + + + + org.xujun + xtools-boot-db-mybatis + ${xtools.version} + + + + org.xujun + xtools-boot-db-mybatis-plus + ${xtools.version} + + + + org.xujun + xtools-boot-elasticsearch + ${xtools.version} + + + + org.xujun + xtools-boot-ip + ${xtools.version} + + + + org.xujun + xtools-boot-job-xxl + ${xtools.version} + + + + org.xujun + xtools-boot-knife4j + ${xtools.version} + + + + org.xujun + xtools-boot-log + ${xtools.version} + + + + org.xujun + xtools-boot-mask + ${xtools.version} + + + + org.xujun + xtools-boot-mq-base + ${xtools.version} + + + + org.xujun + xtools-boot-mq-rabbit + ${xtools.version} + + + + org.xujun + xtools-boot-storage-base + ${xtools.version} + + + + org.xujun + xtools-boot-storage-file + ${xtools.version} + + + + org.xujun + xtools-boot-storage-s3 + ${xtools.version} + + + + org.xujun + xtools-boot-task + ${xtools.version} + + + + org.xujun + xtools-boot-thread + ${xtools.version} + + + + org.xujun + xtools-boot-web-base + ${xtools.version} + + + + org.xujun + xtools-boot-web-filter + ${xtools.version} + + + + + + + org.xujun + xtools-cloud-alibaba-nacos + ${xtools.version} + + + + org.xujun + xtools-cloud-alibaba-sentinel + ${xtools.version} + + + + + org.xujun + xtools-cloud-call + ${xtools.version} + + + + + + \ No newline at end of file