]> juplo.de Git - demos/microservices/commitdiff
TMP
authorKai Moritz <kai@juplo.de>
Sun, 7 Jun 2020 11:47:44 +0000 (13:47 +0200)
committerKai Moritz <kai@juplo.de>
Sun, 7 Jun 2020 17:10:58 +0000 (19:10 +0200)
details/pom.xml
pom.xml
take-order/pom.xml
validate-order/pom.xml
validate-user/Dockerfile
validate-user/pom.xml
validation-results/pom.xml

index 95238f87b2cb88d037a8967a5acd433971db7deb..ed7f2918823fb19768ecd2af45cd6f763b425de7 100644 (file)
@@ -5,7 +5,7 @@
   <parent>
     <groupId>de.trion.kafka.microservices</groupId>
     <artifactId>order-example</artifactId>
-    <version>03</version>
+    <version>04</version>
   </parent>
 
   <groupId>de.trion.kafka.microservices</groupId>
diff --git a/pom.xml b/pom.xml
index 1cce33845768e21a9e5f50f2a32a71b19188c459..d0fba424b4b83133436233a1ed29e4003c580418 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -11,7 +11,7 @@
   <groupId>de.trion.kafka.microservices</groupId>
   <artifactId>order-example</artifactId>
   <name>Order Example</name>
-  <version>03</version>
+  <version>04</version>
   <packaging>pom</packaging>
 
   <properties>
@@ -24,6 +24,7 @@
     <module>take-order</module>
     <module>details</module>
     <module>validate-order</module>
+    <module>validate-user</module>
     <module>validation-results</module>
   </modules>
 
index bf46f8e0c496457e6f5a33fa2d6b13d229997e21..e1917192109ee6bd75bf8202124da3eac6ed9e73 100644 (file)
@@ -5,7 +5,7 @@
   <parent>
     <groupId>de.trion.kafka.microservices</groupId>
     <artifactId>order-example</artifactId>
-    <version>03</version>
+    <version>04</version>
   </parent>
 
   <groupId>de.trion.kafka.microservices</groupId>
index 59656a88e0baed68a03203f29502efea9f78b4df..398a71873d8345c198ed21dcb55d1dd714d257f7 100644 (file)
@@ -5,7 +5,7 @@
   <parent>
     <groupId>de.trion.kafka.microservices</groupId>
     <artifactId>order-example</artifactId>
-    <version>03</version>
+    <version>04</version>
   </parent>
 
   <groupId>de.trion.kafka.microservices</groupId>
index ddf2072c706b55b9e1324c375c96fb3b0f146183..b346f81a40b29ef0a6bb5934e5276c4fc8f03f6c 100644 (file)
@@ -1,4 +1,5 @@
 FROM openjdk:8-jre-slim
-COPY target/validate-user-04-0-SNAPSHOT.jar /opt/
+COPY target/validate-user-04-SNAPSHOT.jar /opt/
 EXPOSE 8080
-CMD ["java", "-jar", "/opt/validate-user-04-0-SNAPSHOT.jar"]
+ENTRYPOINT [ "java", "-jar", "/opt/validate-user-04-SNAPSHOT.jar" ]
+CMD []
index 85e9b1d655b9c636b6830b822bf275ca726d4b1e..380b66fc7115dcbe13d8e5e699981b5c9a485873 100644 (file)
@@ -4,14 +4,14 @@
 
   <parent>
     <groupId>de.trion.kafka.microservices</groupId>
-    <artifactId>order-example-04</artifactId>
-    <version>0-SNAPSHOT</version>
+    <artifactId>order-example</artifactId>
+    <version>04</version>
   </parent>
 
   <groupId>de.trion.kafka.microservices</groupId>
-  <artifactId>validate-user-04</artifactId>
-  <name>User Validation Service - Schritt 04</name>
-  <version>0-SNAPSHOT</version>
+  <artifactId>validate-user</artifactId>
+  <name>User Validation Service</name>
+  <version>04-SNAPSHOT</version>
 
   <properties>
     <avro.version>1.9.0</avro.version>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-actuator</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-starter-web</artifactId>
+    </dependency>
     <dependency>
       <groupId>org.apache.kafka</groupId>
       <artifactId>kafka-streams</artifactId>
index 3f62c31c54efe911d92f7d171a11224fd1711f10..44dc9e6fbead20145427e5da7602ccc9dbf813e8 100644 (file)
@@ -5,7 +5,7 @@
   <parent>
     <groupId>de.trion.kafka.microservices</groupId>
     <artifactId>order-example</artifactId>
-    <version>03</version>
+    <version>04</version>
   </parent>
 
   <groupId>de.trion.kafka.microservices</groupId>