pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. <!-- postgresql -->
  39. <!--<dependency>
  40. <groupId>org.postgresql</groupId>
  41. <artifactId>postgresql</artifactId>
  42. </dependency>-->
  43. <!-- oracle -->
  44. <!--<dependency>
  45. <groupId>com.oracle.database.jdbc</groupId>
  46. <artifactId>ojdbc8</artifactId>
  47. </dependency>-->
  48. <!--<dependency>
  49. <groupId>com.oracle.database.nls</groupId>
  50. <artifactId>orai18n</artifactId>
  51. </dependency>-->
  52. <!-- mssql -->
  53. <!--<dependency>
  54. <groupId>com.microsoft.sqlserver</groupId>
  55. <artifactId>mssql-jdbc</artifactId>
  56. </dependency>-->
  57. <!-- 达梦数据库 -->
  58. <!--<dependency>
  59. <groupId>com.dameng</groupId>
  60. <artifactId>DmJdbcDriver18</artifactId>
  61. </dependency>-->
  62. <!-- 人大金仓数据库 -->
  63. <!--<dependency>
  64. <groupId>cn.com.kingbase</groupId>
  65. <artifactId>kingbase8</artifactId>
  66. </dependency>-->
  67. <!-- 登录鉴权插件 -->
  68. <dependency>
  69. <groupId>vip.xiaonuo</groupId>
  70. <artifactId>snowy-plugin-auth</artifactId>
  71. </dependency>
  72. <!-- 业务功能插件 -->
  73. <dependency>
  74. <groupId>vip.xiaonuo</groupId>
  75. <artifactId>snowy-plugin-biz</artifactId>
  76. </dependency>
  77. <!-- C端功能插件 -->
  78. <dependency>
  79. <groupId>vip.xiaonuo</groupId>
  80. <artifactId>snowy-plugin-client</artifactId>
  81. </dependency>
  82. <!-- 开发工具插件 -->
  83. <dependency>
  84. <groupId>vip.xiaonuo</groupId>
  85. <artifactId>snowy-plugin-dev</artifactId>
  86. </dependency>
  87. <!-- 代码生成插件 -->
  88. <dependency>
  89. <groupId>vip.xiaonuo</groupId>
  90. <artifactId>snowy-plugin-gen</artifactId>
  91. </dependency>
  92. <!-- 移动端管理插件 -->
  93. <dependency>
  94. <groupId>vip.xiaonuo</groupId>
  95. <artifactId>snowy-plugin-mobile</artifactId>
  96. </dependency>
  97. <!-- 系统功能插件 -->
  98. <dependency>
  99. <groupId>vip.xiaonuo</groupId>
  100. <artifactId>snowy-plugin-sys</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.jcraft</groupId>
  104. <artifactId>jsch</artifactId>
  105. <version>0.1.54</version>
  106. </dependency>
  107. </dependencies>
  108. <build>
  109. <plugins>
  110. <plugin>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-maven-plugin</artifactId>
  113. <version>2.5.12</version>
  114. <configuration>
  115. <includeSystemScope>true</includeSystemScope>
  116. </configuration>
  117. <executions>
  118. <execution>
  119. <goals>
  120. <goal>repackage</goal>
  121. </goals>
  122. </execution>
  123. </executions>
  124. </plugin>
  125. </plugins>
  126. </build>
  127. </project>