pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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>ruoyi-ai</artifactId>
  7. <groupId>org.ruoyi</groupId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <packaging>jar</packaging>
  13. <artifactId>ruoyi-admin</artifactId>
  14. <description>
  15. web服务入口
  16. </description>
  17. <dependencies>
  18. <!-- Mysql驱动包 -->
  19. <dependency>
  20. <groupId>com.mysql</groupId>
  21. <artifactId>mysql-connector-j</artifactId>
  22. </dependency>
  23. <!-- Oracle -->
  24. <dependency>
  25. <groupId>com.oracle.database.jdbc</groupId>
  26. <artifactId>ojdbc8</artifactId>
  27. </dependency>
  28. <!-- PostgreSql -->
  29. <dependency>
  30. <groupId>org.postgresql</groupId>
  31. <artifactId>postgresql</artifactId>
  32. </dependency>
  33. <!-- SqlServer -->
  34. <dependency>
  35. <groupId>com.microsoft.sqlserver</groupId>
  36. <artifactId>mssql-jdbc</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.ruoyi</groupId>
  40. <artifactId>ruoyi-common-doc</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.ruoyi</groupId>
  44. <artifactId>ruoyi-system</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.ruoyi</groupId>
  48. <artifactId>ruoyi-fusion</artifactId>
  49. </dependency>
  50. <!-- demo模块 -->
  51. <dependency>
  52. <groupId>org.ruoyi</groupId>
  53. <artifactId>ruoyi-demo</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-test</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <!-- 添加thumbnailator依赖 -->
  61. <dependency>
  62. <groupId>net.coobird</groupId>
  63. <artifactId>thumbnailator</artifactId>
  64. <version>0.4.11</version>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <finalName>${project.artifactId}</finalName>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-maven-plugin</artifactId>
  73. <version>${spring-boot.version}</version>
  74. <executions>
  75. <execution>
  76. <goals>
  77. <goal>repackage</goal>
  78. </goals>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-jar-plugin</artifactId>
  85. <version>${maven-jar-plugin.version}</version>
  86. </plugin>
  87. <plugin>
  88. <groupId>org.apache.maven.plugins</groupId>
  89. <artifactId>maven-war-plugin</artifactId>
  90. <version>${maven-war-plugin.version}</version>
  91. <configuration>
  92. <failOnMissingWebXml>false</failOnMissingWebXml>
  93. <warName>${project.artifactId}</warName>
  94. </configuration>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. </project>