diff options
author | Joe Ross <git@rossesmail.com> | 2016-01-10 22:22:20 -0800 |
---|---|---|
committer | Joe Ross <git@rossesmail.com> | 2016-01-10 22:22:20 -0800 |
commit | 5c3f5b388cb33b92a37d149fe6f8f01367df0089 (patch) | |
tree | a1deb72fa39aa37bef39aff8bacbf82a37089a48 | |
parent | 1f95428675411449cfbc4d7c55b9cbabb7deb15e (diff) |
Fix lineplot and dial not displaying. jfreechart was throwing exception.
commit b8554780c3c changed the jfreechart and jcommon dependencies when
smartdashboard was gradlized. Restored to jfreechart 1.0.13 and jcommon
1.0.16, as they were before.
Reported by jreneew2 on chiefdelphi.
http://www.chiefdelphi.com/forums/showpost.php?p=1520282&postcount=5
Change-Id: I92cf2ed30cb499710a43545d3809bd25a59aee82
-rw-r--r-- | smartdashboard/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smartdashboard/build.gradle b/smartdashboard/build.gradle index b1fcaf6..d634443 100644 --- a/smartdashboard/build.gradle +++ b/smartdashboard/build.gradle @@ -54,6 +54,6 @@ repositories { dependencies { compile "edu.wpi.first.wpilib.networktables.java:NetworkTables:3.0.0-SNAPSHOT:desktop" compile 'junit:junit:4.12' - compile 'jcommon:jcommon:0.9.5' - compile 'jfreechart:jfreechart:1.0.0' + compile 'jfree:jcommon:1.0.16' + compile 'jfree:jfreechart:1.0.13' } |