File: maven.xml

package info (click to toggle)
commons-beanutils 1.8.0~beta-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 3,172 kB
  • ctags: 3,812
  • sloc: java: 30,273; xml: 1,849; makefile: 9
file content (156 lines) | stat: -rw-r--r-- 7,787 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!--
   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

       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.
-->

<project default="java:jar"
  xmlns:ant="jelly:ant"
  xmlns:j="jelly:core"
  xmlns:util="jelly:util">


    <preGoal name="site">
        <copy todir="${maven.build.dir}/docs/images">
            <fileset dir="${basedir}/src/site/resources/images"/>
        </copy>
    </preGoal>

    <postGoal name="jar:jar">
        <ant:ant antfile="build-other-jars.xml" target="other-jars">
            <property name="component.version" value="${pom.currentVersion}"/>
            <property name="build.home"        value="${maven.build.dir}"/>
            <property name="dist.home"         value="${maven.build.dir}"/>
        </ant:ant>
    </postGoal>
  
    <!-- ================================================================== -->
    <!-- Copy into the binary distribution                                  -->
    <!-- ================================================================== -->
    <postGoal name="dist:prepare-bin-filesystem">

        <!-- Create a jar file containing the sources -->
        <jar destfile="${maven.dist.bin.assembly.dir}/${maven.final.name}-sources.jar">
            <zipfileset prefix="META-INF" dir="${basedir}"
                includes="LICENSE*, NOTICE*"/>
            <fileset dir="${basedir}/src/java" includes="**/*.java"/>
        </jar>

        <!-- Create a jar file containing the Javadocs -->
        <jar destfile="${maven.dist.bin.assembly.dir}/${maven.final.name}-javadoc.jar">
            <zipfileset prefix="META-INF" dir="${basedir}"
                includes="LICENSE*, NOTICE*"/>
            <fileset dir="${basedir}/target/docs/apidocs"/>
        </jar>

         <!-- Copy the NOTICE -->
         <copy todir="${maven.dist.bin.assembly.dir}">
             <fileset file="${basedir}/NOTICE.txt"/>
             <fileset file="${basedir}/RELEASE-NOTES.txt"/>
             <fileset file="${maven.build.dir}/commons-beanutils-core*.jar"/>
             <fileset file="${maven.build.dir}/commons-beanutils-bean-collections*.jar"/>
         </copy>

    </postGoal>

    <!-- ================================================================== -->
    <!-- Copy into the source distribution                                  -->
    <!-- ================================================================== -->
    <postGoal name="dist:prepare-src-filesystem">

         <!-- Copy the NOTICE -->
         <copy todir="${maven.dist.src.assembly.dir}">
             <fileset file="${basedir}/build-other-jars.xml"/>
             <fileset file="${basedir}/checkstyle.xml"/>
             <fileset file="${basedir}/license-header.txt"/>
             <fileset file="${basedir}/pom.xml"/>
             <fileset file="${basedir}/NOTICE.txt"/>
             <fileset file="${basedir}/RELEASE-NOTES.txt"/>
             <fileset file="${basedir}/build.properties.sample"/>
         </copy>

         <!-- Copy xdoc files -->
         <copy todir="${maven.dist.src.assembly.dir}/xdocs">
             <fileset dir="xdocs"/>
         </copy>

    </postGoal>

    <!-- ================================================================== -->
    <!-- Create MD5 Check Sums                                              -->
    <!-- ================================================================== -->
    <postGoal name="dist">

         <!-- Create a versioned pom -->
         <copy file="${basedir}/project.xml" tofile="${maven.dist.dir}/${maven.final.name}.pom"/>

         <!-- create checksum for pom -->
         <ant:checksum file="${maven.dist.dir}/${maven.final.name}.pom" property="pom.md5"/>
         <ant:echo message="${pom.md5} *${maven.final.name}.pom" 
                   file="${maven.dist.dir}/${maven.final.name}.pom.md5" />

         <copy todir="${maven.dist.dir}">
             <fileset file="${maven.dist.bin.assembly.dir}/commons-beanutils*.jar"/>
         </copy>

         <!-- create checksum for jar -->
         <ant:checksum file="${maven.dist.dir}/${maven.final.name}.jar" property="jar.md5"/>
         <ant:echo message="${jar.md5} *${maven.final.name}.jar" 
                   file="${maven.dist.dir}/${maven.final.name}.jar.md5" />

         <!-- create checksum for core jar -->
         <ant:checksum file="${maven.dist.dir}/commons-beanutils-core-${pom.currentVersion}.jar"
                    property="core.jar.md5"/>
         <ant:echo message="${core.jar.md5} *commons-beanutils-core-${pom.currentVersion}.jar" 
                   file="${maven.dist.dir}/commons-beanutils-core-${pom.currentVersion}.jar.md5" />

         <!-- create checksum for bean-collections jar -->
         <ant:checksum file="${maven.dist.dir}/commons-beanutils-bean-collections-${pom.currentVersion}.jar"
                    property="bean.collections.jar.md5"/>
         <ant:echo message="${bean.collections.jar.md5} *commons-beanutils-bean-collections-${pom.currentVersion}.jar" 
                   file="${maven.dist.dir}/commons-beanutils-bean-collections-${pom.currentVersion}.jar.md5" />

         <!-- create checksum for sources jar -->
         <ant:checksum file="${maven.dist.dir}/${maven.final.name}-sources.jar" property="sources.jar.md5"/>
         <ant:echo message="${sources.jar.md5} *${maven.final.name}-sources.jar" 
                   file="${maven.dist.dir}/${maven.final.name}-sources.jar.md5" />

         <!-- create checksum for javadoc jar -->
         <ant:checksum file="${maven.dist.dir}/${maven.final.name}-javadoc.jar" property="javadoc.jar.md5"/>
         <ant:echo message="${javadoc.jar.md5} *${maven.final.name}-javadoc.jar" 
                   file="${maven.dist.dir}/${maven.final.name}-javadoc.jar.md5" />

         <!-- create checksum for binary zip -->
         <ant:checksum file="${maven.dist.dir}/${maven.final.name}.zip" property="zip.md5"/>
         <ant:echo message="${zip.md5} *${maven.final.name}.zip" 
                   file="${maven.dist.dir}/${maven.final.name}.zip.md5" />

         <!-- create checksum for binary tar.gz -->
         <ant:checksum file="${maven.dist.dir}/${maven.final.name}.tar.gz" property="tar.gz.md5"/>
         <ant:echo message="${tar.gz.md5} *${maven.final.name}.tar.gz" 
                   file="${maven.dist.dir}/${maven.final.name}.tar.gz.md5" />

         <!-- create checksum for source zip -->
         <ant:checksum file="${maven.dist.dir}/${maven.final.name}-src.zip" property="src.zip.md5"/>
         <ant:echo message="${src.zip.md5} *${maven.final.name}-src.zip" 
                   file="${maven.dist.dir}/${maven.final.name}-src.zip.md5" />

         <!-- create checksum for source tar.gz -->
         <ant:checksum file="${maven.dist.dir}/${maven.final.name}-src.tar.gz" property="src.tar.gz.md5"/>
         <ant:echo message="${src.tar.gz.md5} *${maven.final.name}-src.tar.gz" 
                   file="${maven.dist.dir}/${maven.final.name}-src.tar.gz.md5" />

    </postGoal>

</project>