Skip to content

Commit 6251669

Browse files
committed
added info on native library location and auto-extract
1 parent 007b935 commit 6251669

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

jansi-website/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,9 @@
231231
<version>${jansi-native-version}</version>
232232
<classifier>javadoc</classifier>
233233
<outputDirectory>${basedir}/target/sitegen/documentation/native-api</outputDirectory>
234-
<excludes>*.css</excludes>
234+
<excludes>*.css</excludes><!-- TODO remove when upgrading jansi-native-version to 1.8, which has fixed javadoc -->
235235
</artifactItem>
236-
<artifactItem>
236+
<artifactItem><!-- TODO remove when upgrading jansi-native-version to 1.8 -->
237237
<groupId>org.fusesource.jansi</groupId>
238238
<artifactId>jansi</artifactId>
239239
<version>${project.version}</version>

jansi/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>org.fusesource.hawtjni</groupId>
3434
<artifactId>hawtjni-runtime</artifactId>
35-
<version>1.15</version>
35+
<version>1.16-SNAPSHOT</version>
3636
</dependency>
3737

3838
<dependency>

jansi/src/main/java/org/fusesource/jansi/AnsiMain.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,10 @@ public static void main(String... args) throws IOException {
4747
System.out.println("library.jansi.version= " + System.getProperty("library.jansi.version", ""));
4848
Library lib = new Library("jansi", CLibrary.class);
4949
lib.load();
50-
/* TODO enable when upgrading hawtjni-runtime to 1.16 with https://github.com/fusesource/hawtjni/pull/36
5150
System.out.println("path: " + lib.getNativeLibraryPath());
5251
if (lib.getNativeLibrarySourceUrl() != null) {
53-
System.out.println("source: " + lib.getNativeLibrarySourceUrl());
54-
}*/
52+
System.out.println("auto-extracted from: " + lib.getNativeLibrarySourceUrl());
53+
}
5554

5655
System.out.println();
5756

0 commit comments

Comments
 (0)