pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <artifactId>examcloud-core-questions</artifactId>
  6. <groupId>cn.com.qmth.examcloud.core.questions</groupId>
  7. <version>2.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>examcloud-core-questions-service</artifactId>
  10. <packaging>jar</packaging>
  11. <dependencies>
  12. <dependency>
  13. <groupId>cn.com.qmth.examcloud.core.questions</groupId>
  14. <artifactId>examcloud-core-questions-dao</artifactId>
  15. <version>${examcloud.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>cn.com.qmth.examcloud.rmi</groupId>
  19. <artifactId>examcloud-core-questions-api-client</artifactId>
  20. <version>${examcloud.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>cn.com.qmth.examcloud.rmi</groupId>
  24. <artifactId>examcloud-commons-api-client</artifactId>
  25. <version>${examcloud.version}</version>
  26. </dependency>
  27. </dependencies>
  28. </project>