Advertisement
jbjares

pom_spring_basic

Sep 3rd, 2015
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. <properties>
  2. <jdk.version>1.7</jdk.version>
  3. <spring.version>4.1.1.RELEASE</spring.version>
  4. <jstl.version>1.2</jstl.version>
  5. <junit.version>4.11</junit.version>
  6. </properties>
  7.  
  8. <dependencies>
  9. <!-- Spring Core -->
  10. <dependency>
  11. <groupId>org.springframework</groupId>
  12. <artifactId>spring-core</artifactId>
  13. <version>${spring.version}</version>
  14. </dependency>
  15.  
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-web</artifactId>
  19. <version>${spring.version}</version>
  20. </dependency>
  21.  
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-webmvc</artifactId>
  25. <version>${spring.version}</version>
  26. </dependency>
  27.  
  28. <!-- jstl -->
  29. <dependency>
  30. <groupId>jstl</groupId>
  31. <artifactId>jstl</artifactId>
  32. <version>${jstl.version}</version>
  33. </dependency>
  34.  
  35. <dependency>
  36. <groupId>javax</groupId>
  37. <artifactId>javaee-api</artifactId>
  38. <version>7.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <version>${junit.version}</version>
  44. <scope>test</scope>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <finalName>MyWebApp</finalName>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <version>3.1</version>
  54. <configuration>
  55. <source>${jdk.version}</source>
  56. <target>${jdk.version}</target>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement