Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [m2e-users] custom packaging types as project dependencies

Hello,
without any debugging investigation I wanted to ask if m2e supports custom packaging types specified as project's dependencies?
For instance if I want to use axis soapmonitor:
<dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>soapmonitor</artifactId>
    <version>1.6.1</version>
    <packaging>mar</packaging>
</dependency>

I don't see it in Maven's classpath container (i.e. MAVEN2_CLASSPATH_CONTAINER).
Is there an easy way how to force M2E to treat this 'mar' package as any other jars?

I've found this bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=364983 but it seems it's only for tycho projects. In my case my project which requires this 'mar' dependency is a 'war' project.

Thanks,
Stepan Vavra

Back to the top