Add dependency management for logback-core

Previously, only dependency management for logback-classic was
provided. This meant that it was possible for logback-core, upon
which logback-classic depends, to have a different version.

This commit adds dependency management for logback-core, thereby
ensuring that the two dependencies will have the same version.

Closes gh-5304
This commit is contained in:
Andy Wilkinson 2016-03-02 11:02:18 +00:00
parent 40ffe4169b
commit 497790571f
1 changed files with 6 additions and 1 deletions

View File

@ -485,6 +485,11 @@
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>com.atomikos</groupId>
<artifactId>transactions-jdbc</artifactId>
@ -2235,4 +2240,4 @@
<id>integration-test</id>
</profile>
</profiles>
</project>
</project>