2023-04-13 13:41:40 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-06-05 11:50:15 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2023-04-13 13:41:40 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<artifactId>keycloak-js-parent</artifactId>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<version>999.0.0-SNAPSHOT</version>
|
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>keycloak-account-ui</artifactId>
|
|
|
|
|
|
|
|
<name>Keycloak Account UI</name>
|
|
|
|
<description>The user inferface to manage an account on the Keycloak server.</description>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>maven-resources</directory>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>dist</directory>
|
|
|
|
<targetPath>theme/keycloak.v3/account/resources</targetPath>
|
|
|
|
<excludes>
|
|
|
|
<exclude>index.html</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.eirslett</groupId>
|
|
|
|
<artifactId>frontend-maven-plugin</artifactId>
|
|
|
|
<executions>
|
2023-10-30 11:50:06 +00:00
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>install-node-and-pnpm</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>pnpm-install</id>
|
|
|
|
<goals>
|
|
|
|
<goal>pnpm</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<arguments>${pnpm.args.install}</arguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2023-04-13 13:41:40 +00:00
|
|
|
<execution>
|
2023-05-05 16:03:24 +00:00
|
|
|
<id>run-build</id>
|
2023-04-13 13:41:40 +00:00
|
|
|
<goals>
|
2023-05-05 16:03:24 +00:00
|
|
|
<goal>pnpm</goal>
|
2023-04-13 13:41:40 +00:00
|
|
|
</goals>
|
|
|
|
<configuration>
|
2023-05-05 16:03:24 +00:00
|
|
|
<arguments>run build</arguments>
|
2023-04-13 13:41:40 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
|
|
|
<artifactId>maven-replacer-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>replace</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<file>dist/index.html</file>
|
|
|
|
<outputFile>target/classes/theme/keycloak.v3/account/index.ftl</outputFile>
|
|
|
|
<regex>false</regex>
|
|
|
|
<replacements>
|
|
|
|
<replacement>
|
|
|
|
<token>src="./</token>
|
|
|
|
<value>src="${resourceUrl}/</value>
|
|
|
|
</replacement>
|
|
|
|
<replacement>
|
|
|
|
<token>href="./</token>
|
|
|
|
<value>href="${resourceUrl}/</value>
|
|
|
|
</replacement>
|
2023-06-05 11:50:15 +00:00
|
|
|
<replacement>
|
|
|
|
<token><![CDATA[<link rel="icon" type="image/svg+xml" href="${resourceUrl}/favicon.svg" />]]></token>
|
|
|
|
<value xml:space="preserve"><![CDATA[<link rel="icon" type="${properties.favIconType!"image/svg+xml"}" href="${resourceUrl}${properties.favIcon!"/favicon.svg"}" />]]></value>
|
|
|
|
</replacement>
|
|
|
|
<replacement>
|
|
|
|
<token><![CDATA[<title>Keycloak account console</title>]]></token>
|
|
|
|
<value xml:space="preserve"><![CDATA[<title>${properties.title!"Keycloak account console"}</title>]]></value>
|
|
|
|
</replacement>
|
2023-04-13 13:41:40 +00:00
|
|
|
<replacement>
|
|
|
|
<token><![CDATA[</body>]]></token>
|
|
|
|
<value xml:space="preserve">
|
|
|
|
<![CDATA[
|
|
|
|
<script id="environment" type="application/json">
|
|
|
|
{
|
2023-04-25 11:11:20 +00:00
|
|
|
"authUrl": "${authUrl}",
|
|
|
|
"realm": "${realm.name}",
|
2023-06-13 16:29:37 +00:00
|
|
|
"clientId": "${clientId}",
|
2023-06-05 11:50:15 +00:00
|
|
|
"resourceUrl": "${resourceUrl}",
|
|
|
|
"logo": "${properties.logo!""}",
|
2023-06-13 14:16:41 +00:00
|
|
|
"logoUrl": "${properties.logoUrl!""}",
|
|
|
|
"features": {
|
|
|
|
"isRegistrationEmailAsUsername": ${realm.registrationEmailAsUsername?c},
|
|
|
|
"isEditUserNameAllowed": ${realm.editUsernameAllowed?c},
|
|
|
|
"isInternationalizationEnabled": ${realm.isInternationalizationEnabled()?c},
|
|
|
|
"isLinkedAccountsEnabled": ${realm.identityFederationEnabled?c},
|
|
|
|
"isMyResourcesEnabled": ${(realm.userManagedAccessAllowed && isAuthorizationEnabled)?c},
|
|
|
|
"deleteAccountAllowed": ${deleteAccountAllowed?c},
|
|
|
|
"updateEmailFeatureEnabled": ${updateEmailFeatureEnabled?c},
|
|
|
|
"updateEmailActionEnabled": ${updateEmailActionEnabled?c},
|
|
|
|
"isViewGroupsEnabled": ${isViewGroupsEnabled?c}
|
|
|
|
}
|
2023-04-13 13:41:40 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
]]>
|
|
|
|
</value>
|
|
|
|
</replacement>
|
|
|
|
<replacement>
|
|
|
|
<token><![CDATA[</head>]]></token>
|
|
|
|
<value xml:space="preserve">
|
|
|
|
<![CDATA[
|
|
|
|
<#if properties.styles?has_content>
|
|
|
|
<#list properties.styles?split(' ') as style>
|
|
|
|
<link href="${resourceUrl}/${style}" rel="stylesheet"/>
|
|
|
|
</#list>
|
|
|
|
</#if>
|
|
|
|
</head>
|
2023-06-05 11:50:15 +00:00
|
|
|
]]>
|
2023-04-13 13:41:40 +00:00
|
|
|
</value>
|
|
|
|
</replacement>
|
|
|
|
</replacements>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2023-06-05 11:50:15 +00:00
|
|
|
</project>
|