2024-12-15 18:49:23 +01: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-01-28 13:07:31 +01:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.reactor.bundles</artifactId>
|
2024-12-15 18:49:23 +01:00
|
|
|
<version>5.0.0-SNAPSHOT</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>org.openhab.core.model.script</artifactId>
|
|
|
|
|
|
|
|
<name>openHAB Core :: Bundles :: Model Script</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.model.persistence</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.thing</artifactId>
|
2019-06-11 10:20:04 +02:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.ephemeris</artifactId>
|
2019-01-28 13:07:31 +01:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.transform</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2021-02-27 10:33:32 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.semantics</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2019-01-28 13:07:31 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.voice</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.io.net</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2022-11-19 20:29:58 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.automation.module.script</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2022-12-05 22:08:42 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.automation.module.script.rulesupport</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2019-01-28 13:07:31 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>add-source</goal>
|
|
|
|
</goals>
|
2019-05-05 17:47:41 +02:00
|
|
|
<phase>generate-sources</phase>
|
2019-01-28 13:07:31 +01:00
|
|
|
<configuration>
|
|
|
|
<sources>
|
|
|
|
<source>src-gen</source>
|
|
|
|
<source>xtend-gen</source>
|
2019-06-26 06:42:37 +02:00
|
|
|
<source>resources</source>
|
2019-01-28 13:07:31 +01:00
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
2022-03-05 11:28:56 +01:00
|
|
|
<version>3.0.0</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<configuration>
|
2021-08-23 21:55:57 +02:00
|
|
|
<executable>java</executable>
|
2019-01-28 13:07:31 +01:00
|
|
|
<classpathScope>compile</classpathScope>
|
|
|
|
<arguments>
|
2021-08-23 21:55:57 +02:00
|
|
|
<argument>-classpath</argument>
|
|
|
|
<classpath/>
|
|
|
|
<argument>org.eclipse.emf.mwe2.launch.runtime.Mwe2Launcher</argument>
|
2019-12-27 11:10:17 +01:00
|
|
|
<argument>file://${project.basedir}/src/org/openhab/core/model/script/GenerateScript.mwe2</argument>
|
2019-01-28 13:07:31 +01:00
|
|
|
<argument>-p</argument>
|
|
|
|
<argument>rootPath=/${project.basedir}/..</argument>
|
|
|
|
</arguments>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2024-05-20 17:42:04 +02:00
|
|
|
<version>${slf4j.version}</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2024-05-20 17:42:04 +02:00
|
|
|
<version>${slf4j.version}</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
</dependency>
|
2021-08-23 21:55:57 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr-runtime</artifactId>
|
|
|
|
<version>3.2</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/../antlr-generator-3.2.0-patch.jar</systemPath>
|
|
|
|
</dependency>
|
2019-01-28 13:07:31 +01:00
|
|
|
</dependencies>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
2021-08-23 21:55:57 +02:00
|
|
|
<goal>exec</goal>
|
2019-01-28 13:07:31 +01:00
|
|
|
</goals>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.xtend</groupId>
|
|
|
|
<artifactId>xtend-maven-plugin</artifactId>
|
2024-10-01 21:10:34 +02:00
|
|
|
<configuration>
|
|
|
|
<useXbaseGenerated>false</useXbaseGenerated>
|
|
|
|
</configuration>
|
2019-01-28 13:07:31 +01:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2019-05-05 17:47:41 +02:00
|
|
|
<sourceDirectory>src</sourceDirectory>
|
2020-07-09 23:20:47 +02:00
|
|
|
<testSourceDirectory>src.moved/test/java</testSourceDirectory>
|
2019-01-28 13:07:31 +01:00
|
|
|
</build>
|
|
|
|
</project>
|