smarthome/distribution/pom.xml

92 строки
3.1 KiB
XML

<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.smarthome</groupId>
<artifactId>smarthome</artifactId>
<version>0.8.0-SNAPSHOT</version>
</parent>
<artifactId>eclipsesmarthome-incubation</artifactId>
<packaging>pom</packaging>
<name>Eclipse SmartHome Distribution</name>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<id>distro-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/assemble/repo.xml</descriptor>
<descriptor>src/assemble/designer-win.xml</descriptor>
<descriptor>src/assemble/designer-win64.xml</descriptor>
<descriptor>src/assemble/designer-macosx64.xml</descriptor>
<descriptor>src/assemble/designer-linux.xml</descriptor>
<descriptor>src/assemble/designer-linux64.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.eclipse.smarthome.products</groupId>
<artifactId>org.eclipse.smarthome.designer.product</artifactId>
<version>${project.version}</version>
<type>zip</type>
<classifier>win32.win32.x86</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.smarthome.products</groupId>
<artifactId>org.eclipse.smarthome.designer.product</artifactId>
<version>${project.version}</version>
<type>zip</type>
<classifier>win32.win32.x86_64</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.smarthome.products</groupId>
<artifactId>org.eclipse.smarthome.designer.product</artifactId>
<version>${project.version}</version>
<type>zip</type>
<classifier>macosx.cocoa.x86_64</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.smarthome.products</groupId>
<artifactId>org.eclipse.smarthome.designer.product</artifactId>
<version>${project.version}</version>
<type>zip</type>
<classifier>linux.gtk.x86</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.smarthome.products</groupId>
<artifactId>org.eclipse.smarthome.designer.product</artifactId>
<version>${project.version}</version>
<type>zip</type>
<classifier>linux.gtk.x86_64</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.smarthome.products</groupId>
<artifactId>org.eclipse.smarthome.repo</artifactId>
<version>${project.version}</version>
<type>zip</type>
</dependency>
</dependencies>
</project>