pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <parent>
  4. <artifactId>gw-cloud-platform-dcproj-pageoffice</artifactId>
  5. <groupId>cn.com.goldenwater</groupId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>gw-cloud-platform-dcproj-po-dao</artifactId>
  10. <packaging>jar</packaging>
  11. <properties>
  12. <spring.boot.version>2.1.3.RELEASE</spring.boot.version>
  13. <mybatis-spring.version>1.3.1</mybatis-spring.version>
  14. <mybatis.boot.version>1.1.1</mybatis.boot.version>
  15. <pagehelper.boot.version>1.2.3</pagehelper.boot.version>
  16. <druid.version>1.1.9</druid.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>cn.com.goldenwater</groupId>
  21. <artifactId>gw-cloud-core</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.com.goldenwater</groupId>
  26. <artifactId>gw-cloud-platform-dcproj-po-model</artifactId>
  27. <version>0.0.1-SNAPSHOT</version>
  28. </dependency>
  29. <!-- spring boot -->
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. <exclusions>
  34. <exclusion>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-tomcat</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.mybatis.spring.boot</groupId>
  42. <artifactId>mybatis-spring-boot-starter</artifactId>
  43. <version>${mybatis.boot.version}</version>
  44. </dependency>
  45. <!-- connection pool -->
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>druid-spring-boot-starter</artifactId>
  49. <version>${druid.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.github.pagehelper</groupId>
  53. <artifactId>pagehelper-spring-boot-starter</artifactId>
  54. <version>${pagehelper.boot.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>${oracle.driver.group}</groupId>
  58. <artifactId>${oracle.driver.id}</artifactId>
  59. <version>${oracle.driver.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. <version>8.0.29</version>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-surefire-plugin</artifactId>
  72. <configuration>
  73. <skip>true</skip>
  74. </configuration>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. </project>