blob: c4c8f57f11336e9ec429cb169dce3f2e9a31a334 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?xml version="1.0"?>
<project name="sample theme" default="applyJGrouseDoc">
<target name="applyJGrouseDoc">
<echo>Applying simple theme</echo>
<copy todir="${outputDir}">
<fileset dir="${jGrouseHome}/themes/simple/css" includes="*.css"></fileset>
</copy>
</target>
</project>
|