pom.xml 2.6 KB

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