pom.xml 1.8 KB

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