Closed forbesk closed 8 years ago
Any chance you can submit a pull request with the change? If not, I'll try to find time to fix it in the next few days.
@forbesk, thanks for the bug report and suggested fix! This will be included in the upcoming 1.0.3.
Hi! I just started messing with Strongback (great so far). I noticed an issue today when we first tried getting some basic code up and running. The
FRCUserProgram.jar
created inant/strongback/build.xml
was missing the WPIlib, Strongback, and NetworkTables jars. The build completed fine and attempted to run on the roboRIO, but, as expected, it could not find theRobotBase
class.I got it running by changing the following
to this:
I wouldn't even call myself an acquaintance to ant, but moving the
<copy ...>...</copy>
above the<jar ...>...</jar>
and dropping<file file="${dist.jar}"/>
created a correctly packagedFRCUserProgram.jar
that ran on hardware.