duncanconroy
09/05/2017, 7:32 AMpackage com.alphabrik.inditex.instore.import.io.readers
import com.alphabrik.inditex.instore.web.entity.stores.Area
import org.springframework.data.repository.CrudRepository
interface AreaRepository : CrudRepository<Area, Long>
When I compile and run this with IntelliJ, everything works like a charme. The problem occurs, when I try to compile this with Maven - it tells [...]\AreaRepository.kt: (3, 38) Unresolved reference: web
and [...]\AreaRepository.kt: (6, 43) Unresolved reference: Area
I started the Kotlin project with the config from start.spring.io
Any ideas?
Thanks in advance 🙂agomez
09/05/2017, 12:57 PMimport com.alphabrik.inditex.instore.web
duncanconroy
09/06/2017, 9:06 AM