Files
SCM-Manager/scm-ui-components/pom.xml

89 lines
2.3 KiB
XML
Raw Normal View History

<?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
<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>
</node>
<pkgManager>
<type>YARN</type>
2018-09-05 14:57:42 +02:00
<version>${yarn.version}</version>
</pkgManager>
</configuration>
<executions>
<execution>
<id>install</id>
<phase>process-resources</phase>
<goals>
<goal>install</goal>
</goals>
</execution>
<execution>
<id>bootstrap</id>
<phase>process-resources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<script>bootstrap</script>
</configuration>
</execution>
<execution>
2018-10-02 10:31:49 +02:00
<id>unlink</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
2018-10-02 10:31:49 +02:00
<script>unlink</script>
</configuration>
</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>
<execution>
<id>deploy</id>
<phase>deploy</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<script>deploy</script>
</configuration>
</execution>
</executions>
</plugin>
2018-09-05 14:57:42 +02:00
</plugins>
</build>
</project>