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/15cf0b57 Tree: http://git-wip-us.apache.org/repos/asf/lens/tree/15cf0b57 Diff: http://git-wip-us.apache.org/repos/asf/lens/diff/15cf0b57 Branch: refs/heads/master Commit: 15cf0b577216d8bd6073391da98fbb5fc0dd01e4 Parents: 8fcc1a1 Author: Ajay Yadava <[email protected]> Authored: Mon Aug 22 17:21:50 2016 +0530 Committer: Amareshwari Sriramadasu <[email protected]> Committed: Mon Aug 22 17:29:08 2016 +0530 ---------------------------------------------------------------------- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lens/blob/15cf0b57/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 97cb612..c181a58 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>
