Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list

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>