pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright (c) 2014 Sebastian Stenzel This file is licensed under the terms of the MIT license. See the LICENSE.txt file for more info. Contributors: Sebastian Stenzel - initial API and implementation -->
  3. <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">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.cryptomator</groupId>
  7. <artifactId>main</artifactId>
  8. <version>1.3.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>uber-jar</artifactId>
  11. <name>Single über jar with all dependencies</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.cryptomator</groupId>
  15. <artifactId>launcher</artifactId>
  16. </dependency>
  17. </dependencies>
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <artifactId>maven-shade-plugin</artifactId>
  22. <version>3.0.0</version>
  23. <executions>
  24. <execution>
  25. <id>make-assembly</id>
  26. <phase>package</phase>
  27. <goals>
  28. <goal>shade</goal>
  29. </goals>
  30. </execution>
  31. </executions>
  32. <configuration>
  33. <finalName>Cryptomator-${project.version}</finalName>
  34. <createDependencyReducedPom>false</createDependencyReducedPom>
  35. <transformers>
  36. <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  37. <manifestEntries>
  38. <Main-Class>org.cryptomator.launcher.Cryptomator</Main-Class>
  39. <Implementation-Version>${project.version}</Implementation-Version>
  40. </manifestEntries>
  41. </transformer>
  42. <transformer implementation="com.github.edwgiz.mavenShadePlugin.log4j2CacheTransformer.PluginsCacheFileTransformer">
  43. </transformer>
  44. </transformers>
  45. </configuration>
  46. <dependencies>
  47. <dependency>
  48. <groupId>com.github.edwgiz</groupId>
  49. <artifactId>maven-shade-plugin.log4j2-cachefile-transformer</artifactId>
  50. <version>${log4j.version}</version>
  51. </dependency>
  52. </dependencies>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>