説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pom.xml 8.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.shinsoft</groupId>
  8. <artifactId>sgiipserver</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <groupId>com.shinsoft</groupId>
  12. <artifactId>generator</artifactId>
  13. <version>1.0.0</version>
  14. <name>generator</name>
  15. <properties>
  16. <maven.compiler.source>8</maven.compiler.source>
  17. <maven.compiler.target>8</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-logging</artifactId>
  28. </exclusion>
  29. <exclusion>
  30. <groupId>org.hibernate</groupId>
  31. <artifactId>hibernate-validator</artifactId>
  32. </exclusion>
  33. </exclusions>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-openfeign-core</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>fastjson</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.oracle.database.jdbc</groupId>
  50. <artifactId>ojdbc8</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.oracle.database.nls</groupId>
  54. <artifactId>orai18n</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>mysql</groupId>
  58. <artifactId>mysql-connector-java</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.freemarker</groupId>
  62. <artifactId>freemarker</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.baomidou</groupId>
  66. <artifactId>mybatis-plus-boot-starter</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.baomidou</groupId>
  70. <artifactId>mybatis-plus-generator</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>cn.hutool</groupId>
  78. <artifactId>hutool-all</artifactId>
  79. </dependency>
  80. <!-- <dependency>-->
  81. <!-- <groupId>io.swagger</groupId>-->
  82. <!-- <artifactId>swagger-annotations</artifactId>-->
  83. <!-- </dependency>-->
  84. <dependency>
  85. <groupId>io.springfox</groupId>
  86. <artifactId>springfox-swagger2</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>io.springfox</groupId>
  90. <artifactId>springfox-swagger-ui</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.commons</groupId>
  94. <artifactId>commons-lang3</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.xerial</groupId>
  98. <artifactId>sqlite-jdbc</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.dameng</groupId>
  102. <artifactId>DmJdbcDriver18</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.squareup.okhttp3</groupId>
  106. <artifactId>okhttp</artifactId>
  107. </dependency>
  108. <!-- 公共方法和接口-->
  109. <dependency>
  110. <groupId>com.shinsoft</groupId>
  111. <artifactId>tools</artifactId>
  112. <version>1.0.1</version>
  113. <scope>system</scope>
  114. <systemPath>${project.basedir}/../lib/tools-1.0.1.jar</systemPath>
  115. </dependency>
  116. <!-- <dependency>-->
  117. <!-- <groupId>com.shinsoft</groupId>-->
  118. <!-- <artifactId>framework-api</artifactId>-->
  119. <!-- <version>1.0.1</version>-->
  120. <!-- <scope>system</scope>-->
  121. <!-- <systemPath>${project.basedir}/../lib/framework-api-1.0.1.jar</systemPath>-->
  122. <!-- </dependency>-->
  123. <!-- 公共方法和接口-->
  124. </dependencies>
  125. <build>
  126. <resources>
  127. <resource>
  128. <directory>src/main/java</directory>
  129. <targetPath>${project.build.directory}/classes/mapper</targetPath>
  130. <includes>
  131. <include>**/*.xml</include>
  132. </includes>
  133. <filtering>false</filtering>
  134. </resource>
  135. <resource>
  136. <directory>src/main/resources</directory>
  137. <filtering>false</filtering>
  138. </resource>
  139. </resources>
  140. <plugins>
  141. <plugin>
  142. <groupId>org.apache.maven.plugins</groupId>
  143. <artifactId>maven-jar-plugin</artifactId>
  144. <configuration>
  145. <archive>
  146. <manifest>
  147. <addClasspath>true</addClasspath>
  148. <classpathPrefix>lib/</classpathPrefix>
  149. <mainClass>com.shinsoft.App</mainClass>
  150. </manifest>
  151. <manifestEntries>
  152. <Class-Path> lib/tools-1.0.1.jar </Class-Path>
  153. </manifestEntries>
  154. </archive>
  155. <outputDirectory>
  156. <!-- ${project.build.directory}-->
  157. ${project.basedir}/../lib
  158. </outputDirectory>
  159. </configuration>
  160. </plugin>
  161. <plugin>
  162. <groupId>org.apache.maven.plugins</groupId>
  163. <artifactId>maven-dependency-plugin</artifactId>
  164. <executions>
  165. <execution>
  166. <id>copy</id>
  167. <phase>compile</phase>
  168. <goals>
  169. <goal>copy-dependencies</goal>
  170. </goals>
  171. <configuration>
  172. <outputDirectory>
  173. ${project.build.directory}/lib
  174. <!-- ${project.basedir}/../lib/lib-->
  175. </outputDirectory>
  176. </configuration>
  177. </execution>
  178. <execution>
  179. <id>sys</id>
  180. <phase>compile</phase>
  181. <goals>
  182. <goal>copy-dependencies</goal>
  183. </goals>
  184. <configuration>
  185. <includeScope>system</includeScope>
  186. </configuration>
  187. </execution>
  188. </executions>
  189. </plugin>
  190. <plugin>
  191. <groupId>org.apache.maven.plugins</groupId>
  192. <artifactId>maven-resources-plugin</artifactId>
  193. <executions>
  194. <execution>
  195. <id>copy-resource</id>
  196. <phase>package</phase>
  197. <goals>
  198. <goal>copy-resources</goal>
  199. </goals>
  200. <configuration>
  201. <outputDirectory>
  202. <!-- ${output.path}/${project.artifactId}-->
  203. ${project.build.directory}
  204. <!-- /home/${project.artifactId}-->
  205. </outputDirectory>
  206. <resources>
  207. <resource>
  208. <directory>${project.basedir}/src/main/resources/</directory>
  209. <includes>
  210. <include>config.properties</include>
  211. <include>init.db</include>
  212. </includes>
  213. </resource>
  214. </resources>
  215. </configuration>
  216. </execution>
  217. </executions>
  218. </plugin>
  219. </plugins>
  220. </build>
  221. </project>