2023-03-03 12:56:53 +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-js-parent</artifactId>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<version>999.0.0-SNAPSHOT</version>
|
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>keycloak-js-adapter</artifactId>
|
|
|
|
|
|
|
|
<name>Keycloak JavaScript Adapter</name>
|
|
|
|
<description>A client-side JavaScript OpenID Connect library that can be used to secure web applications.</description>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
2023-09-27 09:25:45 +00:00
|
|
|
<skip>false</skip>
|
2023-03-03 12:56:53 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>create-target-dir</id>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<mkdir dir="./target"/>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.eirslett</groupId>
|
|
|
|
<artifactId>frontend-maven-plugin</artifactId>
|
|
|
|
<executions>
|
2024-09-30 12:05:18 +00:00
|
|
|
<execution>
|
|
|
|
<!-- Skip execution of build with an empty phase. -->
|
|
|
|
<id>pnpm-build</id>
|
|
|
|
<phase/>
|
|
|
|
</execution>
|
2023-03-03 12:56:53 +00:00
|
|
|
<execution>
|
2023-05-05 16:03:24 +00:00
|
|
|
<id>pack</id>
|
2023-03-03 12:56:53 +00:00
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
2023-05-05 16:03:24 +00:00
|
|
|
<goal>pnpm</goal>
|
2023-03-03 12:56:53 +00:00
|
|
|
</goals>
|
|
|
|
<configuration>
|
2023-05-05 16:03:24 +00:00
|
|
|
<arguments>pack --pack-destination=target</arguments>
|
2023-03-03 12:56:53 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2023-09-27 09:25:45 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-artifacts</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>attach-artifact</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifacts>
|
2023-10-04 06:00:53 +00:00
|
|
|
<artifact>
|
|
|
|
<file>target/keycloak-js-${project.version.npm}.tgz</file>
|
2023-09-27 09:25:45 +00:00
|
|
|
<type>tar.gz</type>
|
|
|
|
</artifact>
|
|
|
|
</artifacts>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2023-03-03 12:56:53 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2023-05-15 22:40:21 +00:00
|
|
|
</project>
|