I\'m working on a new codebase and migrating the system to a new framework.
There are a number of packages that I would like to deprecate, just to make it very clear
I had to do this recently and used the package-info.java file to deprecate the package.
http://www.intertech.com/Blog/whats-package-info-java-for/
Add a package-info.java file to your package with only the package declaration:
/**
* @deprecated As of release 2.0, replaced by {@link com.acme.new.package}
*/
@Deprecated
package com.acme.old.package;
In Eclipse, all places where the user imports a class from this package will be underlined with a deprecation warning.