Skip to content

Commit

Permalink
Use dedicated names per Maven Module
Browse files Browse the repository at this point in the history
This eases debugging as otherwise something like this is emitted in the
log

[INFO] Reactor Summary for Context-Aware Configuration Editor
1.15.9-SNAPSHOT:
[INFO]
[INFO] Context-Aware Configuration Editor ................. SUCCESS [
3.475 s]
[INFO] Context-Aware Configuration Editor ................. FAILURE [
0.815 s]
[INFO] io.wcm.caconfig.editor.package ..................... SKIPPED
[INFO] Context-Aware Configuration Editor ................. SKIPPED
  • Loading branch information
kwin committed Mar 7, 2024
1 parent 1cd96b5 commit dbad97b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<version>1.15.9-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Context-Aware Configuration Editor</name>
<name>Context-Aware Configuration Editor (Bundle)</name>
<description>Context-Aware Configuration Editor Template for AEM.</description>
<url>${site.url}/caconfig/editor/</url>

Expand Down
1 change: 1 addition & 0 deletions package/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<artifactId>io.wcm.caconfig.editor.package</artifactId>
<version>1.15.9-SNAPSHOT</version>
<packaging>content-package</packaging>
<name>Context-Aware Configuration Editor (Package)</name>
<url>${site.url}/caconfig/editor/</url>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<version>1.15.9-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Context-Aware Configuration Editor</name>
<name>Context-Aware Configuration Editor (Parent POM)</name>
<description>Context-Aware Configuration Editor Template for AEM.</description>

<ciManagement>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<version>1.15.9-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Context-Aware Configuration Editor</name>
<name>Context-Aware Configuration Editor (Reactor)</name>
<description>Context-Aware Configuration Editor Template for AEM.</description>
<url>${site.url}/${site.url.module.prefix}/</url>

Expand Down

0 comments on commit dbad97b

Please sign in to comment.