Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions generators/server/prompts.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function askForServerSideOpts() {
when: () => ['monolith', 'microservice'].includes(applicationType),
type: 'confirm',
name: 'reactive',
message: '[Beta] Do you want to make it reactive with Spring WebFlux?',
message: 'Do you want to make it reactive with Spring WebFlux?',
default: serverDefaultConfig.reactive,
},
{
Expand Down Expand Up @@ -143,10 +143,11 @@ function askForServerSideOpts() {
name: 'Cassandra',
});
}
opts.push({
// Couchbase is broken, see https://github.com/jhipster/generator-jhipster/pull/14184 for more information.
/* opts.push({
value: 'couchbase',
name: '[BROKEN] Couchbase',
});
name: 'Couchbase',
}); */
opts.push({
value: 'neo4j',
name: '[BETA] Neo4j',
Expand Down Expand Up @@ -205,7 +206,7 @@ function askForServerSideOpts() {
},
{
value: 'infinispan',
name: '[BETA] Infinispan (hybrid cache, for multiple nodes)',
name: 'Infinispan (hybrid cache, for multiple nodes)',
},
{
value: 'memcached',
Expand Down