File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 4
4
cpp /src /jxtp. *
5
5
lib /jxtp.dll
6
6
lib /libjxtp.so
7
+ lib /libjxtp.dylib
7
8
* .java
8
9
! module-info.java
Original file line number Diff line number Diff line change 1
1
# JXTP
2
- [ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.rationalityfrontline/jxtp.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:%22org.rationalityfrontline%22%20AND%20a:%22jxtp%22 ) ![ platform] ( https://img.shields.io/badge/platform-windows%7Clinux-green ) [ ![ Apache License 2.0] ( https://img.shields.io/github/license/rationalityfrontline/jxtp )] ( https://github.com/RationalityFrontline/jxtp/blob/master/LICENSE )
2
+ [ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.rationalityfrontline/jxtp.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:%22org.rationalityfrontline%22%20AND%20a:%22jxtp%22 ) ![ platform] ( https://img.shields.io/badge/platform-windows%7Clinux%7Cmac -green ) [ ![ Apache License 2.0] ( https://img.shields.io/github/license/rationalityfrontline/jxtp )] ( https://github.com/RationalityFrontline/jxtp/blob/master/LICENSE )
3
3
4
- 基于 [ SWIG] ( http://www.swig.org/ ) 实现的对[ 中泰证券] ( https://xtp.zts.com.cn/ ) XTP 的封装。当前封装版本为 2.2.27.4,支持 64 位的 Windows 及 Linux 操作系统,动态链接库已被包含至 jar 包内,并在类加载时自动 loadLibrary,只需添加 jar 包即可直接使用。
4
+ 基于 [ SWIG] ( http://www.swig.org/ ) 实现的对[ 中泰证券] ( https://xtp.zts.com.cn/ ) XTP 的封装。当前封装版本为 2.2.27.4,支持 64 位的 Windows | Linux | Mac 操作系统,动态链接库已被包含至 jar 包内,并在类加载时自动 loadLibrary,只需添加 jar 包即可直接使用。
5
5
6
6
## Usage
7
7
@@ -34,7 +34,7 @@ repositories {
34
34
}
35
35
36
36
dependencies {
37
- implementation(" org.rationalityfrontline:jxtp:2.2.27.4-1.0 .0" )
37
+ implementation(" org.rationalityfrontline:jxtp:2.2.27.4-1.1 .0" )
38
38
}
39
39
```
40
40
@@ -44,7 +44,7 @@ dependencies {
44
44
<dependency >
45
45
<groupId >org.rationalityfrontline</groupId >
46
46
<artifactId >jxtp</artifactId >
47
- <version >2.2.27.4-1.0 .0</version >
47
+ <version >2.2.27.4-1.1 .0</version >
48
48
</dependency >
49
49
```
50
50
** Jar:**
@@ -73,7 +73,7 @@ dependencies {
73
73
build.cmd
74
74
```
75
75
76
- ** Linux**
76
+ ** Linux | Mac **
77
77
78
78
``` bash
79
79
./build.sh
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
7
7
}
8
8
9
9
group = " org.rationalityfrontline"
10
- version = " 2.2.27.4-1.0 .0"
10
+ version = " 2.2.27.4-1.1 .0"
11
11
val NAME = project.name
12
12
val DESC = " Java wrapper for XTP"
13
13
val GITHUB_REPO = " RationalityFrontline/jxtp"
Original file line number Diff line number Diff line change 1
1
module jxtp {
2
2
requires org .scijava .nativelib ;
3
3
exports org .rationalityfrontline .jxtp ;
4
+ opens natives .windows_64 ;
5
+ opens natives .linux_64 ;
6
+ opens natives .osx_64 ;
4
7
}
You can’t perform that action at this time.
0 commit comments