pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.yihu</groupId>
  6. <artifactId>editor</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>war</packaging>
  9. <name>editor</name>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>1.3.2.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. </properties>
  21. <dependencies>
  22. <!-- <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-tomcat</artifactId>
  25. <scope>provided</scope>
  26. </dependency>-->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-data-jpa</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>mysql</groupId>
  46. <artifactId>mysql-connector-java</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.poi</groupId>
  50. <artifactId>poi</artifactId>
  51. <version>3.11</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springside</groupId>
  55. <artifactId>springside-core</artifactId>
  56. <version>4.2.3-GA</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.fasterxml.jackson.module</groupId>
  60. <artifactId>jackson-module-jaxb-annotations</artifactId>
  61. <version>2.4.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.json</groupId>
  65. <artifactId>json</artifactId>
  66. <version>20160212</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.google.guava</groupId>
  70. <artifactId>guava</artifactId>
  71. <version>17.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.commons</groupId>
  75. <artifactId>commons-lang3</artifactId>
  76. <version>3.3.2</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>javax.servlet</groupId>
  80. <artifactId>jstl</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.tomcat.embed</groupId>
  84. <artifactId>tomcat-embed-jasper</artifactId>
  85. <scope>compile</scope>
  86. </dependency>
  87. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  88. <dependency>
  89. <groupId>org.apache.httpcomponents</groupId>
  90. <artifactId>httpclient</artifactId>
  91. <version>4.4</version>
  92. </dependency>
  93. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  94. <dependency>
  95. <groupId>org.apache.httpcomponents</groupId>
  96. <artifactId>httpcore</artifactId>
  97. <version>4.4.6</version>
  98. </dependency>
  99. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
  100. <dependency>
  101. <groupId>org.apache.httpcomponents</groupId>
  102. <artifactId>httpmime</artifactId>
  103. <version>4.5.3</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-security</artifactId>
  108. </dependency>
  109. </dependencies>
  110. <build>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-maven-plugin</artifactId>
  115. </plugin>
  116. </plugins>
  117. </build>
  118. </project>