MPPDF-47 : An error occurs if the project logo or the company logo aren't defined.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@293081 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier 2005-10-02 08:47:53 +00:00
parent 2b2f787f11
commit 527ce5489e
2 changed files with 11 additions and 6 deletions

View File

@ -174,12 +174,16 @@ plugin.currentVersion = [${plugin.currentVersion}]
<arg value="-PARAM"/> <arg value="-PARAM"/>
<arg value="coverDate"/> <arg value="coverDate"/>
<arg value="${maven.pdf.cover.date}"/> <arg value="${maven.pdf.cover.date}"/>
<arg value="-PARAM"/> <j:if test="${not empty(maven.pdf.companyLogo)}">
<arg value="companyLogo"/> <arg value="-PARAM"/>
<arg value="${maven.pdf.companyLogo}"/> <arg value="companyLogo"/>
<arg value="-PARAM"/> <arg value="${maven.pdf.companyLogo}"/>
<arg value="projectLogo"/> </j:if>
<arg value="${maven.pdf.projectLogo}"/> <j:if test="${not empty(maven.pdf.projectLogo)}">
<arg value="-PARAM"/>
<arg value="projectLogo"/>
<arg value="${maven.pdf.projectLogo}"/>
</j:if>
<arg value="-PARAM"/> <arg value="-PARAM"/>
<arg value="imageDpi"/> <arg value="imageDpi"/>
<arg value="${maven.pdf.imageDpi}"/> <arg value="${maven.pdf.imageDpi}"/>

View File

@ -25,6 +25,7 @@
</properties> </properties>
<body> <body>
<release version="2.5-SNAPSHOT" date="in SVN"> <release version="2.5-SNAPSHOT" date="in SVN">
<action dev="aheritier" type="fix" issue="MPPDF-47">An error occurs if the project logo or the company logo aren't defined.</action>
<action dev="ltheussl" type="fix" issue="MPPDF-37">Page numbering not correct with more than 10 items in menu.</action> <action dev="ltheussl" type="fix" issue="MPPDF-37">Page numbering not correct with more than 10 items in menu.</action>
<action dev="ltheussl" type="add" issue="MPPDF-48">New goal <code>pdf:navigation-validate</code> to validate the pdf navigation file.</action> <action dev="ltheussl" type="add" issue="MPPDF-48">New goal <code>pdf:navigation-validate</code> to validate the pdf navigation file.</action>
<action dev="ltheussl" type="fix" issue="MPPDF-50">Fix <code>maven.pdf.cover.projectCompany</code>.</action> <action dev="ltheussl" type="fix" issue="MPPDF-50">Fix <code>maven.pdf.cover.projectCompany</code>.</action>