pom.xml 2.5 KB

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