Skip to content

Commit 6d8af05

Browse files
committed
0.15.2 - Upgrade to Java 9 and JUnit 5, fixed minor compile issue with Java 9.
1 parent 6136531 commit 6d8af05

File tree

7 files changed

+22
-6
lines changed

7 files changed

+22
-6
lines changed

.classpath

+7-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,13 @@
33
<classpathentry kind="src" path="src"/>
44
<classpathentry kind="src" path="plugins"/>
55
<classpathentry kind="src" path="test"/>
6-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
7-
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
6+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre-9.0.1">
7+
<attributes>
8+
<attribute name="module" value="true"/>
9+
<attribute name="limit-modules" value="java.se,java.xml.ws.annotation"/>
10+
</attributes>
11+
</classpathentry>
12+
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
813
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/ANTLR"/>
914
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/Lombok"/>
1015
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/TemplateUtil"/>

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,17 @@ This project does its best to adhere to [Semantic Versioning](http://semver.org/
44

55

66
--------
7-
### [0.15.1](N/A) - 2017-11-11
7+
### [0.15.2](N/A) - 2017-12-22
8+
#### Changed
9+
* Upgrade to Java 9
10+
* Upgrade to JUnit 5
11+
12+
#### Fixed
13+
* Fix a minor compile issue found by Java 9 upgrade
14+
15+
16+
--------
17+
### [0.15.1](https://github.com/TeamworkGuy2/JParseCode/commit/6136531b49a776590a9d8b23ab2cd27c40d4be10) - 2017-11-11
818
#### Changed
919
* Update dependency jtext-parser@0.13.0
1020
* Add some test cases

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
JParseCode
22
==============
3-
version: 0.15.1
3+
version: 0.15.2
44

55
In progress C#/Java/TypeScript parser tools built atop [JTextParser] (https://github.com/TeamworkGuy2/JTextParser), [Jackson] (https://github.com/FasterXML/jackson-core/) (core, databind, annotations) and half a dozen other utility libraries.
66

bin/jparse_code-with-tests.jar

-36 Bytes
Binary file not shown.

bin/jparse_code.jar

-10 Bytes
Binary file not shown.

package-lib.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version" : "0.15.1",
2+
"version" : "0.15.2",
33
"name" : "jparse-code",
44
"description" : "An in-progress suite of parsing/transpilation tools for C#, Java, and TypeScript code. Generates simple JSON ASTs.",
55
"homepage" : "https://github.com/TeamworkGuy2/JParseCode",

src/twg2/parser/miscellaneous/TextBlockElement.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
import javax.swing.text.AbstractDocument;
66
import javax.swing.text.Element;
7+
import javax.swing.tree.TreeNode;
78

89
import twg2.parser.textFragment.TextFragmentRef;
910

@@ -68,7 +69,7 @@ public boolean getAllowsChildren() {
6869

6970

7071
@Override
71-
public Enumeration<?> children() {
72+
public Enumeration<TreeNode> children() {
7273
return null;
7374
}
7475

0 commit comments

Comments
 (0)