我有一个jhipster项目,我想在前端显示maven版本。
我尝试使用maven resources插件修改src/main/webapp/app/app.constants.ts
。但是,此插件不会修改src/main/resources
let _VERSION = '#project.version#';
let _DEBUG_INFO_ENABLED = true;
/* @toreplace VERSION */
/* @toreplace DEBUG_INFO_ENABLED */
/* tslint:enable */
export const VERSION = _VERSION;
export const DEBUG_INFO_ENABLED = _DEBUG_INFO_ENABLED;
export const SERVER_API_URL = '';
如何在Angular4应用程序中显示POM版本号?