pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>vip.xiaonuo</groupId>
  8. <artifactId>snowy</artifactId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <artifactId>snowy-web-app</artifactId>
  12. <packaging>jar</packaging>
  13. <description>主启动模块</description>
  14. <dependencies>
  15. <!-- test -->
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-test</artifactId>
  19. <scope>test</scope>
  20. </dependency>
  21. <!-- junit -->
  22. <dependency>
  23. <groupId>junit</groupId>
  24. <artifactId>junit</artifactId>
  25. <version>${junit.version}</version>
  26. <scope>test</scope>
  27. </dependency>
  28. <!-- dynamic-datasource -->
  29. <dependency>
  30. <groupId>com.baomidou</groupId>
  31. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  32. </dependency>
  33. <!-- mysql -->
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. <version>1.18.20</version>
  42. </dependency>
  43. <!-- postgresql -->
  44. <!--<dependency>
  45. <groupId>org.postgresql</groupId>
  46. <artifactId>postgresql</artifactId>
  47. </dependency>-->
  48. <!-- oracle -->
  49. <!--<dependency>
  50. <groupId>com.oracle.database.jdbc</groupId>
  51. <artifactId>ojdbc8</artifactId>
  52. </dependency>-->
  53. <!--<dependency>
  54. <groupId>com.oracle.database.nls</groupId>
  55. <artifactId>orai18n</artifactId>
  56. </dependency>-->
  57. <!-- mssql -->
  58. <!--<dependency>
  59. <groupId>com.microsoft.sqlserver</groupId>
  60. <artifactId>mssql-jdbc</artifactId>
  61. </dependency>-->
  62. <!-- 达梦数据库 -->
  63. <!--<dependency>
  64. <groupId>DmJdbcDriver18</groupId>
  65. <artifactId>DmJdbcDriver18</artifactId>
  66. <version>1.0.0</version>
  67. <scope>system</scope>
  68. <systemPath>${pom.basedir}/src/main/resources/lib/DmJdbcDriver18.jar</systemPath>
  69. </dependency>-->
  70. <!-- 人大金仓数据库 -->
  71. <!--<dependency>
  72. <groupId>kingbase8-8.6.0</groupId>
  73. <artifactId>kingbase8-8.6.0</artifactId>
  74. <version>1.0.0</version>
  75. <scope>system</scope>
  76. <systemPath>${pom.basedir}/src/main/resources/lib/kingbase8-8.6.0.jar</systemPath>
  77. </dependency>-->
  78. <!-- 登录鉴权插件 -->
  79. <dependency>
  80. <groupId>vip.xiaonuo</groupId>
  81. <artifactId>snowy-plugin-auth</artifactId>
  82. </dependency>
  83. <!-- 业务功能插件 -->
  84. <dependency>
  85. <groupId>vip.xiaonuo</groupId>
  86. <artifactId>snowy-plugin-biz</artifactId>
  87. </dependency>
  88. <!-- C端功能插件 -->
  89. <dependency>
  90. <groupId>vip.xiaonuo</groupId>
  91. <artifactId>snowy-plugin-client</artifactId>
  92. </dependency>
  93. <!-- 开发工具插件 -->
  94. <dependency>
  95. <groupId>vip.xiaonuo</groupId>
  96. <artifactId>snowy-plugin-dev</artifactId>
  97. </dependency>
  98. <!-- 代码生成插件 -->
  99. <dependency>
  100. <groupId>vip.xiaonuo</groupId>
  101. <artifactId>snowy-plugin-gen</artifactId>
  102. </dependency>
  103. <!-- 移动端管理插件 -->
  104. <dependency>
  105. <groupId>vip.xiaonuo</groupId>
  106. <artifactId>snowy-plugin-mobile</artifactId>
  107. </dependency>
  108. <!-- 系统功能插件 -->
  109. <dependency>
  110. <groupId>vip.xiaonuo</groupId>
  111. <artifactId>snowy-plugin-sys</artifactId>
  112. </dependency>
  113. <!--luohe -->
  114. <dependency>
  115. <groupId>we.itda</groupId>
  116. <artifactId>itda-plugin-luohe</artifactId>
  117. <version>2.0.0</version>
  118. </dependency>
  119. </dependencies>
  120. <build>
  121. <plugins>
  122. <plugin>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-maven-plugin</artifactId>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. </project>