Advertisement
Guest User

web-pom

a guest
Jan 14th, 2017
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  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. <parent>
  5. <groupId>hr.croz.bspoljaric</groupId>
  6. <artifactId>croz-parent</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>croz-web</artifactId>
  10. <packaging>war</packaging>
  11. <name>croz-web</name>
  12. <description>Web module</description>
  13.  
  14.  
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-webmvc</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-web</artifactId>
  23. <version>4.1.4.RELEASE</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>javax.servlet</groupId>
  27. <artifactId>javax.servlet-api</artifactId>
  28. <version>3.1.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>javax.servlet.jsp</groupId>
  32. <artifactId>javax.servlet.jsp-api</artifactId>
  33. <version>2.3.1</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>javax.servlet</groupId>
  37. <artifactId>jstl</artifactId>
  38. <version>1.2</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>hr.croz.bspoljaric</groupId>
  42. <artifactId>croz-dao</artifactId>
  43. <version>${project.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>hr.croz.bspoljaric</groupId>
  47. <artifactId>croz-service</artifactId>
  48. <version>${project.version}</version>
  49. </dependency>
  50. </dependencies>
  51.  
  52. <build>
  53. <pluginManagement>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-compiler-plugin</artifactId>
  58. <version>3.2</version>
  59. <configuration>
  60. <source>1.8</source>
  61. <target>1.8</target>
  62. </configuration>
  63. </plugin>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-war-plugin</artifactId>
  67. <version>2.4</version>
  68. <configuration>
  69. <warSourceDirectory>src/main/webapp</warSourceDirectory>
  70. <warName>croz-web</warName>
  71. <failOnMissingWebXml>false</failOnMissingWebXml>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. </pluginManagement>
  76. <finalName>Spring4MVCHelloWorldNoXMLDemo</finalName>
  77. </build>
  78.  
  79.  
  80. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement