12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <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>
- <parent>
- <groupId>cn.superdesk.uniorder</groupId>
- <artifactId>superdesk-operation-center</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <artifactId>superdesk-uniorder-dao</artifactId>
- <dependencies>
- <!-- <dependency>-->
- <!-- <groupId>org.projectlombok</groupId>-->
- <!-- <artifactId>lombok</artifactId>-->
- <!-- <version>${lombok.version}</version>-->
- <!-- <scope>provided</scope>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>cn.superdesk.uniorder</groupId>
- <artifactId>superdesk-uniorder-dto</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mybatis</groupId>
- <artifactId>mybatis</artifactId>
- <!-- <version>3.5.1</version>-->
- <version>3.5.4</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>5.1.8.RELEASE</version>
- </dependency>
- </dependencies>
- </project>
|