Skip to content

Commit a872170

Browse files
committed
See #113 - proper use of $artifactId
The property representing the artifact id was not properly used in the generated pom to build the war. To test this PR you can do the following in your IDE : * make a run configuration with the classpath of `restx-core-shell` * export the system property `-Drestx.shell.home=<your workspace location>` * run the class `restx.shell.RestxShell` Then you will be able to run `app new` and scaffold a new srv/ui layout app (use the latest released version of restx if you want during wizard [0.33.1]). If you run a mvn package in the generated app structure, all work as expected.
1 parent f83c619 commit a872170

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

restx-build/src/main/resources/restx/build/fragments/maven/war-overlay-resources.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<overlays>
77
<overlay>
88
<groupId>${project.war.overlay.groupId}</groupId>
9-
<artifactId>${project.war.overlay.groupId}-ui</artifactId>
9+
<artifactId>${project.war.overlay.artifactId}-ui</artifactId>
1010
<type>zip</type>
1111
</overlay>
1212
</overlays>

0 commit comments

Comments
 (0)