memoryfilesystem
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.marschall</groupId>
<artifactId>memoryfilesystem</artifactId>
<version>2.8.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.marschall</groupId>
<artifactId>memoryfilesystem</artifactId>
<version>2.8.2</version>
<name>Memory File System</name>
<description>An in memory implementation of a JSR-203 file system.</description>
<url>https://github.com/marschall/memoryfilesystem</url>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/license/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>marschall</id>
<name>Philippe Marschall</name>
<email>philippe.marschall@gmail.com</email>
<roles>
<role>developer</role>
</roles>
<timezone>Europe/Zurich</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/marschall/memoryfilesystem.git</connection>
<developerConnection>scm:git:git@github.com:marschall/memoryfilesystem.git</developerConnection>
<tag>2.8.2</tag>
<url>https://github.com/marschall/memoryfilesystem</url>
</scm>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<version>3.0.0</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>