Changeset 1888

Show
Ignore:
Timestamp:
2008-04-04 22:17:42 (3 months ago)
Author:
mosipov
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor.Java/branches/2.4/pom.xml

    r1887 r1888  
    101101                                <version>2.0-beta-5</version> 
    102102                        </plugin> 
     103                         <plugin> 
     104        <artifactId>maven-antrun-plugin</artifactId> 
     105        <executions> 
     106          <execution> 
     107            <phase>pre-site</phase> 
     108            <goals> 
     109              <goal>run</goal> 
     110            </goals> 
     111            <configuration> 
     112              <tasks> 
     113                                <echo message="Copying site.xml to ${pom.artifactId}" /> 
     114                <copy overwrite="true" todir="src/site" flatten="true" file="../src/site/site.xml"> 
     115                </copy> 
     116                <replace value="href=&quot;../" token="href=&quot;/" dir=".."> 
     117                  <include name="${pom.artifactId}/src/site/site.xml" /> 
     118                  <exclude name="displaytag-doc/src/site/site.xml" /> 
     119                </replace> 
     120                <replace value="href=&quot;" token="href=&quot;../${pom.artifactId}/" dir=".."> 
     121                  <include name="${pom.artifactId}/src/site/site.xml" /> 
     122                  <exclude name="displaytag-doc/src/site/site.xml" /> 
     123                </replace> 
     124              </tasks> 
     125            </configuration> 
     126          </execution> 
     127        </executions> 
    103128                </plugins> 
    104129        </build>