зеркало из https://github.com/mozilla/smarthome.git
73 строки
2.2 KiB
XML
73 строки
2.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>org.eclipse.smarthome.bundles</groupId>
|
|
<artifactId>model</artifactId>
|
|
<version>0.7.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<bundle.symbolicName>org.eclipse.smarthome.model.persistence</bundle.symbolicName>
|
|
<bundle.namespace>org.eclipse.smarthome.model.persistence</bundle.namespace>
|
|
</properties>
|
|
|
|
<groupId>org.eclipse.smarthome.model</groupId>
|
|
<artifactId>org.eclipse.smarthome.model.persistence</artifactId>
|
|
|
|
<name>Eclipse SmartHome Model Persistence</name>
|
|
<packaging>eclipse-plugin</packaging>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>java</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<includeProjectDependencies>true</includeProjectDependencies>
|
|
<includePluginDependencies>true</includePluginDependencies>
|
|
<mainClass>org.eclipse.emf.mwe2.launch.runtime.Mwe2Launcher</mainClass>
|
|
<arguments>
|
|
<argument>file://${project.basedir}/src/org/eclipse/smarthome/model/persistence/GeneratePersistence.mwe2</argument>
|
|
<argument>
|
|
-p
|
|
</argument>
|
|
<argument>
|
|
runtimeProject=/${project.basedir}
|
|
</argument>
|
|
</arguments>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclipse.xtext</groupId>
|
|
<artifactId>org.eclipse.xtext.xtext</artifactId>
|
|
<version>${xtext-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.xtext</groupId>
|
|
<artifactId>org.eclipse.xtext.xbase</artifactId>
|
|
<version>${xtext-version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.eclipse.xtend</groupId>
|
|
<artifactId>xtend-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|