pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. <groupId>com.ssj.weixin.api</groupId>
  9. <artifactId>ssj-weixin-api</artifactId>
  10. <packaging>war</packaging>
  11. <name>ssj-weixin-api</name>
  12. <description>私塾家找好书上好课</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.ssj</groupId>
  16. <artifactId>ssj-kmt-exercise-service</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>io.springfox</groupId>
  20. <artifactId>springfox-swagger-ui</artifactId>
  21. <version>2.7.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.ssj</groupId>
  25. <artifactId>ssj-common-controller</artifactId>
  26. <version>0.0.1-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.ssj</groupId>
  30. <artifactId>ssj-common-baidu-aipface</artifactId>
  31. <version>0.0.1-SNAPSHOT</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.ssj</groupId>
  35. <artifactId>ssj-common-weixin-pay</artifactId>
  36. <version>0.0.1-SNAPSHOT</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.ssj</groupId>
  40. <artifactId>ssj-common-config</artifactId>
  41. <version>0.0.1-SNAPSHOT</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.ssj</groupId>
  45. <artifactId>ssj-common-weixin</artifactId>
  46. <version>0.0.1-SNAPSHOT</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.ssj</groupId>
  50. <artifactId>ssj-common-file</artifactId>
  51. <version>0.0.1-SNAPSHOT</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.ssj</groupId>
  55. <artifactId>ssj-common-mongodb</artifactId>
  56. <version>0.0.1-SNAPSHOT</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.bouncycastle</groupId>
  60. <artifactId>bcprov-jdk15on</artifactId>
  61. <version>1.54</version>
  62. </dependency>
  63. </dependencies>
  64. </project>