51 lines
1.7 KiB
XML
51 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>com.electromagnetic.data</groupId>
|
|
<artifactId>electromagnetic-data</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>com.electromagnetic.data</groupId>
|
|
<artifactId>service</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<!-- 项目依赖 -->
|
|
<dependency>
|
|
<groupId>com.electromagnetic.data</groupId>
|
|
<artifactId>facade</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.electromagnetic.data</groupId>
|
|
<artifactId>domain</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.electromagnetic.data</groupId>
|
|
<artifactId>electromagnetic-framework</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcprov-jdk16</artifactId>
|
|
<version>1.46</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|