File tree Expand file tree Collapse file tree 6 files changed +10
-14
lines changed Expand file tree Collapse file tree 6 files changed +10
-14
lines changed Original file line number Diff line number Diff line change 45
45
<attribute name =" m2e-apt" value =" true" />
46
46
</attributes >
47
47
</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 >
53
48
<classpathentry excluding =" **" kind =" src" output =" target/classes" path =" src/main/resources" >
54
49
<attributes >
55
50
<attribute name =" maven.pomderived" value =" true" />
58
53
</classpathentry >
59
54
<classpathentry kind =" src" output =" target/test-classes" path =" target/generated-test-sources/test-annotations" >
60
55
<attributes >
56
+ <attribute name =" ignore_optional_problems" value =" true" />
57
+ <attribute name =" test" value =" true" />
61
58
<attribute name =" optional" value =" true" />
62
59
<attribute name =" maven.pomderived" value =" true" />
63
- <attribute name =" ignore_optional_problems" value =" true" />
64
60
<attribute name =" m2e-apt" value =" true" />
65
- <attribute name =" test" value =" true" />
66
61
</attributes >
67
62
</classpathentry >
63
+ <classpathentry kind =" con" path =" org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk-11" />
68
64
<classpathentry kind =" output" path =" target/classes" />
69
65
</classpath >
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
14
14
<dependency>
15
15
<groupId>com.ibm.jsonata4java</groupId>
16
16
<artifactId>JSONata4Java</artifactId>
17
- <version>2.4.3 </version>
17
+ <version>2.4.4 </version>
18
18
</dependency>
19
19
```
20
20
@@ -53,8 +53,8 @@ Note: to build and deploy the jars to Maven Central you need to use a command li
53
53
` mvn clean install deploy -Prelease `
54
54
55
55
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)
58
58
59
59
The com.api.jsonata4java.Tester program enables you to enter an expression and run it
60
60
against 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 25
25
<modelVersion >4.0.0</modelVersion >
26
26
<groupId >com.ibm.jsonata4java</groupId >
27
27
<artifactId >JSONata4Java</artifactId >
28
- <version >2.4.3 </version >
28
+ <version >2.4.4 </version >
29
29
<name >JSONata4Java</name >
30
30
<description >Port of jsonata.js to Java to enable rules for JSON content</description >
31
31
<url >https://github.com/IBM/JSONata4Java</url >
Original file line number Diff line number Diff line change 1
1
#! /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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1
1
#! /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
You can’t perform that action at this time.
0 commit comments