Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. <dependencies>
  2. <dependency>
  3. <groupId>javax.servlet</groupId>
  4. <artifactId>javax.servlet-api</artifactId>
  5. <version>3.1.0</version>
  6. <scope>provided</scope>
  7. </dependency>
  8. <dependency>
  9. <groupId>commons-io</groupId>
  10. <artifactId>commons-io</artifactId>
  11. <version>2.6</version>
  12. </dependency>
  13. <dependency>
  14. <groupId>junit</groupId>
  15. <artifactId>junit</artifactId>
  16. <version>4.12</version>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework</groupId>
  21. <artifactId>spring-test</artifactId>
  22. <version>5.0.1.RELEASE</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <!--
  26. mockServletResponse.setContentType() needs
  27. org/springframework/http/MediaType
  28. which is in:
  29. -->
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-web</artifactId>
  33. <version>5.0.1.RELEASE</version>
  34. <scope>test</scope>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <finalName>echoServlet</finalName>
  39. <plugins>
  40. <plugin>
  41. <artifactId>maven-compiler-plugin</artifactId>
  42. <version>3.8.0</version>
  43. <configuration>
  44. <source>11</source>
  45. <target>11</target>
  46. </configuration>
  47. </plugin>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-eclipse-plugin</artifactId>
  51. <version>2.10</version>
  52. <configuration>
  53. <downloadSources>true</downloadSources>
  54. <downloadJavadocs>false</downloadJavadocs>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement