From 698649f6fdd9c0b02edc5d97a935fb76732ae057 Mon Sep 17 00:00:00 2001 From: Michael Vorburger Date: Fri, 12 Feb 2016 02:06:22 +0100 Subject: [PATCH] build.gradle missing 2 libs (pom.xml has) jackson-jaxrs-json-provider & com.brsanthu:migbase64 are missing from the build.gradle mustache template (but the pom.xml one has them) PS: Why are there no automated tests that detect this? --- .../src/main/resources/Java/build.gradle.mustache | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/swagger-codegen/src/main/resources/Java/build.gradle.mustache b/modules/swagger-codegen/src/main/resources/Java/build.gradle.mustache index e1065049e09..605472d67b3 100644 --- a/modules/swagger-codegen/src/main/resources/Java/build.gradle.mustache +++ b/modules/swagger-codegen/src/main/resources/Java/build.gradle.mustache @@ -108,7 +108,9 @@ dependencies { compile "com.fasterxml.jackson.core:jackson-core:$jackson_version" compile "com.fasterxml.jackson.core:jackson-annotations:$jackson_version" compile "com.fasterxml.jackson.core:jackson-databind:$jackson_version" + compile "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:$jackson_version" compile "com.fasterxml.jackson.datatype:jackson-datatype-joda:2.1.5" compile "joda-time:joda-time:$jodatime_version" + compile "com.brsanthu:migbase64:2.2" testCompile "junit:junit:$junit_version" }