aws-elasticache-provider
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.google.code.simple-spring-memcached</groupId> <artifactId>aws-elasticache-provider</artifactId> <version>4.1.3</version> </dependency>
<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.google.code.simple-spring-memcached</groupId> <artifactId>simple-spring-memcached-parent</artifactId> <version>4.1.3</version> </parent> <artifactId>aws-elasticache-provider</artifactId> <packaging>jar</packaging> <name>aws-elasticache-provider</name> <description>Use Amazon ElastiCache Cluster Client as a memcached client</description> <url>http://github.com/ragnor/simple-spring-memcached</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <id>ragnor84</id> <name>Jakub Białek</name> <roles> <role>Owner</role> </roles> </developer> </developers> <mailingLists> <mailingList> <name>Project Google group</name> <post>simple-spring-memecached@googlegroups.com</post> <subscribe>simple-spring-memecached@googlegroups.com</subscribe> <unsubscribe>simple-spring-memecached@googlegroups.com</unsubscribe> <archive>http://groups.google.com/group/simple-spring-memecached</archive> </mailingList> </mailingLists> <issueManagement> <system>github</system> <url>http://github.com/ragnor/simple-spring-memcached/issues</url> </issueManagement> <ciManagement> <system>jenkins</system> <url>https://ragnor.ci.cloudbees.com/</url> </ciManagement> <dependencies> <dependency> <groupId>com.google.code.simple-spring-memcached</groupId> <artifactId>simple-spring-memcached</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>elasticache-java-cluster-client</artifactId> <exclusions> <!-- exclude test dependencies --> <exclusion> <artifactId>junit-dep</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>jmock</artifactId> <groupId>jmock</groupId> </exclusion> <exclusion> <artifactId>jmock-cglib</artifactId> <groupId>jmock</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>nl.jqno.equalsverifier</groupId> <artifactId>equalsverifier</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <sourcepath>${basedir}/target/generated-sources/delombok</sourcepath> <excludePackageNames>com.google.code.ssm.test.*,com.google.code.ssm.spring.test.*</excludePackageNames> <links> <link>http://docs.spring.io/spring/docs/4.3.x/javadoc-api/</link> <link>http://fnil.net/docs/xmemcached/</link> <link>http://docs.oracle.com/javase/7/docs/api/</link> </links> <doclet>org.jboss.apiviz.APIviz</doclet> <docletArtifact> <groupId>com.grahamedgecombe.apiviz</groupId> <artifactId>apiviz</artifactId> <version>${apiviz.version}</version> </docletArtifact> <useStandardDocletOptions>true</useStandardDocletOptions> <charset>UTF-8</charset> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <breakiterator>true</breakiterator> <version>true</version> <author>true</author> <keywords>true</keywords> <show>package</show> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.projectlombok</groupId> <artifactId>lombok-maven-plugin</artifactId> <version>${lombok-maven-plugin.version}</version> <executions> <execution> <id>delombok</id> <phase>generate-sources</phase> <goals> <goal>delombok</goal> </goals> <configuration> <verbose>true</verbose> </configuration> </execution> </executions> <configuration> <addOutputDirectory>false</addOutputDirectory> <sourceDirectory>src/main/java</sourceDirectory> </configuration> <dependencies> <dependency> <groupId>sun.jdk</groupId> <artifactId>tools</artifactId> <version>1.7</version> <scope>system</scope> <systemPath>${java.home}/../lib/tools.jar</systemPath> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jenkins</id> <activation> <property> <name>BUILD_NUMBER</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <executions> <execution> <phase>test</phase> <goals> <goal>cobertura</goal> </goals> <configuration> <format>xml</format> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <configuration> <classFilesDirectory>${project.build.outputDirectory}</classFilesDirectory> </configuration> <executions> <execution> <phase>test</phase> <goals> <goal>findbugs</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>