Skip to content

Instantly share code, notes, and snippets.

@mnadeem
Created August 30, 2016 14:13
Show Gist options
  • Save mnadeem/265a6c9933f6333a2eafc02e98552ccb to your computer and use it in GitHub Desktop.
Save mnadeem/265a6c9933f6333a2eafc02e98552ccb to your computer and use it in GitHub Desktop.
Maven source plugin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment