pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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. <groupId>net.sppan</groupId>
  5. <artifactId>DingDingOA</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <!--<packaging>war</packaging>-->
  8. <packaging>jar</packaging>
  9. <repositories>
  10. <repository>
  11. <id>nexus-aliyun</id>
  12. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  13. </repository>
  14. </repositories>
  15. <!-- Inherit defaults from Spring Boot -->
  16. <parent>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-parent</artifactId>
  19. <version>1.5.9.RELEASE</version>
  20. </parent>
  21. <properties>
  22. <shiro.version>1.2.4</shiro.version>
  23. <java.version>1.8</java.version>
  24. </properties>
  25. <!-- Add typical dependencies for a web application -->
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-resources-plugin</artifactId>
  30. <version>2.6</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. <!-- 容器启动,启用下面代码 -->
  36. <!--
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-tomcat</artifactId>
  41. </exclusion>
  42. </exclusions>
  43. -->
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-freemarker</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-data-jpa</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-cache</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-test</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>druid</artifactId>
  65. <version>1.0.15</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>net.sf.ehcache</groupId>
  69. <artifactId>ehcache</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.shiro</groupId>
  73. <artifactId>shiro-core</artifactId>
  74. <version>${shiro.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.shiro</groupId>
  78. <artifactId>shiro-spring</artifactId>
  79. <version>${shiro.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.shiro</groupId>
  83. <artifactId>shiro-web</artifactId>
  84. <version>${shiro.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>mysql</groupId>
  88. <artifactId>mysql-connector-java</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.commons</groupId>
  92. <artifactId>commons-lang3</artifactId>
  93. <version>3.3.2</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>joda-time</groupId>
  97. <artifactId>joda-time</artifactId>
  98. </dependency>
  99. <!-- https://mvnrepository.com/artifact/org.jadira.usertype/usertype.core -->
  100. <dependency>
  101. <groupId>org.jadira.usertype</groupId>
  102. <artifactId>usertype.core</artifactId>
  103. <version>5.0.0.GA</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.jadira.usertype</groupId>
  107. <artifactId>usertype.spi</artifactId>
  108. <version>5.0.0.GA</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.alibaba</groupId>
  112. <artifactId>fastjson</artifactId>
  113. <version>1.2.15</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.httpcomponents</groupId>
  117. <artifactId>httpclient</artifactId>
  118. <version>4.5.5</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>net.sf.json-lib</groupId>
  122. <artifactId>json-lib</artifactId>
  123. <version>2.4</version>
  124. <classifier>jdk15</classifier>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.json</groupId>
  128. <artifactId>json</artifactId>
  129. <version>20171018</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.jsoup</groupId>
  133. <artifactId>jsoup</artifactId>
  134. <version>1.10.3</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-devtools</artifactId>
  139. <optional>true</optional><!-- optional=true,依赖不会传递,该项目依赖devtools;之后依赖myboot项目的项目如果想要使用devtools,需要重新引入 -->
  140. </dependency>
  141. <dependency>
  142. <groupId>org.springframework.boot</groupId>
  143. <artifactId>spring-boot-configuration-processor</artifactId>
  144. <optional>true</optional>
  145. </dependency>
  146. <dependency>
  147. <groupId>ant</groupId>
  148. <artifactId>ant</artifactId>
  149. <version>1.6.5</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.itextpdf</groupId>
  153. <artifactId>itextpdf</artifactId>
  154. <version>5.5.11</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.itextpdf.tool</groupId>
  158. <artifactId>xmlworker</artifactId>
  159. <version>5.5.11</version>
  160. </dependency>
  161. <!-- 工具类 2024-03-06 by owen -->
  162. <dependency>
  163. <groupId>cn.hutool</groupId>
  164. <artifactId>hutool-all</artifactId>
  165. <version>5.3.3</version>
  166. </dependency>
  167. </dependencies>
  168. <build>
  169. <plugins>
  170. <plugin>
  171. <groupId>org.apache.maven.plugins</groupId>
  172. <artifactId>maven-compiler-plugin</artifactId>
  173. <configuration>
  174. <source>${java.version}</source>
  175. <target>${java.version}</target>
  176. <encoding>UTF-8</encoding>
  177. </configuration>
  178. </plugin>
  179. <plugin>
  180. <groupId>org.springframework.boot</groupId>
  181. <artifactId>spring-boot-maven-plugin</artifactId>
  182. <configuration>
  183. <mainClass>com.fourdage.Application</mainClass>
  184. <fork>true</fork>
  185. </configuration>
  186. </plugin>
  187. </plugins>
  188. <!--<finalName>${parent.artifactId}</finalName>-->
  189. <finalName>age_dingding_oa</finalName>
  190. </build>
  191. </project>