pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.onemap</groupId>
  6. <artifactId>onemap</artifactId>
  7. <version>3.6.1</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <modules>
  11. <module>onemap-system</module>
  12. <module>onemap-file</module>
  13. <module>onemap-apply</module>
  14. <module>onemap-gserver</module>
  15. <module>onemap-overlap</module>
  16. </modules>
  17. <dependencies>
  18. <!--postgresql-->
  19. <dependency>
  20. <groupId>org.postgresql</groupId>
  21. <artifactId>postgresql</artifactId>
  22. <!--<scope>runtime</scope>-->
  23. </dependency>
  24. <!-- oracle -->
  25. <dependency>
  26. <groupId>com.oracle.database.jdbc</groupId>
  27. <artifactId>ojdbc6</artifactId>
  28. <version>11.2.0.4</version>
  29. </dependency>
  30. <!-- dm -->
  31. <dependency>
  32. <groupId>com.dameng</groupId>
  33. <artifactId>DmJdbcDriver18</artifactId>
  34. <version>8.1.3.62</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.onemap</groupId>
  38. <artifactId>onemap-common-core</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.projectlombok</groupId>
  42. <artifactId>lombok</artifactId>
  43. <version>1.18.24</version>
  44. </dependency>
  45. <!-- Mybatis-plus 依赖配置 -->
  46. <dependency>
  47. <groupId>com.baomidou</groupId>
  48. <artifactId>mybatis-plus-boot-starter</artifactId>
  49. <version>${spring-boot.mybatis-plus}</version>
  50. </dependency>
  51. <!-- <dependency>-->
  52. <!-- <groupId>com.baomidou</groupId>-->
  53. <!-- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>-->
  54. <!-- <version>3.5.2</version>-->
  55. <!-- </dependency>-->
  56. <dependency>
  57. <groupId>com.onemap</groupId>
  58. <artifactId>onemap-common-security</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.onemap</groupId>
  62. <artifactId>onemap-common-swagger</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.onemap</groupId>
  66. <artifactId>onemap-common-datascope</artifactId>
  67. </dependency>
  68. </dependencies>
  69. <artifactId>onemap-modules</artifactId>
  70. <packaging>pom</packaging>
  71. <description>
  72. onemap-modules业务模块
  73. </description>
  74. </project>