2024-12-15 18:41:01 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-02-18 09:34:37 +00:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2019-04-05 06:28:49 +00:00
|
|
|
<groupId>org.openhab.ui.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.ui.reactor.bundles</artifactId>
|
2024-12-15 17:12:57 +00:00
|
|
|
<version>5.0.0-SNAPSHOT</version>
|
2019-02-18 09:34:37 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>org.openhab.ui.basic</artifactId>
|
|
|
|
|
2019-06-05 19:58:11 +00:00
|
|
|
<name>openHAB UI :: Bundles :: Basic UI</name>
|
2019-02-18 09:34:37 +00:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.ui</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.io.rest.sitemap</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.eirslett</groupId>
|
|
|
|
<artifactId>frontend-maven-plugin</artifactId>
|
|
|
|
|
|
|
|
<configuration>
|
2024-08-31 16:39:53 +00:00
|
|
|
<nodeVersion>v20.16.0</nodeVersion>
|
|
|
|
<npmVersion>10.8.1</npmVersion>
|
2019-02-18 09:34:37 +00:00
|
|
|
<environmentVariables>
|
|
|
|
<npm_config_cache>${project.basedir}/npm_cache</npm_config_cache>
|
|
|
|
</environmentVariables>
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>Install node and npm</id>
|
|
|
|
<goals>
|
|
|
|
<goal>install-node-and-npm</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
<execution>
|
|
|
|
<id>npm install</id>
|
|
|
|
<goals>
|
|
|
|
<goal>npm</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
<execution>
|
|
|
|
<id>gulp build</id>
|
|
|
|
<goals>
|
|
|
|
<goal>npm</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<arguments>run build</arguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|