redis-hod-token-repository
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.hp.autonomy.hod.redis</groupId> <artifactId>redis-hod-token-repository</artifactId> <version>0.4.2</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> <parent> <groupId>com.hp.autonomy</groupId> <artifactId>foss-master-pom</artifactId> <version>2.0.0</version> </parent> <groupId>com.hp.autonomy.hod.redis</groupId> <artifactId>redis-hod-token-repository</artifactId> <version>0.4.2</version> <description>Redis based repository for HP Haven OnDemand authentication tokens</description> <url>https://github.com/hpautonomy/redis-hod-token-repository</url> <inceptionYear>2015</inceptionYear> <scm> <connection>scm:git:git@github.com:hpautonomy/redis-hod-token-repository.git</connection> <developerConnection>scm:git:git@github.com:hpautonomy/redis-hod-token-repository.git</developerConnection> <url>git@github.com:hpautonomy/redis-hod-token-repository.git</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/hpautonomy/redis-hod-token-repository/issues</url> </issueManagement> <developers> <developer> <name>Alex Scown</name> <email>alex.scown@hp.com</email> <organization>HP</organization> <organizationUrl>http://www.hp.com</organizationUrl> </developer> <developer> <name>Will Byrne</name> <email>will.byrne@hpe.com</email> <organization>Hewlett-Packard Enterprise</organization> <organizationUrl>http://www.hpe.com</organizationUrl> </developer> </developers> <properties> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.18.1</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.hp.autonomy.hod</groupId> <artifactId>java-hod-client</artifactId> <version>0.25.3</version> </dependency> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.6.2</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.16.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>java-hamcrest</artifactId> <version>2.0.0.0</version> <scope>test</scope> </dependency> </dependencies> </project>