初始化项目
This commit is contained in:
35
.gitignore
vendored
35
.gitignore
vendored
@@ -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
|
||||
21
README.md
21
README.md
@@ -1,3 +1,20 @@
|
||||
# xtools-dependencies
|
||||
# xtools-parent
|
||||
|
||||
低调大师工具箱,Jar依赖,适配JDK25
|
||||
低调大师工具箱,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
|
||||
```
|
||||
207
pom.xml
Normal file
207
pom.xml
Normal file
@@ -0,0 +1,207 @@
|
||||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-dependencies</artifactId>
|
||||
<version>5.0.0</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>xtools-dependencies</name>
|
||||
<description>低调大师工具箱,Jar依赖,适配JDK25</description>
|
||||
|
||||
<!-- 组织信息 -->
|
||||
<organization>
|
||||
<name>org.xujun</name>
|
||||
<url>https://www.xujun.org</url>
|
||||
</organization>
|
||||
|
||||
<!-- 属性配置 -->
|
||||
<properties>
|
||||
<!-- xtools -->
|
||||
<xtools.version>5.0.0</xtools.version>
|
||||
</properties>
|
||||
|
||||
<!-- 自定义Jar包依赖 -->
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- xtools begin -->
|
||||
<!-- xtools-core -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-core</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-web -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-web</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-extend -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-extend</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>*</artifactId>
|
||||
<groupId>*</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<!-- xtools-api -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-api</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools end -->
|
||||
|
||||
<!-- xtools-boot begin -->
|
||||
<!-- xtools-boot-api -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-api</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-core -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-core</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-cache-redis -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-cache-redis</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-db-mybatis -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-db-mybatis</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-db-mybatis-plus -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-db-mybatis-plus</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-elasticsearch -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-elasticsearch</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-ip -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-ip</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-job-xxl -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-job-xxl</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-knife4j -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-knife4j</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-log -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-log</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-mask -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-mask</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-mq-base -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-mq-base</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-mq-rabbit -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-mq-rabbit</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-storage-base -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-storage-base</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-storage-file -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-storage-file</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-storage-s3 -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-storage-s3</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-task -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-task</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-thread -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-thread</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-web-base -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-web-base</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot-web-filter -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-boot-web-filter</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-boot end -->
|
||||
|
||||
<!-- xtools-cloud begin -->
|
||||
<!-- xtools-cloud-alibaba-nacos -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-cloud-alibaba-nacos</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-cloud-alibaba-sentinel -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-cloud-alibaba-sentinel</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- xtools-cloud-call -->
|
||||
<dependency>
|
||||
<groupId>org.xujun</groupId>
|
||||
<artifactId>xtools-cloud-call</artifactId>
|
||||
<version>${xtools.version}</version>
|
||||
</dependency>
|
||||
<!-- xtools-cloud end -->
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user