Here is the pom.xml content of the module: <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>
<parent> <groupId>se.natusoft.seagull</groupId> <artifactId>Seagull</artifactId> <version>1.0.0-BC11</version> </parent> <artifactId>SeagullPlatform</artifactId> <version>1.0.0-BC11</version> <!-- Maven REFUSES to accept this!! Maven insists this is a "pom" ???. It is NOT a POM, it is a JAR, it contains code. Maven refuses to accept this Note that this is Groovy code and the module has a src/main/groovy/... All modules are actually Groovy code, and it does not complain about any of the other ones! I am a very strong BUG MAGNET!! I seriously hope that is not the case here!!! --> <packaging>jar</packaging> </project> The module has an src/man/groovy/.... with groovy classes to compile: src/ main/ groovy/ se/ natusoft/ seagull/ api/ SGLogger.grovvy ... and more classes in that src tree. But maven will not try to compile, just insists it must have packaging "pom". I'm going nuts here! I've been using maven for a very very long time, almost from the beginning! Never ever had problems like this before! And this have built over and over util it suddenly decided not to! Maybe something just happened in the world and 1 + 1 is now the square root of seventy eleven and a half diveded by 2 !? Note that this has built over and over without any problems before. It is a rather tiny pom. It inherits from the top level pom. Nothing strange what I can see! Any suggestion is appreciated! Thanks /Tommy ______________________ Tommy Svensson to...@natusoft.se