Hi, I'm trying to build a plugin and am unable to resolve XwikiDefaultPlugin. In looking at the source I was expecting it to be in artifactId xwiki-core but I don't see this in the maven repository. I put the following in my pom.xml but maven still is unable to find xwiki-core but is quite happy to find and download xwiki-component. <dependency> <groupId>org.xwiki.platform</groupId> <artifactId>xwiki-core-component</artifactId> <version>${platform.core.version}</version> </dependency> <dependency> <groupId>org.xwiki.platform</groupId> <artifactId>xwiki-core</artifactId> <version>${platform.core.version}</version> </dependency> Anyone know how to resolve this? Thanks, Glenn