Skip to content

Commit 3ce28b5

Browse files
committed
Update plugin-configuration-samples.md
1 parent ea99724 commit 3ce28b5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/plugin-configuration-samples.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -152,25 +152,25 @@ Also, JavaPackager plugin is able to get some properties from `pom.xml`, so you
152152
<version>{latest-plugin-version-here}</version>
153153
<executions>
154154
<execution>
155-
<id>with-jre</id>
155+
<id>bundle-with-jre</id>
156156
<phase>package</phase>
157157
<goals>
158158
<goal>package</goal>
159159
</goals>
160160
<configuration>
161-
<name>Sample-with-jre</name>
161+
<name>Sample</name>
162162
<mainClass>fvarrui.sample.Main</mainClass>
163163
<bundleJre>true</bundleJre>
164164
</configuration>
165165
</execution>
166166
<execution>
167-
<id>without-jre</id>
167+
<id>bundle-without-jre</id>
168168
<phase>package</phase>
169169
<goals>
170170
<goal>package</goal>
171171
</goals>
172172
<configuration>
173-
<name>Sample-without-jre</name>
173+
<name>Sample-nojre</name>
174174
<mainClass>fvarrui.sample.Main</mainClass>
175175
<bundleJre>false</bundleJre>
176176
</configuration>
@@ -179,5 +179,5 @@ Also, JavaPackager plugin is able to get some properties from `pom.xml`, so you
179179
</plugin>
180180
```
181181
E.g. on Windows, last configuration will generate next artifacts:
182-
* `Sample-with-jre_x.y.z.exe` with a bundled JRE.
183-
* `Sample-without-jre_x.y.z.exe` without JRE.
182+
* `Sample_x.y.z.exe` with a bundled JRE.
183+
* `Sample-nojre_x.y.z.exe` without JRE.

0 commit comments

Comments
 (0)