1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?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.basic</groupId>
- <artifactId>examcloud-core-basic</artifactId>
- <version>2.0-SNAPSHOT</version>
- </parent>
- <artifactId>examcloud-core-basic-dao</artifactId>
- <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-util</artifactId>
- <version>${examcloud.version}</version>
- </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-dto</artifactId>
- <version>${examcloud.version}</version>
- </dependency>
- </dependencies>
- </project>
|