Last active
July 26, 2017 13:33
-
-
Save jamesfe/8e6e0fc5f3bead14ca9733082d707fa9 to your computer and use it in GitHub Desktop.
maven-exec-plugin troubleshooting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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