Skip to content

Instantly share code, notes, and snippets.

@jamesfe
Last active July 26, 2017 13:33
Show Gist options
  • Select an option

  • Save jamesfe/8e6e0fc5f3bead14ca9733082d707fa9 to your computer and use it in GitHub Desktop.

Select an option

Save jamesfe/8e6e0fc5f3bead14ca9733082d707fa9 to your computer and use it in GitHub Desktop.
maven-exec-plugin troubleshooting
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<configuration>
<executable>python3</executable>
<arguments>
<argument>${project.basedir}/generateSources.py</argument>
</arguments>
</configuration>
<id>python-build</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment