From 3c3ac0a071b95c63adaaadae373036db4d545d8d Mon Sep 17 00:00:00 2001 From: Benjamin Gill Date: Sat, 28 Jul 2018 09:10:49 +0100 Subject: [PATCH] Add extra modules to main dockerfile (#650) So that the mvn build is successful --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e46f873c12d..e53ca77d84a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,9 @@ COPY ./LICENSE ${GEN_DIR} COPY ./google_checkstyle.xml ${GEN_DIR} # Modules are copied individually here to allow for caching of docker layers between major.minor versions -# NOTE: openapi-generator-online is not included here +COPY ./modules/openapi-generator-gradle-plugin ${GEN_DIR}/modules/openapi-generator-gradle-plugin COPY ./modules/openapi-generator-maven-plugin ${GEN_DIR}/modules/openapi-generator-maven-plugin +COPY ./modules/openapi-generator-online ${GEN_DIR}/modules/openapi-generator-online COPY ./modules/openapi-generator-cli ${GEN_DIR}/modules/openapi-generator-cli COPY ./modules/openapi-generator ${GEN_DIR}/modules/openapi-generator COPY ./pom.xml ${GEN_DIR}