keycloakify 11.15.0 → 11.15.1

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/README.md CHANGED
@@ -144,6 +144,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
144
144
  </tr>
145
145
  <tr>
146
146
  <td align="center" valign="top" width="14.28%"><a href="https://th.wtf"><img src="https://avatars.githubusercontent.com/u/13462281?v=4?s=100" width="100px;" alt="Thiago"/><br /><sub><b>Thiago</b></sub></a><br /><a href="https://github.com/keycloakify/keycloakify/commits?author=Langsdorf" title="Code">💻</a></td>
147
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/LennartMart"><img src="https://avatars.githubusercontent.com/u/1591933?v=4?s=100" width="100px;" alt="LennartMart"/><br /><sub><b>LennartMart</b></sub></a><br /><a href="https://github.com/keycloakify/keycloakify/commits?author=LennartMart" title="Code">💻</a></td>
147
148
  </tr>
148
149
  </tbody>
149
150
  </table>
package/bin/511.index.js CHANGED
@@ -1642,7 +1642,7 @@ async function buildJar(params) {
1642
1642
  const mvnBuildCmd = `mvn -B -ntp clean install ${mavenLocalRepoArg}`.trim();
1643
1643
  await new Promise((resolve, reject) => external_child_process_default().exec(mvnBuildCmd, {
1644
1644
  cwd: keycloakifyBuildCacheDirPath,
1645
- env: Object.assign(Object.assign({}, process.env), { MAVEN_OPTS: [process.env.MAVEN_OPTS, "-Xmx4096m"]
1645
+ env: Object.assign(Object.assign({}, process.env), { MAVEN_OPTS: ["-Xmx4096m", process.env.MAVEN_OPTS]
1646
1646
  .filter(x => !!x)
1647
1647
  .join(" ") })
1648
1648
  }, (error, stdout, stderr) => {
@@ -1756,7 +1756,7 @@ async function command(params) {
1756
1756
  case "darwin":
1757
1757
  return "brew install mvn";
1758
1758
  case "win32":
1759
- return "choco install mvn";
1759
+ return "choco install maven";
1760
1760
  case "linux":
1761
1761
  default:
1762
1762
  return "sudo apt-get install mvn";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "11.15.0",
3
+ "version": "11.15.1",
4
4
  "description": "Framework to create custom Keycloak UIs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -238,7 +238,7 @@ export async function buildJar(params: {
238
238
  cwd: keycloakifyBuildCacheDirPath,
239
239
  env: {
240
240
  ...process.env,
241
- MAVEN_OPTS: [process.env.MAVEN_OPTS, "-Xmx4096m"]
241
+ MAVEN_OPTS: ["-Xmx4096m", process.env.MAVEN_OPTS]
242
242
  .filter(x => !!x)
243
243
  .join(" ")
244
244
  }
@@ -187,6 +187,9 @@ function decodeHtmlEntities(htmlStr){
187
187
  <#if stringified?starts_with("org.keycloak.models.OTPPolicy") >
188
188
  <#break>
189
189
  </#if>
190
+ <#if stringified?starts_with("org.keycloak.models.RequiredActionProviderModel") >
191
+ <#break>
192
+ </#if>
190
193
  <#list ["models", "services", "authentication", "quarkus.runtime", "transaction", "connections", "utils.ClosingStream"] as namespacePortion>
191
194
  <#if stringified?starts_with("org.keycloak." + namespacePortion)>
192
195
  <#return abort>
@@ -47,7 +47,7 @@ export async function command(params: { buildContext: BuildContext }) {
47
47
  case "darwin":
48
48
  return "brew install mvn";
49
49
  case "win32":
50
- return "choco install mvn";
50
+ return "choco install maven";
51
51
  case "linux":
52
52
  default:
53
53
  return "sudo apt-get install mvn";