如何在Angular4中显示POM版本号

时间:2018-06-04 16:23:58

标签: angular maven jhipster maven-resources-plugin

我有一个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版本号?

0 个答案:

没有答案