David Medinets created BROOKLYN-86:
--------------------------------------
Summary: brooklyn-all include camp-base as dependency.
Key: BROOKLYN-86
URL: https://issues.apache.org/jira/browse/BROOKLYN-86
Project: Brooklyn
Issue Type: Bug
Affects Versions: 0.7.0-M1
Reporter: David Medinets
Priority: Minor
When using the following in my pom.xml, maven tries to find
io.brooklyn.camp:camp-base:jar:0.1.0-SNAPSHOT.
{noformat}
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-all</artifactId>
<version>0.7.0-M1</version>
</dependency>
{noformat}
I changed my pom.xml to have the following and the issue seems to be resolved:
{noformat}
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-all</artifactId>
<version>0.7.0-M1</version>
<exclusions>
<exclusion>
<groupId>io.brooklyn.camp</groupId>
<artifactId>camp-base</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-camp</artifactId>
<version>0.7.0-M1</version>
</dependency>
{noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)