Skip to content

Commit 4696da1

Browse files
committed
1 parent a6e8823 commit 4696da1

File tree

7 files changed

+13
-16
lines changed

7 files changed

+13
-16
lines changed

.classpath

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,27 +43,23 @@
4343
<attribute name="optional" value="true"/>
4444
</attributes>
4545
</classpathentry>
46-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
47-
<attributes>
48-
<attribute name="maven.pomderived" value="true"/>
49-
</attributes>
50-
</classpathentry>
5146
<classpathentry kind="src" path="target/generated-sources/annotations">
5247
<attributes>
48+
<attribute name="ignore_optional_problems" value="true"/>
5349
<attribute name="optional" value="true"/>
5450
<attribute name="maven.pomderived" value="true"/>
55-
<attribute name="ignore_optional_problems" value="true"/>
5651
<attribute name="m2e-apt" value="true"/>
5752
</attributes>
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"/>
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.5.1</version>
17+
<version>2.5.2</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.5.1-jar-with-dependencies.jar** (thinks includes dependent jar files)
57-
* **JSONata4Java-2.5.1.jar** (only the JSONata4Java code)
56+
* **JSONata4Java-2.5.2-jar-with-dependencies.jar** (thinks includes dependent jar files)
57+
* **JSONata4Java-2.5.2.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: 2 additions & 2 deletions
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.5.1</version>
28+
<version>2.5.2</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>
@@ -178,7 +178,7 @@
178178
<plugin>
179179
<groupId>org.apache.maven.plugins</groupId>
180180
<artifactId>maven-source-plugin</artifactId>
181-
<version>3.3.1</version>
181+
<version>3.2.1</version>
182182
<executions>
183183
<execution>
184184
<id>attach-sources</id>

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

testfiles/dataobject_o.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ "in": 1 }

0 commit comments

Comments
 (0)