I have jar file added as Library which has class/folder structure like this.
com.bt.cspt.mixer.model and under model I have many clasess files.
I’m trying to import like this and create new interface like this
import com.bt.cspt.mixer.model.OrderOptServiceResults;
import com.bt.so.common.dto.OrderResponseDto;
import org.mapstruct.Mapper;
@Mapper(uses = OrderExceptionMapper.class, componentModel = "spring")
public interface OrderResponseMapper extends GenericMapper<OrderOptServiceResults, OrderResponseDto>{
}
intelliJ is not giving any error but when I try to compile, its giving error like
error: package com.by.cspo.orderbuilder.model does not exist
import com.bt.cspt.mixer.model.OrderOptServiceResults;
^
Please help understanding the issue. I’m able to go to the class which is part of jar but when running its failing.