Skip to content

Commit

Permalink
[WFLY-1816] Record Galleon provisioned state in WildFly distributions
Browse files Browse the repository at this point in the history
Set `record-state` to `true` for the galleon-maven-plugin provision goal
when building and creating distributions of WildFly (full, ee, and preview) so that an user can use Galleon to add other feature packs
to an existing installation from any of these zips.

For consistency, the galleon provisioned state is also recorded for WildFly builds full, ee, and preview)

JIRA: https://issues.redhat.com/browse/WFLY-18186

Signed-off-by: Jeff Mesnil <jmesnil@redhat.com>
  • Loading branch information
jmesnil committed Jun 27, 2023
1 parent 8d75450 commit 8ff0754
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<phase>prepare-package</phase>
<configuration>
<install-dir>${project.build.directory}/${project.build.finalName}</install-dir>
<record-state>false</record-state>
<record-state>true</record-state>
<log-time>${galleon.log.time}</log-time>
<offline>${galleon.offline}</offline>
<feature-packs>
Expand Down
2 changes: 1 addition & 1 deletion dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
<phase>compile</phase>
<configuration>
<install-dir>${basedir}/target/${project.build.finalName}</install-dir>
<record-state>false</record-state>
<record-state>true</record-state>
<log-time>${galleon.log.time}</log-time>
<offline>${galleon.offline}</offline>
<plugin-options>
Expand Down
2 changes: 1 addition & 1 deletion ee-build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<phase>prepare-package</phase>
<configuration>
<install-dir>${project.build.directory}/${project.build.finalName}</install-dir>
<record-state>false</record-state>
<record-state>true</record-state>
<log-time>${galleon.log.time}</log-time>
<offline>${galleon.offline}</offline>
<feature-packs>
Expand Down
2 changes: 1 addition & 1 deletion ee-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
<phase>compile</phase>
<configuration>
<install-dir>${basedir}/target/${project.build.finalName}</install-dir>
<record-state>false</record-state>
<record-state>tree</record-state>
<log-time>${galleon.log.time}</log-time>
<offline>${galleon.offline}</offline>
<plugin-options>
Expand Down
2 changes: 1 addition & 1 deletion preview/build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<phase>prepare-package</phase>
<configuration>
<install-dir>${project.build.directory}/${project.build.finalName}</install-dir>
<record-state>false</record-state>
<record-state>true</record-state>
<log-time>${galleon.log.time}</log-time>
<offline>true</offline>
<feature-packs>
Expand Down
2 changes: 1 addition & 1 deletion preview/dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<phase>compile</phase>
<configuration>
<install-dir>${basedir}/target/${project.build.finalName}</install-dir>
<record-state>false</record-state>
<record-state>true</record-state>
<log-time>${galleon.log.time}</log-time>
<offline>true</offline>
<plugin-options>
Expand Down

0 comments on commit 8ff0754

Please sign in to comment.