Skip to content

Commit c3fd214

Browse files
committed
Adding postGoal to copy css stylesheets from commons-build when site is generated. Please maintain this modification for consistent look and feel across commons subprojects.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/cli/trunk@130071 13f79535-47bb-0310-9956-ffa450edef68
1 parent 0080958 commit c3fd214

1 file changed

Lines changed: 20 additions & 1 deletion

File tree

maven.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
-->
16-
<project default="jar:jar"/>
16+
<project default="jar:jar">
17+
18+
<!-- ================================================================== -->
19+
<!-- START : C O M M O N S - B U I L D -->
20+
<!-- ================================================================== -->
21+
<!-- Required: Look and Feel for documentation within distributions -->
22+
<!-- ================================================================== -->
23+
<postGoal name="xdoc:copy-resources">
24+
<copy todir="${basedir}/target/docs/style/" failonerror="false">
25+
<fileset dir="${basedir}/../commons-build/xdocs/style">
26+
<include name='**/*'/>
27+
<exclude name='**/CVS/**'/>
28+
</fileset>
29+
</copy>
30+
</postGoal>
31+
<!-- ================================================================== -->
32+
<!-- END: C O M M O N S - B U I L D -->
33+
<!-- ================================================================== -->
34+
35+
</project>

0 commit comments

Comments
 (0)