Skip to content

Commit

Permalink
proj: add basic server for quick testing
Browse files Browse the repository at this point in the history
merge git@github.com:kofemann/simple-nfs.git

Fixes: #127
Fixes: #128
Acked-by: Lea Morschel
Target: master

Signed-off-by: alex <alex.chistyakov@gmail.com>
Signed-off-by: KenjiTakahashi <wozniakk@gmail.com>
Signed-off-by: Paul Millar <paul.millar@desy.de>
Signed-off-by: radai-rosenblatt <radai.rosenblatt@gmail.com>
Signed-off-by: Rémi Alvergnat <toilal.dev@gmail.com>
Signed-off-by: Roland Mainz <roland.mainz@nrubsig.org>
Signed-off-by: svenin <odedsonin@gmail.com>
Signed-off-by: Tigran Mkrtchyan <tigran.mkrtchyan@desy.de>
  • Loading branch information
kofemann committed Jun 11, 2024
1 parent bd0798b commit 02a7c55
Show file tree
Hide file tree
Showing 8 changed files with 868 additions and 0 deletions.
72 changes: 72 additions & 0 deletions basic-server/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<?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>
<parent>
<groupId>org.dcache</groupId>
<artifactId>nfs4j</artifactId>
<version>0.26.0-SNAPSHOT</version>
</parent>

<groupId>org.dcache.nfs4j</groupId>
<artifactId>basic-server</artifactId>
<packaging>jar</packaging>


<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<goals>
<goal>single</goal>
</goals>
<phase>package</phase>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>org.dcache.nfs4j.server.Main</mainClass>
<packageName>org.dcache.nfs</packageName>
<addExtensions />
</manifest>
<manifestEntries>
<mode>development</mode>
<Implementation-Build>${buildNumber}</Implementation-Build>
<url>${project.url}</url>
<Build-Time>${maven.build.timestamp}</Build-Time>
</manifestEntries>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.dcache</groupId>
<artifactId>nfs4j-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
</dependency>
<dependency>
<groupId>com.boundary</groupId>
<artifactId>high-scale-lib</artifactId>
</dependency>
</dependencies>
</project>
Loading

0 comments on commit 02a7c55

Please sign in to comment.