2015-07-17 11:45:43 +00:00
|
|
|
<?xml version="1.0"?>
|
2021-09-15 14:09:06 +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">
|
2017-03-23 10:59:19 +00:00
|
|
|
<parent>
|
|
|
|
<artifactId>keycloak-parent</artifactId>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2023-03-03 10:11:44 +00:00
|
|
|
<version>999.0.0-SNAPSHOT</version>
|
2017-03-23 10:59:19 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2015-07-17 11:45:43 +00:00
|
|
|
|
2017-03-23 10:59:19 +00:00
|
|
|
<artifactId>keycloak-themes</artifactId>
|
|
|
|
<name>Keycloak Themes</name>
|
2021-09-15 14:09:06 +00:00
|
|
|
<description />
|
2019-12-06 14:34:06 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<dir.common>src/main/resources/theme/keycloak/common/resources</dir.common>
|
2022-12-09 15:44:22 +00:00
|
|
|
<!-- ignore folders for incremental builds by the maven build cache plugin -->
|
2023-12-11 07:35:28 +00:00
|
|
|
<maven.build.cache.exclude.value.1>src/main/resources/theme/keycloak/common/resources/node_modules</maven.build.cache.exclude.value.1>
|
|
|
|
<maven.build.cache.exclude.value.2>src/main/resources/theme/keycloak/common/resources/vendor</maven.build.cache.exclude.value.2>
|
2024-03-27 09:53:28 +00:00
|
|
|
<maven.build.cache.exclude.value.3>src/main/resources/theme/keycloak.v2/welcome/node_modules</maven.build.cache.exclude.value.3>
|
|
|
|
<maven.build.cache.exclude.value.4>src/main/resources/theme/keycloak.v2/welcome/resources/vendor</maven.build.cache.exclude.value.4>
|
2019-12-06 14:34:06 +00:00
|
|
|
</properties>
|
|
|
|
|
2023-11-14 08:11:23 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-admin-ui</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-account-ui</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2019-12-06 14:34:06 +00:00
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2024-04-02 14:14:58 +00:00
|
|
|
|
2023-02-14 10:44:53 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
2024-04-02 14:14:58 +00:00
|
|
|
<exclude>**/node_modules/**</exclude>
|
2023-02-14 10:44:53 +00:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-04-02 14:14:58 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.eirslett</groupId>
|
|
|
|
<artifactId>frontend-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<workingDirectory>src/main/resources/theme/keycloak/common/resources</workingDirectory>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2023-02-14 10:44:53 +00:00
|
|
|
</plugins>
|
2019-12-06 14:34:06 +00:00
|
|
|
</build>
|
2017-03-23 10:59:19 +00:00
|
|
|
|
|
|
|
<profiles>
|
2023-03-22 07:57:57 +00:00
|
|
|
<profile>
|
|
|
|
<id>communityTranslations</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>!skipCommunityTranslations</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources-community</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2017-03-23 10:59:19 +00:00
|
|
|
</profiles>
|
2015-07-17 11:45:43 +00:00
|
|
|
|
2021-11-16 08:56:45 +00:00
|
|
|
</project>
|