Created
October 27, 2020 02:14
-
-
Save aschain/a9bafe53666a1669d843495491511713 to your computer and use it in GitHub Desktop.
pom addition for copyToFiji.sh
This file contains 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
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>exec-maven-plugin</artifactId> | |
<executions> | |
<execution> | |
<id>first-execution</id> | |
<phase>install</phase> | |
<goals> | |
<goal>exec</goal> | |
</goals> | |
<configuration> | |
<executable>bash</executable> | |
<workingDirectory>${basedir}</workingDirectory> | |
<arguments> | |
<argument>-c</argument> | |
<argument>"../copyToFiji.sh jars ${project.artifactId} target/${project.build.finalName}.jar"</argument> | |
</arguments> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment