pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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>org.cryptomator</groupId>
  13. <artifactId>main</artifactId>
  14. <version>1.0.1</version>
  15. </parent>
  16. <artifactId>uber-jar</artifactId>
  17. <packaging>pom</packaging>
  18. <name>Single über jar with all dependencies</name>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.cryptomator</groupId>
  22. <artifactId>ui</artifactId>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <artifactId>maven-assembly-plugin</artifactId>
  29. <executions>
  30. <execution>
  31. <id>make-assembly</id>
  32. <phase>package</phase>
  33. <goals>
  34. <goal>single</goal>
  35. </goals>
  36. </execution>
  37. </executions>
  38. <configuration>
  39. <finalName>Cryptomator-${project.parent.version}</finalName>
  40. <descriptorRefs>
  41. <descriptorRef>jar-with-dependencies</descriptorRef>
  42. </descriptorRefs>
  43. <appendAssemblyId>false</appendAssemblyId>
  44. <archive>
  45. <manifestEntries>
  46. <Main-Class>org.cryptomator.ui.Cryptomator</Main-Class>
  47. <Implementation-Version>${project.version}</Implementation-Version>
  48. </manifestEntries>
  49. </archive>
  50. </configuration>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. </project>