Skip to content

Commit 2300f0c

Browse files
committed
Merge branch 'version1.1' into version2.0
2 parents 0c3d2ae + 5b47804 commit 2300f0c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

customer-service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WORKDIR /usr/src/customer-service
44
COPY pom.xml ./
55
RUN mvn package dependency:go-offline # cache dependencies
66
COPY src ./src
7-
RUN mvn clean package
7+
RUN mvn clean package -DskipTests
88

99
FROM openjdk:11
1010

customer-service/src/main/java/de/openknowledge/sample/customer/application/CustomMediaType.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121
public final class CustomMediaType {
2222

23-
public static final String CUSTOMER_V1 = "application/vnd.de.openknowledge.sample.customer.v1+json2";
24-
public static final String CUSTOMER_V2 = "application/vnd.de.openknowledge.sample.customer.v2+json2";
23+
public static final String CUSTOMER_V1 = "application/vnd.de.openknowledge.sample.customer.v1+json";
24+
public static final String CUSTOMER_V2 = "application/vnd.de.openknowledge.sample.customer.v2+json";
2525

2626
}

0 commit comments

Comments
 (0)