pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.mirage</groupId>
  7. <artifactId>mirage-server</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.mirage</groupId>
  11. <artifactId>mirage-service</artifactId>
  12. <name>mirage-service</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.mirage</groupId>
  16. <artifactId>mirage-core</artifactId>
  17. <version>1.0-SNAPSHOT</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <!-- <dependency>-->
  24. <!-- <groupId>mysql</groupId>-->
  25. <!-- <artifactId>mysql-connector-java</artifactId>-->
  26. <!-- </dependency>-->
  27. <dependency>
  28. <groupId>com.mysql</groupId>
  29. <artifactId>mysql-connector-j</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.mybatis.spring.boot</groupId>
  33. <artifactId>mybatis-spring-boot-starter</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-data-jpa</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>druid-spring-boot-starter</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.microsoft.sqlserver</groupId>
  45. <artifactId>mssql-jdbc</artifactId>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <finalName>mirage-service</finalName>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-compiler-plugin</artifactId>
  54. <version>3.8.1</version> <!-- 使用最新版本 -->
  55. <configuration>
  56. <source>11</source>
  57. <target>11</target>
  58. </configuration>
  59. </plugin>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>