mnemo-cache
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.baokhang83.mnemo</groupId>
<artifactId>mnemo-cache</artifactId>
<version>0.1.0</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>
<groupId>io.github.baokhang83.mnemo</groupId>
<artifactId>mnemo-cache</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>
<name>mnemo-cache</name>
<description>Seasonality-aware caching for the JVM</description>
<url>https://github.com/baokhang83/mnemo-cache</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>baokhang83</id>
<name>BaoKhang83</name>
<url>https://github.com/baokhang83</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/baokhang83/mnemo-cache.git</connection>
<developerConnection>scm:git:git@github.com:baokhang83/mnemo-cache.git</developerConnection>
<url>https://github.com/baokhang83/mnemo-cache</url>
<tag>HEAD</tag>
</scm>
<properties>
<maven.compiler.release>21</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.11.3</junit.version>
<caffeine.version>3.1.8</caffeine.version>
<surefire.version>3.5.2</surefire.version>
<compiler.plugin.version>3.13.0</compiler.plugin.version>
<source.plugin.version>3.3.1</source.plugin.version>
<javadoc.plugin.version>3.11.2</javadoc.plugin.version>
<gpg.plugin.version>3.2.7</gpg.plugin.version>
<central.plugin.version>0.11.0</central.plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Optional: the Caffeine backend. Consumers opt in by adding Caffeine themselves. -->
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>${caffeine.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
</plugin>
</plugins>
</build>
<profiles>
<!--
Activate with `mvn -Prelease deploy`. Requires a GPG key and a `central`
server (token) in settings.xml. Kept out of the default build so day-to-day
`mvn verify` needs neither signing nor javadoc generation.
-->
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${source.plugin.version}</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>${javadoc.plugin.version}</version>
<configuration>
<!-- Keep real checks (HTML, references); don't flag undocumented
trivial members like fluent setters. -->
<doclint>all,-missing</doclint>
<quiet>true</quiet>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${gpg.plugin.version}</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>${central.plugin.version}</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<!-- false: upload to the portal, then publish manually after review.
Set true once you trust the pipeline. -->
<autoPublish>false</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>