如何仅针对特定操作系统构建Eclipse RCP

时间:2013-11-23 19:48:52

标签: eclipse maven eclipse-rcp rcp tycho

我已经使用maven和tycho建立了一个Eclipse RCP构建。目前,我不需要几个操作系统的构建结果。我如何限制它只是为特定的操作系统构建?

1 个答案:

答案 0 :(得分:3)

我对tycho不太了解,但我知道有一个单独的插件来配置平台。

<build>
    <plugins>
    <plugin>
    <groupId>org.eclipse.tycho</groupId>
    <artifactId>target-platform-configuration</artifactId>
    <version>${tycho-version}</version>
    <configuration>
        <environments>
        <environment>
            <os>win32</os>
            <ws>win32</ws>
            <arch>x86</arch>
            </environment>
                    <environment>
                        <os>linux</os>
                        <ws>gtk</ws>
                        <arch>x86_64</arch>
                    </environment>
        </environments>
    </configuration>
    </plugin>
</plugins>
</build>

我确实在谷歌找到了一些链接。谷歌搜索“tycho目标平台”可能会找到你更多。

[http://www.vogella.com/articles/EclipseTycho/article.html] [http://wiki.eclipse.org/Tycho/Plugins_Explained#target-platform-configuration]