Skip to content

Commit 73b3b63

Browse files
committed
1 parent 781f985 commit 73b3b63

5 files changed

Lines changed: 30 additions & 37 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The easiest way to use this library is to include it as a dependency in your Mav
1414
<dependency>
1515
<groupId>com.ibm.jsonata4java</groupId>
1616
<artifactId>JSONata4Java</artifactId>
17-
<version>2.6.1</version>
17+
<version>2.6.3</version>
1818
</dependency>
1919
```
2020

@@ -51,8 +51,8 @@ Note: to build and deploy the jars to Maven Central you need to use a command li
5151
`mvn clean install deploy -Prelease`
5252

5353
Once you have run the launcher, you can find the jar files in the /target directory. There are two&colon;
54-
* **JSONata4Java-2.6.1-jar-with-dependencies.jar** (thinks includes dependent jar files)
55-
* **JSONata4Java-2.6.1.jar** (only the JSONata4Java code)
54+
* **JSONata4Java-2.6.3-jar-with-dependencies.jar** (thinks includes dependent jar files)
55+
* **JSONata4Java-2.6.3.jar** (only the JSONata4Java code)
5656

5757
The com.api.jsonata4java.Tester program enables you to enter an expression and run it
5858
against the same JSON as is used at the https://try.jsonata.org site. You can also

pom.xml

Lines changed: 24 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,33 @@
1-
<!-- /** * (c) Copyright 2018, 2019 IBM Corporation * 1 New Orchard Road,
2-
* Armonk, New York, 10504-1722 * United States * +1 914 499 1900 * support:
3-
Nathaniel Mills wnm3@us.ibm.com * * Licensed under the Apache License, Version
4-
2.0 (the "License"); * you may not use this file except in compliance with
5-
the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0
6-
* * Unless required by applicable law or agreed to in writing, software *
7-
distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT
8-
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the
9-
License for the specific language governing permissions and * limitations
10-
under the License. * */ -->
1+
<!--
2+
/**
3+
* (c) Copyright 2018, 2019 IBM Corporation
4+
* 1 New Orchard Road,
5+
* Armonk, New York, 10504-1722
6+
* United States
7+
* +1 914 499 1900
8+
* support: Nathaniel Mills wnm3@us.ibm.com
9+
*
10+
* Licensed under the Apache License, Version 2.0 (the "License");
11+
* you may not use this file except in compliance with the License.
12+
* You may obtain a copy of the License at
13+
*
14+
* http://www.apache.org/licenses/LICENSE-2.0
15+
*
16+
* Unless required by applicable law or agreed to in writing, software
17+
* distributed under the License is distributed on an "AS IS" BASIS,
18+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19+
* See the License for the specific language governing permissions and
20+
* limitations under the License.
21+
*
22+
*/ -->
23+
1124
<project xmlns="http://maven.apache.org/POM/4.0.0"
1225
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1326
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1427
<modelVersion>4.0.0</modelVersion>
1528
<groupId>com.ibm.jsonata4java</groupId>
1629
<artifactId>JSONata4Java</artifactId>
17-
<version>2.6.2</version>
30+
<version>2.6.3</version>
1831
<name>JSONata4Java</name>
1932
<description>Port of jsonata.js to Java to enable rules for JSON content</description>
2033
<url>https://github.com/IBM/JSONata4Java</url>
@@ -121,13 +134,6 @@
121134
<artifactId>gson</artifactId>
122135
<version>2.14.0</version>
123136
</dependency>
124-
<!-- issue 351
125-
<dependency>
126-
<groupId>biz.aQute.bnd</groupId>
127-
<artifactId>bnd-maven-plugin</artifactId>
128-
<version>7.1.0</version>
129-
</dependency>
130-
-->
131137
</dependencies>
132138
<build>
133139
<sourceDirectory>src/main/java</sourceDirectory>
@@ -156,19 +162,6 @@
156162
<publishingServerId>central</publishingServerId>
157163
</configuration>
158164
</plugin>
159-
<!-- replaced by direct maven central repo above
160-
<plugin>
161-
<groupId>org.sonatype.plugins</groupId>
162-
<artifactId>nexus-staging-maven-plugin</artifactId>
163-
<version>1.7.0</version>
164-
<extensions>true</extensions>
165-
<configuration>
166-
<serverId>ossrh</serverId>
167-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
168-
<autoReleaseAfterClose>false</autoReleaseAfterClose>
169-
</configuration>
170-
</plugin>
171-
-->
172165
<plugin>
173166
<groupId>org.apache.maven.plugins</groupId>
174167
<artifactId>maven-gpg-plugin</artifactId>

tester.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#! /bin/bash
2-
java -cp target/JSONata4Java-2.6.2-jar-with-dependencies.jar com.api.jsonata4java.Tester $1
2+
java -cp target/JSONata4Java-2.6.3-jar-with-dependencies.jar com.api.jsonata4java.Tester $1

testerui.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
java -cp target/JSONata4Java-2.6.2-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI
1+
java -cp target/JSONata4Java-2.6.3-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI

testerui.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#! /bin/bash
2-
java -cp target/JSONata4Java-2.6.2-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI
2+
java -cp target/JSONata4Java-2.6.3-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI

0 commit comments

Comments
 (0)