Guest User

Untitled

a guest
Dec 6th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. <properties>
  2. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  3. <maven.compiler.source>1.8</maven.compiler.source>
  4. <maven.compiler.target>1.8</maven.compiler.target>
  5. </properties>
  6.  
  7. <dependencies>
  8. <dependency>
  9. <groupId>ch.qos.logback</groupId>
  10. <artifactId>logback-core</artifactId>
  11. <version>1.2.3</version>
  12. </dependency>
  13. <dependency>
  14. <groupId>ch.qos.logback</groupId>
  15. <artifactId>logback-classic</artifactId>
  16. <version>1.2.3</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>junit</groupId>
  20. <artifactId>junit</artifactId>
  21. <version>4.12</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.hamcrest</groupId>
  26. <artifactId>hamcrest-library</artifactId>
  27. <version>1.3</version>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.mockito</groupId>
  32. <artifactId>mockito-core</artifactId>
  33. <version>2.23.0</version>
  34. <scope>test</scope>
  35. </dependency>
  36. </dependencies>
  37.  
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-assembly-plugin</artifactId>
  43. <version>3.0.0</version>
  44. <configuration>
  45. <descriptorRefs>
  46. <descriptorRef>jar-with-dependencies</descriptorRef>
  47. </descriptorRefs>
  48. <archive>
  49. <manifest>
  50. <!--TODO: Fill in main class-->
  51. <!--<mainClass></mainClass>-->
  52. </manifest>
  53. </archive>
  54. </configuration>
  55. <executions>
  56. <execution>
  57. <phase>package</phase>
  58. <goals>
  59. <goal>single</goal>
  60. </goals>
  61. </execution>
  62. </executions>
  63. </plugin>
  64. </plugins>
  65. </build>
Add Comment
Please, Sign In to add comment