2023-02-28 11:16:43 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<artifactId>keycloak-parent</artifactId>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2023-03-03 10:11:44 +00:00
|
|
|
<version>999.0.0-SNAPSHOT</version>
|
2023-02-28 11:16:43 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>keycloak-js-parent</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>Keycloak JavaScript Parent</name>
|
2023-10-30 11:50:06 +00:00
|
|
|
<description>Parent of all JavaScript related code.</description>
|
2023-02-28 11:16:43 +00:00
|
|
|
|
|
|
|
<modules>
|
2023-04-13 13:41:40 +00:00
|
|
|
<module>apps/account-ui</module>
|
2023-03-13 18:16:12 +00:00
|
|
|
<module>apps/admin-ui</module>
|
2023-02-28 11:16:43 +00:00
|
|
|
<module>libs/keycloak-admin-client</module>
|
2024-04-19 18:10:34 +00:00
|
|
|
<module>libs/ui-shared</module>
|
2023-03-03 12:56:53 +00:00
|
|
|
<module>libs/keycloak-js</module>
|
2023-02-28 11:16:43 +00:00
|
|
|
</modules>
|
|
|
|
|
2022-12-09 15:44:22 +00:00
|
|
|
<properties>
|
|
|
|
<!-- The JavaScript projects use the non-standard 'src' folder for their sources, therefore, name it here explicitly -->
|
|
|
|
<maven.build.cache.input.1>src</maven.build.cache.input.1>
|
|
|
|
</properties>
|
2023-02-28 11:16:43 +00:00
|
|
|
</project>
|