Skip to content

Commit

Permalink
pom.xml warning silence + add release-perform script
Browse files Browse the repository at this point in the history
  • Loading branch information
dhendriks committed Mar 13, 2020
1 parent 953e8b8 commit 50e90e8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
</plugin>
</plugins>
</build>

Expand Down
8 changes: 8 additions & 0 deletions release-perform
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/bash

if [[ ! -f release.properties ]]; then
echo "Need to prepare release first."
exit 1
fi
mvn release:perform

0 comments on commit 50e90e8

Please sign in to comment.