| <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.scada.deploy</groupId> |
| <artifactId>org.eclipse.scada.deploy.packages.common</artifactId> |
| <version>0.3.0</version> |
| <relativePath>../common</relativePath> |
| </parent> |
| |
| <groupId>org.eclipse.scada.deploy</groupId> |
| <artifactId>org.eclipse.scada.configuration</artifactId> |
| <packaging>pom</packaging> |
| |
| <description> |
| Eclipse NeoSCADA base configuration package |
| </description> |
| |
| <properties> |
| <srcBase>${baseDir}/../../src</srcBase> |
| </properties> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>jdeb</artifactId> |
| <groupId>org.vafer</groupId> |
| |
| <configuration> |
| <skipPOMs>false</skipPOMs> |
| </configuration> |
| |
| <executions> |
| <execution> |
| <phase>package</phase> |
| <goals> |
| <goal>jdeb</goal> |
| </goals> |
| <configuration> |
| <dataSet> |
| <data> |
| <src>${srcBase}/default/eclipsescada.common</src> |
| <dst>eclipsescada</dst> |
| <type>file</type> |
| <mapper> |
| <type>perm</type> |
| <prefix>/etc/default</prefix> |
| </mapper> |
| </data> |
| </dataSet> |
| </configuration> |
| </execution> |
| |
| </executions> |
| </plugin> |
| |
| </plugins> |
| </build> |
| |
| </project> |