keycloakify 11.2.9 → 11.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/573.index.js CHANGED
@@ -1352,7 +1352,7 @@ async function buildJar(params) {
1352
1352
  });
1353
1353
  await promises_.writeFile((0,external_path_.join)(keycloakifyBuildCacheDirPath, "pom.xml"), Buffer.from(pomFileCode, "utf8"));
1354
1354
  }
1355
- await new Promise((resolve, reject) => external_child_process_default().exec(`mvn install -Dmaven.repo.local="${(0,external_path_.join)(keycloakifyBuildCacheDirPath, ".m2")}"`, { cwd: keycloakifyBuildCacheDirPath }, error => {
1355
+ await new Promise((resolve, reject) => external_child_process_default().exec(`mvn clean install -Dmaven.repo.local="${(0,external_path_.join)(keycloakifyBuildCacheDirPath, ".m2")}"`, { cwd: keycloakifyBuildCacheDirPath }, error => {
1356
1356
  if (error !== null) {
1357
1357
  console.error(`Build jar failed: ${JSON.stringify({
1358
1358
  jarFileBasename,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "11.2.9",
3
+ "version": "11.2.10",
4
4
  "description": "Framework to create custom Keycloak UIs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -197,7 +197,7 @@ export async function buildJar(params: {
197
197
 
198
198
  await new Promise<void>((resolve, reject) =>
199
199
  child_process.exec(
200
- `mvn install -Dmaven.repo.local="${pathJoin(keycloakifyBuildCacheDirPath, ".m2")}"`,
200
+ `mvn clean install -Dmaven.repo.local="${pathJoin(keycloakifyBuildCacheDirPath, ".m2")}"`,
201
201
  { cwd: keycloakifyBuildCacheDirPath },
202
202
  error => {
203
203
  if (error !== null) {