I have a project that compiles test jars, a la

...
  <build>
    <plugins>
      <plugin>
        <!-- bundle up the test jar -->
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
...
however the test jar isn't build and installed if I run
mvn test-compile

which is what I expected to have happen.

Is this expected (or a bug)?
Thanks!
-r

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to