pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>cn.com.qmth.examcloud</groupId>
  6. <artifactId>examcloud-parent</artifactId>
  7. <version>2019</version>
  8. </parent>
  9. <artifactId>examcloud-api-commons</artifactId>
  10. <version>2019-SNAPSHOT</version>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.com.qmth.examcloud</groupId>
  15. <artifactId>examcloud-jenkins-build</artifactId>
  16. <version>${examcloud.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>io.swagger</groupId>
  20. <artifactId>swagger-annotations</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>javax.validation</groupId>
  24. <artifactId>validation-api</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.hibernate.validator</groupId>
  28. <artifactId>hibernate-validator</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.google.code.gson</groupId>
  32. <artifactId>gson</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.data</groupId>
  36. <artifactId>spring-data-commons</artifactId>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>*</groupId>
  40. <artifactId>*</artifactId>
  41. </exclusion>
  42. </exclusions>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-web</artifactId>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>*</groupId>
  50. <artifactId>*</artifactId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. </dependencies>
  55. </project>