2004-02-18 23:13:37 +00:00
|
|
|
<!--
|
2006-08-28 06:21:41 +00: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 23:13:37 +00: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 19:07:07 +00:00
|
|
|
<project default="java:jar"
|
|
|
|
xmlns:j="jelly:core">
|
|
|
|
|
2005-03-14 02:39:54 +00: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 11:22:38 +00:00
|
|
|
<include name="RELEASE-NOTES*.txt"/>
|
2005-03-14 02:39:54 +00:00
|
|
|
<include name="NOTICE.txt"/>
|
|
|
|
<include name="STATUS.html"/>
|
2005-03-16 05:05:08 +00:00
|
|
|
<include name="default.properties"/>
|
2005-06-01 23:09:04 +00:00
|
|
|
<include name="checkstyle.xml"/>
|
2007-02-09 20:58:10 +00:00
|
|
|
<include name="pom.xml"/>
|
2005-03-14 02:39:54 +00:00
|
|
|
</fileset>
|
|
|
|
</copy>
|
|
|
|
|
|
|
|
<!-- Copy XDocs -->
|
|
|
|
<copy todir="${maven.dist.src.assembly.dir}/xdocs">
|
|
|
|
<fileset dir="xdocs" />
|
|
|
|
</copy>
|
2005-05-05 01:54:13 +00:00
|
|
|
|
2005-03-14 02:39:54 +00:00
|
|
|
</postGoal>
|
2006-07-10 11:22:38 +00: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 15:38:47 +00:00
|
|
|
|
2002-07-26 19:07:07 +00:00
|
|
|
</project>
|