pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>fr.pavnay</groupId>
  5. <artifactId>word-lister</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <dependencies>
  8. <!-- Tools -->
  9. <dependency>
  10. <groupId>commons-cli</groupId>
  11. <artifactId>commons-cli</artifactId>
  12. <version>1.4</version>
  13. </dependency>
  14. <dependency>
  15. <groupId>org.apache.commons</groupId>
  16. <artifactId>commons-lang3</artifactId>
  17. <version>3.0</version>
  18. </dependency>
  19. <!-- Unit testing -->
  20. <dependency>
  21. <groupId>junit</groupId>
  22. <artifactId>junit</artifactId>
  23. <version>4.12</version>
  24. <scope>test</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.github.stefanbirkner</groupId>
  28. <artifactId>system-rules</artifactId>
  29. <version>1.16.0</version>
  30. <scope>test</scope>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <artifactId>maven-assembly-plugin</artifactId>
  37. <version>3.1.0</version>
  38. <configuration>
  39. <descriptorRefs>
  40. <descriptorRef>jar-with-dependencies</descriptorRef>
  41. </descriptorRefs>
  42. <archive>
  43. <manifest>
  44. <mainClass>fr.pavnay.wordlister.Main</mainClass>
  45. </manifest>
  46. </archive>
  47. </configuration>
  48. <executions>
  49. <execution>
  50. <id>make-assembly</id> <!-- this is used for inheritance merges -->
  51. <phase>package</phase> <!-- bind to the packaging phase -->
  52. <goals>
  53. <goal>single</goal>
  54. </goals>
  55. </execution>
  56. </executions>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>