No Description

pom.xml 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.3.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <!--<packaging>war</packaging>-->
  12. <groupId>com.one</groupId>
  13. <artifactId>jonhon</artifactId>
  14. <version>1.0.0-SNAPSHOT</version>
  15. <name>jonhon</name>
  16. <description>Demo project for Spring Boot</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.mybatis.spring.boot</groupId>
  27. <artifactId>mybatis-spring-boot-starter</artifactId>
  28. <version>2.1.3</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-aop</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.oracle.database.jdbc</groupId>
  36. <artifactId>ojdbc8</artifactId>
  37. <scope>runtime</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.easyproject</groupId>
  41. <artifactId>orai18n</artifactId>
  42. <version>12.1.0.2.0</version>
  43. </dependency>
  44. <!--spring-->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. <exclusions>
  50. <exclusion>
  51. <groupId>org.junit.vintage</groupId>
  52. <artifactId>junit-vintage-engine</artifactId>
  53. </exclusion>
  54. </exclusions>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. <version>1.16.12</version>
  60. </dependency>
  61. <!-- JSONObject对象依赖的jar包 -->
  62. <dependency>
  63. <groupId>commons-beanutils</groupId>
  64. <artifactId>commons-beanutils</artifactId>
  65. <version>1.9.3</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>commons-collections</groupId>
  69. <artifactId>commons-collections</artifactId>
  70. <version>3.2.1</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>commons-lang</groupId>
  74. <artifactId>commons-lang</artifactId>
  75. <version>2.6</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>commons-logging</groupId>
  79. <artifactId>commons-logging</artifactId>
  80. <version>1.1.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>net.sf.ezmorph</groupId>
  84. <artifactId>ezmorph</artifactId>
  85. <version>1.0.6</version>
  86. </dependency>
  87. <!--token依赖 -->
  88. <dependency>
  89. <groupId>com.auth0</groupId>
  90. <artifactId>java-jwt</artifactId>
  91. <version>3.4.0</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.vaadin.external.google</groupId>
  95. <artifactId>android-json</artifactId>
  96. <version>0.0.20131108.vaadin1</version>
  97. <scope>compile</scope>
  98. </dependency>
  99. <!--文件处理-->
  100. <dependency>
  101. <groupId>commons-io</groupId>
  102. <artifactId>commons-io</artifactId>
  103. <version>2.4</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>commons-fileupload</groupId>
  107. <artifactId>commons-fileupload</artifactId>
  108. <version>1.3.1</version>
  109. </dependency>
  110. <!--json转换-->
  111. <dependency>
  112. <groupId>com.alibaba</groupId>
  113. <artifactId>fastjson</artifactId>
  114. <version>1.2.4</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.poi</groupId>
  118. <artifactId>poi</artifactId>
  119. <version>3.9</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.httpcomponents</groupId>
  123. <artifactId>httpclient</artifactId>
  124. <version>4.3.5</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>axis</groupId>
  128. <artifactId>axis</artifactId>
  129. <version>1.4</version>
  130. </dependency>
  131. </dependencies>
  132. <build>
  133. <plugins>
  134. <plugin>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-maven-plugin</artifactId>
  137. </plugin>
  138. <!-- <plugin>
  139. <groupId>org.apache.maven.plugins</groupId>
  140. <artifactId>maven-surefire-plugin</artifactId>
  141. <version>2.22.2</version>
  142.   &lt;!&ndash;版本根据你自己的版本写 &ndash;&gt;
  143. <configuration>
  144. <skipTests>true</skipTests>
  145. </configuration>
  146. </plugin>-->
  147. </plugins>
  148. <!--解决idea中无法扫描Java文件中xml,yml,properties文件的配置!-->
  149. <resources>
  150. <resource>
  151. <directory>src/main/java</directory>
  152. <includes>
  153. <include>**/*.xml</include>
  154. <include>**/*.yml</include>
  155. <include>**/*.properties</include>
  156. </includes>
  157. <filtering>false</filtering>
  158. </resource>
  159. <resource>
  160. <directory>src/main/resources</directory>
  161. <includes>
  162. <include>**/*.xml</include>
  163. <include>**/*.yml</include>
  164. <include>**/*.properties</include>
  165. </includes>
  166. <filtering>false</filtering>
  167. </resource>
  168. </resources>
  169. </build>
  170. </project>