jmix single module add on 添加webapp

如何让jar包含 新增的webapp部分的文件

你好,能详细描述一下问题吗?

Screen Shot 2022-07-22 at 4.09.23 PM

如图,test项目是一个add on module,在这个spring boot里添加一个webapp部分,test项目打包时希望包含webapp的内容以便主项目访问

可以将 webapp 作为 resource 打包,比如按照下面图中在扩展组件的 build.gradle 修改,我增加了 otherfiles 目录:
image

添加内容为:

sourceSets.main.resources.srcDirs += ['src/main/otherfiles']

打包结果,可以看到 test.txt 包含进来了:
image

1 个赞