You can download nosqlunit-redis-0.10.0.jar in this page.
Open Source
nosqlunit-redis-0.10.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.lordofthejars/nosqlunit-redis/pom.properties META-INF/maven/com.lordofthejars/nosqlunit-redis/pom.xml com.lordofthejars.nosqlunit.redis.AbstractRedisConfiguration.class com.lordofthejars.nosqlunit.redis.DefaultRedisComparisonStrategy.class com.lordofthejars.nosqlunit.redis.DefaultRedisInsertionStrategy.class com.lordofthejars.nosqlunit.redis.EmbeddedRedis.class com.lordofthejars.nosqlunit.redis.EmbeddedRedisConfigurationBuilder.class com.lordofthejars.nosqlunit.redis.EmbeddedRedisInstances.class com.lordofthejars.nosqlunit.redis.EmbeddedRedisLifecycleManager.class com.lordofthejars.nosqlunit.redis.ManagedRedis.class com.lordofthejars.nosqlunit.redis.ManagedRedisConfigurationBuilder.class com.lordofthejars.nosqlunit.redis.ManagedRedisLifecycleManager.class com.lordofthejars.nosqlunit.redis.ManagedRedisLifecycleManagerBuilder.class com.lordofthejars.nosqlunit.redis.RedisAssertion.class com.lordofthejars.nosqlunit.redis.RedisComparisonStrategy.class com.lordofthejars.nosqlunit.redis.RedisConfiguration.class com.lordofthejars.nosqlunit.redis.RedisConnectionCallback.class com.lordofthejars.nosqlunit.redis.RedisInsertionStrategy.class com.lordofthejars.nosqlunit.redis.RedisOperation.class com.lordofthejars.nosqlunit.redis.RedisRule.class com.lordofthejars.nosqlunit.redis.RemoteRedisConfigurationBuilder.class com.lordofthejars.nosqlunit.redis.ShardedRedisConfiguration.class com.lordofthejars.nosqlunit.redis.ShardedRedisConfigurationBuilder.class com.lordofthejars.nosqlunit.redis.ShardedRedisOperation.class com.lordofthejars.nosqlunit.redis.embedded.BitsUtils.class com.lordofthejars.nosqlunit.redis.embedded.BlockingMap.class com.lordofthejars.nosqlunit.redis.embedded.ByteArray2ByteBufferConverter.class com.lordofthejars.nosqlunit.redis.embedded.ByteArrayIncrement.class com.lordofthejars.nosqlunit.redis.embedded.ByteArrayToStringConverter.class com.lordofthejars.nosqlunit.redis.embedded.ByteBuffer2ByteArrayConverter.class com.lordofthejars.nosqlunit.redis.embedded.ByteBufferAsString2DoubleConverter.class com.lordofthejars.nosqlunit.redis.embedded.ConnectionServerOperations.class com.lordofthejars.nosqlunit.redis.embedded.DoubleToStringByteArrayConverter.class com.lordofthejars.nosqlunit.redis.embedded.EmbeddedJedis.class com.lordofthejars.nosqlunit.redis.embedded.EmbeddedPipeline.class com.lordofthejars.nosqlunit.redis.embedded.EmbeddedRedisBuilder.class com.lordofthejars.nosqlunit.redis.embedded.ExpirationDatatypeOperations.class com.lordofthejars.nosqlunit.redis.embedded.HashDatatypeOperations.class com.lordofthejars.nosqlunit.redis.embedded.KeysServerOperations.class com.lordofthejars.nosqlunit.redis.embedded.ListDatatypeOperations.class com.lordofthejars.nosqlunit.redis.embedded.MatchesGlobRegexpMatcher.class com.lordofthejars.nosqlunit.redis.embedded.NoArgsJedis.class com.lordofthejars.nosqlunit.redis.embedded.PubSubServerOperations.class com.lordofthejars.nosqlunit.redis.embedded.RangeUtils.class com.lordofthejars.nosqlunit.redis.embedded.RedisDatatypeOperations.class com.lordofthejars.nosqlunit.redis.embedded.ScriptingServerOperations.class com.lordofthejars.nosqlunit.redis.embedded.SetDatatypeOperations.class com.lordofthejars.nosqlunit.redis.embedded.SortsetDatatypeOperations.class com.lordofthejars.nosqlunit.redis.embedded.StringDatatypeOperations.class com.lordofthejars.nosqlunit.redis.embedded.StringToByteArrayConverter.class com.lordofthejars.nosqlunit.redis.embedded.TransactionServerOperations.class com.lordofthejars.nosqlunit.redis.embedded.TransferMap.class com.lordofthejars.nosqlunit.redis.parser.DataReader.class com.lordofthejars.nosqlunit.redis.parser.JsonToJedisConverter.class com.lordofthejars.nosqlunit.redis.replication.ReplicationGroup.class com.lordofthejars.nosqlunit.redis.replication.ReplicationGroupBuilder.class com.lordofthejars.nosqlunit.redis.replication.ReplicationManagedRedis.class
nosqlunit-redis-0.10.0.pom file content.
<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> <parent> <artifactId>nosqlunit</artifactId> <groupId>com.lordofthejars</groupId> <version>0.10.0</version> <relativePath>..</relativePath> </parent> <artifactId>nosqlunit-redis</artifactId> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <artifactId>nosqlunit-core</artifactId> <groupId>com.lordofthejars</groupId> <version>${project.version}</version> </dependency> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <exclusions> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> <executions> <execution> <id>unit-tests</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <configuration> <skip>false</skip> <includes> <include>**/*Test.java</include> <include>**/Test*.java</include> <include>**/When*.java</include> </includes> <excludes> <exclude>%regex[.*integration.*]</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>com.lordofthejars</groupId> <artifactId>nosqlunit-redis</artifactId> <version>0.10.0</version> </dependency>
If you think the following nosqlunit-redis-0.10.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download nosqlunit-redis-0.10.0.jar file