Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

How to hide hidden files in AEM CRXDE Lite

Avatar

Level 2

The question is basically the title of the post.

Is there a possibility to hide the hidden files that appear on the CRXDE Lite?

I have a mac and in my CRXDE Lite i can see the .DS_Store files and i don't want to see them.

1 Reply

Avatar

Employee

Hi,

do you see the the .DS_Store files in content you uploaded via your maven generated package? If so, you can add an exclude rule to your maven project that doesn't add these files to you package before uploading to AEM.

Regards,

Opkar

    <build>

        <resources>

            <resource>

                <directory>src/main/content/jcr_root</directory>

                <filtering>false</filtering>

                <excludes>

                    <exclude>**/.vlt</exclude>

                    <exclude>**/.vltignore</exclude>

                    <exclude>**/.git</exclude>

                    <exclude>**/.gitignore</exclude>

                    <exclude>**/.DS_Store</exclude>

                </excludes>

            </resource>