pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. <parent>
  5. <groupId>cn.superdesk.libs</groupId>
  6. <artifactId>superdesk-libs</artifactId>
  7. <version>2.0.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>superdesk-libs-mybatis</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>cn.superdesk.libs</groupId>
  13. <artifactId>superdesk-libs-common</artifactId>
  14. <version>${project.parent.version}</version>
  15. <optional>true</optional>
  16. </dependency>
  17. <dependency>
  18. <groupId>cn.superdesk.libs</groupId>
  19. <artifactId>superdesk-libs-cache</artifactId>
  20. <version>${project.parent.version}</version>
  21. <optional>true</optional>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.data</groupId>
  25. <artifactId>spring-data-redis</artifactId>
  26. <version>2.1.2.RELEASE</version>
  27. <optional>true</optional>
  28. <exclusions>
  29. <exclusion>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-aop</artifactId>
  32. </exclusion>
  33. </exclusions>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.superdesk.libs</groupId>
  37. <artifactId>superdesk-libs-spring</artifactId>
  38. <version>${project.parent.version}</version>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-aop</artifactId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring-jdbc</artifactId>
  49. <version>${spring.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>spring-aop</artifactId>
  54. <version>${spring.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.mybatis</groupId>
  58. <artifactId>mybatis</artifactId>
  59. <version>${mybatis.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.mybatis</groupId>
  63. <artifactId>mybatis-spring</artifactId>
  64. <version>1.3.1</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.mybatis.generator</groupId>
  68. <artifactId>mybatis-generator-core</artifactId>
  69. <version>1.3.2</version>
  70. <optional>true</optional>
  71. </dependency>
  72. <dependency>
  73. <groupId>mysql</groupId>
  74. <artifactId>mysql-connector-java</artifactId>
  75. <version>5.1.31</version>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>javax.persistence</groupId>
  80. <artifactId>persistence-api</artifactId>
  81. <version>1.0.2</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.javassist</groupId>
  85. <artifactId>javassist</artifactId>
  86. <version>3.21.0-GA</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.alibaba</groupId>
  90. <artifactId>druid</artifactId>
  91. <version>${druid.version}</version>
  92. <exclusions>
  93. <exclusion>
  94. <groupId>com.alibaba</groupId>
  95. <artifactId>tools</artifactId>
  96. </exclusion>
  97. </exclusions>
  98. <optional>true</optional>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.zaxxer</groupId>
  102. <artifactId>HikariCP</artifactId>
  103. <version>3.2.0</version>
  104. <optional>true</optional>
  105. </dependency>
  106. <dependency>
  107. <groupId>ognl</groupId>
  108. <artifactId>ognl</artifactId>
  109. <version>3.1.11</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>tk.mybatis</groupId>
  113. <artifactId>mapper</artifactId>
  114. <version>${mapper.version}</version>
  115. <optional>true</optional>
  116. </dependency>
  117. <!--<dependency>-->
  118. <!--<groupId>com.github.jsqlparser</groupId>-->
  119. <!--<artifactId>jsqlparser</artifactId>-->
  120. <!--<version>${jsqlparser.version}</version>-->
  121. <!--</dependency>-->
  122. <!--<dependency>-->
  123. <!--<groupId>org.projectlombok</groupId>-->
  124. <!--<artifactId>lombok</artifactId>-->
  125. <!--<version>${lombok.version}</version>-->
  126. <!--</dependency>-->
  127. </dependencies>
  128. <build>
  129. <plugins>
  130. <plugin>
  131. <groupId>org.apache.maven.plugins</groupId>
  132. <artifactId>maven-deploy-plugin</artifactId>
  133. <configuration>
  134. <skip>false</skip>
  135. </configuration>
  136. </plugin>
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-source-plugin</artifactId>
  140. <version>2.4</version>
  141. <executions>
  142. <execution>
  143. <id>attach-sources</id>
  144. <phase>verify</phase>
  145. <goals>
  146. <goal>jar-no-fork</goal>
  147. </goals>
  148. </execution>
  149. </executions>
  150. </plugin>
  151. </plugins>
  152. </build>
  153. </project>