193 lines
6.9 KiB
Plaintext
193 lines
6.9 KiB
Plaintext
![]() |
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!--
|
||
|
~ Copyright (c) 2018-2022, baomidou (63976799@qq.com).
|
||
|
~
|
||
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
~ you may not use this file except in compliance with the License.
|
||
|
~ You may obtain a copy of the License at
|
||
|
~
|
||
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
||
|
~
|
||
|
~ Unless required by applicable law or agreed to in writing, software
|
||
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
~ See the License for the specific language governing permissions and
|
||
|
~ limitations under the License.
|
||
|
-->
|
||
|
|
||
|
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<modules>
|
||
|
<module>lock4j-core</module>
|
||
|
<module>lock4j-redis-template-spring-boot-starter</module>
|
||
|
<module>lock4j-redisson-spring-boot-starter</module>
|
||
|
<module>lock4j-zookeeper-spring-boot-starter</module>
|
||
|
<module>lock4j-test</module>
|
||
|
</modules>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>2.7.7</version>
|
||
|
<relativePath/>
|
||
|
</parent>
|
||
|
|
||
|
<groupId>com.baomidou</groupId>
|
||
|
<artifactId>lock4j</artifactId>
|
||
|
<version>2.2.7</version>
|
||
|
<packaging>pom</packaging>
|
||
|
|
||
|
<name>lock4j</name>
|
||
|
<description>
|
||
|
Declarative and programmatic distributed locks based on spring aop with RedisTemplate Redisson Zookeeper
|
||
|
</description>
|
||
|
<inceptionYear>2018</inceptionYear>
|
||
|
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>Apache License, Version 2.0</name>
|
||
|
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
|
||
|
<organization>
|
||
|
<name>baomidou</name>
|
||
|
<url>https://gitee.com/baomidou</url>
|
||
|
</organization>
|
||
|
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<name>zengzhihong</name>
|
||
|
<email>63976799@qq.com</email>
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<name>TaoYu</name>
|
||
|
<email>tracy5546@gmail.com</email>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
|
||
|
<scm>
|
||
|
<url>https://gitee.com/baomidou/lock4j</url>
|
||
|
<connection>scm:git:https://gitee.com/baomidou/lock4j.git</connection>
|
||
|
<developerConnection>scm:git:https://gitee.com/baomidou/lock4j.git</developerConnection>
|
||
|
<tag>HEAD</tag>
|
||
|
</scm>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
<java.version>1.8</java.version>
|
||
|
<nexus-staging.version>1.6.13</nexus-staging.version>
|
||
|
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
|
||
|
<redisson.version>3.19.0</redisson.version>
|
||
|
<curator.version>5.1.0</curator.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.8.0</version>
|
||
|
<configuration>
|
||
|
<source>${java.version}</source>
|
||
|
<target>${java.version}</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>attach-javadocs</id>
|
||
|
<goals>
|
||
|
<goal>jar</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-source-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>jar-no-fork</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>versions-maven-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<generateBackupPoms>false</generateBackupPoms>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>release</id>
|
||
|
<distributionManagement>
|
||
|
<snapshotRepository>
|
||
|
<id>ossrh</id>
|
||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||
|
</snapshotRepository>
|
||
|
<repository>
|
||
|
<id>ossrh</id>
|
||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||
|
</repository>
|
||
|
</distributionManagement>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||
|
<version>${maven-gpg-plugin.version}</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>sign-artifacts</id>
|
||
|
<phase>verify</phase>
|
||
|
<goals>
|
||
|
<goal>sign</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.sonatype.plugins</groupId>
|
||
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||
|
<version>${nexus-staging.version}</version>
|
||
|
<extensions>true</extensions>
|
||
|
<configuration>
|
||
|
<serverId>ossrh</serverId>
|
||
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
||
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>aliyun</id>
|
||
|
<name>aliyun maven</name>
|
||
|
<url>https://maven.aliyun.com/repository/public</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
</project>
|