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:41:04 +0000 (19:41 +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 95238f8..ed7f291 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 1cce338..d0fba42 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 bf46f8e..e191719 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 59656a8..398a718 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 ddf2072..b346f81 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 85e9b1d..380b66f 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 3f62c31..44dc9e6 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>