pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.ssj</groupId>
  5. <artifactId>ssj</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>ssj-sys</artifactId>
  9. <packaging>war</packaging>
  10. <name>ssj-sys</name>
  11. <description>sys</description>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <elasticsearch.version>7.2.0</elasticsearch.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.ssj</groupId>
  19. <artifactId>ssj-kmt-exercise-service-impl</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.ssj</groupId>
  23. <artifactId>ssj-sys-service</artifactId>
  24. <version>0.0.1-SNAPSHOT</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.ssj</groupId>
  28. <artifactId>ssj-common-config</artifactId>
  29. <version>0.0.1-SNAPSHOT</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.ssj</groupId>
  33. <artifactId>ssj-common-weixin</artifactId>
  34. <version>0.0.1-SNAPSHOT</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.ssj</groupId>
  38. <artifactId>ssj-common-excel</artifactId>
  39. <version>0.0.1-SNAPSHOT</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.ssj</groupId>
  43. <artifactId>ssj-common-file</artifactId>
  44. <version>0.0.1-SNAPSHOT</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.dubbo</groupId>
  48. <artifactId>dubbo-registry-nacos</artifactId>
  49. <version>2.7.5</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.alibaba.nacos</groupId>
  53. <artifactId>nacos-client</artifactId>
  54. <version>1.1.4</version>
  55. </dependency>
  56. </dependencies>
  57. </project>