user6442331
user6442331

Reputation:

Class files on classpath not found or not accessible

After working on a project for around a week it suddenly stopped exporting. Every time I try to export my project I just get an error. Nothing is wrong with my classes what so ever.

     JAR creation failed. See details for additional information.
     Class files on classpath not found or not accessible for: 
     'TroubleInTT/src/me/infernoartz/timv/Main.java'
     Class files on classpath not found or not accessible for: 
     'TroubleInTT/src/me/infernoartz/timv/GameState.java'
     Class files on classpath not found or not accessible for: 
     'TroubleInTT/src/me/infernoartz/timv/commands/RoleCommand.java'
     Class files on classpath not found or not accessible for: 
     'TroubleInTT/src/me/infernoartz/timv/commands/TimvCommand.java'
     Class files on classpath not found or not accessible for: 
     'TroubleInTT/src/me/infernoartz/timv/events/PlayerInteractEvent.java'

     And so it continues down..

Upvotes: 0

Views: 8435

Answers (2)

user6442331
user6442331

Reputation:

Yup! as @xander posted a friend of mine had imported a .jar file into the project. I just had to remove it from .classpath, thanks!

Upvotes: 1

vivekn
vivekn

Reputation: 33

Did you forget to give '-classpath=""'??

Upvotes: -1

Related Questions