Skip to content

Commit

Permalink
added no-download profile (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
autermann authored Feb 27, 2018
1 parent 7652b28 commit 1b32729
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -530,5 +530,26 @@
</plugins>
</build>
</profile>
<profile>
<id>no-download</id>
<build>
<plguins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>download-sources</id>
<phase/>
</execution>
<execution>
<id>download-javadoc</id>
<phase/>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 1b32729

Please sign in to comment.