pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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.jusfoun.lsjccView</groupId> -->
  6. <artifactId>tjksh</artifactId>
  7. <version>1.0</version>
  8. <name>tjksh</name>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>com.jusfoun</groupId>
  12. <artifactId>base</artifactId>
  13. <version>2.1</version>
  14. </parent>
  15. <properties>
  16. <docker.image.prefix>springboot</docker.image.prefix>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.jusfoun</groupId>
  21. <artifactId>common</artifactId>
  22. <version>1.0</version>
  23. <exclusions>
  24. <exclusion>
  25. <groupId>javax.servlet</groupId>
  26. <artifactId>javax.servlet-api</artifactId>
  27. <!-- <version>3.1.0</version> -->
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <!-- <dependency>
  32. <groupId>cn.easyproject</groupId>
  33. <artifactId>ojdbc7</artifactId>
  34. <version>12.1.0.2.0</version>
  35. </dependency> -->
  36. <dependency>
  37. <groupId>com.gbase8s</groupId>
  38. <artifactId>ifxjdbc</artifactId>
  39. <version>1.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.unis.springcloud</groupId>
  43. <artifactId>common</artifactId>
  44. <version>1.0.1</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.gbase</groupId>
  48. <artifactId>druid</artifactId>
  49. <version>1.0.28</version>
  50. </dependency>
  51. <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-eureka -->
  52. <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-netflix-eureka-client -->
  53. <dependency>
  54. <groupId>org.hibernate</groupId>
  55. <artifactId>hibernate-core</artifactId>
  56. <version>5.2.17.Final</version>
  57. </dependency>
  58. <!-- <dependency>
  59. <groupId>com.oracle</groupId>
  60. <artifactId>ojdbc14</artifactId>
  61. <version>10.2.0.4.0</version>
  62. </dependency> -->
  63. <!-- <dependency>
  64. <groupId>com.oracle</groupId>
  65. <artifactId>ojdbc14</artifactId>
  66. <version>10.2.0.4.0</version>
  67. <scope>runtime</scope>
  68. </dependency> -->
  69. <dependency>
  70. <groupId>mysql</groupId>
  71. <artifactId>mysql-connector-java</artifactId>
  72. <version>8.0.18</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.mybatis.spring.boot</groupId>
  76. <artifactId>mybatis-spring-boot-starter</artifactId>
  77. <version>1.3.2</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.github.pagehelper</groupId>
  81. <artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
  82. <version>1.2.3</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.github.pagehelper</groupId>
  86. <artifactId>pagehelper-spring-boot-starter</artifactId>
  87. <version>1.2.12</version>
  88. </dependency>
  89. <!--<dependency>
  90. <groupId>tk.mybatis</groupId>
  91. <artifactId>mapper-spring-boot-starter</artifactId>
  92. <version>RELEASE</version>
  93. <exclusions>
  94. <exclusion>
  95. <groupId>javax.persistence</groupId>
  96. <artifactId>persistence-api</artifactId>
  97. </exclusion>
  98. </exclusions>
  99. </dependency>-->
  100. <dependency>
  101. <groupId>commons-io</groupId>
  102. <artifactId>commons-io</artifactId>
  103. <version>2.6</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>cn.hutool</groupId>
  107. <artifactId>hutool-all</artifactId>
  108. <version>5.3.7</version>
  109. </dependency>
  110. <!--<dependency>
  111. <groupId>tk.mybatis</groupId>
  112. <artifactId>mapper</artifactId>
  113. <version>4.0.0</version>
  114. </dependency>-->
  115. <dependency>
  116. <groupId>com.unis.springcloud</groupId>
  117. <artifactId>common</artifactId>
  118. <version>1.0.0</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>javax.persistence</groupId>
  122. <artifactId>persistence-api</artifactId>
  123. <version>1.0.2</version>
  124. </dependency>
  125. <!-- <dependency>-->
  126. <!-- <groupId>redis.clients</groupId>-->
  127. <!-- <artifactId>jedis</artifactId>-->
  128. <!-- <version>4.2.3</version>-->
  129. <!-- </dependency>-->
  130. <dependency>
  131. <groupId>com.alibaba</groupId>
  132. <artifactId>fastjson</artifactId>
  133. <version>1.2.47</version>
  134. </dependency>
  135. </dependencies>
  136. <build>
  137. <defaultGoal>compile</defaultGoal>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-maven-plugin</artifactId>
  142. <configuration>
  143. <mainClass>com.jusfoun.ydylsz.Starter</mainClass>
  144. <finalName>tjksh</finalName>
  145. <!-- <source>${java.version}</source>-->
  146. <!-- <target>${java.version}</target>-->
  147. <!-- <encoding>UTF-8</encoding>-->
  148. <fork>false</fork>
  149. </configuration>
  150. </plugin>
  151. </plugins>
  152. <finalName>tjksh</finalName>
  153. </build>
  154. <!-- 金碟中间件配置 -->
  155. <profiles>
  156. <profile>
  157. <id>tomcat</id>
  158. <dependencies>
  159. <dependency>
  160. <groupId>org.springframework.boot</groupId>
  161. <artifactId>spring-boot-starter-web</artifactId>
  162. </dependency>
  163. </dependencies>
  164. </profile>
  165. </profiles>
  166. </project>