Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
wnm3 committed Oct 26, 2023
1 parent 64ec5c5 commit f826799
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 11 deletions.
10 changes: 7 additions & 3 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,19 @@
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<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="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk-11"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
2 changes: 1 addition & 1 deletion .settings/org.eclipse.core.resources.prefs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/main/resources=UTF-8
encoding//src/test/java=UTF-8
encoding//src/test/resources=UTF-8
encoding//target/generated-sources/antlr4=UTF-8
encoding/<project>=UTF-8
6 changes: 3 additions & 3 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.4</version>
<version>2.4.5</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.4-jar-with-dependencies.jar** (thinks includes dependent jar files)
* **JSONata4Java-2.4.4.jar** (only the JSONata4Java code)
* **JSONata4Java-2.4.5-jar-with-dependencies.jar** (thinks includes dependent jar files)
* **JSONata4Java-2.4.5.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 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.4</version>
<version>2.4.5</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.4-jar-with-dependencies.jar com.api.jsonata4java.Tester $1
java -cp target/JSONata4Java-2.4.5-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.4-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI
java -cp target/JSONata4Java-2.4.5-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.4-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI
java -cp target/JSONata4Java-2.4.5-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI

0 comments on commit f826799

Please sign in to comment.