1 Star 3 Fork 0

slacrey / redisson-extend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.12 KB
一键复制 编辑 原始数据 按行查看 历史
linfeng 提交于 2020-06-11 09:38 . 添加guava依赖
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>com.github.slacrey</groupId>
<artifactId>redisson-extend</artifactId>
<version>1.2.2150</version>
<name>redisson-extend</name>
<description>redisson extend</description>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>linfeng</name>
<email>237242115@qq.com</email>
<url>https://github.com/slacrey</url>
<timezone>+8</timezone>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<scm>
<tag>master</tag>
<connection>scm:git:git@github.com:slacrey/redisson-extend.git</connection>
<developerConnection>scm:git:git@github.com:slacrey/redisson-extend.git</developerConnection>
<url>git@github.com:slacrey/redisson-extend.git</url>
</scm>
<properties>
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
<gpg.executable>gpg</gpg.executable>
<gpg.passphrase>lyl20160225</gpg.passphrase>
</properties>
<dependencies>
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>2.15.0</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>sonatype-oss-release</id>
<properties>
<gpg.executable>gpg</gpg.executable>
<gpg.passphrase>lyl20160225</gpg.passphrase>
</properties>
<build>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<show>private</show>
<nohelp>true</nohelp>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>gpg</executable>
<homedir>${gpg.homedir}</homedir>
<passphrase>${gpg.passphrase}</passphrase>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Java
1
https://gitee.com/slacrey/redisson-extend.git
git@gitee.com:slacrey/redisson-extend.git
slacrey
redisson-extend
redisson-extend
master

搜索帮助