Skip to content

Instantly share code, notes, and snippets.

@Qkyrie
Created July 17, 2013 08:00
Show Gist options
  • Save Qkyrie/6018635 to your computer and use it in GitHub Desktop.
Save Qkyrie/6018635 to your computer and use it in GitHub Desktop.
Add sources for maven to see (build-helper-maven-plugin)
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/wsimport/</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment