Browse Source

1、添加pom引用

41235 1 year ago
parent
commit
2d0f3a093f
3 changed files with 28 additions and 5 deletions
  1. 7 5
      hx-admin/pom.xml
  2. 20 0
      hx-xmhjc/pom.xml
  3. 1 0
      pom.xml

+ 7 - 5
hx-admin/pom.xml

@@ -27,17 +27,19 @@
             <scope>test</scope>
         </dependency>
 
+        <!-- SpringBoot Web容器 -->
         <dependency>
-            <groupId>org.yaml</groupId>
-            <artifactId>snakeyaml</artifactId>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-web</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-test</artifactId>
-            <scope>test</scope>
+            <groupId>org.yaml</groupId>
+            <artifactId>snakeyaml</artifactId>
         </dependency>
 
+
+
         <dependency>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-devtools</artifactId>

+ 20 - 0
hx-xmhjc/pom.xml

@@ -0,0 +1,20 @@
+<?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.fjhx</groupId>
+        <artifactId>bytesailing</artifactId>
+        <version>1.0</version>
+    </parent>
+
+    <artifactId>hx-xmhjc</artifactId>
+
+    <properties>
+        <maven.compiler.source>8</maven.compiler.source>
+        <maven.compiler.target>8</maven.compiler.target>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+</project>

+ 1 - 0
pom.xml

@@ -14,6 +14,7 @@
         <module>code</module>
         <module>hx-admin</module>
         <module>hx-common</module>
+        <module>hx-xmhjc</module>
     </modules>
 
     <properties>