pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.4.5</version>
  10. <relativePath/>
  11. </parent>
  12. <groupId>org.ssssssss</groupId>
  13. <artifactId>mdjf-magic-api</artifactId>
  14. <version>2.1.1</version>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-jdbc</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>mysql</groupId>
  30. <artifactId>mysql-connector-java</artifactId>
  31. <version>8.0.27</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.ssssssss</groupId>
  35. <artifactId>magic-api-spring-boot-starter</artifactId>
  36. <version>2.1.1</version>
  37. </dependency>
  38. <!-- <dependency>-->
  39. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  40. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  41. <!-- <version>2.1.3</version>-->
  42. <!-- </dependency>-->
  43. <dependency>
  44. <groupId>com.baomidou</groupId>
  45. <artifactId>mybatis-plus-boot-starter</artifactId>
  46. <version>3.5.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.baomidou</groupId>
  50. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  51. <version>3.6.1</version>
  52. </dependency>
  53. <!--增加 oracle 驱动-->
  54. <dependency>
  55. <groupId>com.oracle</groupId>
  56. <artifactId>ojdbc6</artifactId>
  57. <version>11.2.0.3</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>fastjson</artifactId>
  62. <version>1.2.31</version>
  63. </dependency>
  64. <!--常用工具类 -->
  65. <dependency>
  66. <groupId>org.apache.commons</groupId>
  67. <artifactId>commons-lang3</artifactId>
  68. </dependency>
  69. <!-- &lt;!&ndash; io常用工具类 &ndash;&gt;-->
  70. <!-- <dependency>-->
  71. <!-- <groupId>commons-io</groupId>-->
  72. <!-- <artifactId>commons-io</artifactId>-->
  73. <!-- </dependency>-->
  74. <!-- excel工具 -->
  75. <dependency>
  76. <groupId>org.apache.poi</groupId>
  77. <artifactId>poi-ooxml</artifactId>
  78. <version>5.2.3</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.poi</groupId>
  82. <artifactId>poi-examples</artifactId>
  83. <version>5.2.3</version>
  84. </dependency>
  85. <!--界面定时任务插件-->
  86. <dependency>
  87. <groupId>org.ssssssss</groupId>
  88. <artifactId>magic-api-plugin-task</artifactId>
  89. <version>2.1.1</version>
  90. </dependency>
  91. <!--其他插件 引入-->
  92. <!-- <dependency>-->
  93. <!-- <groupId>org.ssssssss</groupId>-->
  94. <!-- <artifactId>magic-api-plugin-swagger</artifactId>-->
  95. <!-- <version>2.0.2</version>-->
  96. <!-- </dependency>-->
  97. <!-- <dependency>-->
  98. <!-- <groupId>io.springfox</groupId>-->
  99. <!-- <artifactId>springfox-swagger2</artifactId>-->
  100. <!-- <version>2.9.2</version>-->
  101. <!-- </dependency>-->
  102. <!-- <dependency>-->
  103. <!-- <groupId>io.springfox</groupId>-->
  104. <!-- <artifactId>springfox-swagger-ui</artifactId>-->
  105. <!-- <version>2.9.2</version>-->
  106. <!-- </dependency>-->
  107. <dependency>
  108. <groupId>com.alibaba</groupId>
  109. <artifactId>druid</artifactId>
  110. <version>1.2.1</version>
  111. </dependency>
  112. </dependencies>
  113. <build>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-maven-plugin</artifactId>
  118. <configuration>
  119. <mainClass>org.ssssssss.example.MagicAPIExampleApplication</mainClass>
  120. <finalName>magic-api-demo</finalName>
  121. </configuration>
  122. </plugin>
  123. </plugins>
  124. </build>
  125. </project>