spt-redis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.Kloping</groupId> <artifactId>spt-redis</artifactId> <version>0.2.4</version> </dependency>
<?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>io.github.Kloping</groupId> <artifactId>spt-redis</artifactId> <version>0.2.4</version> <packaging>jar</packaging> <name>spt-redis</name> <url>https://github.com/Kloping/spt-redis</url> <description>SpTool</description> <licenses> <license> <name>GNU AFFERO GENERAL PUBLIC LICENSE Version 3</name> <url>https://raw.githubusercontent.com/kloping/spt-redis/master/LICENSE</url> <distribution>repo</distribution> <comments>--</comments> </license> </licenses> <scm> <connection>scm:git:git://github.com/Kloping/spt-redis.git</connection> <developerConnection>scm:git:ssh://github.com/Kloping/spt-redis</developerConnection> <url>https://github.com/Kloping/spt-redis</url> </scm> <developers> <developer> <name>Kloping</name> <id>Kloping</id> <email>hrs3474006766@outlook.com</email> <roles> <role>Developer</role> </roles> <timezone>+8</timezone> </developer> </developers> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>io.github.Kloping</groupId> <artifactId>SpringTool</artifactId> <version>0.6.3-R1</version> </dependency> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>3.6.0</version> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</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>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>