pom.xml 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.cryptomator</groupId>
  5. <artifactId>main</artifactId>
  6. <version>0.11.0-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>installer-osx</artifactId>
  9. <packaging>pom</packaging>
  10. <name>Cryptomator Mac OS X installer</name>
  11. <properties>
  12. <javafx.application.name>Cryptomator</javafx.application.name>
  13. <exec.mainClass>org.cryptomator.ui.Cryptomator</exec.mainClass>
  14. <javafx.tools.ant.jar>${java.home}/../lib/ant-javafx.jar</javafx.tools.ant.jar>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.cryptomator</groupId>
  19. <artifactId>ui</artifactId>
  20. </dependency>
  21. </dependencies>
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <artifactId>maven-dependency-plugin</artifactId>
  26. <executions>
  27. <execution>
  28. <id>copy-libs</id>
  29. <phase>prepare-package</phase>
  30. </execution>
  31. </executions>
  32. </plugin>
  33. <plugin>
  34. <artifactId>maven-antrun-plugin</artifactId>
  35. <version>1.7</version>
  36. <executions>
  37. <execution>
  38. <id>create-deployment-bundle</id>
  39. <phase>install</phase>
  40. <goals>
  41. <goal>run</goal>
  42. </goals>
  43. <configuration>
  44. <target xmlns:fx="javafx:com.sun.javafx.tools.ant">
  45. <taskdef uri="javafx:com.sun.javafx.tools.ant" resource="com/sun/javafx/tools/ant/antlib.xml" classpath="${project.basedir}:${javafx.tools.ant.jar}" />
  46. <!-- Define application to build -->
  47. <fx:application id="fxApp" name="${javafx.application.name}" version="${project.version}" mainClass="${exec.mainClass}" />
  48. <!-- Create main application jar -->
  49. <fx:jar destfile="${project.build.directory}/Cryptomator-${project.parent.version}.jar">
  50. <fx:application refid="fxApp" />
  51. <fx:fileset dir="${project.build.directory}" includes="libs/ui-${project.version}.jar"/>
  52. <fx:resources>
  53. <fx:fileset dir="${project.build.directory}" type="jar" includes="libs/*.jar" excludes="libs/ui-${project.version}.jar" />
  54. </fx:resources>
  55. <fx:manifest>
  56. <fx:attribute name="Implementation-Vendor" value="cryptomator.org" />
  57. <fx:attribute name="Implementation-Version" value="${project.version}" />
  58. </fx:manifest>
  59. </fx:jar>
  60. <!-- Create native package -->
  61. <fx:deploy nativeBundles="dmg" outdir="${project.build.directory}" outfile="Cryptomator-${project.parent.version}" verbose="true">
  62. <fx:application refid="fxApp"/>
  63. <fx:info title="${javafx.application.name}" vendor="cryptomator.org" copyright="cryptomator.org" license="MIT" category="Utility" />
  64. <fx:platform javafx="2.2+" j2se="8.0">
  65. <fx:property name="logPath" value="~/Library/Logs/Cryptomator/cryptomator.log" />
  66. <fx:jvmarg value="-Xmx2048m"/>
  67. </fx:platform>
  68. <fx:resources>
  69. <fx:fileset dir="${project.build.directory}" type="jar" includes="Cryptomator-${project.parent.version}.jar"/>
  70. <fx:fileset dir="${project.build.directory}" type="jar" includes="libs/*.jar" excludes="libs/ui-${project.version}.jar"/>
  71. </fx:resources>
  72. <fx:permissions elevated="false" />
  73. <fx:preferences install="true" />
  74. </fx:deploy>
  75. </target>
  76. </configuration>
  77. </execution>
  78. </executions>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>