假设我有三个接口:Interface1,扩展Interface1的Interface2和扩展Interface2的Interface3。 Interface1位于module1中 Interface2位于module2中 Interface3位于module3
中我的问题是如何配置module1和module2以避免module3需要构建module1?
PS:现在我收到以下错误:
error: cannot access Interface1
public interface Interface3 extends Interface2{
class file for module1.Interface1 not found