【发布时间】:2018-02-05 13:46:51
【问题描述】:
我的 Eclipse RCP 应用程序是通过 Maven 构建的。我很想通过 Inno Setup 自动构建设置。但是我不知道在哪里包含 Inno Setup exe 和 .iss,它也应该包含在自动 Jenkins 构建中,那么在哪里放置 Inno Setup?
这是 Google 告诉我的,但我总是收到 IOException,因为找不到 ISCC.exe。
有没有人做过这样的 Maven-Inno Setup-build?
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>ISCC.exe</executable>
<arguments>
<argument>setup.iss</argument>
</arguments>
</configuration>
</plugin>
【问题讨论】:
标签: maven jenkins inno-setup