2018-09-03 16:17:36 +02: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>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm</artifactId>
|
|
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm-ui-components</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
|
<name>scm-ui-components</name>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2018-09-05 14:57:42 +02:00
|
|
|
|
2018-09-03 16:17:36 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.github.sdorra</groupId>
|
|
|
|
|
<artifactId>buildfrontend-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<node>
|
2018-09-05 14:57:42 +02:00
|
|
|
<version>${nodejs.version}</version>
|
2018-09-03 16:17:36 +02:00
|
|
|
</node>
|
|
|
|
|
<pkgManager>
|
|
|
|
|
<type>YARN</type>
|
2018-09-05 14:57:42 +02:00
|
|
|
<version>${yarn.version}</version>
|
2018-09-03 16:17:36 +02:00
|
|
|
</pkgManager>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2018-09-05 14:32:49 +02:00
|
|
|
<id>install</id>
|
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>install</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>bootstrap</id>
|
2018-09-03 16:17:36 +02:00
|
|
|
<phase>process-resources</phase>
|
|
|
|
|
<goals>
|
2018-09-05 14:32:49 +02:00
|
|
|
<goal>run</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<script>bootstrap</script>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
2018-10-02 10:31:49 +02:00
|
|
|
<id>unlink</id>
|
2018-09-05 14:32:49 +02:00
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>run</goal>
|
2018-09-03 16:17:36 +02:00
|
|
|
</goals>
|
2018-09-05 14:32:49 +02:00
|
|
|
<configuration>
|
2018-10-02 10:31:49 +02:00
|
|
|
<script>unlink</script>
|
2018-09-05 14:32:49 +02:00
|
|
|
</configuration>
|
2018-09-03 16:17:36 +02:00
|
|
|
</execution>
|
2018-10-01 17:22:03 +02:00
|
|
|
<execution>
|
2018-10-02 10:31:49 +02:00
|
|
|
<id>link</id>
|
|
|
|
|
<phase>package</phase>
|
2018-10-01 17:22:03 +02:00
|
|
|
<goals>
|
|
|
|
|
<goal>run</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
2018-10-02 10:31:49 +02:00
|
|
|
<script>link</script>
|
2018-10-01 17:22:03 +02:00
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
2018-09-03 16:17:36 +02:00
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2018-09-05 14:57:42 +02:00
|
|
|
|
2018-09-03 16:17:36 +02:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|
|
|
|
|
|