change project to maven

This commit is contained in:
limqhz
2021-03-02 23:50:51 +08:00
parent 28fe094cef
commit 0ed96b9e24
19 changed files with 512 additions and 561 deletions

26
service/pom.xml Normal file
View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>smartvenue</groupId>
<artifactId>smartvenue-parent</artifactId>
<version>2.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sv-service</artifactId>
<version>${smartvenue.version}</version>
<dependencies>
<dependency>
<groupId>smartvenue</groupId>
<artifactId>sv-entity</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
</dependencies>
</project>