NIFI-4593: - Ensuring the necessary jackson dependencies are bundled.

This closes #2263.

Signed-off-by: Bryan Bende <bbende@apache.org>
This commit is contained in:
Matt Gilman 2017-11-09 15:21:00 -05:00 committed by Bryan Bende
parent 53de8c93ba
commit 2da72f1524
No known key found for this signature in database
GPG Key ID: A0DDA9ED50711C39
1 changed files with 12 additions and 0 deletions

View File

@ -206,6 +206,18 @@ limitations under the License.
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<!-- explicitly pulling in jackson and excluding above to not conflict with transitive test dependencies from nifi-mock -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>