SCViewer/pom.xml

148 lines
4.2 KiB
XML
Raw Normal View History

<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>
<version>2.0.0-SNAPSHOT</version>
2015-01-22 13:59:30 +01:00
<packaging>pom</packaging>
<modules>
2020-06-01 17:26:56 +02:00
<module>com.minres.scviewer.target</module>
<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>
2020-06-01 17:26:56 +02:00
<module>p2repositories//com.minres.scviewer.updateSite</module>
<module>com.minres.scviewer.e4.product</module>
2020-10-04 17:42:01 +02:00
<module>com.minres.scviewer.e4.product_slim</module>
2015-01-22 13:59:30 +01:00
</modules>
<properties>
<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>
<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>
2020-06-20 18:04:57 +02: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>
2020-06-20 18:04:57 +02: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>
2020-06-14 15:27:27 +02:00
provide plug-ins not containing any source code
2020-06-11 08:31:24 +02:00
<plugin id="org.codehaus.groovy" />
</excludes>
</configuration>
</plugin>
2020-06-14 15:27:27 +02: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>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-versions-plugin</artifactId>
<version>${tycho-version}</version>
</plugin>
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>
<target>
<artifact>
<groupId>com.minres.scviewer</groupId>
<artifactId>com.minres.scviewer.target</artifactId>
<version>2.0.0-SNAPSHOT</version>
</artifact>
</target>
2015-01-22 13:59:30 +01:00
<environments>
2020-05-09 14:20:29 +02:00
<!-- <environment> -->
<!-- <os>linux</os> -->
<!-- <ws>gtk</ws> -->
<!-- <arch>x86</arch> -->
<!-- </environment> -->
2015-01-22 13:59:30 +01:00
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
2020-05-09 14:20:29 +02:00
<!-- <environment> -->
<!-- <os>win32</os> -->
<!-- <ws>win32</ws> -->
<!-- <arch>x86</arch> -->
<!-- </environment> -->
2015-01-22 13:59:30 +01:00
<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
2015-01-22 13:59:30 +01:00
</plugins>
</build>
2020-06-01 17:26:56 +02:00
</project>