pom.xml 2.5 KB

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