如何在特定目标文件中插入文件

时间:2017-01-13 14:43:55

标签: java eclipse maven tycho

我有一个在eclipse下开发的osgi服务器,它运行在windows,macosx和linux上。 Tycho和maven正在完美地为这些平台进行目标构建配置。

现在,我需要根据最终的os + ws和arch plateform在最终的.zip文件中插入startup.sh或startup.bat。 有没有类似“ configuration.environments.environment.os ”之类的maven变量,我可以使用它来复制产品目标文件夹旁边的脚本文件夹,如下所示:

delivery_folder/
->x86_64/
->scripts/

以下是产品pom文件的摘录:

<plugin>
        <artifactId>maven-resources-plugin</artifactId>
        <version>3.0.2</version>
        <executions>
          <execution>
            <id>copy-resources</id>
            <phase>install</phase>
            <goals>
              <goal>copy-resources</goal>
            </goals>
            <configuration>
              <outputDirectory>${project.build.directory}/products/${project.artifactId}/${configuration.environments.environment.os}</outputDirectory>
              <resources>          
                <resource>
                  <directory>scripts</directory>
                  <filtering>true</filtering>
                </resource>
              </resources>              
            </configuration>            
          </execution>
        </executions>
      </plugin>

我想使用第谷目标环境机制。

我设置了Tycho:

<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho.version}</version>
 <configuration>
 <environments>
    <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>

感谢您的帮助

2 个答案:

答案 0 :(得分:0)

我会使用构建配置文件来完成此任务。您可以为您支持的任何平台指定配置文件,也可以选择添加activation

<profiles>
    <profile>
        <id>win32-win32-x86</id>
        <activation>
            <os>
                <arch>x86</arch>
                <family>windows</family>
            </os>
        </activation>
        <properties>
            <target.os>win32</target.os>
            <target.ws>win32</target.ws>
            <target.arch>x86</target.arch>
        </properties>
    </profile>
    <profile>
        <id>win32-win32-x86_64</id>
        <activation>
            <os>
                <arch>x86_64</arch>
                <family>windows</family>
            </os>
        </activation>
        <properties>
            <target.os>win32</target.os>
            <target.ws>win32</target.ws>
            <target.arch>x86_64</target.arch>
        </properties>
    </profile>
    <profile>
        <id>gtk-linux-x86</id>
        <activation>
            <os>
                <arch>i386</arch>
                <family>unix</family>
                <name>linux</name>
            </os>
        </activation>
        <properties>
            <target.os>linux</target.os>
            <target.ws>gtk</target.ws>
            <target.arch>x86</target.arch>
        </properties>
    </profile>
    <profile>
        <id>gtk-linux-amd64</id>
        <activation>
            <os>
                <arch>amd64</arch>
                <family>unix</family>
                <name>linux</name>
            </os>
        </activation>
        <properties>
            <target.os>linux</target.os>
            <target.ws>gtk</target.ws>
            <target.arch>x86_64</target.arch>
        </properties>
    </profile>
    <profile>
        <id>cocoa-macosx-i386</id>
        <activation>
            <os>
                <arch>i386</arch>
                <family>unix</family>
                <name>mac os x</name>
            </os>
        </activation>
        <properties>
            <target.os>macosx</target.os>
            <target.ws>cocoa</target.ws>
            <target.arch>x86</target.arch>
        </properties>
    </profile>
    <profile>
        <id>cocoa-macosx-x86_64</id>
        <activation>
            <os>
                <arch>x86_64</arch>
                <family>unix</family>
                <name>mac os x</name>
            </os>
        </activation>
        <properties>
            <target.os>macosx</target.os>
            <target.ws>cocoa</target.ws>
            <target.arch>x86_64</target.arch>
        </properties>
    </profile>
</profiles>

这将设置三个可用于配置目录的属性:

  • ${target.os}
  • ${target.ws}
  • ${target.arch}

然后在maven-resources-plugin配置中:

<outputDirectory>${project.build.directory}/products/${project.artifactId}/${target.os}.${target.ws}.${target.arch}</outputDirectory>

答案 1 :(得分:0)

您可以使用PDE样式的根文件,而不是使用相当低级 maven-resoures-plugin,这允许特定于平台的文件包含在eclipse-repository中(我假设是生产你的ZIP的包装类型:

root.win32.win32.x86=rootfiles

有关详细信息,请参阅Tycho FAQ。 (请注意,即将推出的Tycho version 1.0.0将通过支持root.folder.<subfolder>语法进一步改善Tycho中的rootfiles支持。)