I wrote a project which contains some classes I want to reuse in other projects.
I know I can copy paste and change the package
so that I can reuse them in other projects.
But is there a better way? I am thinking I should export them as a library. And when I need it, I can add it as external JAR file in Java build path. Is it possible and how can I do it?
Thx!!