组织ID: |
com.github.marschall |
项目ID: |
memoryfilesystem |
版本: |
1.3.0 |
最后修改时间: |
2019-01-16 15:27:09 |
包类型: |
jar |
标题: |
Memory File System |
描述: |
An in memory implementation of a JSR-203 file system. |
相关URL: |
https://github.com/marschall/memoryfilesystem |
大小: |
275.57KB |
|
Maven引入代码: |
<dependency>
<groupId>com.github.marschall</groupId>
<artifactId>memoryfilesystem</artifactId>
<version>1.3.0</version>
</dependency>
|
Gradle引入代码: |
com.github.marschall:memoryfilesystem:1.3.0
|
下载Jar包: |
|
POM文件内容: |
<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>com.github.marschall</groupId>
<artifactId>memoryfilesystem</artifactId>
<version>1.3.0</version>
<packaging>jar</packaging>
<name>Memory File System</name>
<description>An in memory implementation of a JSR-203 file system.</description>
<inceptionYear>2011</inceptionYear>
<url>https://github.com/marschall/memoryfilesystem</url>
<prerequisites>
<maven>3.0.3</maven>
</prerequisites>
<scm>
<connection>scm:git:https://github.com/marschall/memoryfilesystem.git</connection>
<developerConnection>scm:git:git@github.com:marschall/memoryfilesystem.git</developerConnection>
<url>${project.url}</url>
<tag>1.3.0</tag>
</scm>
<ciManagement>
<system>Travis</system>
<url>https://travis-ci.org/marschall/memoryfilesystem</url>
</ciManagement>
<issueManagement>
<url>https://github.com/marschall/memoryfilesystem/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<developers>
<developer>
<id>marschall</id>
<name>Philippe Marschall</name>
<email>philippe.marschall@gmail.com</email>
<timezone>+1</timezone>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>MIT</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<!-- for java.annotation -->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-junit</artifactId>
<version>2.0.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.marschall</groupId>
<artifactId>zipfilesystem-standalone</artifactId>
<version>1.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- make spring use logback (for tests only) -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jcl</artifactId>
<version>${log4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jol</groupId>
<artifactId>jol-core</artifactId>
<version>0.9</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
</excludes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>META-INF/MANIFEST.MF</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>com.github.marschall</groupId>
<artifactId>jdeps-maven-plugin</artifactId>
<configuration>
<profile>true</profile>
<!--
<dotOutputDirectory>${project.reporting.outputDirectory}/jdeps</dotOutputDirectory>
-->
</configuration>
</plugin>
<plugin>
<groupId>com.github.ferstl</groupId>
<artifactId>jitwatch-jarscan-maven-plugin</artifactId>
<configuration>
<analyzeDependencies>false</analyzeDependencies>
</configuration>
<!--
<executions>
<execution>
<id>crate-jarscan-report</id>
<goals>
<goal>scan</goal>
</goals>
</execution>
</executions>
-->
</plugin>
<plugin>
<groupId>codes.rafael.modulemaker</groupId>
<artifactId>modulemaker-maven-plugin</artifactId>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>make-module</goal>
</goals>
</execution>
</executions>
<configuration>
<name>com.github.marschall.memoryfilesystem</name>
<exports>com.github.marschall.memoryfilesystem</exports>
<static-requires>java.annotation</static-requires>
<provides>
<provide>
<services>java.nio.file.spi.FileSystemProvider</services>
<providers>com.github.marschall.memoryfilesystem.MemoryFileSystemProvider</providers>
</provide>
</provides>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
<link>https://docs.oracle.com/javase/7/docs/api/</link>
</links>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<index>true</index>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.jboss.jandex</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<executions>
<execution>
<id>make-index</id>
<goals>
<goal>jandex</goal>
</goals>
<!-- at the moment jandex can't handle module-info.class -->
<configuration>
<fileSets>
<fileSet>
<directory>${project.build.outputDirectory}</directory>
<includes>
<include>**/*.class</include>
</includes>
<excludes>
<exclude>**/module-info.class</exclude>
</excludes>
<useDefaultExcludes>true</useDefaultExcludes>
</fileSet>
</fileSets>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<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-release-plugin</artifactId>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<arguments>-Pdeploy-to-sonatype-oss</arguments>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.github.marschall</groupId>
<artifactId>jdeps-maven-plugin</artifactId>
<version>0.4.2</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
</plugin>
<plugin>
<artifactId>maven-toolchains-plugin</artifactId>
<version>1.1</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<groupId>org.jboss.jandex</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<version>1.0.5</version>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<artifactId>maven-scm-plugin</artifactId>
<version>1.9.5</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.7</version>
</plugin>
<plugin>
<groupId>com.github.ferstl</groupId>
<artifactId>jitwatch-jarscan-maven-plugin</artifactId>
<version>1.1</version>
</plugin>
<plugin>
<groupId>codes.rafael.modulemaker</groupId>
<artifactId>modulemaker-maven-plugin</artifactId>
<version>1.5</version>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.jboss.jandex</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<versionRange>[1.0.1,)</versionRange>
<goals>
<goal>jandex</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>codes.rafael.modulemaker</groupId>
<artifactId>modulemaker-maven-plugin</artifactId>
<versionRange>[1.3,)</versionRange>
<goals>
<goal>make-module</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>deploy-to-sonatype-oss</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>not-travis</id>
<activation>
<property>
<name>!env.TRAVIS</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>7</release>
<!-- Only required when JAVA_HOME isn't at least Java 11 and when haven't configured the maven-toolchains-plugin -->
<jdkToolchain>
<version>11</version>
</jdkToolchain>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>travis-7</id>
<activation>
<jdk>1.7</jdk>
<property>
<name>env.TRAVIS</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>travis-8</id>
<activation>
<jdk>1.8</jdk>
<property>
<name>env.TRAVIS</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>travis-11</id>
<activation>
<jdk>11</jdk>
<property>
<name>env.TRAVIS</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>7</release>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.7</java.version>
<log4j.version>2.11.1</log4j.version>
<spring.version>4.3.20.RELEASE</spring.version>
</properties>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/services/java.nio.file.spi.FileSystemProvider
com.github.marschall.memoryfilesystem.MemoryDirectory.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$16.class
com.github.marschall.memoryfilesystem.EmptyRoot.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$19$1.class
com.github.marschall.memoryfilesystem.BlockOutputStream.class
com.github.marschall.memoryfilesystem.CurrentGroup.class
com.github.marschall.memoryfilesystem.RegexPathMatcher.class
com.github.marschall.memoryfilesystem.AttributeAccessors.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemoryDirectoryFileAttributesView.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$GetFileResult.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemoryDosFileAttributes.class
com.github.marschall.memoryfilesystem.StringTransformer.class
com.github.marschall.memoryfilesystem.EmptyPath.class
com.github.marschall.memoryfilesystem.AttributeAccessors$LastModifiedTimeAccessor.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemoryPosixFileAttributeView.class
com.github.marschall.memoryfilesystem.MemoryFileSystemWatchService.class
com.github.marschall.memoryfilesystem.AsynchronousBlockChannel.class
com.github.marschall.memoryfilesystem.AttributeAccessors$SizeAccessor.class
com.github.marschall.memoryfilesystem.AppendingBlockOutputStream.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$EndPointCopyContext.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemoryFileAttributes.class
com.github.marschall.memoryfilesystem.RegexRelativePathMatcher.class
com.github.marschall.memoryfilesystem.AsynchronousBlockChannel$3.class
com.github.marschall.memoryfilesystem.AttributeAccessors$GroupAccessor.class
com.github.marschall.memoryfilesystem.PathParser$ExitHandler.class
com.github.marschall.memoryfilesystem.CharacterSet.class
com.github.marschall.memoryfilesystem.AttributeAccessors$LastAccessTimeAccessor.class
com.github.marschall.memoryfilesystem.MemoryDirectoryStream$MemoryDirectoryIterator.class
com.github.marschall.memoryfilesystem.DefaultOpenOptions.class
com.github.marschall.memoryfilesystem.StringTransformers$CaseInsensitiveMacOSNative.class
com.github.marschall.memoryfilesystem.StringTransformers$CaseInsensitiveMacOSJvm.class
com.github.marschall.memoryfilesystem.MemoryFileSystemProperties$CollatorCache.class
com.github.marschall.memoryfilesystem.ElementPath.class
com.github.marschall.memoryfilesystem.StringTransformers$NFC.class
com.github.marschall.memoryfilesystem.AsynchronousBlockChannel$6.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$18.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$10.class
com.github.marschall.memoryfilesystem.TwoPathOperation.class
com.github.marschall.memoryfilesystem.AttributeAccessors$IsDirectoryAccessor.class
com.github.marschall.memoryfilesystem.OverflowWatchEvent.class
com.github.marschall.memoryfilesystem.PathParser$ExitHandler$3.class
com.github.marschall.memoryfilesystem.AsynchronousBlockChannel$4.class
com.github.marschall.memoryfilesystem.FileAttributeViews.class
com.github.marschall.memoryfilesystem.ParentReferenceList.class
com.github.marschall.memoryfilesystem.StringTransformers$CaseInsensitive.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$15$1.class
com.github.marschall.memoryfilesystem.PathParser$DirectoryCrossingPattern.class
com.github.marschall.memoryfilesystem.ModificationWatchEvent.class
com.github.marschall.memoryfilesystem.MemoryFileLock.class
com.github.marschall.memoryfilesystem.SingleEmptyRootPathParser.class
META-INF/jandex.idx
com.github.marschall.memoryfilesystem.AccessCheck.class
com.github.marschall.memoryfilesystem.Root.class
com.github.marschall.memoryfilesystem.TwoPathOperation$2.class
com.github.marschall.memoryfilesystem.ClosedFileSystemChecker.class
com.github.marschall.memoryfilesystem.EnvironmentParser.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$11.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemoryFileAttributesView.class
com.github.marschall.memoryfilesystem.MemoryContents.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemoryEntryFileAttributes.class
com.github.marschall.memoryfilesystem.NamedRoot.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$MemoryDirectoryBlock.class
META-INF/maven/com.github.marschall/memoryfilesystem/pom.xml
com.github.marschall.memoryfilesystem.MemoryFile.class
com.github.marschall.memoryfilesystem.LockSet.class
com.github.marschall.memoryfilesystem.LockType.class
com.github.marschall.memoryfilesystem.PathParser$ExitHandler$2.class
com.github.marschall.memoryfilesystem.MemoryFileSystemProvider$NamedDaemonThreadFactory.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemoryPosixFileAttributes.class
com.github.marschall.memoryfilesystem.AttributeAccessors$IsOtherAccessor.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$14.class
com.github.marschall.memoryfilesystem.MemoryUserPrincipalLookupService.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$5.class
com.github.marschall.memoryfilesystem.AttributeAccessors$IsReadOnlyAccessor.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$13.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$1.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemorySymbolicLinkAttributes.class
com.github.marschall.memoryfilesystem.AttributeAccessors$OwnerAccessor.class
com.github.marschall.memoryfilesystem.MemorySymbolicLink.class
com.github.marschall.memoryfilesystem.SingletonPath.class
com.github.marschall.memoryfilesystem.ClosedDirectoryStreamChecker.class
com.github.marschall.memoryfilesystem.AutoRelease.class
com.github.marschall.memoryfilesystem.MemoryFileSystemFactoryBean.class
com.github.marschall.memoryfilesystem.CurrentUser$UserTask.class
com.github.marschall.memoryfilesystem.Directories.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemoryUserDefinedFileAttributeView.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$16$1.class
com.github.marschall.memoryfilesystem.CurrentUser.class
com.github.marschall.memoryfilesystem.ClosedWatchServiceChecker.class
com.github.marschall.memoryfilesystem.StringTransformers$IdentityTransformer.class
com.github.marschall.memoryfilesystem.MemoryFileSystemBuilder.class
com.github.marschall.memoryfilesystem.InitializingFileAttributeView.class
com.github.marschall.memoryfilesystem.StringTransformers$NFD.class
com.github.marschall.memoryfilesystem.EmptyCharacterSet.class
com.github.marschall.memoryfilesystem.CompositeList.class
com.github.marschall.memoryfilesystem.NonEmptyPath$ElementIterator.class
com.github.marschall.memoryfilesystem.MemoryWatchKey$State.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$9.class
com.github.marschall.memoryfilesystem.PathParser$1.class
com.github.marschall.memoryfilesystem.RegexAbsolutePathMatcher.class
com.github.marschall.memoryfilesystem.AttributeAccessors$FileKeyAccessor.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$7.class
com.github.marschall.memoryfilesystem.TwoPathOperation$1.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$1.class
com.github.marschall.memoryfilesystem.AutoReleaseLock.class
com.github.marschall.memoryfilesystem.MemorySymbolicLink$MemorySymbolicLAttributes.class
com.github.marschall.memoryfilesystem.AsynchronousBlockChannel$1.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$3.class
com.github.marschall.memoryfilesystem.MemoryUserPrincipalLookupService$MemoryPrincipal.class
com.github.marschall.memoryfilesystem.GlobPathMatcher$GlobPattern.class
module-info.class
META-INF/maven/com.github.marschall/memoryfilesystem/pom.properties
com.github.marschall.memoryfilesystem.MemoryFileSystem$2.class
com.github.marschall.memoryfilesystem.PathParser.class
com.github.marschall.memoryfilesystem.PathWatchEvent.class
com.github.marschall.memoryfilesystem.MemoryInode.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemoryDirectoryFileAttributes.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$6.class
com.github.marschall.memoryfilesystem.AttributeAccessors$IsHiddenAccessor.class
com.github.marschall.memoryfilesystem.StringTransformers.class
com.github.marschall.memoryfilesystem.MemoryEntry$1.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$8.class
com.github.marschall.memoryfilesystem.AttributeAccessors$AttributeAccessor.class
com.github.marschall.memoryfilesystem.AttributeAccessors$IsRegularFileAccessor.class
com.github.marschall.memoryfilesystem.PathParser$Stream.class
com.github.marschall.memoryfilesystem.AbsolutePath.class
com.github.marschall.memoryfilesystem.BlockChannel.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemorySymbolicLinkAttributesView.class
com.github.marschall.memoryfilesystem.ArrayCharacterSet.class
com.github.marschall.memoryfilesystem.NonAppendingBlockChannel.class
com.github.marschall.memoryfilesystem.AttributeAccessors$IsArchiveAccessor.class
com.github.marschall.memoryfilesystem.AsynchronousBlockChannel$8.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemoryEntryFileAttributesView.class
com.github.marschall.memoryfilesystem.AttributeAccessors$AttributeReadContext.class
com.github.marschall.memoryfilesystem.AppendingBlockChannel.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$12.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$17.class
com.github.marschall.memoryfilesystem.Directories$DirectoryCopier.class
com.github.marschall.memoryfilesystem.AsynchronousBlockChannel$5.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$4.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemoryDosFileAttributeView.class
com.github.marschall.memoryfilesystem.ClosedChecker.class
com.github.marschall.memoryfilesystem.PathParser$RegexPattern.class
com.github.marschall.memoryfilesystem.MemoryFileSystem$CopyContext.class
com.github.marschall.memoryfilesystem.MemoryFileSystem.class
com.github.marschall.memoryfilesystem.MemoryEntryAttributes$MemoryFileOwnerAttributeView.class
com.github.marschall.memoryfilesystem.MultipleNamedRootsPathParser.class
com.github.marschall.memoryfilesystem.DefaultOpenOptions$DefaultOpenOptionsIterator.class
com.github.marschall.memoryfilesystem.PathParser$ExitHandler$1.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
javax.annotation-api-1.3.2.jar
/javax.annotation/javax.annotation-api/1.3.2
查看javax.annotation-api所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
hamcrest-junit-2.0.0.0.jar
/org.hamcrest/hamcrest-junit/2.0.0.0
查看hamcrest-junit所有版本文件
spring-test-${spring.version}.jar
/org.springframework/spring-test/${spring.version}
查看spring-test所有版本文件
zipfilesystem-standalone-1.0.1.jar
/com.github.marschall/zipfilesystem-standalone/1.0.1
查看zipfilesystem-standalone所有版本文件
spring-context-${spring.version}.jar
/org.springframework/spring-context/${spring.version}
查看spring-context所有版本文件
log4j-core-${log4j.version}.jar
/org.apache.logging.log4j/log4j-core/${log4j.version}
查看log4j-core所有版本文件
log4j-slf4j-impl-${log4j.version}.jar
/org.apache.logging.log4j/log4j-slf4j-impl/${log4j.version}
查看log4j-slf4j-impl所有版本文件
log4j-jcl-${log4j.version}.jar
/org.apache.logging.log4j/log4j-jcl/${log4j.version}
查看log4j-jcl所有版本文件
jol-core-0.9.jar
/org.openjdk.jol/jol-core/0.9
查看jol-core所有版本文件
|