Skip to content

Commit

Permalink
HBASE-13666 Correct PDF renaming and bump version of maven-antrun-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
gliptak authored and ndimiduk committed Jun 18, 2015
1 parent 623fd63 commit 624a169
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dev-support/make_rc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function tgz_mover {

function deploy {
MAVEN_OPTS="${mvnopts}" ${mvn} clean install -DskipTests -Prelease
MAVEN_OPTS="${mvnopts}" ${mvn} install -DskipTests site assembly:single -Prelease
MAVEN_OPTS="${mvnopts}" ${mvn} install -DskipTests post-site assembly:single -Prelease
tgz_mover
MAVEN_OPTS="${mvnopts}" ${mvn} deploy -DskipTests -Papache-release
}
Expand Down
4 changes: 2 additions & 2 deletions dev-support/publish_hbase_website.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ if [ $INTERACTIVE ]; then
read -p "Build the site? (y/n)" yn
case $yn in
[Yy]* )
mvn clean package javadoc:aggregate site post-site site:stage -DskipTests
mvn clean package javadoc:aggregate post-site site:stage -DskipTests
status=$?
if [ $status -ne 0 ]; then
echo "The website does not build. Aborting."
Expand All @@ -101,7 +101,7 @@ if [ $INTERACTIVE ]; then
esac
else
echo "Building the site in auto mode."
mvn clean package javadoc:aggregate site post-site site:stage -DskipTests
mvn clean package javadoc:aggregate post-site site:stage -DskipTests
status=$?
if [ $status != 0 ]; then
echo "The website does not build. Aborting."
Expand Down
8 changes: 4 additions & 4 deletions dev-support/test-patch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -901,18 +901,18 @@ checkSiteXml () {
echo ""
echo ""

echo "$MVN package site -DskipTests -D${PROJECT_NAME}PatchProcess > $PATCH_DIR/patchSiteOutput.txt 2>&1"
echo "$MVN package post-site -DskipTests -D${PROJECT_NAME}PatchProcess > $PATCH_DIR/patchSiteOutput.txt 2>&1"
export MAVEN_OPTS="${MAVEN_OPTS}"
$MVN package site -DskipTests -D${PROJECT_NAME}PatchProcess > $PATCH_DIR/patchSiteOutput.txt 2>&1
$MVN package post-site -DskipTests -D${PROJECT_NAME}PatchProcess > $PATCH_DIR/patchSiteOutput.txt 2>&1
if [[ $? != 0 ]] ; then
JIRA_COMMENT="$JIRA_COMMENT
{color:red}-1 site{color}. The patch appears to cause mvn site goal to fail."
{color:red}-1 site{color}. The patch appears to cause mvn post-site goal to fail."
return 1
fi
JIRA_COMMENT="$JIRA_COMMENT
{color:green}+1 site{color}. The mvn site goal succeeds with this patch."
{color:green}+1 site{color}. The mvn post-site goal succeeds with this patch."
return 0
}

Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1080,6 +1080,7 @@
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>${maven.antrun.version}</version>
<inherited>false</inherited>
Expand Down Expand Up @@ -1191,7 +1192,7 @@
<bouncycastle.version>1.46</bouncycastle.version>
<!-- Plugin Dependencies -->
<maven.assembly.version>2.4</maven.assembly.version>
<maven.antrun.version>1.6</maven.antrun.version>
<maven.antrun.version>1.8</maven.antrun.version>
<jamon.plugin.version>2.3.4</jamon.plugin.version>
<findbugs-annotations>1.3.9-1</findbugs-annotations>
<javadoc.version>2.9</javadoc.version>
Expand Down Expand Up @@ -1794,7 +1795,7 @@
</goals>
<configuration>
<tasks>
<echo>Maven Exceution Environment</echo>
<echo>Maven Execution Environment</echo>
<echo>MAVEN_OPTS="${env.MAVEN_OPTS}"</echo>
</tasks>
</configuration>
Expand Down

0 comments on commit 624a169

Please sign in to comment.