On Thu, Dec 4, 2008 at 4:17 PM, Juergen Lorenz Simon <[email protected]> wrote:
Hi again,
On 04.12.2008, at 15:53, Thomas Mortagne wrote:
On Thu, Dec 4, 2008 at 3:12 PM, Juergen Lorenz Simon <[email protected]
wrote: Hi,
when I use this dependency to xwiki-enterprise-web, I get a missing artifact:
12/4/08 3:10:16 PM CET: Missing indirectly referenced artifact com.xpn.xwiki.products:xwiki-enterprise-web:jar:1.7-SNAPSHOT:compile
http://maven.xwiki.org/snapshots/com/xpn/xwiki/products/xwiki-enterprise-web...
Try forcing <packaging>war</packaging> for the xe dependency, it's working without it for me but i'm using maven 2.1M1
Nope. Same result. (it was set to war before, btw.):
Not the pom packaging but the dependency packaging:
12/4/08 4:15:23 PM CET: Missing indirectly referenced artifact com.xpn.xwiki.products:xwiki-enterprise-web:jar:1.7-SNAPSHOT:compile
Here's my project's pom.xml file:
<?xml version="1.0" encoding="UTF-8"?> <project> <modelVersion>4.0.0</modelVersion>
<groupId>com.kontrast.vodafone</groupId> <artifactId>portal-wiki</artifactId> <packaging>war</packaging> <version>1.0</version>
<dependencies> <dependency> <groupId>com.kontrast.vodafone.portal.xwiki</groupId> <artifactId>xwiki-plugin-portalindexer</artifactId> <version>0.1-SNAPSHOT</version> </dependency> <dependency> <groupId>com.xpn.xwiki.products</groupId> <artifactId>xwiki-enterprise-web</artifactId> <version>1.7-SNAPSHOT</version>
add <packaging>war</packaging> here
</dependency> </dependencies>
<build> <finalName>portal-wiki</finalName> </build> </project>
_______________________________________________ devs mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/devs
-- Thomas Mortagne