pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>jeecg-module-system</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.6.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-system-start</artifactId>
  12. <dependencies>
  13. <!-- SYSTEM 系统管理模块 -->
  14. <dependency>
  15. <groupId>org.jeecgframework.boot</groupId>
  16. <artifactId>jeecg-system-biz</artifactId>
  17. <version>${jeecgboot.version}</version>
  18. </dependency>
  19. <!-- DEMO 示例模块 -->
  20. <dependency>
  21. <groupId>org.jeecgframework.boot</groupId>
  22. <artifactId>jeecg-module-demo</artifactId>
  23. <version>${jeecgboot.version}</version>
  24. </dependency>
  25. <!--人大金仓
  26. <dependency>
  27. <groupId>org.jeecgframework</groupId>
  28. <artifactId>kingbase8</artifactId>
  29. <version>9.0.0</version>
  30. <scope>runtime</scope>
  31. </dependency>-->
  32. <!--达梦数据库 -->
  33. <dependency>
  34. <groupId>com.dameng</groupId>
  35. <artifactId>Dm8JdbcDriver18</artifactId>
  36. <version>${dm8.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.dameng</groupId>
  40. <artifactId>DmDialect-for-hibernate5.0</artifactId>
  41. <version>${dm8.version}</version>
  42. </dependency>
  43. <!-- flyway支持 mysql5.7、mysql8、MariaDB10.3.16 -->
  44. <dependency>
  45. <groupId>org.flywaydb</groupId>
  46. <artifactId>flyway-core</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.cuidian.lg</groupId>
  50. <artifactId>lg-code</artifactId>
  51. <version>1.0.0</version>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-maven-plugin</artifactId>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>