You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when developing a plugin in Eclipse you need to add brjs-core.jar and all of its dependencies to the classpath for src and tests. to do this you select all the jars in the libs dir and add them.
if we add a new dependency, or change a dependency that list changes so the classpath has to be updated - this might happen every time we release. can we fix this?
possible solutions:
ignore the problem, how often do we think this will realisticly be a problem?
use a fat jar
find a way to add a directory rather than individual jars to the classpath
The text was updated successfully, but these errors were encountered:
'java -cp ".:../lib/*"": via command line yes, but in Eclipse is very different. You cant seem to add a directory, only individual files in a directory.
discussion started with @leggetter and @dchambers
when developing a plugin in Eclipse you need to add brjs-core.jar and all of its dependencies to the classpath for src and tests. to do this you select all the jars in the libs dir and add them.
if we add a new dependency, or change a dependency that list changes so the classpath has to be updated - this might happen every time we release. can we fix this?
possible solutions:
The text was updated successfully, but these errors were encountered: