<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">
|
<modelVersion>4.0.0</modelVersion>
|
<artifactId>api-model</artifactId>
|
<packaging>jar</packaging>
|
|
<parent>
|
<groupId>com.cloud</groupId>
|
<artifactId>attendance-service</artifactId>
|
<version>4.0</version>
|
</parent>
|
|
<dependencies>
|
<!--<dependency>
|
<groupId>org.springframework.cloud</groupId>
|
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
|
</dependency>-->
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-core</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.github.pagehelper</groupId>
|
<artifactId>pagehelper</artifactId>
|
<version>4.1.4</version>
|
</dependency>
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>javax.servlet-api</artifactId>
|
<version>3.0.1</version>
|
</dependency><!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
|
<dependency>
|
<groupId>commons-beanutils</groupId>
|
<artifactId>commons-beanutils</artifactId>
|
<version>1.9.2</version>
|
</dependency>
|
<dependency>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
<version>2.7.2</version>
|
</dependency>
|
<dependency>
|
<groupId>com.google.zxing</groupId>
|
<artifactId>core</artifactId>
|
<version>3.1.0</version>
|
</dependency>
|
<!--
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-annotations</artifactId>
|
<version>RELEASE</version>
|
</dependency>
|
-->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>${swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-bean-validators</artifactId>
|
<version>${swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>${swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-web</artifactId>
|
<version>5.0.8.RELEASE</version>
|
</dependency>
|
|
</dependencies>
|
|
</project>
|