pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. </modules>
  16. <dependencies>
  17. <!--postgresql-->
  18. <dependency>
  19. <groupId>org.postgresql</groupId>
  20. <artifactId>postgresql</artifactId>
  21. <!--<scope>runtime</scope>-->
  22. </dependency>
  23. <!-- oracle -->
  24. <dependency>
  25. <groupId>com.oracle.database.jdbc</groupId>
  26. <artifactId>ojdbc6</artifactId>
  27. <version>11.2.0.4</version>
  28. </dependency>
  29. <!-- dm -->
  30. <dependency>
  31. <groupId>com.dameng</groupId>
  32. <artifactId>DmJdbcDriver18</artifactId>
  33. <version>8.1.3.62</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.onemap</groupId>
  37. <artifactId>onemap-common-core</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <version>1.18.24</version>
  43. </dependency>
  44. <!-- Mybatis-plus 依赖配置 -->
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>mybatis-plus-boot-starter</artifactId>
  48. <version>${spring-boot.mybatis-plus}</version>
  49. </dependency>
  50. <!-- <dependency>-->
  51. <!-- <groupId>com.baomidou</groupId>-->
  52. <!-- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>-->
  53. <!-- <version>3.5.2</version>-->
  54. <!-- </dependency>-->
  55. <dependency>
  56. <groupId>com.onemap</groupId>
  57. <artifactId>onemap-common-security</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.onemap</groupId>
  61. <artifactId>onemap-common-swagger</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.onemap</groupId>
  65. <artifactId>onemap-common-datascope</artifactId>
  66. </dependency>
  67. </dependencies>
  68. <artifactId>onemap-modules</artifactId>
  69. <packaging>pom</packaging>
  70. <description>
  71. onemap-modules业务模块
  72. </description>
  73. </project>