pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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>yqyc-system</artifactId>
  9. <version>3.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>junit</groupId>
  18. <artifactId>junit</artifactId>
  19. <scope>test</scope>
  20. </dependency>
  21. <!-- test -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-test</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. <!-- dynamic-datasource -->
  28. <dependency>
  29. <groupId>com.baomidou</groupId>
  30. <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
  31. </dependency>
  32. <!-- mysql -->
  33. <dependency>
  34. <groupId>com.mysql</groupId>
  35. <artifactId>mysql-connector-j</artifactId>
  36. </dependency>
  37. <!-- postgresql -->
  38. <!--<dependency>
  39. <groupId>org.postgresql</groupId>
  40. <artifactId>postgresql</artifactId>
  41. </dependency>-->
  42. <!-- oracle -->
  43. <!--<dependency>
  44. <groupId>com.oracle.database.jdbc</groupId>
  45. <artifactId>ojdbc10</artifactId>
  46. </dependency>-->
  47. <!--<dependency>
  48. <groupId>com.oracle.database.nls</groupId>
  49. <artifactId>orai18n</artifactId>
  50. </dependency>-->
  51. <!-- mssql -->
  52. <!--<dependency>
  53. <groupId>com.microsoft.sqlserver</groupId>
  54. <artifactId>mssql-jdbc</artifactId>
  55. </dependency>-->
  56. <!-- 达梦数据库 -->
  57. <!--<dependency>
  58. <groupId>com.dameng</groupId>
  59. <artifactId>DmJdbcDriver18</artifactId>
  60. </dependency>-->
  61. <!-- 人大金仓数据库 -->
  62. <!--<dependency>
  63. <groupId>cn.com.kingbase</groupId>
  64. <artifactId>kingbase8</artifactId>
  65. </dependency>-->
  66. <!-- 登录鉴权插件 -->
  67. <dependency>
  68. <groupId>vip.xiaonuo</groupId>
  69. <artifactId>snowy-plugin-auth</artifactId>
  70. </dependency>
  71. <!-- 业务功能插件 -->
  72. <dependency>
  73. <groupId>vip.xiaonuo</groupId>
  74. <artifactId>snowy-plugin-biz</artifactId>
  75. </dependency>
  76. <!-- C端功能插件 -->
  77. <dependency>
  78. <groupId>vip.xiaonuo</groupId>
  79. <artifactId>snowy-plugin-client</artifactId>
  80. </dependency>
  81. <!-- 开发工具插件 -->
  82. <dependency>
  83. <groupId>vip.xiaonuo</groupId>
  84. <artifactId>snowy-plugin-dev</artifactId>
  85. </dependency>
  86. <!-- 代码生成插件 -->
  87. <dependency>
  88. <groupId>vip.xiaonuo</groupId>
  89. <artifactId>snowy-plugin-gen</artifactId>
  90. </dependency>
  91. <!-- 移动端管理插件 -->
  92. <dependency>
  93. <groupId>vip.xiaonuo</groupId>
  94. <artifactId>snowy-plugin-mobile</artifactId>
  95. </dependency>
  96. <!-- 系统功能插件 -->
  97. <dependency>
  98. <groupId>vip.xiaonuo</groupId>
  99. <artifactId>snowy-plugin-sys</artifactId>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. <version>${spring-boot.version}</version>
  108. <configuration>
  109. <includeSystemScope>true</includeSystemScope>
  110. </configuration>
  111. <executions>
  112. <execution>
  113. <goals>
  114. <goal>repackage</goal>
  115. </goals>
  116. </execution>
  117. </executions>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. </project>