2020-01-13 13:14:34 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2015-01-22 13:59:30 +01:00
|
|
|
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>
|
2021-01-14 23:51:18 +01:00
|
|
|
<version>2.12.0-SNAPSHOT</version>
|
2015-01-22 13:59:30 +01:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
2021-01-10 14:40:25 +01:00
|
|
|
<module>releng/com.minres.scviewer.target</module>
|
2020-06-01 17:26:56 +02:00
|
|
|
<module>plugins/com.minres.scviewer.database</module>
|
|
|
|
<module>plugins/com.minres.scviewer.database.sqlite</module>
|
|
|
|
<module>plugins/com.minres.scviewer.database.text</module>
|
|
|
|
<module>plugins/com.minres.scviewer.database.vcd</module>
|
|
|
|
<module>tests/com.minres.scviewer.database.test</module>
|
|
|
|
<module>plugins/com.minres.scviewer.database.ui.swt</module>
|
|
|
|
<module>plugins/com.minres.scviewer.e4.application</module>
|
|
|
|
<module>plugins/com.minres.scviewer.ui</module>
|
2020-06-11 08:31:24 +02:00
|
|
|
<module>features/com.minres.scviewer.database.feature</module>
|
|
|
|
<module>features/com.minres.scviewer.ui.feature</module>
|
2020-06-01 17:26:56 +02:00
|
|
|
<module>features/com.minres.scviewer.feature</module>
|
2020-06-21 12:21:30 +02:00
|
|
|
<module>features/com.minres.scviewer.e4.platform.feature</module>
|
2020-06-11 08:31:24 +02:00
|
|
|
<module>features/com.minres.scviewer.e4.feature</module>
|
2021-01-10 14:40:25 +01:00
|
|
|
<module>releng/com.minres.scviewer.updateSite</module>
|
2020-10-04 18:30:18 +02:00
|
|
|
<module>products/com.minres.scviewer.e4.product</module>
|
2015-01-22 13:59:30 +01:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
2021-01-10 13:09:45 +01:00
|
|
|
<project-version>2.11.0-SNAPSHOT</project-version>
|
2020-01-13 13:14:34 +01:00
|
|
|
<tycho-version>1.5.0</tycho-version>
|
2020-05-08 08:38:43 +02:00
|
|
|
<groovy-eclipse-compiler-version>3.6.0-03</groovy-eclipse-compiler-version>
|
|
|
|
<groovy-eclipse-batch-version>3.0.3-01</groovy-eclipse-batch-version>
|
2015-01-22 13:59:30 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2021-01-15 15:52:28 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>parse-version</id>
|
|
|
|
<goals>
|
|
|
|
<goal>parse-version</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-01-22 13:59:30 +01:00
|
|
|
<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>
|
2021-01-10 13:09:45 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
|
|
<artifactId>tycho-versions-plugin</artifactId>
|
|
|
|
<version>${tycho-version}</version>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
|
|
<artifactId>target-platform-configuration</artifactId>
|
|
|
|
<version>${tycho-version}</version>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<artifact>
|
|
|
|
<groupId>com.minres.scviewer</groupId>
|
|
|
|
<artifactId>com.minres.scviewer.target</artifactId>
|
2021-01-14 23:51:18 +01:00
|
|
|
<version>2.12.0-SNAPSHOT</version>
|
2021-01-10 13:09:45 +01:00
|
|
|
</artifact>
|
|
|
|
</target>
|
|
|
|
<environments>
|
|
|
|
<environment>
|
|
|
|
<os>linux</os>
|
|
|
|
<ws>gtk</ws>
|
|
|
|
<arch>x86_64</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>
|
2020-01-13 13:14:34 +01:00
|
|
|
<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>
|
|
|
|
|
2021-01-10 13:09:45 +01:00
|
|
|
<plugin>
|
2020-06-11 08:31:24 +02:00
|
|
|
<groupId>org.eclipse.tycho.extras</groupId>
|
|
|
|
<artifactId>tycho-source-feature-plugin</artifactId>
|
|
|
|
<version>${tycho-version}</version>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>source-feature</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>source-feature</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
2021-01-10 13:09:45 +01:00
|
|
|
<plugin id="com.google.guava" />
|
2021-01-10 13:12:32 +01:00
|
|
|
<plugin id="org.hamcrest.core" />
|
|
|
|
<plugin id="org.junit" />
|
2021-01-10 13:09:45 +01:00
|
|
|
<plugin id="com.minres.scviewer.e4.product" />
|
|
|
|
<plugin id="com.minres.scviewer.e4.product_slim" />
|
|
|
|
<plugin id="org.eclipse.core.filesystem.linux.x86_64" />
|
|
|
|
<plugin id="org.eclipse.core.filesystem.win32.x86_64" />
|
|
|
|
<plugin id="com.opcoach.e4.preferences" />
|
2020-06-11 08:31:24 +02:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-01-13 13:14:34 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
|
|
<artifactId>tycho-p2-plugin</artifactId>
|
|
|
|
<version>${tycho-version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-p2-metadata</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>p2-metadata</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
2015-01-22 13:59:30 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-06-01 17:26:56 +02:00
|
|
|
</project>
|