I have a maven plugin which I want to have the following config:
<objectName>
<ObjectType>
<Param1>12</Param1>
<EnumTypeParam>4</EnumTypeParam>
</ObjectType>
</objectName>
Where EnumTypeParam is a java enumeration. how would I do this in the pom file?
I ended up using something like this. and overridding the enum properties.
<plugin>
<groupId>com.google.protobuf.tools</groupId>
<artifactId>maven-protoc-plugin</artifactId>
<version>0.1.11-SNAPSHOT</version>
<configuration>
<protocExecutable>protoc</protocExecutable>
<protoSourceRoot>${project.basedir}/target/protobuff/speed</protoSourceRoot>
<languageSpecifications>
<LanguageSpecification>
<language>JAVA</language>
<outputDirectory>${project.basedir}/target/generated-sources/java</outputDirectory>
</LanguageSpecification>
<LanguageSpecification>
<language>CPP</language>
<outputDirectory>${project.basedir}/target/generated-sources/cpp</outputDirectory>
</LanguageSpecification>
</languageSpecifications>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<language>JAVA</language>in the pom.xml file. – jon-hanson Nov 24 '11 at 12:38