Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update diergo easy csv streamable #24

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ This is the list of all parsers currently tested.
| jackson-dataformat-csv | 2.6.7/2.7.9/2.9.4 | [github.com/FasterXML/jackson-dataformat-csv](http://github.com/FasterXML/jackson-dataformat-csv) |
| OsterMiller Utils | 1.07.00 | [ostermiller.org/utils/CSV.html](http://ostermiller.org/utils/CSV.html) |
| SimpleFlatMapper CSV parser | 3.15.9 | [github.com/arnaudroger/SimpleFlatMapper](https://github.com/arnaudroger/SimpleFlatMapper) |
| Diergo Easy CSV Streamable | 3.1.0 | [github.com/aburmeis/decs](https://github.com/aburmeis/decs) |
| Diergo Easy CSV Streamable | 3.1.1 | [github.com/aburmeis/decs](https://github.com/aburmeis/decs) |
| Product Collections | 1.4.5 | [github.com/marklister/product-collections](https://github.com/marklister/product-collections) |

## Statistics (updated 28th of February, 2018)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@
<dependency>
<groupId>diergo</groupId>
<artifactId>decs</artifactId>
<version>3.1.0-RELEASE</version>
<version>3.1.1</version>
</dependency>

</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private static List<AbstractParser> getAllParsers() {
final String javaVersion = System.getProperty("java.version");
System.out.println("Detected Java version: " + javaVersion);

if(javaVersion != null && javaVersion.startsWith("1.8.")) {
if(javaVersion != null && (javaVersion.startsWith("1.8.") || !javaVersion.startsWith("1."))) {
System.out.println("Also enabling Java 8 only parsers!");
parsers.addAll(getJava8OnlyParsers());
}
Expand Down