Skip to content

Commit

Permalink
adjusts for daily-builds (#26204)
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed May 21, 2024
1 parent 4a42644 commit 1c6558f
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .blueprint/generate-sample/command.mts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const command: JHipsterCommandDefinition = {
gen.entitiesSample = 'document';
}
},
choices: ['sql', 'sqllight', 'micro', 'sqlfull', 'mongodb', 'document', 'cassandra', 'couchbase'],
choices: ['sql', 'sqllight', 'micro', 'sqlfull', 'none', 'neo4j', 'mongodb', 'document', 'cassandra', 'couchbase'],
scope: 'generator',
},
global: {
Expand Down
5 changes: 4 additions & 1 deletion .blueprint/generate-sample/generator.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import BaseGenerator from '../../generators/base/index.js';
import { packageJson } from '../../lib/index.js';
import { generateSample, entitiesByType } from './support/index.js';
import { promptSamplesFolder } from '../support.mjs';
import { GENERATOR_APP, GENERATOR_JDL } from '../../generators/generator-list.js';
import { GENERATOR_APP, GENERATOR_INFO, GENERATOR_JDL } from '../../generators/generator-list.js';

export default class extends BaseGenerator {
sampleName;
Expand Down Expand Up @@ -122,6 +122,9 @@ export default class extends BaseGenerator {
});
}
},
async info() {
await this.composeWithJHipster(GENERATOR_INFO, { generatorOptions: { destinationPath: this.projectFolder } });
},
});
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"generator-jhipster": {
"applicationType": "monolith",
"authenticationType": "jwt",
"baseName": "samplePsqlEsNoi18nMapsIdWithNgx",
"blueprints": [],
"buildTool": "maven",
"cacheProvider": "hazelcast",
"clientFramework": "angular",
"clientPackageManager": "npm",
"clientTheme": "none",
"creationTimestamp": 1596513172471,
"databaseType": "sql",
"devDatabaseType": "mysql",
"dtoSuffix": "DTO",
"embeddableLaunchScript": false,
"enableHibernateCache": true,
"enableSwaggerCodegen": false,
"enableTranslation": false,
"entitySuffix": "",
"jhiPrefix": "jhi",
"jwtSecretKey": "ZjY4MTM4YjI5YzMwZjhjYjI2OTNkNTRjMWQ5Y2Q0Y2YwOWNmZTE2NzRmYzU3NTMwM2NjOTE3MTllOTM3MWRkMzcyYTljMjVmNmQ0Y2MxOTUzODc0MDhhMTlkMDIxMzI2YzQzZDM2ZDE3MmQ3NjVkODk3OTVmYzljYTQyZDNmMTQ=",
"messageBroker": "no",
"otherModules": [],
"packageFolder": "tech/jhipster/sample",
"packageName": "tech.jhipster.sample",
"prodDatabaseType": "mysql",
"searchEngine": "elasticsearch",
"serverPort": "8080",
"serviceDiscoveryType": "no",
"testFrameworks": ["gatling", "cypress"],
"websocket": "no"
}
}

0 comments on commit 1c6558f

Please sign in to comment.