You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							59 lines
						
					
					
						
							1.9 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							59 lines
						
					
					
						
							1.9 KiB
						
					
					
				
								<?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>32.0.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.13.1</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>
							 | 
						|
								                    <release>8</release>
							 | 
						|
								                </configuration>
							 | 
						|
								            </plugin>
							 | 
						|
								        </plugins>
							 | 
						|
								    </build>
							 | 
						|
								
							 | 
						|
								</project>
							 |