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>
|
2022-03-22 08:22:48 +00:00
|
|
|
<version>999-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>
|
2020-11-18 12:44:54 +00:00
|
|
|
<dir.account2>src/main/resources/theme/keycloak.v2/account/src</dir.account2>
|
2019-12-06 14:34:06 +00:00
|
|
|
<args.npm.install>ci --no-optional --ignore-scripts</args.npm.install>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<excludes>
|
2020-05-11 10:38:27 +00:00
|
|
|
<exclude>**/node_modules/rcue/**</exclude>
|
2019-12-06 14:34:06 +00:00
|
|
|
<exclude>**/node_modules/**/node_modules/**</exclude>
|
|
|
|
<exclude>**/minimist/**</exclude>
|
|
|
|
<exclude>**/mkdirp/**</exclude>
|
|
|
|
<exclude>**/package.json</exclude>
|
|
|
|
<exclude>**/package-lock.json</exclude>
|
|
|
|
<exclude>**/component.json</exclude>
|
|
|
|
<exclude>**/composer.json</exclude>
|
|
|
|
<exclude>**/npm-shrinkwrap.json</exclude>
|
|
|
|
<exclude>**/select2.jquery.json</exclude>
|
|
|
|
<exclude>**/*.markdown</exclude>
|
|
|
|
<exclude>**/*.swf</exclude>
|
|
|
|
<exclude>**/*.sh</exclude>
|
|
|
|
<exclude>**/.bin/**</exclude>
|
|
|
|
<exclude>**/bin/**</exclude>
|
|
|
|
<exclude>**/build/**</exclude>
|
|
|
|
<exclude>**/docs/**</exclude>
|
|
|
|
<exclude>**/demo/**</exclude>
|
|
|
|
<exclude>**/devtools/**</exclude>
|
|
|
|
<exclude>**/example/**</exclude>
|
|
|
|
<exclude>**/examples/**</exclude>
|
|
|
|
<exclude>**/grunt/**</exclude>
|
|
|
|
<exclude>**/less/**</exclude>
|
|
|
|
<exclude>**/sass/**</exclude>
|
|
|
|
<exclude>**/scss/**</exclude>
|
|
|
|
<exclude>**/jquery/src/**</exclude>
|
|
|
|
<exclude>**/angular-treeview/src/**</exclude>
|
|
|
|
<exclude>**/test/**</exclude>
|
|
|
|
<exclude>**/tests/**</exclude>
|
|
|
|
<exclude>**/_config.yml</exclude>
|
|
|
|
<exclude>**/api.md</exclude>
|
|
|
|
<exclude>**/AUTHORS.txt</exclude>
|
|
|
|
<exclude>**/CHANGELOG.md</exclude>
|
|
|
|
<exclude>**/CONTRIBUTING.md</exclude>
|
|
|
|
<exclude>**/HELP-US-OUT.txt</exclude>
|
|
|
|
<exclude>**/README.md</exclude>
|
|
|
|
<exclude>**/Gruntfile.js</exclude>
|
|
|
|
<exclude>**/Gemfile*</exclude>
|
|
|
|
<exclude>**/.*</exclude>
|
2021-09-15 14:09:06 +00:00
|
|
|
|
2020-02-10 14:21:32 +00:00
|
|
|
<!-- Remove once rcue stops shipping this file -->
|
|
|
|
<exclude>**/git-Logo.svg</exclude>
|
2021-09-15 14:09:06 +00:00
|
|
|
|
2020-11-18 12:44:54 +00:00
|
|
|
<exclude>**/keycloak.v2/account/src/**</exclude>
|
2019-12-06 14:34:06 +00:00
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
2017-03-23 10:59:19 +00:00
|
|
|
|
|
|
|
<profiles>
|
2022-02-17 22:10:41 +00:00
|
|
|
<profile>
|
|
|
|
<id>account2</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>!skipAccount2</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>${dir.account2}/web_modules</directory>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.eirslett</groupId>
|
|
|
|
<artifactId>frontend-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<!-- Download NPM tools -->
|
|
|
|
<execution>
|
|
|
|
<id>setup-node</id>
|
|
|
|
<goals>
|
|
|
|
<goal>install-node-and-npm</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>initialize</phase>
|
|
|
|
</execution>
|
|
|
|
<!-- Compile stuff -->
|
|
|
|
<execution>
|
|
|
|
<id>compile-account2</id>
|
|
|
|
<goals>
|
|
|
|
<goal>npm</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<workingDirectory>${dir.account2}</workingDirectory>
|
|
|
|
<arguments>run build --scripts-prepend-node-path</arguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<!-- Download NPM packages -->
|
|
|
|
<execution>
|
|
|
|
<id>npm-install-account2</id>
|
|
|
|
<phase>initialize</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>npm</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<workingDirectory>${dir.account2}</workingDirectory>
|
|
|
|
<arguments>${args.npm.install}</arguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<nodeVersion>${node.version}</nodeVersion>
|
|
|
|
<installDirectory>${project.basedir}</installDirectory>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
|
2022-03-02 07:49:17 +00:00
|
|
|
<profile>
|
|
|
|
<id>common</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>!skipCommon</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>${dir.common}/web_modules</directory>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.eirslett</groupId>
|
|
|
|
<artifactId>frontend-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<!-- Download NPM tools -->
|
|
|
|
<execution>
|
|
|
|
<id>setup-node</id>
|
|
|
|
<goals>
|
|
|
|
<goal>install-node-and-npm</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>initialize</phase>
|
|
|
|
</execution>
|
|
|
|
<!-- Download NPM packages -->
|
|
|
|
<execution>
|
|
|
|
<id>npm-install-common</id>
|
|
|
|
<phase>initialize</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>npm</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<workingDirectory>${dir.common}</workingDirectory>
|
|
|
|
<arguments>${args.npm.install}</arguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<nodeVersion>${node.version}</nodeVersion>
|
|
|
|
<installDirectory>${project.basedir}</installDirectory>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
|
2021-12-22 07:27:33 +00:00
|
|
|
<profile>
|
|
|
|
<id>community</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>!product</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources-community</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2017-03-23 10:59:19 +00:00
|
|
|
<profile>
|
|
|
|
<id>product</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>product</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources-product</directory>
|
|
|
|
</resource>
|
2020-05-11 10:38:27 +00:00
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/node_modules/rcue/**</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
2017-03-23 10:59:19 +00:00
|
|
|
</resources>
|
2017-09-18 19:32:43 +00:00
|
|
|
</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>
|