I am trying to filter a properties file in the resource directory of my project. This means that I do not need to change the values ββbetween the versions of my application, SIT and prod. I use maven and intelliJ IDEA with (ultimately) different profiles, but at the moment I'm just trying to get the build process to get a catalog of filtered assets (if at all possible).
I added these resource strings to my POM:
<resource> <filtering>true</filtering> <directory>assets</directory> <includes> <include>**/*.properties</include> </includes> <targetPath> ../assets </targetPath> </resource> <resource> <filtering>false</filtering> <directory>assets</directory> <excludes> <exclude>**/*.properties</exclude> </excludes> <targetPath> ../assets </targetPath> </resource>
Is there a way in which the assembly process can be viewed in the catalog of filtered assets?
android maven
Robotnik
source share