wbstr / vaadin-multifileupload

12 stars 23 forks source link

Attach sources to Maven artifact #36

Closed lightoze closed 8 years ago

lightoze commented 8 years ago

This is how you do it:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-source-plugin</artifactId>
  <executions>
    <execution>
      <id>attach-sources</id>
      <goals>
        <goal>jar</goal>
      </goals>
    </execution>
  </executions>
</plugin>
bcmedeiros commented 8 years ago

I'd really appreciate it!