Guest User

Untitled

a guest
Dec 15th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <groupId>com.digitalligue</groupId>
  4. <artifactId>interviewproject</artifactId>
  5. <version>1.0-SNAPSHOT</version>
  6. <packaging>war</packaging>
  7.  
  8. <properties >
  9. <spring.boot.version>1.5.9.RELEASE</spring.boot.version>
  10. <h2.db.version>1.4.196</h2.db.version>
  11. <main.basedir>${basedir}/../..</main.basedir>
  12. <m2eclipse.wtp.contextRoot>/</m2eclipse.wtp.contextRoot>
  13.  
  14. </properties>
  15.  
  16. <parent>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-parent</artifactId>
  19. <version>1.5.9.RELEASE</version>
  20. <relativePath />
  21. </parent>
  22.  
  23.  
  24. <dependencies>
  25.  
  26.  
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-test</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-security</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-jdbc</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-web</artifactId>
  43. </dependency>
  44.  
  45. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  46. <dependency>
  47. <groupId>com.google.code.gson</groupId>
  48. <artifactId>gson</artifactId>
  49. <version>2.8.2</version>
  50. </dependency>
  51. <!-- https://mvnrepository.com/artifact/org.webjars.bower/jquery -->
  52. <dependency>
  53. <groupId>org.webjars.bower</groupId>
  54. <artifactId>jquery</artifactId>
  55. <version>3.2.1</version>
  56. </dependency>
  57.  
  58.  
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-tomcat</artifactId>
  62. <scope>provided</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.tomcat.embed</groupId>
  66. <artifactId>tomcat-embed-jasper</artifactId>
  67. <scope>provided</scope>
  68. </dependency>
  69.  
  70. <dependency>
  71. <groupId>javax.servlet</groupId>
  72. <artifactId>jstl</artifactId>
  73. <version>1.2</version>
  74. </dependency>
  75.  
  76.  
  77.  
  78. </dependencies>
  79. <build>
  80. <finalName>Library</finalName>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-maven-plugin</artifactId>
  85. </plugin>
  86.  
  87. </plugins>
  88. </build>
Add Comment
Please, Sign In to add comment