Add attach-sources back

fixes gh-27
This commit is contained in:
Spencer Gibb
2016-02-02 14:56:54 -07:00
parent 6d6fdc25c4
commit 7c2c137f0a

29
pom.xml
View File

@@ -82,6 +82,35 @@
<maven>3.0.0</maven>
</prerequisites>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>javadoc</id>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
<configuration>
<quiet>true</quiet>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>