You need to provide the package name to Spring to scan the repositories from, using @EnableJpaRepositories annnotation, e.g.:
@SpringBootApplication
@EnableJpaRepositories("com.test.assetmanagementdigital.repository")
public class AssetManagementDigital2Application
Here's the documentation.