Repository: lens Updated Branches: refs/heads/master 443ec5f5f -> c6e3abc63
LENS-1281 : Fix license issue with quartz dependency Project: http://git-wip-us.apache.org/repos/asf/lens/repo Commit: http://git-wip-us.apache.org/repos/asf/lens/commit/c6e3abc6 Tree: http://git-wip-us.apache.org/repos/asf/lens/tree/c6e3abc6 Diff: http://git-wip-us.apache.org/repos/asf/lens/diff/c6e3abc6 Branch: refs/heads/master Commit: c6e3abc63be51ff9953b6d0b5222745264ede49e Parents: 443ec5f Author: Ajay Yadava <[email protected]> Authored: Mon Aug 22 17:21:50 2016 +0530 Committer: Amareshwari Sriramadasu <[email protected]> Committed: Mon Aug 22 17:21:50 2016 +0530 ---------------------------------------------------------------------- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lens/blob/c6e3abc6/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 7c03862..871d1ab 100644 --- a/pom.xml +++ b/pom.xml @@ -815,6 +815,14 @@ <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> <version>${quartz.version}</version> + <!-- This version of c3p0 is LGPL and incompatible with Apache License 2.0 + hence excluding. A compatible version is included in lens as separate dependency --> + <exclusions> + <exclusion> + <groupId>c3p0</groupId> + <artifactId>c3p0</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.projectlombok</groupId>
