aboutsummaryrefslogtreecommitdiff
path: root/other/java/random_access/pom.xml
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-08-16 09:03:18 -0700
committerChris Lu <chris.lu@gmail.com>2020-08-16 09:03:18 -0700
commit20e0bae5d1d36eb52e47a5bfa045d4b91be4e4a6 (patch)
tree363ac3f05a6d071737c6f0b3b4df1f5e55d1bff9 /other/java/random_access/pom.xml
parentcb2adbf5a645e43d46fa665f6132a0c90b1105a4 (diff)
downloadseaweedfs-20e0bae5d1d36eb52e47a5bfa045d4b91be4e4a6.tar.xz
seaweedfs-20e0bae5d1d36eb52e47a5bfa045d4b91be4e4a6.zip
add for testing
Diffstat (limited to 'other/java/random_access/pom.xml')
-rw-r--r--other/java/random_access/pom.xml58
1 files changed, 0 insertions, 58 deletions
diff --git a/other/java/random_access/pom.xml b/other/java/random_access/pom.xml
deleted file mode 100644
index 6c5c90eea..000000000
--- a/other/java/random_access/pom.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-<?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>