redisson-all
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.redisson</groupId> <artifactId>redisson-all</artifactId> <version>3.46.0</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/maven-v4_0_0.xsd"> <parent> <artifactId>redisson-parent</artifactId> <groupId>org.redisson</groupId> <version>3.46.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>redisson-all</artifactId> <name>Redisson/All-in-One</name> <description>Easy Redis Java client and Real-Time Data Platform. Valkey compatible. Sync/Async/RxJava3/Reactive API. Client side caching. Over 50 Redis based Java objects and services: JCache API, Apache Tomcat, Hibernate, Spring, Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Scheduler, RPC</description> <url>https://redisson.org</url> <inceptionYear>2014</inceptionYear> <licenses> <license> <name>Apache v2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>manual</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:mrniko/redisson.git</connection> <developerConnection>scm:git:git@github.com:mrniko/redisson.git</developerConnection> <tag>redisson-3.46.0</tag> <url>scm:git:git@github.com:mrniko/redisson.git</url> </scm> <organization> <name>Redisson</name> <url>https://redisson.org/</url> </organization> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <id>empty-javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <classesDirectory>${basedir}/javadoc</classesDirectory> </configuration> </execution> </executions> <configuration> <archive> <index>true</index> <manifest> <mainClass>org.redisson.RedissonNode</mainClass> <addClasspath>false</addClasspath> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Build-Time>${maven.build.timestamp}</Build-Time> <Automatic-Module-Name>redisson.all</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <id>shade-artifacts</id> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactId>redisson-all</shadedArtifactId> <promoteTransitiveDependencies>true</promoteTransitiveDependencies> <minimizeJar>false</minimizeJar> <createSourcesJar>true</createSourcesJar> <filters> <filter> <artifact>*</artifact> <excludes> <exclude>META-INF/**/*.class</exclude> <exclude>META-INF/**/spring.*</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>unit-test</id> <properties> <maven.test.skip>false</maven.test.skip> </properties> </profile> </profiles> </project>