cachew
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.rjjingar</groupId> <artifactId>cachew</artifactId> <version>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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.rjjingar</groupId> <artifactId>cachew</artifactId> <version>0.1</version> <packaging>jar</packaging> <name>cachew</name> <description>A Java library for in-memory local cache</description> <url>https://github.com/rjjingar/Cachew</url> <licenses> <license> <name>MIT License</name> <url>https://choosealicense.com/licenses/mit/</url> </license> </licenses> <developers> <developer> <name>Rohan Jingar</name> <email>jingarrohan@gmail.com</email> <organization>rjjingar</organization> <organizationUrl>https://github.com/rjjingar</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/rjjingar/Cachew.git</connection> <developerConnection>scm:git:ssh://github.com:rjjingar/Cachew.git</developerConnection> <url>https://github.com/rjjingar/Cachew/tree/main</url> </scm> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.20</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.10.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.3.0</version> </dependency> </dependencies> <!-- <distributionManagement> <repository> <id>central</id> <url>https://central.sonatype.com/content/repositories/releases</url> </repository> </distributionManagement> --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.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>2.9.1</version> <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>1.5</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.3.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> </plugins> </build> </project>