Skip to content

Commit

Permalink
Use LIBSVM 3.23. Move to Java 11. Update all other dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
datumbox committed Oct 20, 2018
1 parent 161328a commit 280ecca
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
@@ -1,13 +1,13 @@
CHANGELOG
=========

Version 0.8.2-SNAPSHOT - Build 20180410
Version 0.8.2-SNAPSHOT - Build 20181020
---------------------------------------

- Dependencies:
- Java: The framework is now compiled with Java 9.
- Java: The framework is now compiled with Java 11.
- Build Plugins: Updated Maven Compiler, Maven Javadoc, Maven JAR and Surefire to the latest stable version.
- Libraries: Updated Commons CSV to the latest stable version.
- Libraries: Updated Commons CSV and LIBSVM to the latest stable version.

Version 0.8.1 - Build 20170831
------------------------------
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -27,7 +27,7 @@ The latest stable version of the framework is 0.8.1 (Build 20170831). To use it,
</dependency>
```

The latest snapshot version of the framework is 0.8.2-SNAPSHOT (Build 20180410). To test it, update your pom.xml as follows:
The latest snapshot version of the framework is 0.8.2-SNAPSHOT (Build 20181020). To test it, update your pom.xml as follows:
```
<repository>
<id>sonatype-snapshots</id>
Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Expand Up @@ -95,11 +95,11 @@

<properties>
<!-- Build Plugins -->
<java-version>9</java-version>
<maven-compiler-plugin-version>3.7.0</maven-compiler-plugin-version>
<maven-javadoc-plugin-version>3.0.0</maven-javadoc-plugin-version>
<java-version>11</java-version>
<maven-compiler-plugin-version>3.8.0</maven-compiler-plugin-version>
<maven-javadoc-plugin-version>3.0.1</maven-javadoc-plugin-version>
<maven-source-plugin-version>3.0.1</maven-source-plugin-version>
<maven-surefire-plugin-version>2.21.0</maven-surefire-plugin-version>
<maven-surefire-plugin-version>2.22.1</maven-surefire-plugin-version>
<maven-jar-plugin-version>3.1.0</maven-jar-plugin-version>
<gmaven-plugin-version>1.5</gmaven-plugin-version>
<license-maven-plugin-version>3.0</license-maven-plugin-version>
Expand All @@ -108,9 +108,9 @@

<!-- Code Dependencies -->
<commons-math-version>3.6.1</commons-math-version>
<commons-csv-version>1.5</commons-csv-version>
<commons-csv-version>1.6</commons-csv-version>
<slf4j-api-version>1.7.25</slf4j-api-version>
<libsvm-version>3.22</libsvm-version>
<libsvm-version>3.23</libsvm-version>
<mapdb-version>1.0.9</mapdb-version>

<!-- Test Dependencies -->
Expand Down

0 comments on commit 280ecca

Please sign in to comment.