pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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.core.basic</groupId>
  6. <artifactId>examcloud-core-basic</artifactId>
  7. <version>2019-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>examcloud-core-basic-base</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>cn.com.qmth.examcloud</groupId>
  13. <artifactId>examcloud-web</artifactId>
  14. <version>${examcloud.version}</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>cn.com.qmth.examcloud</groupId>
  18. <artifactId>examcloud-support</artifactId>
  19. <version>${examcloud.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>cn.com.qmth.examcloud.reports</groupId>
  23. <artifactId>examcloud-reports-commons</artifactId>
  24. <version>${examcloud.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.github.penggle</groupId>
  28. <artifactId>kaptcha</artifactId>
  29. <version>2.3.2</version>
  30. </dependency>
  31. </dependencies>
  32. </project>