memcached-spring-boot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.buralotech.oss.springboot.memcached</groupId> <artifactId>memcached-spring-boot</artifactId> <version>1.3.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2024-2025 Brian Matthews Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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"> <modelVersion>4.0.0</modelVersion> <prerequisites> <maven>3.9.9</maven> </prerequisites> <groupId>com.buralotech.oss.springboot.memcached</groupId> <artifactId>memcached-spring-boot</artifactId> <version>1.3.2</version> <packaging>pom</packaging> <inceptionYear>2024</inceptionYear> <name>Memcached Starter & Auto-configuration for Spring Boot</name> <description>This project provides Spring Boot starter and auto-configuration modules for Memcached. They are based on the XMemcached client. These modules also integrate with the Spring Boot Docker Compose and Testcontainers support. </description> <url>https://gitlab.com/buralo/oss/memcached-spring-boot/</url> <properties> <spring-boot.version>3.4.5</spring-boot.version> <xmemcached.version>2.4.8</xmemcached.version> <spymemcached.version>2.12.3</spymemcached.version> <testcontainers-memcached.version>1.0.3</testcontainers-memcached.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <processDependencyManagementTransitive>false</processDependencyManagementTransitive> <maven.compiler.release>17</maven.compiler.release> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Brian Matthews</name> <email>bmatthews68@gmail.com</email> <url>https://github.com/bmatthews68</url> <organizationUrl>https://buralotech.com</organizationUrl> <timezone>+3</timezone> <roles> <role>developer</role> </roles> </developer> </developers> <modules> <module>memcached-spring-boot-autoconfigure</module> <module>memcached-spring-boot-starter</module> </modules> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.4.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>3.1.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>4.0.0-M16</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.9.9</version> </requireMavenVersion> <requireJavaVersion> <version>17</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <releaseProfiles>release</releaseProfiles> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <keyname>D7E9D144</keyname> <passphraseServerId>D7E9D144</passphraseServerId> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.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>3.11.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <scope>import</scope> <type>pom</type> </dependency> <dependency> <groupId>com.googlecode.xmemcached</groupId> <artifactId>xmemcached</artifactId> <version>${xmemcached.version}</version> </dependency> <dependency> <groupId>net.spy</groupId> <artifactId>spymemcached</artifactId> <version>${spymemcached.version}</version> </dependency> <dependency> <groupId>com.buralotech.oss.springboot.memcached</groupId> <artifactId>memcached-spring-boot-autoconfigure</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.buralotech.oss.springboot.memcached</groupId> <artifactId>memcached-spring-boot-starter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.buralotech.oss.testcontainers</groupId> <artifactId>memcached</artifactId> <version>${testcontainers-memcached.version}</version> </dependency> </dependencies> </dependencyManagement> <scm> <connection>scm:git:git@gitlab.com:buralo/oss/memcached-spring-boot.git</connection> <url>https://gitlab.com/buralo/oss/memcached-spring-boot</url> <developerConnection>scm:git:git@gitlab.com:buralo/oss/memcached-spring-boot.git</developerConnection> <tag>1.3.2</tag> </scm> </project>