pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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.fs4a</groupId>
  7. <artifactId>fs4a-dao</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.fs4a</groupId>
  11. <artifactId>fs4a-myabtis</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>fs4a-myabtis</name>
  14. <description>Demo project for Spring Boot</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.fs4a</groupId>
  21. <artifactId>common-file</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.fs4a.commons.jwt</groupId>
  26. <artifactId>common-jwt</artifactId>
  27. <version>1.0.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.baomidou</groupId>
  31. <artifactId>mybatis-plus-boot-starter</artifactId>
  32. <version>3.0-RC3</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. <scope>runtime</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.cloud</groupId>
  45. <artifactId>spring-cloud-starter-openfeign</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.commons</groupId>
  49. <artifactId>commons-lang3</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.projectlombok</groupId>
  53. <artifactId>lombok</artifactId>
  54. <optional>true</optional>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.freemarker</groupId>
  58. <artifactId>freemarker</artifactId>
  59. <version>2.3.28</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>junit</groupId>
  63. <artifactId>junit</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-test</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework</groupId>
  73. <artifactId>spring-test</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.fs4a.commons.basic</groupId>
  78. <artifactId>common-basic</artifactId>
  79. <version>1.0.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.alibaba.cloud</groupId>
  83. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  84. <version>2.1.3.RELEASE</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.elasticsearch.client</groupId>
  88. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.elasticsearch.client</groupId>
  92. <artifactId>elasticsearch-rest-client</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.elasticsearch</groupId>
  96. <artifactId>elasticsearch</artifactId>
  97. </dependency>
  98. </dependencies>
  99. <build>
  100. <plugins>
  101. <plugin>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-maven-plugin</artifactId>
  104. <version>${spring-boot.version}</version>
  105. <configuration>
  106. <fork>false</fork>
  107. <classifier>exec</classifier>
  108. </configuration>
  109. <executions>
  110. <execution>
  111. <goals>
  112. <goal>repackage</goal>
  113. </goals>
  114. </execution>
  115. </executions>
  116. </plugin>
  117. </plugins>
  118. </build>
  119. </project>