-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
proj: add basic server for quick testing
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
Showing
8 changed files
with
868 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.