Updated Branches: refs/heads/master 65822ab7b -> 1138d3855
CRUNCH-180 Fix artifact version clash in archetype Exclude the version of commons-codec that is pulled in by commons-httpclient to avoid having issues running the generated project in an IDE. Project: http://git-wip-us.apache.org/repos/asf/crunch/repo Commit: http://git-wip-us.apache.org/repos/asf/crunch/commit/1138d385 Tree: http://git-wip-us.apache.org/repos/asf/crunch/tree/1138d385 Diff: http://git-wip-us.apache.org/repos/asf/crunch/diff/1138d385 Branch: refs/heads/master Commit: 1138d38559d0a2efd5fbed3d47ccc4529378de2a Parents: 65822ab Author: Gabriel Reid <[email protected]> Authored: Tue Mar 12 19:31:48 2013 +0100 Committer: Gabriel Reid <[email protected]> Committed: Wed Mar 13 08:35:15 2013 +0100 ---------------------------------------------------------------------- .../src/main/resources/archetype-resources/pom.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/crunch/blob/1138d385/crunch-archetype/src/main/resources/archetype-resources/pom.xml ---------------------------------------------------------------------- diff --git a/crunch-archetype/src/main/resources/archetype-resources/pom.xml b/crunch-archetype/src/main/resources/archetype-resources/pom.xml index bcb1d70..4b3f25b 100644 --- a/crunch-archetype/src/main/resources/archetype-resources/pom.xml +++ b/crunch-archetype/src/main/resources/archetype-resources/pom.xml @@ -72,6 +72,12 @@ <artifactId>commons-httpclient</artifactId> <version>${commons-httpclient.version}</version> <scope>provided</scope> + <exclusions> + <exclusion> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + </exclusion> + </exclusions> </dependency> <dependency>
