karlmdavis / rps-tourney

An online multi-player Rock-Paper-Scissors game. Just because.
https://rpstourney.com/
1 stars 2 forks source link

Remove extra JSON dependency in rps-tourney-webapp #90

Closed karlmdavis closed 9 years ago

karlmdavis commented 9 years ago

While working on Issue #87, I noticed two goofy things:

  1. The GameIT class is using a transitive dependency of Selenium for JSON parsing.
    • Since I was playing around with Selenium versions, I also noticed that more recent releases swap out this library for a different one, breaking my code.
  2. The POM declares a dependency on one JSON processing library "for use in tests", but I'm not actually using that library anywhere.

Since I already have a dependency on Jackson, I might as well switch the GameIT code to that and get rid of the extra POM dependency.