この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
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
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
I believe you need to use one of the following import modes depending on the requirement:
Check "Using Filters" at [1] for more details.
表示
返信
いいね!の合計
have you used the AEM archetype? Which version?
Jörg
表示
返信
いいね!の合計
I don't believe the codebase is using any archtetype.
表示
返信
いいね!の合計
I believe you need to use one of the following import modes depending on the requirement:
Check "Using Filters" at [1] for more details.
表示
返信
いいね!の合計
Yes I saw that and tried putting those settings in a few places but on each occassion it failed to have the desired impact.
表示
返信
いいね!の合計
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.
表示
返信
いいね!の合計
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:
表示
返信
いいね!の合計
Our full parent POM looks like this:
表示
返信
いいね!の合計