Donate Share

Unitils

The forum address has changed, you have been automatically redirected. Please update any bookmarks to use the new URL.

Subscribe

Available from Maven repository?

You are viewing a single message from this topic. View all messages.

  1. 2008-01-02 00:53:40 UTC
    +1 to generate source and javadoc along with the jar, it's very handy when using eclipse and the m2eclipse maven plugin.

    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-source-plugin</artifactId>
    <executions>
    <execution>
    <id>attach-sources</id>
    <phase>verify</phase>
    <goals>
    <goal>jar</goal>
    </goals>
    </execution>
    </executions>
    </plugin>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-javadoc-plugin</artifactId>
    <executions>
    <execution>
    <id>attach-javadoc</id>
    <phase>verify</phase>
    <goals>
    <goal>jar</goal>
    </goals>
    </execution>
    </executions>
    </plugin>

< Previous | 1 | Next >

Add a Reply

This forum does not allow anonymous participation.

Log in to add a reply. Not registered? Create an account to participate and receive email updates when replies are posted to this topic.