Selaa lähdekoodia

添加 webflux pom

785834757 1 vuosi sitten
vanhempi
commit
530db8ff9f
6 muutettua tiedostoa jossa 36 lisäystä ja 16 poistoa
  1. 5 0
      authentication/pom.xml
  2. 5 0
      gateway/pom.xml
  3. 5 0
      platform/pom.xml
  4. 12 6
      pom.xml
  5. 5 5
      tenant/openfeign/pom.xml
  6. 4 5
      tenant/organization/pom.xml

+ 5 - 0
authentication/pom.xml

@@ -11,6 +11,11 @@
     <name>authentication Maven Webapp</name>
     <url>http://maven.apache.org</url>
     <dependencies>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-web</artifactId>
+        </dependency>
+
         <dependency>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-security</artifactId>

+ 5 - 0
gateway/pom.xml

@@ -11,6 +11,11 @@
     <name>gateway Maven Webapp</name>
     <url>http://maven.apache.org</url>
     <dependencies>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-web</artifactId>
+        </dependency>
+
         <dependency>
             <groupId>org.springframework.cloud</groupId>
             <artifactId>spring-cloud-starter-gateway</artifactId>

+ 5 - 0
platform/pom.xml

@@ -11,6 +11,11 @@
     <name>platform Maven Webapp</name>
     <url>http://maven.apache.org</url>
     <dependencies>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-web</artifactId>
+        </dependency>
+
         <dependency>
             <groupId>mysql</groupId>
             <artifactId>mysql-connector-java</artifactId>

+ 12 - 6
pom.xml

@@ -37,12 +37,6 @@
 
   <dependencies>
 
-    <!-- Spring Boot Starter Web -->
-    <dependency>
-      <groupId>org.springframework.boot</groupId>
-      <artifactId>spring-boot-starter-web</artifactId>
-    </dependency>
-
     <!-- Spring Boot Starter Test -->
     <dependency>
       <groupId>org.springframework.boot</groupId>
@@ -71,6 +65,18 @@
   <dependencyManagement>
     <dependencies>
 
+      <!-- Spring Boot Starter Web -->
+      <dependency>
+        <groupId>org.springframework.boot</groupId>
+        <artifactId>spring-boot-starter-web</artifactId>
+      </dependency>
+
+      <!-- Spring Boot Starter Webflux -->
+      <dependency>
+        <groupId>org.springframework.boot</groupId>
+        <artifactId>spring-boot-starter-webflux</artifactId>
+      </dependency>
+
       <dependency>
         <groupId>org.redisson</groupId>
         <artifactId>redisson</artifactId>

+ 5 - 5
tenant/openfeign/pom.xml

@@ -11,16 +11,16 @@
     <name>openfeign Maven Webapp</name>
     <url>http://maven.apache.org</url>
     <dependencies>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-web</artifactId>
+        </dependency>
+
         <dependency>
             <groupId>org.springframework.cloud</groupId>
             <artifactId>spring-cloud-starter-openfeign</artifactId>
         </dependency>
 
-<!--        <dependency>-->
-<!--            <groupId>org.springframework.cloud</groupId>-->
-<!--            <artifactId>spring-cloud-context</artifactId>-->
-<!--            <version>${openfeign.version}</version>-->
-<!--        </dependency>-->
     </dependencies>
     <build>
         <finalName>openfeign</finalName>

+ 4 - 5
tenant/organization/pom.xml

@@ -11,17 +11,16 @@
     <name>organization Maven Webapp</name>
     <url>http://maven.apache.org</url>
     <dependencies>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-web</artifactId>
+        </dependency>
 
         <dependency>
             <groupId>org.springframework.cloud</groupId>
             <artifactId>spring-cloud-openfeign-core</artifactId>
         </dependency>
 
-<!--        <dependency>-->
-<!--            <groupId>org.springframework.cloud</groupId>-->
-<!--            <artifactId>spring-cloud-context</artifactId>-->
-<!--            <version>${openfeign.version}</version>-->
-<!--        </dependency>-->
         <dependency>
             <groupId>com.jzg</groupId>
             <artifactId>openfeign</artifactId>