Skip to content

Commit 50e90e8

Browse files
committed
pom.xml warning silence + add release-perform script
1 parent 953e8b8 commit 50e90e8

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@
8080
</execution>
8181
</executions>
8282
</plugin>
83+
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-javadoc-plugin</artifactId>
87+
<version>3.1.1</version>
88+
</plugin>
8389
</plugins>
8490
</build>
8591

release-perform

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/bash
2+
3+
if [[ ! -f release.properties ]]; then
4+
echo "Need to prepare release first."
5+
exit 1
6+
fi
7+
mvn release:perform
8+

0 commit comments

Comments
 (0)