10 lines
266 B
Java
10 lines
266 B
Java
|
package com.baeldung.couchbase;
|
||
|
|
||
|
import org.springframework.context.annotation.ComponentScan;
|
||
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
||
|
@Configuration
|
||
|
@ComponentScan(basePackages={"com.baeldung.couchbase"})
|
||
|
public class IntegrationTestConfig {
|
||
|
}
|