Skip to content

Commit 16789f4

Browse files
committed
1 parent e09ee33 commit 16789f4

File tree

6 files changed

+27
-8
lines changed

6 files changed

+27
-8
lines changed

.classpath

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,22 @@
4848
<attribute name="maven.pomderived" value="true"/>
4949
</attributes>
5050
</classpathentry>
51+
<classpathentry kind="src" path="target/generated-sources/annotations">
52+
<attributes>
53+
<attribute name="optional" value="true"/>
54+
<attribute name="maven.pomderived" value="true"/>
55+
<attribute name="ignore_optional_problems" value="true"/>
56+
<attribute name="m2e-apt" value="true"/>
57+
</attributes>
58+
</classpathentry>
59+
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
60+
<attributes>
61+
<attribute name="optional" value="true"/>
62+
<attribute name="maven.pomderived" value="true"/>
63+
<attribute name="ignore_optional_problems" value="true"/>
64+
<attribute name="m2e-apt" value="true"/>
65+
<attribute name="test" value="true"/>
66+
</attributes>
67+
</classpathentry>
5168
<classpathentry kind="output" path="target/classes"/>
5269
</classpath>

README.md

Lines changed: 5 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.5.5</version>
17+
<version>2.5.6</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.5.5-jar-with-dependencies.jar** (thinks includes dependent jar files)
55-
* **JSONata4Java-2.5.5.jar** (only the JSONata4Java code)
54+
* **JSONata4Java-2.5.6-jar-with-dependencies.jar** (thinks includes dependent jar files)
55+
* **JSONata4Java-2.5.6.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
@@ -64,6 +64,8 @@ against the same JSON as is used at the https://try.jsonata.org site.
6464

6565

6666
### Fixes ###
67+
Issue 366 fixed a problem where the less than and greater than fields for sorting were interpreted the opposite from jsonata
68+
6769
Issue 313 fixed a problem with duplicates in the spread function
6870

6971
Issue 167 to add Synced suffixed evaluation methods to allow people running

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<modelVersion>4.0.0</modelVersion>
1515
<groupId>com.ibm.jsonata4java</groupId>
1616
<artifactId>JSONata4Java</artifactId>
17-
<version>2.5.5</version>
17+
<version>2.5.6</version>
1818
<name>JSONata4Java</name>
1919
<description>Port of jsonata.js to Java to enable rules for JSON content</description>
2020
<url>https://github.com/IBM/JSONata4Java</url>
@@ -112,7 +112,7 @@
112112
<dependency>
113113
<groupId>org.apache.commons</groupId>
114114
<artifactId>commons-text</artifactId>
115-
<version>1.13.1</version>
115+
<version>1.14.0</version>
116116
</dependency>
117117
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
118118
<dependency>

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.5.5-jar-with-dependencies.jar com.api.jsonata4java.Tester $1
2+
java -cp target/JSONata4Java-2.5.6-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.5.5-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI
1+
java -cp target/JSONata4Java-2.5.6-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.5.5-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI
2+
java -cp target/JSONata4Java-2.5.6-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI

0 commit comments

Comments
 (0)