mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2024-11-15 20:47:27 +08:00
40 lines
1.1 KiB
XML
40 lines
1.1 KiB
XML
<?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>com.skyeye</groupId>
|
|
<artifactId>skyeye-promote</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>skyeye-disk-cloud</artifactId>
|
|
<name>skyeye-disk-cloud</name>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 引入实体类的依赖 -->
|
|
<dependency>
|
|
<groupId>com.skyeye</groupId>
|
|
<artifactId>skyeye-entity</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- 电子书插件 -->
|
|
<dependency>
|
|
<groupId>epublib-core</groupId>
|
|
<artifactId>latest</artifactId>
|
|
<version>1.3.1</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/epublib-core-latest.jar</systemPath>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|