|
28 | 28 | <groupId>uk.co.bithatch</groupId> |
29 | 29 | <artifactId>tnfs-java</artifactId> |
30 | 30 | <version>0.9.0-SNAPSHOT</version> |
31 | | - <relativePath>../</relativePath> |
| 31 | + <relativePath>../</relativePath> |
32 | 32 | </parent> |
33 | 33 | <artifactId>tnfs-java-daemon</artifactId> |
34 | 34 | <name>Java TNFS - Daemon</name> |
|
43 | 43 | <artifactId>tnfs-java-server-extensions</artifactId> |
44 | 44 | <version>${project.version}</version> |
45 | 45 | </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>${project.groupId}</groupId> |
| 48 | + <artifactId>tnfs-java-daemonlib</artifactId> |
| 49 | + <version>${project.version}</version> |
| 50 | + </dependency> |
46 | 51 | <dependency> |
47 | 52 | <groupId>org.slf4j</groupId> |
48 | 53 | <artifactId>slf4j-simple</artifactId> |
|
51 | 56 | <groupId>info.picocli</groupId> |
52 | 57 | <artifactId>picocli</artifactId> |
53 | 58 | </dependency> |
54 | | - <dependency> |
55 | | - <groupId>org.jmdns</groupId> |
56 | | - <artifactId>jmdns</artifactId> |
57 | | - </dependency> |
58 | 59 | <dependency> |
59 | 60 | <groupId>com.sshtools</groupId> |
60 | 61 | <artifactId>porter</artifactId> |
|
70 | 71 | <groupId>org.apache.maven.plugins</groupId> |
71 | 72 | <artifactId>maven-compiler-plugin</artifactId> |
72 | 73 | <configuration> |
| 74 | + <release>17</release> |
| 75 | + <testRelease>17</testRelease> |
73 | 76 | <annotationProcessorPaths> |
74 | 77 | <path> |
75 | 78 | <groupId>info.picocli</groupId> |
|
86 | 89 | <inherited>false</inherited> |
87 | 90 | <executions> |
88 | 91 | <execution> |
89 | | - <id>make-assembly-tnfsd</id> |
| 92 | + <id>make-assembly-tnfsjd</id> |
90 | 93 | <phase>package</phase> |
91 | 94 | <goals> |
92 | 95 | <goal>single</goal> |
93 | 96 | </goals> |
94 | 97 | <configuration> |
95 | | - <finalName>tnfsd</finalName> |
| 98 | + <finalName>tnfsjd</finalName> |
96 | 99 | <archive> |
97 | 100 | <manifest> |
98 | 101 | <mainClass>uk.co.bithatch.tnfs.daemon.TNFSDaemon</mainClass> |
|
168 | 171 | <artifactId>native-maven-plugin</artifactId> |
169 | 172 | <executions> |
170 | 173 | <execution> |
171 | | - <id>tnfsd-native-image</id> |
| 174 | + <id>tnfsjd-native-image</id> |
172 | 175 | <goals> |
173 | 176 | <goal>build</goal> |
174 | 177 | </goals> |
175 | 178 | <phase>package</phase> |
176 | 179 | <configuration> |
177 | 180 | <mainClass>uk.co.bithatch.tnfs.daemon.TNFSDaemon</mainClass> |
178 | 181 | <skip>false</skip> |
179 | | - <imageName>tnfsd</imageName> |
| 182 | + <imageName>tnfsjd</imageName> |
180 | 183 | <buildArgs> |
181 | 184 | <buildArg>--install-exit-handlers</buildArg> |
182 | 185 | <buildArg>-march=compatibility</buildArg> |
|
207 | 210 |
|
208 | 211 | <!-- tnfscp --> |
209 | 212 | <profile> |
210 | | - <id>tnfsd</id> |
| 213 | + <id>tnfsjd</id> |
211 | 214 | <activation> |
212 | 215 | <property> |
213 | | - <name>tnfsd</name> |
| 216 | + <name>tnfsjd</name> |
214 | 217 | </property> |
215 | 218 | </activation> |
216 | 219 | <build> |
|
0 commit comments