pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>ssj</artifactId>
  6. <groupId>com.ssj</groupId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>ssj-mybatis-service-impl</artifactId>
  11. <name>ssj-mybatis-service-impl</name>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <elasticsearch.version>7.2.0</elasticsearch.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.ssj</groupId>
  20. <artifactId>ssj-kmt-exercise-service</artifactId>
  21. <version>0.0.1-SNAPSHOT</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.ssj</groupId>
  25. <artifactId>ssj-aijia-service</artifactId>
  26. <version>0.0.1-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.ssj</groupId>
  30. <artifactId>ssj-common-elasticsearch</artifactId>
  31. <version>0.0.1-SNAPSHOT</version>
  32. </dependency>
  33. <!--接入mybatis-->
  34. <!-- <dependency>-->
  35. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  36. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  37. <!-- <version>2.0.0</version>-->
  38. <!-- </dependency>-->
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-boot-starter</artifactId>
  42. <version>3.2.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.belerweb</groupId>
  46. <artifactId>pinyin4j</artifactId>
  47. <version>2.5.1</version>
  48. </dependency>
  49. </dependencies>
  50. </project>