this is my first Maven plugin project and I am following this guide http://wiki.eclipse.org/OM2M/one/Developer
yet , I am having similar issue with this thread Convert java plugin into maven project with eclipse-plugin packaging
he said "Edit 3 : I managed to remove the error by setting the main pom.xml as a parent but now when i try to build i have the following error :", I do want to know how he did that
here is my pom
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.om2m.sample.ipe</groupId>
<artifactId>org.eclipse.om2m.sample.ipe</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
build properties
source.. = src/main/java
output.. = bin/
bin.includes = META-INF/,\
Location:
C:\Users\Ahmad\workspace\org.eclipse.om2m.sample.ipe
.
Path: /org.eclipse.om2m.sample.ipe
the error is on POM eclipse-plugin
it says Unknown packaging
thanks