Skip to content

Commit 2e4e183

Browse files
release version 2.2.27.4-1.1.0
update readme fix resource visibility in module-info.java add lib/libjxtp.dylib to .gitignore
1 parent e9f475c commit 2e4e183

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
cpp/src/jxtp.*
55
lib/jxtp.dll
66
lib/libjxtp.so
7+
lib/libjxtp.dylib
78
*.java
89
!module-info.java

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 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)
33

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 包即可直接使用。
55

66
## Usage
77

@@ -34,7 +34,7 @@ repositories {
3434
}
3535

3636
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")
3838
}
3939
```
4040

@@ -44,7 +44,7 @@ dependencies {
4444
<dependency>
4545
<groupId>org.rationalityfrontline</groupId>
4646
<artifactId>jxtp</artifactId>
47-
<version>2.2.27.4-1.0.0</version>
47+
<version>2.2.27.4-1.1.0</version>
4848
</dependency>
4949
```
5050
**Jar:**
@@ -73,7 +73,7 @@ dependencies {
7373
build.cmd
7474
```
7575

76-
**Linux**
76+
**Linux | Mac**
7777

7878
```bash
7979
./build.sh

java/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = "org.rationalityfrontline"
10-
version = "2.2.27.4-1.0.0"
10+
version = "2.2.27.4-1.1.0"
1111
val NAME = project.name
1212
val DESC = "Java wrapper for XTP"
1313
val GITHUB_REPO = "RationalityFrontline/jxtp"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
module jxtp {
22
requires org.scijava.nativelib;
33
exports org.rationalityfrontline.jxtp;
4+
opens natives.windows_64;
5+
opens natives.linux_64;
6+
opens natives.osx_64;
47
}

0 commit comments

Comments
 (0)