File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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.3 </version>
17+ <version>2.6.4 </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
5353Once you have run the launcher, you can find the jar files in the /target directory. There are two&colon ;
54- * ** JSONata4Java-2.6.3 -jar-with-dependencies.jar** (thinks includes dependent jar files)
55- * ** JSONata4Java-2.6.3 .jar** (only the JSONata4Java code)
54+ * ** JSONata4Java-2.6.4 -jar-with-dependencies.jar** (thinks includes dependent jar files)
55+ * ** JSONata4Java-2.6.4 .jar** (only the JSONata4Java code)
5656
5757The com.api.jsonata4java.Tester program enables you to enter an expression and run it
5858against the same JSON as is used at the https://try.jsonata.org site. You can also
Original file line number Diff line number Diff line change 2727 <modelVersion >4.0.0</modelVersion >
2828 <groupId >com.ibm.jsonata4java</groupId >
2929 <artifactId >JSONata4Java</artifactId >
30- <version >2.6.3 </version >
30+ <version >2.6.4 </version >
3131 <name >JSONata4Java</name >
3232 <description >Port of jsonata.js to Java to enable rules for JSON content</description >
3333 <url >https://github.com/IBM/JSONata4Java</url >
114114 <artifactId >antlr4-runtime</artifactId >
115115 <version >${antlr4.version} </version >
116116 </dependency >
117+ <!-- Source: https://mvnrepository.com/artifact/tools.jackson.core/jackson-databind -->
118+ <dependency >
119+ <groupId >tools.jackson.core</groupId >
120+ <artifactId >jackson-databind</artifactId >
121+ <version >3.2.0</version >
122+ <scope >compile</scope >
123+ </dependency >
117124 <dependency >
118125 <groupId >com.fasterxml.jackson.core</groupId >
119126 <artifactId >jackson-databind</artifactId >
Original file line number Diff line number Diff line change 11#! /bin/bash
2- java -cp target/JSONata4Java-2.6.3 -jar-with-dependencies.jar com.api.jsonata4java.Tester $1
2+ java -cp target/JSONata4Java-2.6.4 -jar-with-dependencies.jar com.api.jsonata4java.Tester $1
Original file line number Diff line number Diff line change 1- java -cp target/JSONata4Java-2.6.3 -jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI
1+ java -cp target/JSONata4Java-2.6.4 -jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI
Original file line number Diff line number Diff line change 11#! /bin/bash
2- java -cp target/JSONata4Java-2.6.3 -jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI
2+ java -cp target/JSONata4Java-2.6.4 -jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI
You can’t perform that action at this time.
0 commit comments