我正在尝试将exec进程附加到maven构建。我希望每次构建maven项目时都构建一个辅助依赖项(实际上是一个使用maven构建的Clojure项目)。
目前,我有pom.xml
,但是exec进程没有运行。 maven文档没有太多帮助。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>compile-with-lein</id>
<phase>initialize</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>lein</executable>
<commandlineArgs>install</commandlineArgs>
<workingDirectory>../nrepl-clojure</workingDirectory>
</configuration>
</plugin>