We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeb9053 commit a4dd0b7Copy full SHA for a4dd0b7
generators/spring-boot/generators/data-couchbase/generator.ts
@@ -67,7 +67,7 @@ export default class CouchbaseGenerator extends SpringBootApplicationGenerator {
67
return this.asPostWritingTaskGroup({
68
addDependencies({ application, source }) {
69
const { reactive, javaDependencies } = application;
70
- source.addSpringBootModule?.(`spring-boot-starter-data-couchbase${reactive ? '-reactive' : ''}`);
+ source.addSpringBootModule?.(`spring-boot-starter-data-couchbase${reactive ? '-reactive' : ''}`, 'spring-boot-testcontainers');
71
source.addJavaDependencies?.([
72
{ groupId: 'commons-codec', artifactId: 'commons-codec' },
73
{ groupId: 'com.couchbase.client', artifactId: 'java-client' },
0 commit comments