2015-01-22 13:59:30 +01:00
|
|
|
<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>
|
|
|
|
<groupId>com.minres.scviewer</groupId>
|
|
|
|
<artifactId>com.minres.scviewer.parent</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
2015-10-22 22:12:18 +02:00
|
|
|
<module>../com.minres.scviewer.target</module>
|
2015-01-22 13:59:30 +01:00
|
|
|
<module>../com.minres.scviewer.database</module>
|
|
|
|
<module>../com.minres.scviewer.database.sqlite</module>
|
|
|
|
<module>../com.minres.scviewer.database.text</module>
|
|
|
|
<module>../com.minres.scviewer.database.vcd</module>
|
2015-11-03 22:29:42 +01:00
|
|
|
<module>../com.minres.scviewer.database.ui</module>
|
|
|
|
<module>../com.minres.scviewer.database.ui.swt</module>
|
2015-11-14 11:24:34 +01:00
|
|
|
<module>../com.opcoach.e4.preferences</module>
|
2015-10-22 22:12:18 +02:00
|
|
|
<module>../com.minres.scviewer.e4.application</module>
|
2015-01-22 13:59:30 +01:00
|
|
|
<module>../com.minres.scviewer.ui</module>
|
2015-11-03 22:29:42 +01:00
|
|
|
<module>../com.minres.scviewer.feature</module>
|
2015-01-22 13:59:30 +01:00
|
|
|
<module>../com.minres.scviewer.updateSite</module>
|
2015-10-22 22:12:18 +02:00
|
|
|
<module>../com.minres.scviewer.e4.product</module>
|
2015-01-22 13:59:30 +01:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
2015-10-22 22:12:18 +02:00
|
|
|
<tycho-version>0.23.1</tycho-version>
|
2015-12-02 20:34:34 +01:00
|
|
|
<tycho-extras-version>${tycho-version}</tycho-extras-version>
|
|
|
|
<groovy-eclipse-compiler-version>2.8.0-01</groovy-eclipse-compiler-version>
|
2015-11-03 22:29:42 +01:00
|
|
|
<!-- <groovy-eclipse-batch-version>2.0.5</groovy-eclipse-batch-version> -->
|
2015-10-22 22:12:18 +02:00
|
|
|
<groovy-eclipse-batch-version>2.1.8-01</groovy-eclipse-batch-version>
|
2015-11-03 22:29:42 +01:00
|
|
|
|
2015-01-22 13:59:30 +01:00
|
|
|
</properties>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2015-10-22 22:12:18 +02:00
|
|
|
<id>mars</id>
|
2015-01-22 13:59:30 +01:00
|
|
|
<layout>p2</layout>
|
2015-10-22 22:12:18 +02:00
|
|
|
<url>http://download.eclipse.org/releases/mars</url>
|
2015-01-22 13:59:30 +01:00
|
|
|
</repository>
|
|
|
|
<repository>
|
2015-10-22 22:12:18 +02:00
|
|
|
<id>GRECLIPSE</id>
|
2015-01-22 13:59:30 +01:00
|
|
|
<layout>p2</layout>
|
2015-10-22 22:12:18 +02:00
|
|
|
<url>http://dist.springsource.org/snapshot/GRECLIPSE/e4.5</url>
|
2015-01-22 13:59:30 +01:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
|
|
<artifactId>tycho-maven-plugin</artifactId>
|
2015-10-22 22:12:18 +02:00
|
|
|
<version>${tycho-version}</version>
|
2015-01-22 13:59:30 +01:00
|
|
|
<extensions>true</extensions>
|
|
|
|
</plugin>
|
2015-10-22 22:12:18 +02:00
|
|
|
|
2015-01-22 13:59:30 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
|
|
<artifactId>target-platform-configuration</artifactId>
|
2015-10-22 22:12:18 +02:00
|
|
|
<version>${tycho-version}</version>
|
2015-01-22 13:59:30 +01:00
|
|
|
<configuration>
|
|
|
|
<environments>
|
|
|
|
<environment>
|
|
|
|
<os>linux</os>
|
|
|
|
<ws>gtk</ws>
|
|
|
|
<arch>x86</arch>
|
|
|
|
</environment>
|
|
|
|
<environment>
|
|
|
|
<os>linux</os>
|
|
|
|
<ws>gtk</ws>
|
|
|
|
<arch>x86_64</arch>
|
|
|
|
</environment>
|
|
|
|
<environment>
|
|
|
|
<os>win32</os>
|
|
|
|
<ws>win32</ws>
|
|
|
|
<arch>x86</arch>
|
|
|
|
</environment>
|
|
|
|
<environment>
|
|
|
|
<os>win32</os>
|
|
|
|
<ws>win32</ws>
|
|
|
|
<arch>x86_64</arch>
|
|
|
|
</environment>
|
|
|
|
<environment>
|
|
|
|
<os>macosx</os>
|
|
|
|
<ws>cocoa</ws>
|
|
|
|
<arch>x86_64</arch>
|
|
|
|
</environment>
|
|
|
|
</environments>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-11-03 22:29:42 +01:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.tycho.extras</groupId>
|
|
|
|
<artifactId>tycho-source-feature-plugin</artifactId>
|
|
|
|
<version>${tycho-extras-version}</version>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>source-feature</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>source-feature</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2015-12-02 20:34:34 +01:00
|
|
|
|
2015-11-03 22:29:42 +01:00
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<!-- provide plug-ins not containing any source code -->
|
|
|
|
<plugin id="org.codehaus.groovy" />
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
|
|
<artifactId>tycho-source-plugin</artifactId>
|
|
|
|
<version>${tycho-version}</version>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>plugin-source</id>
|
|
|
|
<goals>
|
|
|
|
<goal>plugin-source</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
|
|
<artifactId>tycho-p2-plugin</artifactId>
|
|
|
|
<version>${tycho-version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attached-p2-metadata</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>p2-metadata</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-12-02 20:34:34 +01:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
|
|
<artifactId>tycho-versions-plugin</artifactId>
|
|
|
|
<version>${tycho-version}</version>
|
|
|
|
</plugin>
|
2015-01-22 13:59:30 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|