2004-02-18 18:13:37 -05:00
|
|
|
<!--
|
2006-08-28 02:21:41 -04:00
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
2004-02-18 18:13:37 -05:00
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
2002-07-26 15:07:07 -04:00
|
|
|
<project default="java:jar"
|
|
|
|
xmlns:j="jelly:core">
|
|
|
|
|
2005-03-13 21:39:54 -05:00
|
|
|
<!-- need various bits in the src build. Binary build is handled by Ant -->
|
|
|
|
<postGoal name="dist:prepare-src-filesystem">
|
|
|
|
<j:set var="maven.dist.src.assembly.dir" value="${pom.getPluginContext('maven-dist-plugin').getVariable('maven.dist.src.assembly.dir')}" />
|
|
|
|
|
|
|
|
<!-- Copy Files -->
|
|
|
|
<copy todir="${maven.dist.src.assembly.dir}">
|
|
|
|
<fileset dir=".">
|
2006-07-10 07:22:38 -04:00
|
|
|
<include name="RELEASE-NOTES*.txt"/>
|
2005-03-13 21:39:54 -05:00
|
|
|
<include name="NOTICE.txt"/>
|
|
|
|
<include name="STATUS.html"/>
|
2005-03-16 00:05:08 -05:00
|
|
|
<include name="default.properties"/>
|
2005-06-01 19:09:04 -04:00
|
|
|
<include name="checkstyle.xml"/>
|
2007-02-09 15:58:10 -05:00
|
|
|
<include name="pom.xml"/>
|
2005-03-13 21:39:54 -05:00
|
|
|
</fileset>
|
|
|
|
</copy>
|
|
|
|
|
|
|
|
<!-- Copy XDocs -->
|
|
|
|
<copy todir="${maven.dist.src.assembly.dir}/xdocs">
|
|
|
|
<fileset dir="xdocs" />
|
|
|
|
</copy>
|
2005-05-04 21:54:13 -04:00
|
|
|
|
2005-03-13 21:39:54 -05:00
|
|
|
</postGoal>
|
2006-07-10 07:22:38 -04:00
|
|
|
|
|
|
|
<!-- Release process uses ant for Binary build, however for completeness... -->
|
|
|
|
<postGoal name="dist:prepare-bin-filesystem">
|
|
|
|
|
|
|
|
<copy todir="${maven.dist.bin.assembly.dir}">
|
|
|
|
<fileset file="${basedir}/NOTICE.txt"/>
|
|
|
|
<fileset file="${basedir}/RELEASE-NOTES.txt"/>
|
|
|
|
</copy>
|
|
|
|
|
|
|
|
</postGoal>
|
2004-08-17 11:38:47 -04:00
|
|
|
|
2002-07-26 15:07:07 -04:00
|
|
|
</project>
|