Hi all, I have a minimal pom defined with my maven eclipse plugin.
<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>MyProject</groupId> <artifactId>MyProject</artifactId> <version>0.0.1-SNAPSHOT</version> </project> But I cant get rid of the error "Project build error: The property name is required to activate the profile ". What the hell does that mean and how can I avoid it. Its really annoying. The command I executed from the command line is "mvn compiler: compile -X" Regards, Yusuf
