aboutsummaryrefslogtreecommitdiff
path: root/other/java/random_access/pom.xml
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-08-15 14:37:07 -0700
committerChris Lu <chris.lu@gmail.com>2020-08-15 14:37:07 -0700
commit24bfd267193175afeebb2a19e0f77c75c1f28006 (patch)
treeb5637d1a9b4db3398a7744bb7e984c86cb56d27d /other/java/random_access/pom.xml
parent0d60e678166b59d59d32af31bfefdafe92581823 (diff)
downloadseaweedfs-origin/random_access_file.tar.xz
seaweedfs-origin/random_access_file.zip
make it easy to test randome access fileorigin/random_access_file
Diffstat (limited to 'other/java/random_access/pom.xml')
-rw-r--r--other/java/random_access/pom.xml58
1 files changed, 58 insertions, 0 deletions
diff --git a/other/java/random_access/pom.xml b/other/java/random_access/pom.xml
new file mode 100644
index 000000000..6c5c90eea
--- /dev/null
+++ b/other/java/random_access/pom.xml
@@ -0,0 +1,58 @@
+<?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>com.seaweedfs.test</groupId>
+ <artifactId>random_access</artifactId>
+ <packaging>jar</packaging>
+ <version>1.0-SNAPSHOT</version>
+
+ <properties>
+ <guava.version>28.0-jre</guava.version>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ <version>${guava.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>1.7.25</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.12</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.esotericsoftware.kryo</groupId>
+ <artifactId>kryo</artifactId>
+ <version>2.24.0</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <extensions>
+ <extension>
+ <groupId>kr.motd.maven</groupId>
+ <artifactId>os-maven-plugin</artifactId>
+ <version>1.6.2</version>
+ </extension>
+ </extensions>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>8</source>
+ <target>8</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>