pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) 2014 Sebastian Stenzel
  4. This file is licensed under the terms of the MIT license.
  5. See the LICENSE.txt file for more info.
  6. Contributors:
  7. Sebastian Stenzel - initial API and implementation
  8. -->
  9. <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">
  10. <modelVersion>4.0.0</modelVersion>
  11. <parent>
  12. <groupId>de.sebastianstenzel.oce</groupId>
  13. <artifactId>oce-main</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. </parent>
  16. <artifactId>oce-ui</artifactId>
  17. <name>Open Cloud Encryptor GUI</name>
  18. <properties>
  19. <exec.mainClass>de.sebastianstenzel.oce.ui.MainApplication</exec.mainClass>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>de.sebastianstenzel.oce</groupId>
  24. <artifactId>oce-webdav</artifactId>
  25. <version>${project.parent.version}</version>
  26. </dependency>
  27. <!-- JSON -->
  28. <dependency>
  29. <groupId>com.fasterxml.jackson.core</groupId>
  30. <artifactId>jackson-databind</artifactId>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-assembly-plugin</artifactId>
  38. <configuration>
  39. <archive>
  40. <manifestEntries>
  41. <JavaFX-Version>${javafx.version}</JavaFX-Version>
  42. <JavaFX-Application-Class>${exec.mainClass}</JavaFX-Application-Class>
  43. <Main-Class>${exec.mainClass}</Main-Class>
  44. </manifestEntries>
  45. </archive>
  46. <descriptorRefs>
  47. <descriptorRef>jar-with-dependencies</descriptorRef>
  48. </descriptorRefs>
  49. </configuration>
  50. <executions>
  51. <execution>
  52. <id>assemble-all</id>
  53. <phase>package</phase>
  54. <goals>
  55. <goal>single</goal>
  56. </goals>
  57. </execution>
  58. </executions>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>