pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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>2.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>examcloud-core-basic-service</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.com.qmth.examcloud.core.basic</groupId>
  16. <artifactId>examcloud-core-basic-dao</artifactId>
  17. <version>${examcloud.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>cn.com.qmth.examcloud.commons</groupId>
  21. <artifactId>examcloud-commons-util</artifactId>
  22. <version>${examcloud.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.com.qmth.examcloud.commons</groupId>
  26. <artifactId>examcloud-commons-dto</artifactId>
  27. <version>${examcloud.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>cn.com.qmth.examcloud.commons</groupId>
  31. <artifactId>examcloud-commons-uac</artifactId>
  32. <version>${examcloud.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.com.qmth.examcloud.commons</groupId>
  36. <artifactId>examcloud-commons-config</artifactId>
  37. <version>${examcloud.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-test</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.cloud</groupId>
  46. <artifactId>spring-cloud-starter-feign</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.cloud</groupId>
  50. <artifactId>spring-cloud-starter-eureka</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-web</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-data-redis</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.springfox</groupId>
  62. <artifactId>springfox-swagger2</artifactId>
  63. <version>2.6.1</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>io.springfox</groupId>
  67. <artifactId>springfox-swagger-ui</artifactId>
  68. <version>2.6.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-fileupload</groupId>
  72. <artifactId>commons-fileupload</artifactId>
  73. <version>1.3.2</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.qmth.commons</groupId>
  77. <artifactId>data-sync-rabbit</artifactId>
  78. <version>1.0-SNAPSHOT</version>
  79. </dependency>
  80. </dependencies>
  81. </project>