|
@@ -0,0 +1,39 @@
|
|
|
+<?xml version="1.0"?>
|
|
|
+<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">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <parent>
|
|
|
+ <groupId>cn.com.qmth.examcloud.core.examwork</groupId>
|
|
|
+ <artifactId>examcloud-core-examwork</artifactId>
|
|
|
+ <version>0.1.0</version>
|
|
|
+ </parent>
|
|
|
+ <artifactId>examcloud-core-examwork-dao</artifactId>
|
|
|
+ <packaging>jar</packaging>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.hibernate</groupId>
|
|
|
+ <artifactId>hibernate-validator</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.com.qmth.examcloud.commons</groupId>
|
|
|
+ <artifactId>examcloud-commons-support</artifactId>
|
|
|
+ <version>${examcloud.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.com.qmth.examcloud.commons</groupId>
|
|
|
+ <artifactId>examcloud-commons-util</artifactId>
|
|
|
+ <version>${examcloud.version}</version>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+</project>
|