mirror of
https://github.com/keycloak/keycloak.git
synced 2025-12-30 03:19:54 -06:00
Closes #35669 Signed-off-by: Jon Koops <jonkoops@gmail.com> Signed-off-by: Alexander Schwartz <aschwart@redhat.com> Co-authored-by: Alexander Schwartz <aschwart@redhat.com>
84 lines
2.9 KiB
XML
84 lines
2.9 KiB
XML
<?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-js-parent</artifactId>
|
|
<groupId>org.keycloak</groupId>
|
|
<version>999.0.0-SNAPSHOT</version>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>keycloak-admin-ui</artifactId>
|
|
|
|
<name>Keycloak Admin UI</name>
|
|
<description>The user interface to administrate the Keycloak server.</description>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>withTranslations</id>
|
|
<activation>
|
|
<property>
|
|
<name>!skipCommunityTranslations</name>
|
|
</property>
|
|
</activation>
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>maven-resources-community</directory>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>jboss-release</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.github.eirslett</groupId>
|
|
<artifactId>frontend-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>pnpm-build-lib</id>
|
|
<goals>
|
|
<goal>pnpm</goal>
|
|
</goals>
|
|
<configuration>
|
|
<arguments>build-lib</arguments>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>pnpm-pack</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>pnpm</goal>
|
|
</goals>
|
|
<configuration>
|
|
<arguments>pack --pack-destination=target</arguments>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>maven-resources</directory>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |