Skip to content

Commit 966b539

Browse files
committed
1 parent f5dbb98 commit 966b539

File tree

6 files changed

+10
-14
lines changed

6 files changed

+10
-14
lines changed

.classpath

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@
4545
<attribute name="m2e-apt" value="true"/>
4646
</attributes>
4747
</classpathentry>
48-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
49-
<attributes>
50-
<attribute name="maven.pomderived" value="true"/>
51-
</attributes>
52-
</classpathentry>
5348
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
5449
<attributes>
5550
<attribute name="maven.pomderived" value="true"/>
@@ -58,12 +53,13 @@
5853
</classpathentry>
5954
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
6055
<attributes>
56+
<attribute name="ignore_optional_problems" value="true"/>
57+
<attribute name="test" value="true"/>
6158
<attribute name="optional" value="true"/>
6259
<attribute name="maven.pomderived" value="true"/>
63-
<attribute name="ignore_optional_problems" value="true"/>
6460
<attribute name="m2e-apt" value="true"/>
65-
<attribute name="test" value="true"/>
6661
</attributes>
6762
</classpathentry>
63+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk-11"/>
6864
<classpathentry kind="output" path="target/classes"/>
6965
</classpath>

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.4.3</version>
17+
<version>2.4.4</version>
1818
</dependency>
1919
```
2020

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

5555
Once you have run the launcher, you can find the jar files in the /target directory. There are two&colon;
56-
* **JSONata4Java-2.4.3-jar-with-dependencies.jar** (thinks includes dependent jar files)
57-
* **JSONata4Java-2.4.3.jar** (only the JSONata4Java code)
56+
* **JSONata4Java-2.4.4-jar-with-dependencies.jar** (thinks includes dependent jar files)
57+
* **JSONata4Java-2.4.4.jar** (only the JSONata4Java code)
5858

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

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<modelVersion>4.0.0</modelVersion>
2626
<groupId>com.ibm.jsonata4java</groupId>
2727
<artifactId>JSONata4Java</artifactId>
28-
<version>2.4.3</version>
28+
<version>2.4.4</version>
2929
<name>JSONata4Java</name>
3030
<description>Port of jsonata.js to Java to enable rules for JSON content</description>
3131
<url>https://github.com/IBM/JSONata4Java</url>

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

0 commit comments

Comments
 (0)