Allow verify build phase to create executable bundle.

This commit is contained in:
David Kocher
2017-06-06 20:25:41 +02:00
parent 337b8890ce
commit 0f6e07ea14
2 changed files with 21 additions and 1 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ Libre FTP, SFTP, WebDAV, S3, Azure and OpenStack Swift browser for Mac and Windo
## Building
Run `mvn package -DskipTests` to build without running any tests.
Run `mvn verify -DskipTests` to build without running any tests.
## Running Tests
+20
View File
@@ -237,6 +237,26 @@
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>run-ant-build-target</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<property name="home" value="${main.basedir}"/>
<property name="version" value="${project.version}"/>
<property name="revision" value="${git.commitsCount}"/>
<property name="git.revision" value="${git.revision}"/>
<!-- 'Release' or 'Mac App Store' -->
<property name="xcode.configuration" value="${xcode.configuration}"/>
<property name="sparkle.feed" value="${sparkle.feed}"/>
<property name="sparkle.key.prefix" value="${sparkle.key.prefix}"/>
<ant antfile="${project.basedir}/build.xml" target="build" dir="."/>
</tasks>
</configuration>
</execution>
<execution>
<id>run-ant-package-target</id>
<phase>install</phase>