pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. <version>v4.0.1-RELEASE</version>
  7. <packaging>jar</packaging>
  8. <parent>
  9. <groupId>cn.com.qmth.examcloud</groupId>
  10. <artifactId>examcloud-parent</artifactId>
  11. <version>v4.0.1-RELEASE</version>
  12. </parent>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.com.qmth.examcloud</groupId>
  16. <artifactId>examcloud-jenkins-build</artifactId>
  17. <version>${examcloud.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>io.swagger</groupId>
  21. <artifactId>swagger-annotations</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>javax.validation</groupId>
  25. <artifactId>validation-api</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.hibernate.validator</groupId>
  29. <artifactId>hibernate-validator</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.google.code.gson</groupId>
  33. <artifactId>gson</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.data</groupId>
  37. <artifactId>spring-data-commons</artifactId>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>*</groupId>
  41. <artifactId>*</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-web</artifactId>
  48. <exclusions>
  49. <exclusion>
  50. <groupId>*</groupId>
  51. <artifactId>*</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. </dependencies>
  56. </project>