pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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-analyse</module>
  15. <module>onemap-spatial</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. <dependency>
  31. <groupId>com.onemap</groupId>
  32. <artifactId>onemap-common-core</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.projectlombok</groupId>
  36. <artifactId>lombok</artifactId>
  37. <version>1.18.24</version>
  38. </dependency>
  39. <!-- Mybatis-plus 依赖配置 -->
  40. <dependency>
  41. <groupId>com.baomidou</groupId>
  42. <artifactId>mybatis-plus-boot-starter</artifactId>
  43. <version>${spring-boot.mybatis-plus}</version>
  44. </dependency>
  45. <!-- <dependency>-->
  46. <!-- <groupId>com.baomidou</groupId>-->
  47. <!-- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>-->
  48. <!-- <version>3.5.2</version>-->
  49. <!-- </dependency>-->
  50. <dependency>
  51. <groupId>com.onemap</groupId>
  52. <artifactId>onemap-common-security</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.onemap</groupId>
  56. <artifactId>onemap-common-swagger</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.onemap</groupId>
  60. <artifactId>onemap-common-datascope</artifactId>
  61. </dependency>
  62. </dependencies>
  63. <artifactId>onemap-modules</artifactId>
  64. <packaging>pom</packaging>
  65. <description>
  66. onemap-modules业务模块
  67. </description>
  68. </project>