Guest User

Untitled

a guest
Jul 27th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 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. <artifactId>SpringBootHelloWorld</artifactId>
  5. <packaging>jar</packaging>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <parent>
  8. <groupId>org.springframework.boot</groupId>
  9. <artifactId>spring-boot-starter-parent</artifactId>
  10. <version>1.5.6.RELEASE</version>
  11. </parent>
  12.  
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-tomcat</artifactId>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>javax.servlet</groupId>
  25. <artifactId>jstl</artifactId>
  26. </dependency>
  27.  
  28. <!-- Need this to compile JSP -->
  29. <dependency>
  30. <groupId>org.apache.tomcat.embed</groupId>
  31. <artifactId>tomcat-embed-jasper</artifactId>
  32. <scope>provided</scope>
  33. </dependency>
  34.  
  35. <dependency>
  36. <groupId>org.eclipse.jdt.core.compiler</groupId>
  37. <artifactId>ecj</artifactId>
  38. <version>4.6.1</version>
  39. <scope>provided</scope>
  40. </dependency>
  41.  
  42. <dependency>
  43. <groupId>org.apache.poi</groupId>
  44. <artifactId>poi</artifactId>
  45. <version>3.9</version>
  46. </dependency>
  47.  
  48. <dependency>
  49. <groupId>org.apache.poi</groupId>
  50. <artifactId>poi-ooxml</artifactId>
  51. <version>3.9</version>
  52. </dependency>
  53.  
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-data-jpa</artifactId>
  57. </dependency>
  58.  
  59. <dependency>
  60. <groupId>mysql</groupId>
  61. <artifactId>mysql-connector-java</artifactId>
  62. </dependency>
  63.  
  64. </dependencies>
  65.  
  66. <properties>
  67. <java.version>1.8</java.version>
  68. </properties>
  69.  
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-maven-plugin</artifactId>
  75. </plugin>
  76. </plugins>
  77. </build>
  78.  
  79. spring.mvc.view.prefix=src/main/webapp/WEB-INF/jsp/
  80. spring.mvc.view.suffix=.jsp
  81. logging.level.org.springframework.web=INFO
  82. spring.datasource.driver-class-name=com.mysql.jdbc.Driver
  83. spring.datasource.url=jdbc:mysql://localhost:3306/employeemanagement
  84. spring.datasource.username=root
  85. spring.datasource.password=root
Add Comment
Please, Sign In to add comment