Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
wnm3 committed Feb 1, 2024
1 parent e0014ef commit 7985f7c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 11 deletions.
5 changes: 2 additions & 3 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,16 @@
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
<attributes>
<attribute name="module" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
<attributes>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="test" value="true"/>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The easiest way to use this library is to include it as a dependency in your Mav
<dependency>
<groupId>com.ibm.jsonata4java</groupId>
<artifactId>JSONata4Java</artifactId>
<version>2.4.7</version>
<version>2.4.8</version>
</dependency>
```

Expand Down Expand Up @@ -53,8 +53,8 @@ Note: to build and deploy the jars to Maven Central you need to use a command li
`mvn clean install deploy -Prelease`

Once you have run the launcher, you can find the jar files in the /target directory. There are two&colon;
* **JSONata4Java-2.4.7-jar-with-dependencies.jar** (thinks includes dependent jar files)
* **JSONata4Java-2.4.7.jar** (only the JSONata4Java code)
* **JSONata4Java-2.4.8-jar-with-dependencies.jar** (thinks includes dependent jar files)
* **JSONata4Java-2.4.8.jar** (only the JSONata4Java code)

The com.api.jsonata4java.Tester program enables you to enter an expression and run it
against the same JSON as is used at the https://try.jsonata.org site. You can also
Expand All @@ -72,7 +72,7 @@ methods are not thread-safe.

Issue 260 to add support for timeoutMS and maxDepth to the evaluate methods in Expression.

### New Feature for Version 2.4.7 ###
### New Feature for Version 2.4.8 ###
A new function for $fromMillisZoned has been added to allow passing a Timezone string as the 3rd parameter.

### New Feature for Version 2.4 ###
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.ibm.jsonata4java</groupId>
<artifactId>JSONata4Java</artifactId>
<version>2.4.7</version>
<version>2.4.8</version>
<name>JSONata4Java</name>
<description>Port of jsonata.js to Java to enable rules for JSON content</description>
<url>https://github.com/IBM/JSONata4Java</url>
Expand Down
2 changes: 1 addition & 1 deletion tester.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#! /bin/bash
java -cp target/JSONata4Java-2.4.7-jar-with-dependencies.jar com.api.jsonata4java.Tester $1
java -cp target/JSONata4Java-2.4.8-jar-with-dependencies.jar com.api.jsonata4java.Tester $1
2 changes: 1 addition & 1 deletion testerui.cmd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
java -cp target/JSONata4Java-2.4.7-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI
java -cp target/JSONata4Java-2.4.8-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI
2 changes: 1 addition & 1 deletion testerui.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#! /bin/bash
java -cp target/JSONata4Java-2.4.7-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI
java -cp target/JSONata4Java-2.4.8-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI

0 comments on commit 7985f7c

Please sign in to comment.