pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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>tjdepot</artifactId>
  7. <version>1.0</version>
  8. <name>tjdepot</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.gbase</groupId>
  43. <artifactId>druid</artifactId>
  44. <version>1.0.28</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.hibernate</groupId>
  48. <artifactId>hibernate-core</artifactId>
  49. <version>5.2.17.Final</version>
  50. </dependency>
  51. <!-- <dependency>
  52. <groupId>com.oracle</groupId>
  53. <artifactId>ojdbc14</artifactId>
  54. <version>10.2.0.4.0</version>
  55. </dependency> -->
  56. <!-- <dependency>
  57. <groupId>com.oracle</groupId>
  58. <artifactId>ojdbc14</artifactId>
  59. <version>10.2.0.4.0</version>
  60. <scope>runtime</scope>
  61. </dependency> -->
  62. <!-- <dependency>
  63. <groupId>org.mybatis.spring.boot</groupId>
  64. <artifactId>mybatis-spring-boot-starter</artifactId>
  65. <version>1.3.2</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.github.pagehelper</groupId>
  69. <artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
  70. <version>1.2.3</version>
  71. </dependency> -->
  72. <dependency>
  73. <groupId>com.github.pagehelper</groupId>
  74. <artifactId>pagehelper-spring-boot-starter</artifactId>
  75. <version>1.2.12</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>cn.hutool</groupId>
  79. <artifactId>hutool-all</artifactId>
  80. <version>5.3.7</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.unis.springcloud</groupId>
  84. <artifactId>common</artifactId>
  85. <version>0.0.5-SNAPSHOT</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.mybatis.generator</groupId>
  89. <artifactId>mybatis-generator-core</artifactId>
  90. <version>1.3.2</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.alibaba</groupId>
  94. <artifactId>fastjson</artifactId>
  95. <version>1.2.47</version>
  96. </dependency>
  97. </dependencies>
  98. <build>
  99. <defaultGoal>compile</defaultGoal>
  100. <plugins>
  101. <plugin>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-maven-plugin</artifactId>
  104. <configuration>
  105. <mainClass>com.jusfoun.ydylsz.Starter</mainClass>
  106. <finalName>tjdepot</finalName>
  107. <!-- <source>${java.version}</source>-->
  108. <!-- <target>${java.version}</target>-->
  109. <!-- <encoding>UTF-8</encoding>-->
  110. <fork>true</fork>
  111. </configuration>
  112. </plugin>
  113. </plugins>
  114. <finalName>tjdepot</finalName>
  115. </build>
  116. <!-- 金碟中间件配置 -->
  117. <profiles>
  118. <profile>
  119. <id>tomcat</id>
  120. <dependencies>
  121. <dependency>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-starter-web</artifactId>
  124. </dependency>
  125. </dependencies>
  126. </profile>
  127. <profile>
  128. <id>apusic</id>
  129. <activation>
  130. <activeByDefault>true</activeByDefault>
  131. </activation>
  132. <dependencies>
  133. <dependency>
  134. <groupId>com.apusic</groupId>
  135. <artifactId>aams-spring-boot-jdbc</artifactId>
  136. <version>10</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.apusic</groupId>
  140. <artifactId>apusic</artifactId>
  141. <version>1.4.2</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-starter-tomcat</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.springframework.boot</groupId>
  149. <artifactId>spring-boot-starter-web</artifactId>
  150. <!-- <exclusions>
  151. <exclusion>
  152. <groupId>org.springframework.boot</groupId>
  153. <artifactId>spring-boot-starter-tomcat</artifactId>
  154. </exclusion>
  155. </exclusions> -->
  156. </dependency>
  157. <dependency>
  158. <groupId>com.apusic</groupId>
  159. <artifactId>aams-spring-boot-starter</artifactId>
  160. <version>1.4.2</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.apusic</groupId>
  164. <artifactId>aams-spring-boot-core</artifactId>
  165. <version>1.4.2</version>
  166. <scope>provided</scope>
  167. <exclusions>
  168. <exclusion>
  169. <groupId>javax.servlet</groupId>
  170. <artifactId>servlet-api</artifactId>
  171. </exclusion>
  172. </exclusions>
  173. </dependency>
  174. <dependency>
  175. <groupId>com.apusic</groupId>
  176. <artifactId>aams-spring-boot-jsp</artifactId>
  177. <version>1.4.2</version>
  178. </dependency>
  179. </dependencies>
  180. </profile>
  181. </profiles>
  182. </project>