File tree 3 files changed +5
-6
lines changed
src/main/java/org/fusesource/jansi
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 231
231
<version >${jansi-native-version} </version >
232
232
<classifier >javadoc</classifier >
233
233
<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 -->
235
235
</artifactItem >
236
- <artifactItem >
236
+ <artifactItem ><!-- TODO remove when upgrading jansi-native-version to 1.8 -->
237
237
<groupId >org.fusesource.jansi</groupId >
238
238
<artifactId >jansi</artifactId >
239
239
<version >${project.version} </version >
Original file line number Diff line number Diff line change 32
32
<dependency >
33
33
<groupId >org.fusesource.hawtjni</groupId >
34
34
<artifactId >hawtjni-runtime</artifactId >
35
- <version >1.15 </version >
35
+ <version >1.16-SNAPSHOT </version >
36
36
</dependency >
37
37
38
38
<dependency >
Original file line number Diff line number Diff line change @@ -47,11 +47,10 @@ public static void main(String... args) throws IOException {
47
47
System .out .println ("library.jansi.version= " + System .getProperty ("library.jansi.version" , "" ));
48
48
Library lib = new Library ("jansi" , CLibrary .class );
49
49
lib .load ();
50
- /* TODO enable when upgrading hawtjni-runtime to 1.16 with https://github.com/fusesource/hawtjni/pull/36
51
50
System .out .println ("path: " + lib .getNativeLibraryPath ());
52
51
if (lib .getNativeLibrarySourceUrl () != null ) {
53
- System.out.println("source : " + lib.getNativeLibrarySourceUrl());
54
- }*/
52
+ System .out .println ("auto-extracted from : " + lib .getNativeLibrarySourceUrl ());
53
+ }
55
54
56
55
System .out .println ();
57
56
You can’t perform that action at this time.
0 commit comments