pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>cn.com.qmth.examcloud.core.basic</groupId>
  8. <artifactId>examcloud-core-basic</artifactId>
  9. <version>0.1.0</version>
  10. </parent>
  11. <artifactId>examcloud-core-basic-export</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.com.qmth.examcloud.core.basic</groupId>
  16. <artifactId>examcloud-core-basic-domain</artifactId>
  17. <version>${examcloud.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>cn.com.qmth.examcloud.core.basic</groupId>
  21. <artifactId>examcloud-core-basic-service</artifactId>
  22. <version>${examcloud.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.com.qmth.examcloud.commons</groupId>
  26. <artifactId>examcloud-commons-util</artifactId>
  27. <version>${examcloud.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>cn.com.qmth.examcloud.commons</groupId>
  31. <artifactId>examcloud-commons-dto</artifactId>
  32. <version>${examcloud.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.com.qmth.examcloud.commons</groupId>
  36. <artifactId>examcloud-commons-uac</artifactId>
  37. <version>${examcloud.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.com.qmth.examcloud.commons</groupId>
  41. <artifactId>examcloud-commons-config</artifactId>
  42. <version>${examcloud.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-test</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.cloud</groupId>
  51. <artifactId>spring-cloud-starter-feign</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.cloud</groupId>
  55. <artifactId>spring-cloud-starter-eureka</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-web</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-data-redis</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>io.springfox</groupId>
  67. <artifactId>springfox-swagger2</artifactId>
  68. <version>2.6.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>io.springfox</groupId>
  72. <artifactId>springfox-swagger-ui</artifactId>
  73. <version>2.6.1</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>commons-fileupload</groupId>
  77. <artifactId>commons-fileupload</artifactId>
  78. <version>1.3.2</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.qmth.commons</groupId>
  82. <artifactId>data-sync-rabbit</artifactId>
  83. <version>1.0-SNAPSHOT</version>
  84. </dependency>
  85. </dependencies>
  86. </project>