quick-cache
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.shussain333</groupId> <artifactId>quick-cache</artifactId> <version>1.0.1</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.3.4</version> <relativePath /> </parent> <groupId>io.github.shussain333</groupId> <artifactId>quick-cache</artifactId> <version>1.0.1</version> <name>${project.groupId}:${project.artifactId}</name> <packaging>jar</packaging> <description>In-Memory cache support, which can accept any type of key and any value. Also it provides multiple different caches based on context</description> <url>https://github.com/shussain333/quick-cache-uses</url> <licenses> <license> <name>Apache-2.0 license</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Sartaj Hussain</name> <email>sartajhussain3786@gmail.com</email> <organization>io.github.shussain333</organization> <url>https://github.com/shussain333/quick-cache-uses</url> <roles> <role>developer</role> </roles> </developer> </developers> <scm> <connection>scm:git:git://github.com/shussain333/quick-cache.git</connection> <developerConnection>scm:git:ssh://github.com/shussain333/quick-cache-uses.git</developerConnection> <url>https://github.com/shussain333/quick-cache-uses.git</url> <tag>v1.0.1</tag> </scm> <distributionManagement> <snapshotRepository> <id>central</id> <url>https://central.sonatype.com/content/repositories/snapshots</url> <layout>default</layout> </snapshotRepository> <repository> <id>central</id> <url>https://central.sonatype.com/service/local/staging/deploy/maven2/</url> <layout>default</layout> </repository> </distributionManagement> <properties> <java.version>17</java.version> <spring.version>3.3.4</spring.version> <lombok.version>1.18.34</lombok.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-json</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.35.0</version> <configuration> <formats> <!-- you can define as many formats as you want, each is independent --> <format> <!-- define the files to apply to --> <includes> <include>.gitattributes</include> <include>.gitignore</include> </includes> <!-- define the steps to apply to those files --> <trimTrailingWhitespace /> <endWithNewline /> <indent> <tabs>true</tabs> <spacesPerTab>4</spacesPerTab> </indent> </format> </formats> <!-- define a language-specific format --> <java> <googleJavaFormat> <version>1.15.0</version> <style>GOOGLE</style> <reflowLongStrings>true</reflowLongStrings> </googleJavaFormat> <indent> <tabs>true</tabs> <spacesPerTab>2</spacesPerTab> </indent> <indent> <spaces>true</spaces> <spacesPerTab>4</spacesPerTab> </indent> <formatAnnotations /> <licenseHeader> <file>${project.basedir}/license-header</file> </licenseHeader> </java> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> <phase>compile</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <excludes> <exclude>com/sartaj/cache/internal/**</exclude> <exclude>**/*.properties</exclude> <exclude>**/*.yml</exclude> <exclude>**/*.txt</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <annotationProcessorPaths> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <!--Generate source--> <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> <!--Generate javadoc--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.8.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!--GPG signed component--> <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> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> </project>