pom.xml 2.8 KB

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