Skip to content

Commit f91204e

Browse files
Merge pull request #10 from griddb/5.6-rc
Update for 5.6
2 parents 7daa614 + e306674 commit f91204e

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ GridDB WebAPI is developed using GridDB Java Client and [Spring Boot](https://sp
88

99
Building of the library and execution of the sample programs have been checked in the following environment.
1010
- OS: CentOS 7.9(x64)
11-
- [GridDB Server](https://github.com/griddb/griddb): 5.5
11+
- [GridDB Server](https://github.com/griddb/griddb): 5.6
1212

1313
## QuickStart
1414

common/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ sourceSets {
1515
def gridstoreVersion = '5.5.0'
1616

1717
dependencies {
18-
compile group: 'commons-io', name: 'commons-io', version: '2.4'
18+
compile group: 'commons-io', name: 'commons-io', version: '2.15.1'
1919

20-
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.2.3'
20+
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.16.1'
2121

22-
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.2.3'
22+
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.16.1'
2323

24-
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.2.3'
24+
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.16.1'
2525

2626
compile group: 'javax.json', name: 'javax.json-api', version: '1.0'
2727

2828
compile group: 'com.sun.jersey', name: 'jersey-client', version: '1.17.1'
2929

30-
compile group: 'com.sun.jersey', name: 'jersey-core', version: '1.17.1'
30+
//compile group: 'com.sun.jersey', name: 'jersey-core', version: '1.17.1'
3131

3232
compile files('../3rd_party/orion-ssh2/orion-ssh2-214.jar')
3333

common/src/com/toshiba/mwcloud/gs/tools/common/GSCluster.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ public GSCluster(String clusterName, String multicastAddr, int port, List<T> nod
5757
this.nodes = new ArrayList<T>(nodes);
5858
}
5959

60+
@SafeVarargs
6061
public GSCluster(String clusterName, String multicastAddr, int port, T... nodes) {
6162
this(clusterName, multicastAddr, port, Arrays.asList(nodes));
6263
}
@@ -77,6 +78,7 @@ public GSCluster(String clusterName, String multicastAddr, int port,
7778
this.nodes = new ArrayList<T>(nodes);
7879
}
7980

81+
@SafeVarargs
8082
public GSCluster(String clusterName, String multicastAddr, int port,
8183
String jdbcAddr, int jdbcPort, T... nodes){
8284
this(clusterName, multicastAddr, port, jdbcAddr, jdbcPort, Arrays.asList(nodes));

webapi-ce/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '2.1.0.RELEASE'
3+
springBootVersion = '2.7.18'
44
}
55
repositories {
66
mavenCentral()
@@ -16,7 +16,7 @@ apply plugin: 'org.springframework.boot'
1616
apply plugin: 'io.spring.dependency-management'
1717

1818
group = 'com.toshiba.mwcloud.gs.tools'
19-
version = '5.5.0'
19+
version = '5.6.0'
2020
sourceCompatibility = 1.8
2121

2222
def gridstoreVersion = '5.5.0'
@@ -45,5 +45,5 @@ bootJar {
4545
}
4646
archivesBaseName = 'griddb-webapi-ce'
4747

48-
exclude("slf4j-jdk14-1.7.25.jar", "jackson-core-2.2.3.jar", "jackson-databind-2.2.3.jar", "jackson-annotations-2.2.3.jar")
48+
exclude("slf4j-jdk14-1.7.36.jar", "jackson-core-2.16.1.jar", "jackson-databind-2.16.1.jar", "jackson-annotations-2.16.1.jar")
4949
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.4-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)