clojure-maven-plugin
clojure-maven-plugin copied to clipboard
Running <script> tag on every goal task.
Hello. I have following maven configuration (full version of pom.xml is here):
<!-- <packaging>clojure</packaging> -->
<packaging>jar</packaging>
...
<plugin>
<groupId>com.theoryinpractise</groupId>
<artifactId>clojure-maven-plugin</artifactId>
<version>1.3.10</version>
<!-- <extensions>true</extensions> -->
<configuration>
<script>src/main/clojure/proxy/main.clj</script>
</configuration>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
...
I try to remove
Commands I try:
- mvn package
- mvn clojure:repl
- mvn test
And on mvn clojure:run its run as necessary.