pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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</groupId>
  9. <artifactId>ssj-kmt-exercise-api</artifactId>
  10. <packaging>war</packaging>
  11. <name>ssj-kmt-exercise-api</name>
  12. <description>爱佳kmt</description>
  13. <properties>
  14. <java.version>1.8</java.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.ssj</groupId>
  19. <artifactId>ssj-kmt-exercise-service</artifactId>
  20. <version>0.0.1-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.ssj</groupId>
  24. <artifactId>ssj-aijia-service</artifactId>
  25. <version>0.0.1-SNAPSHOT</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.ssj</groupId>
  29. <artifactId>ssj-common-controller</artifactId>
  30. <version>0.0.1-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.bouncycastle</groupId>
  34. <artifactId>bcprov-jdk15on</artifactId>
  35. <version>1.54</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.springfox</groupId>
  39. <artifactId>springfox-swagger-ui</artifactId>
  40. <version>2.7.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.ssj</groupId>
  44. <artifactId>ssj-common-rabbitmq</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.ssj</groupId>
  48. <artifactId>ssj-common-config</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.ssj</groupId>
  52. <artifactId>ssj-common-excel</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>druid</artifactId>
  57. <version>1.1.16</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.ssj</groupId>
  61. <artifactId>ssj-common-file</artifactId>
  62. </dependency>
  63. </dependencies>
  64. </project>