mirror of
https://github.com/iterate-ch/cyberduck.git
synced 2026-05-26 19:10:49 +00:00
Allow verify build phase to create executable bundle.
This commit is contained in:
@@ -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
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user