When I add a new translation to the translations file and install the translation appears. When I change the translation and install the existing value is not overwritten. I'm struggling with the plugin's documentation to understand how to change this behaviour: to update an existing node value attribute.
Here's the configuration of the plugin:
<plugin>
<groupId>com.day.jcr.vault</groupId>
<artifactId>content-package-maven-plugin</artifactId>
<version>0.5.24</version>
<extensions>true</extensions>
<configuration>
<packaging>zip</packaging>
<properties>
<acHandling>overwrite</acHandling>
<granite.suppressSnapshots>true</granite.suppressSnapshots>
</properties>
<failOnError>true</failOnError>
<install>true</install>
<verbose>true</verbose>
<useProxy>false</useProxy>
</configuration>
</plugin>
<profile>
<id>auto-install-package</id>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.day.jcr.vault</groupId>
<artifactId>content-package-maven-plugin</artifactId>
<executions>
<execution>
<id>install-package</id>
<goals>
<goal>install</goal>
</goals>
<configuration>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<targetURL>${cq.url}/crx/packmgr/service.jsp</targetURL>
<userId>${cq.user}</userId>
<password>${cq.password}</password>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
The command I use to deploy is: mvn clean install -Pauto-install-package
Solved! Go to Solution.
Views
Replies
Total Likes
I believe you need to use one of the following import modes depending on the requirement:
Check "Using Filters" at [1] for more details.
Views
Replies
Total Likes
have you used the AEM archetype? Which version?
Jörg
Views
Replies
Total Likes
I don't believe the codebase is using any archtetype.
Views
Replies
Total Likes
I believe you need to use one of the following import modes depending on the requirement:
Check "Using Filters" at [1] for more details.
Views
Replies
Total Likes
Yes I saw that and tried putting those settings in a few places but on each occassion it failed to have the desired impact.
Views
Replies
Total Likes
Can you share a minimal content-package where you can replicate this behavior? I am especially interested in the META-INF/vault/filter.xml file and the content in the respective path of the content-package.
Views
Replies
Total Likes
It doesn't work at all on publish instances. It causes our deploys to fail with internal server error and no clues in the logs at all. Even just adding the following causes the error:
Views
Replies
Total Likes
Our full parent POM looks like this:
Views
Replies
Total Likes
Views
Likes
Replies