87 Star 1.4K Fork 245

GVPaizuda/MongoPlus

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 10.46 KB
一键复制 编辑 原始数据 按行查看 历史
anwen 提交于 2025-06-25 00:07 +08:00 . 优化pom
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mongoplus</groupId>
<artifactId>mongo-plus</artifactId>
<packaging>pom</packaging>
<name>mongo-plus</name>
<version>2.1.9</version>
<description>mongo-plus版本控制</description>
<url>https://www.mongoplus.com</url>
<inceptionYear>2024</inceptionYear>
<modules>
<module>mongo-plus-annotation</module>
<module>mongo-plus-core</module>
<module>mongo-plus-boot-starter</module>
<module>mongo-plus-solon-plugin</module>
<module>mongo-plus-sharding</module>
<module>mongo-plus-sharding-boot-starter</module>
<module>mongo-plus-sensitive-word</module>
</modules>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>https://gitee.com/aizuda/mongo-plus.git</connection>
<developerConnection>https://gitee.com/aizuda/mongo-plus.git</developerConnection>
<url>https://gitee.com/aizuda/mongo-plus</url>
</scm>
<developers>
<developer>
<id>anwen</id>
<name>anwen</name>
<email>mongoplus.cn@gmail.com</email>
<roles>
<role>Project Manager</role>
<role>Architect</role>
</roles>
<timezone>+8</timezone>
</developer>
</developers>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mongoplus.version>2.1.9</mongoplus.version>
<mongodb.version>5.4.0</mongodb.version>
<slf4j-api.version>2.0.13</slf4j-api.version>
<reload4j.version>1.2.25</reload4j.version>
<commons-logging.version>1.3.1</commons-logging.version>
<log4j-api.version>2.23.1</log4j-api.version>
<logback-classic.version>1.5.13</logback-classic.version>
<log4j-core.version>2.23.1</log4j-core.version>
<solon-api.version>3.0.1</solon-api.version>
<aspectjweaver.version>1.9.7</aspectjweaver.version>
<spring-tx.version>5.3.27</spring-tx.version>
<bcprov-jdk18on.version>1.78.1</bcprov-jdk18on.version>
<javadoc.version>3.6.3</javadoc.version>
<spring.boot.version>3.4.2</spring.boot.version>
<central-publishing.version>0.6.0</central-publishing.version>
<maven-release.version>2.5.3</maven-release.version>
<maven-source.version>2.2.1</maven-source.version>
<maven-gpg.version>1.5</maven-gpg.version>
<jsr305.version>3.0.2</jsr305.version>
<sensitive-word.version>0.25.0</sensitive-word.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- mongodb-bom -->
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-bom</artifactId>
<version>${mongodb.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.mongoplus</groupId>
<artifactId>mongo-plus-bom</artifactId>
<version>${mongoplus.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- slf4j -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-api.version}</version>
</dependency>
<!-- sensitive-word -->
<dependency>
<groupId>com.github.houbb</groupId>
<artifactId>sensitive-word</artifactId>
<version>${sensitive-word.version}</version>
</dependency>
<!-- solon -->
<dependency>
<groupId>org.noear</groupId>
<artifactId>solon</artifactId>
<version>${solon-api.version}</version>
</dependency>
<!-- 切面 -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>${aspectjweaver.version}</version>
</dependency>
<!-- spring事务 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${spring-tx.version}</version>
</dependency>
<!-- log4j -->
<dependency>
<groupId>ch.qos.reload4j</groupId>
<artifactId>reload4j</artifactId>
<version>${reload4j.version}</version>
</dependency>
<!-- commons-logging -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>${commons-logging.version}</version>
</dependency>
<!-- log4j2 -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j-api.version}</version>
</dependency>
<!-- Logging Support used in testing -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback-classic.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j-core.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${bcprov-jdk18on.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>${jsr305.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>release</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>${central-publishing.version}</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release.version}</version>
<extensions>true</extensions>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${javadoc.version}</version>
</plugin>
<!--<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>-->
</plugins>
</build>
<!-- maven中央仓库 -->
<distributionManagement>
<snapshotRepository>
<id>release</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>release</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/aizuda/mongo-plus.git
git@gitee.com:aizuda/mongo-plus.git
aizuda
mongo-plus
MongoPlus
master

搜索帮助