Skip to content

Commit 92b1a58

Browse files
dkocherAliveDevil
authored andcommitted
Add native dependencies.
1 parent 06d014c commit 92b1a58

File tree

5 files changed

+51
-2
lines changed

5 files changed

+51
-2
lines changed

cli/dll/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,5 +130,21 @@
130130
</exclusion>
131131
</exclusions>
132132
</dependency>
133+
<dependency>
134+
<groupId>org.fusesource.jansi</groupId>
135+
<artifactId>jansi</artifactId>
136+
<version>${jansi.version}</version>
137+
<classifier>x86_64</classifier>
138+
<type>dll</type>
139+
<scope>runtime</scope>
140+
</dependency>
141+
<dependency>
142+
<groupId>org.fusesource.jansi</groupId>
143+
<artifactId>jansi</artifactId>
144+
<version>${jansi.version}</version>
145+
<classifier>arm64</classifier>
146+
<type>dll</type>
147+
<scope>runtime</scope>
148+
</dependency>
133149
</dependencies>
134150
</project>

cli/linux/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,21 @@
127127
<artifactId>cli</artifactId>
128128
<version>${project.version}</version>
129129
</dependency>
130+
<dependency>
131+
<groupId>org.fusesource.jansi</groupId>
132+
<artifactId>jansi</artifactId>
133+
<version>${jansi.version}</version>
134+
<classifier>x86_64</classifier>
135+
<type>so</type>
136+
<scope>runtime</scope>
137+
</dependency>
138+
<dependency>
139+
<groupId>org.fusesource.jansi</groupId>
140+
<artifactId>jansi</artifactId>
141+
<version>${jansi.version}</version>
142+
<classifier>arm64</classifier>
143+
<type>so</type>
144+
<scope>runtime</scope>
145+
</dependency>
130146
</dependencies>
131147
</project>

cli/osx/pom.xml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
</goals>
8282
<configuration>
8383
<outputDirectory>${project.build.directory}/duck.bundle/Contents/Frameworks</outputDirectory>
84-
<includeTypes>dylib</includeTypes>
84+
<includeTypes>dylib,jnilib</includeTypes>
8585
<includeScope>runtime</includeScope>
8686
<stripClassifier>true</stripClassifier>
8787
<stripVersion>true</stripVersion>
@@ -226,5 +226,21 @@
226226
<scope>test</scope>
227227
<version>${project.version}</version>
228228
</dependency>
229+
<dependency>
230+
<groupId>org.fusesource.jansi</groupId>
231+
<artifactId>jansi</artifactId>
232+
<version>${jansi.version}</version>
233+
<classifier>x86_64</classifier>
234+
<type>jnilib</type>
235+
<scope>runtime</scope>
236+
</dependency>
237+
<dependency>
238+
<groupId>org.fusesource.jansi</groupId>
239+
<artifactId>jansi</artifactId>
240+
<version>${jansi.version}</version>
241+
<classifier>arm64</classifier>
242+
<type>jnilib</type>
243+
<scope>runtime</scope>
244+
</dependency>
229245
</dependencies>
230246
</project>

cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
<dependency>
8181
<groupId>org.fusesource.jansi</groupId>
8282
<artifactId>jansi</artifactId>
83-
<version>2.4.2</version>
83+
<version>${jansi.version}</version>
8484
</dependency>
8585
</dependencies>
8686
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
<jwt.version>4.5.0</jwt.version>
9494
<java-native-dll>8u312b07</java-native-dll>
9595
<rococoa-version>0.10.0</rococoa-version>
96+
<jansi.version>2.4.2</jansi.version>
9697
<surefire.group.excluded>ch.cyberduck.test.IntegrationTest</surefire.group.excluded>
9798
</properties>
9899

0 commit comments

Comments
 (0)