Merge pull request #4487 from ssilvert/kc1250-big-commit
KEYCLOAK-5502: Fix install of node and yarn for account2 profile.
This commit is contained in:
commit
7124d93a24
1 changed files with 15 additions and 0 deletions
|
@ -58,6 +58,18 @@
|
||||||
<groupId>com.github.eirslett</groupId>
|
<groupId>com.github.eirslett</groupId>
|
||||||
<artifactId>frontend-maven-plugin</artifactId>
|
<artifactId>frontend-maven-plugin</artifactId>
|
||||||
<executions>
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>install node and yarn</id>
|
||||||
|
<goals>
|
||||||
|
<goal>install-node-and-yarn</goal>
|
||||||
|
</goals>
|
||||||
|
<phase>generate-resources</phase>
|
||||||
|
<configuration>
|
||||||
|
<workingDirectory>src/main/resources/theme/keycloak-preview/account/resources</workingDirectory>
|
||||||
|
<nodeVersion>v6.9.1</nodeVersion>
|
||||||
|
<yarnVersion>v0.28.4</yarnVersion>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
<execution>
|
<execution>
|
||||||
<id>yarn install keycloak preview</id>
|
<id>yarn install keycloak preview</id>
|
||||||
<goals>
|
<goals>
|
||||||
|
@ -99,6 +111,9 @@
|
||||||
<fileset>
|
<fileset>
|
||||||
<directory>src/main/resources/theme/keycloak-preview/account/resources/node_modules</directory>
|
<directory>src/main/resources/theme/keycloak-preview/account/resources/node_modules</directory>
|
||||||
</fileset>
|
</fileset>
|
||||||
|
<fileset>
|
||||||
|
<directory>src/main/resources/theme/keycloak-preview/account/resources/node</directory>
|
||||||
|
</fileset>
|
||||||
</filesets>
|
</filesets>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
Loading…
Reference in a new issue