Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my maven2 project I have a directory ${basedir}/autogen that contains some autogenerated source code files produced by wsdl2java.

When running mvn compile I get an compilation error, because of duplicate classes, that lives in ${basedir}/autogen. This is true. But what is the compilation phase doing in ${basedir}/autogen? I have not told maven to add this directory as a source directory. And there seems to be no way of telling maven to ignore the directory.

share|improve this question
@vpalle can you list the duplicated class names? are they dupes of javax.* classes? – sal May 26 '09 at 14:24
I am having a similar issue I need to digest a wsdl web service and a schema xsd. Neither has all I need, but in the overlap there are dups which then throw duplicat class errors on compile. – Adam Jun 23 '10 at 17:30

4 Answers

I had the same problem when using the maven-processor-plugin and found that the solution was to configure the maven-compiler plugin as follows:

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.1</version>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
                <compilerArgument>-proc:none</compilerArgument>
            </configuration>
        </plugin>

-proc:none means that compilation takes place without annotation processing and therefore no duplicate classes (which are typically generated in the generate-sources phase)

I hope that helps.

share|improve this answer

Its hard to change default maven behaviour, i think its better to go with it - you could generate those files with maven wsdl2java-maven-plugin

share|improve this answer
I am generating them with a maven plugin. – vpalle May 19 '09 at 12:05

I've seen this a few times. In almost all cases, it is due to the generated classes being added to the main src tree then checked into version control.

share|improve this answer
So removing them from version control again, could solve it? – vpalle May 25 '09 at 7:38
They weren't added to version control in the first place, just checked, so I guess thats not the issue.. – vpalle May 25 '09 at 7:53

I had a similar problem with JPA model generator. It occurred on this dependency:

<dependency>
    <groupId>org.eclipse.persistence</groupId>
    <artifactId>org.eclipse.persistence.jpa.modelgen</artifactId>
    <version>2.1.1</version>
</dependency>

I wrongly added the scope=provided and that resulted in:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.1:compile (default-compile) on project mocker: Compilation failure: Compilation failure:
[ERROR] \Projects\entity\MockVehicle_.java:[10,7] duplicate class: entity.MockVehicle_
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.