Skip to content

Commit 02a7c55

Browse files
committed
proj: add basic server for quick testing
merge [email protected]:kofemann/simple-nfs.git Fixes: #127 Fixes: #128 Acked-by: Lea Morschel Target: master Signed-off-by: alex <[email protected]> Signed-off-by: KenjiTakahashi <[email protected]> Signed-off-by: Paul Millar <[email protected]> Signed-off-by: radai-rosenblatt <[email protected]> Signed-off-by: Rémi Alvergnat <[email protected]> Signed-off-by: Roland Mainz <[email protected]> Signed-off-by: svenin <[email protected]> Signed-off-by: Tigran Mkrtchyan <[email protected]>
1 parent bd0798b commit 02a7c55

File tree

8 files changed

+868
-0
lines changed

8 files changed

+868
-0
lines changed

basic-server/pom.xml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>org.dcache</groupId>
8+
<artifactId>nfs4j</artifactId>
9+
<version>0.26.0-SNAPSHOT</version>
10+
</parent>
11+
12+
<groupId>org.dcache.nfs4j</groupId>
13+
<artifactId>basic-server</artifactId>
14+
<packaging>jar</packaging>
15+
16+
17+
<build>
18+
<plugins>
19+
<plugin>
20+
<groupId>org.apache.maven.plugins</groupId>
21+
<artifactId>maven-assembly-plugin</artifactId>
22+
<version>3.1.0</version>
23+
<executions>
24+
<execution>
25+
<goals>
26+
<goal>single</goal>
27+
</goals>
28+
<phase>package</phase>
29+
<configuration>
30+
<descriptorRefs>
31+
<descriptorRef>jar-with-dependencies</descriptorRef>
32+
</descriptorRefs>
33+
<archive>
34+
<manifest>
35+
<mainClass>org.dcache.nfs4j.server.Main</mainClass>
36+
<packageName>org.dcache.nfs</packageName>
37+
<addExtensions />
38+
</manifest>
39+
<manifestEntries>
40+
<mode>development</mode>
41+
<Implementation-Build>${buildNumber}</Implementation-Build>
42+
<url>${project.url}</url>
43+
<Build-Time>${maven.build.timestamp}</Build-Time>
44+
</manifestEntries>
45+
</archive>
46+
</configuration>
47+
</execution>
48+
</executions>
49+
</plugin>
50+
</plugins>
51+
</build>
52+
53+
<dependencies>
54+
<dependency>
55+
<groupId>org.dcache</groupId>
56+
<artifactId>nfs4j-core</artifactId>
57+
<version>${project.version}</version>
58+
</dependency>
59+
<dependency>
60+
<groupId>ch.qos.logback</groupId>
61+
<artifactId>logback-classic</artifactId>
62+
</dependency>
63+
<dependency>
64+
<groupId>info.picocli</groupId>
65+
<artifactId>picocli</artifactId>
66+
</dependency>
67+
<dependency>
68+
<groupId>com.boundary</groupId>
69+
<artifactId>high-scale-lib</artifactId>
70+
</dependency>
71+
</dependencies>
72+
</project>

0 commit comments

Comments
 (0)