David Reiss | 36a5a25 | 2009-04-29 23:20:56 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
David Reiss | ea2cba8 | 2009-03-30 21:35:00 +0000 | [diff] [blame] | 2 | <!-- |
| 3 | Licensed to the Apache Software Foundation (ASF) under one |
| 4 | or more contributor license agreements. See the NOTICE file |
| 5 | distributed with this work for additional information |
| 6 | regarding copyright ownership. The ASF licenses this file |
| 7 | to you under the Apache License, Version 2.0 (the |
| 8 | "License"); you may not use this file except in compliance |
| 9 | with the License. You may obtain a copy of the License at |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
David Reiss | ea2cba8 | 2009-03-30 21:35:00 +0000 | [diff] [blame] | 13 | Unless required by applicable law or agreed to in writing, |
| 14 | software distributed under the License is distributed on an |
| 15 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | KIND, either express or implied. See the License for the |
| 17 | specific language governing permissions and limitations |
| 18 | under the License. |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 19 | --> |
David Reiss | 36a5a25 | 2009-04-29 23:20:56 +0000 | [diff] [blame] | 20 | <project name="libthrift" default="dist" basedir="." |
Bryan Duxbury | 547edc7 | 2010-03-28 21:02:38 +0000 | [diff] [blame] | 21 | xmlns:artifact="antlib:org.apache.maven.artifact.ant"> |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 22 | |
Mark Slee | 83c52a8 | 2006-06-07 06:51:18 +0000 | [diff] [blame] | 23 | <description>Thrift Build File</description> |
Bryan Duxbury | 2f45e78 | 2009-08-20 00:55:12 +0000 | [diff] [blame] | 24 | <property name="thrift.root" location="../../"/> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 25 | <property name="thrift.artifactid" value="libthrift"/> |
Bryan Duxbury | 249d7cb | 2009-01-29 01:21:20 +0000 | [diff] [blame] | 26 | |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 27 | <!-- Include the base properties file --> |
| 28 | <property file="${basedir}/build.properties" /> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 29 | |
| 30 | <property environment="env"/> |
| 31 | |
| 32 | <condition property="version" value="${thrift.version}"> |
| 33 | <isset property="release"/> |
| 34 | </condition> |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 35 | <property name="version" value="${thrift.version}-snapshot"/> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 36 | |
| 37 | <property name="final.name" value="${thrift.artifactid}-${version}"/> |
| 38 | |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 39 | <property name="src" location="${basedir}/src"/> |
| 40 | <property name="build.dir" location="${basedir}/build"/> |
| 41 | <property name="build.lib.dir" location="${build.dir}/lib"/> |
| 42 | <property name="build.tools.dir" location="${build.dir}/tools"/> |
| 43 | <property name="src.test" location="test"/> |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 44 | <property name="javadoc.dir" location="${build.dir}/javadoc"/> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 45 | <property name="build.test.dir" location="${build.dir}/test"/> |
| 46 | <property name="test.thrift.home" location="${thrift.root}/test"/> |
| 47 | |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 48 | <property name="gen" location="gen-java"/> |
| 49 | <property name="genbean" location="gen-javabean"/> |
| 50 | |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 51 | <property name="jar.file" location="${build.dir}/${final.name}.jar"/> |
| 52 | <property name="test.jar.file" location="${build.dir}/${final.name}-test.jar"/> |
| 53 | <property name="javadoc.jar.file" location="${build.dir}/${final.name}-javadoc.jar"/> |
| 54 | <property name="source.tar.gz" location="${build.dir}/${final.name}-src.tar.gz"/> |
| 55 | |
| 56 | <!-- Junit properties --> |
| 57 | <property name="test.junit.output.format" value="plain"/> |
| 58 | <property name="test.timeout" value="2000000"/> |
| 59 | <property name="test.src.dir" location="${basedir}/test"/> |
| 60 | <property name="test.log.dir" value="${build.test.dir}/log"/> |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 61 | <property name="test.port" value="9090"/> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 62 | |
| 63 | <!-- maven properties --> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 64 | <property name="pom.xml" location="${build.dir}/${final.name}.pom"/> |
| 65 | |
David Reiss | 36a5a25 | 2009-04-29 23:20:56 +0000 | [diff] [blame] | 66 | <path id="compile.classpath"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 67 | <fileset dir="${build.lib.dir}"> |
| 68 | <include name="**/*.jar"/> |
| 69 | </fileset> |
David Reiss | 36a5a25 | 2009-04-29 23:20:56 +0000 | [diff] [blame] | 70 | </path> |
| 71 | |
| 72 | <path id="test.classpath"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 73 | <path refid="compile.classpath"/> |
| 74 | <pathelement path="${env.CLASSPATH}"/> |
| 75 | <pathelement location="${build.test.dir}"/> |
| 76 | <pathelement location="${jar.file}"/> |
| 77 | <pathelement location="${test.jar.file}"/> |
David Reiss | 36a5a25 | 2009-04-29 23:20:56 +0000 | [diff] [blame] | 78 | </path> |
Bryan Duxbury | 538e344 | 2009-02-10 04:49:39 +0000 | [diff] [blame] | 79 | |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 80 | <!-- Tasks --> |
| 81 | <target name="init" depends="setup.init,mvn.init" unless="init.finished"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 82 | <property name="init.finished" value="true"/> |
Mark Slee | 83c52a8 | 2006-06-07 06:51:18 +0000 | [diff] [blame] | 83 | </target> |
| 84 | |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 85 | <target name="setup.init"> |
| 86 | <tstamp/> |
| 87 | <mkdir dir="${build.dir}"/> |
| 88 | <mkdir dir="${build.lib.dir}"/> |
| 89 | <mkdir dir="${build.tools.dir}"/> |
| 90 | <mkdir dir="${build.test.dir}"/> |
David Reiss | 36a5a25 | 2009-04-29 23:20:56 +0000 | [diff] [blame] | 91 | </target> |
| 92 | |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 93 | <target name="compile" depends="init"> |
| 94 | <javac srcdir="${src}" destdir="${build.dir}" source="1.5" target="1.5" |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 95 | debug="true" classpathref="compile.classpath" includeantruntime="false"/> |
David Reiss | 36a5a25 | 2009-04-29 23:20:56 +0000 | [diff] [blame] | 96 | </target> |
| 97 | |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 98 | <target name="javadoc" depends="init"> |
| 99 | <javadoc sourcepath="${src}" destdir="${javadoc.dir}" |
| 100 | version="true" windowtitle="Thrift Java API" doctitle="Thrift Java API" |
Bryan Duxbury | d8c7757 | 2010-07-29 19:30:47 +0000 | [diff] [blame] | 101 | classpathref="test.classpath"> |
Bryan Duxbury | 32e04b4 | 2009-03-20 16:43:06 +0000 | [diff] [blame] | 102 | </javadoc> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 103 | <jar jarfile="${javadoc.jar.file}" basedir="${javadoc.dir}"> |
| 104 | <manifest> |
| 105 | <attribute name="Implementation-Version" value="${version}"/> |
| 106 | </manifest> |
| 107 | </jar> |
Mark Slee | 83c52a8 | 2006-06-07 06:51:18 +0000 | [diff] [blame] | 108 | </target> |
| 109 | |
Bryan Duxbury | 32e04b4 | 2009-03-20 16:43:06 +0000 | [diff] [blame] | 110 | <target name="dist" depends="compile"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 111 | <mkdir dir="${build.dir}/META-INF"/> |
| 112 | <copy file="${thrift.root}/LICENSE" tofile="${build.dir}/META-INF/LICENSE.txt"/> |
| 113 | <copy file="${thrift.root}/NOTICE" tofile="${build.dir}/META-INF/NOTICE.txt"/> |
Bryan Duxbury | 547edc7 | 2010-03-28 21:02:38 +0000 | [diff] [blame] | 114 | <jar jarfile="${jar.file}"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 115 | <manifest> |
| 116 | <attribute name="Implementation-Version" value="${version}"/> |
| 117 | </manifest> |
| 118 | <fileset dir="${build.dir}"> |
| 119 | <include name="org/apache/thrift/**/*.class"/> |
| 120 | <include name="META-INF/*.txt"/> |
Bryan Duxbury | 32e04b4 | 2009-03-20 16:43:06 +0000 | [diff] [blame] | 121 | </fileset> |
| 122 | <fileset dir="src"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 123 | <include name="**/*.java"/> |
Bryan Duxbury | 32e04b4 | 2009-03-20 16:43:06 +0000 | [diff] [blame] | 124 | </fileset> |
| 125 | </jar> |
| 126 | </target> |
| 127 | |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 128 | <target name="pack.src"> |
| 129 | <tar destfile="${source.tar.gz}" basedir="${src}" compression="gzip"/> |
| 130 | </target> |
| 131 | |
Bryan Duxbury | 32e04b4 | 2009-03-20 16:43:06 +0000 | [diff] [blame] | 132 | <target name="install" depends="dist,javadoc"> |
David Reiss | 56c2c21 | 2009-06-04 02:05:25 +0000 | [diff] [blame] | 133 | <copy todir="${install.path}"> |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 134 | <fileset dir="."><include name="*.jar"/></fileset> |
David Reiss | 56c2c21 | 2009-06-04 02:05:25 +0000 | [diff] [blame] | 135 | </copy> |
Bryan Duxbury | 32e04b4 | 2009-03-20 16:43:06 +0000 | [diff] [blame] | 136 | <copy todir="${install.javadoc.path}"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 137 | <fileset dir="${javadoc.dir}"> |
| 138 | <include name="**/*"/> |
Bryan Duxbury | 32e04b4 | 2009-03-20 16:43:06 +0000 | [diff] [blame] | 139 | </fileset> |
| 140 | </copy> |
Mark Slee | 83c52a8 | 2006-06-07 06:51:18 +0000 | [diff] [blame] | 141 | </target> |
| 142 | |
| 143 | <target name="clean"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 144 | <delete dir="${build.dir}"/> |
Bryan Duxbury | 249d7cb | 2009-01-29 01:21:20 +0000 | [diff] [blame] | 145 | <delete dir="${gen}"/> |
| 146 | <delete dir="${genbean}"/> |
Mark Slee | 83c52a8 | 2006-06-07 06:51:18 +0000 | [diff] [blame] | 147 | </target> |
| 148 | |
Bryan Duxbury | 249d7cb | 2009-01-29 01:21:20 +0000 | [diff] [blame] | 149 | <target name="compile-test" description="Build the test suite classes" depends="generate,dist"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 150 | <javac debug="true" srcdir="${gen}" destdir="${build.test.dir}" classpathref="test.classpath" includeantruntime="false"/> |
| 151 | <javac debug="true" srcdir="${genbean}" destdir="${build.test.dir}" classpathref="test.classpath" includeantruntime="false"/> |
| 152 | <javac debug="true" srcdir="${src.test}" destdir="${build.test.dir}" classpathref="test.classpath" includeantruntime="false"/> |
| 153 | <copy todir="${build.test.dir}"> |
| 154 | <fileset dir="${src.test}" includes="log4j.properties"/> |
Todd Lipcon | fcaa8f5 | 2010-09-27 23:51:22 +0000 | [diff] [blame] | 155 | </copy> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 156 | <jar jarfile="${test.jar.file}" basedir="${build.test.dir}"/> |
Bryan Duxbury | 249d7cb | 2009-01-29 01:21:20 +0000 | [diff] [blame] | 157 | </target> |
| 158 | |
Bryan Duxbury | 951e7e2 | 2010-03-26 05:05:59 +0000 | [diff] [blame] | 159 | <target name="junit-test" description="Run the JUnit test suite" depends="compile-test"> |
| 160 | <mkdir dir="${test.log.dir}"/> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 161 | <junit printsummary="true" showoutput="${test.output}" timeout="${test.timeout}" |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 162 | haltonfailure="true" errorProperty="tests.failed" failureProperty="tests.failed" |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 163 | fork="true" forkmode="perTest" maxmemory="512m" |
Bryan Duxbury | 951e7e2 | 2010-03-26 05:05:59 +0000 | [diff] [blame] | 164 | > |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 165 | <sysproperty key="build.test" value="${build.test.dir}"/> |
| 166 | <sysproperty key="test.port" value="${test.port}"/> |
Bryan Duxbury | 1b13083 | 2010-10-19 17:20:57 +0000 | [diff] [blame] | 167 | <sysproperty key="javax.net.ssl.trustStore" value="${src.test}/.truststore"/> |
| 168 | <sysproperty key="javax.net.ssl.trustStorePassword" value="thrift"/> |
| 169 | <sysproperty key="javax.net.ssl.keyStore" value="${src.test}/.keystore"/> |
| 170 | <sysproperty key="javax.net.ssl.keyStorePassword" value="thrift"/> |
Bryan Duxbury | 951e7e2 | 2010-03-26 05:05:59 +0000 | [diff] [blame] | 171 | <classpath refid="test.classpath"/> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 172 | <formatter type="${test.junit.output.format}"/> |
Bryan Duxbury | 951e7e2 | 2010-03-26 05:05:59 +0000 | [diff] [blame] | 173 | <batchtest todir="${test.log.dir}" unless="testcase"> |
Roger Meier | 5013de2 | 2010-10-25 19:57:26 +0000 | [diff] [blame] | 174 | <fileset dir="${test.src.dir}"> |
| 175 | <include name="**/Test*.java"/> |
| 176 | <exclude name="**/TestClient.java"/> |
| 177 | <exclude name="**/TestServer.java"/> |
| 178 | <exclude name="**/TestNonblockingServer.java"/> |
| 179 | </fileset> |
Bryan Duxbury | 951e7e2 | 2010-03-26 05:05:59 +0000 | [diff] [blame] | 180 | </batchtest> |
| 181 | <batchtest todir="${test.log.dir}" if="testcase"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 182 | <fileset dir="${test.src.dir}" includes="**/${testcase}.java"/> |
Bryan Duxbury | 951e7e2 | 2010-03-26 05:05:59 +0000 | [diff] [blame] | 183 | </batchtest> |
| 184 | </junit> |
| 185 | <fail if="tests.failed">Tests failed!</fail> |
| 186 | </target> |
| 187 | |
| 188 | <target name="deprecated-test" description="Run the non-JUnit test suite" depends="compile-test"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 189 | <java classname="org.apache.thrift.test.EqualityTest" classpathref="test.classpath" failonerror="true"/> |
| 190 | <java classname="org.apache.thrift.test.JavaBeansTest" classpathref="test.classpath" failonerror="true"/> |
Bryan Duxbury | 249d7cb | 2009-01-29 01:21:20 +0000 | [diff] [blame] | 191 | </target> |
| 192 | |
Bryan Duxbury | 951e7e2 | 2010-03-26 05:05:59 +0000 | [diff] [blame] | 193 | <target name="test" description="Run the full test suite" depends="junit-test,deprecated-test"/> |
| 194 | |
Roger Meier | 62b7cfb | 2010-10-23 22:25:04 +0000 | [diff] [blame] | 195 | <target name="testclient" description="Run a test client" depends="compile-test"> |
David Reiss | 2727fab | 2009-12-09 19:30:01 +0000 | [diff] [blame] | 196 | <java classname="org.apache.thrift.test.TestClient" |
| 197 | classpathref="test.classpath" failonerror="true"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 198 | <arg line="${testargs}"/> |
David Reiss | 2727fab | 2009-12-09 19:30:01 +0000 | [diff] [blame] | 199 | </java> |
| 200 | </target> |
| 201 | |
Roger Meier | 62b7cfb | 2010-10-23 22:25:04 +0000 | [diff] [blame] | 202 | <target name="testserver" description="Run a test server" depends="compile-test"> |
David Reiss | 2727fab | 2009-12-09 19:30:01 +0000 | [diff] [blame] | 203 | <java classname="org.apache.thrift.test.TestServer" |
| 204 | classpathref="test.classpath" failonerror="true"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 205 | <arg line="${testargs}"/> |
David Reiss | 2727fab | 2009-12-09 19:30:01 +0000 | [diff] [blame] | 206 | </java> |
| 207 | </target> |
| 208 | |
Roger Meier | 62b7cfb | 2010-10-23 22:25:04 +0000 | [diff] [blame] | 209 | <target name="testnonblockingserver" description="Run a test nonblocking server" depends="compile-test"> |
David Reiss | 2727fab | 2009-12-09 19:30:01 +0000 | [diff] [blame] | 210 | <java classname="org.apache.thrift.test.TestNonblockingServer" |
| 211 | classpathref="test.classpath" failonerror="true"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 212 | <arg line="${testargs}"/> |
David Reiss | 2727fab | 2009-12-09 19:30:01 +0000 | [diff] [blame] | 213 | </java> |
| 214 | </target> |
| 215 | |
Bryan Duxbury | 249d7cb | 2009-01-29 01:21:20 +0000 | [diff] [blame] | 216 | <target name="generate"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 217 | <!-- Generate the thrift gen-java source --> |
Bryan Duxbury | 2845b16 | 2009-11-09 15:55:22 +0000 | [diff] [blame] | 218 | <exec executable="../../compiler/cpp/thrift" failonerror="true"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 219 | <arg line="--gen java:hashcode ${test.thrift.home}/ThriftTest.thrift"/> |
Bryan Duxbury | 249d7cb | 2009-01-29 01:21:20 +0000 | [diff] [blame] | 220 | </exec> |
Bryan Duxbury | 2845b16 | 2009-11-09 15:55:22 +0000 | [diff] [blame] | 221 | <exec executable="../../compiler/cpp/thrift" failonerror="true"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 222 | <arg line="--gen java:hashcode ${test.thrift.home}/DebugProtoTest.thrift"/> |
Bryan Duxbury | 249d7cb | 2009-01-29 01:21:20 +0000 | [diff] [blame] | 223 | </exec> |
Bryan Duxbury | 2845b16 | 2009-11-09 15:55:22 +0000 | [diff] [blame] | 224 | <exec executable="../../compiler/cpp/thrift" failonerror="true"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 225 | <arg line="--gen java:hashcode ${test.thrift.home}/OptionalRequiredTest.thrift"/> |
Bryan Duxbury | 249d7cb | 2009-01-29 01:21:20 +0000 | [diff] [blame] | 226 | </exec> |
Bryan Duxbury | 2845b16 | 2009-11-09 15:55:22 +0000 | [diff] [blame] | 227 | <exec executable="../../compiler/cpp/thrift" failonerror="true"> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 228 | <arg line="--gen java:beans,nocamel ${test.thrift.home}/JavaBeansTest.thrift"/> |
Bryan Duxbury | 249d7cb | 2009-01-29 01:21:20 +0000 | [diff] [blame] | 229 | </exec> |
| 230 | </target> |
| 231 | |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 232 | <target name="mvn.ant.tasks.download" depends="setup.init" unless="mvn.ant.tasks.found"> |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 233 | <get src="${mvn.ant.task.url}/${mvn.ant.task.jar}" dest="${build.tools.dir}/${mvn.ant.task.jar}" usetimestamp="true"/> |
Bryan Duxbury | 547edc7 | 2010-03-28 21:02:38 +0000 | [diff] [blame] | 234 | </target> |
| 235 | |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 236 | <target name="mvn.ant.tasks.check"> |
| 237 | <condition property="mvn.ant.tasks.found"> |
| 238 | <typefound uri="antlib:org.apache.maven.artifact.ant" name="artifact"/> |
| 239 | </condition> |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 240 | </target> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 241 | |
| 242 | <target name="mvn.init" depends="mvn.ant.tasks.download" unless="mvn.finished"> |
| 243 | <!-- Download mvn ant tasks, download dependencies, and setup pom file --> |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 244 | <typedef uri="antlib:org.apache.maven.artifact.ant" classpath="${build.tools.dir}/${mvn.ant.task.jar}"/> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 245 | |
| 246 | <!-- remote repositories used to download dependencies from --> |
| 247 | <artifact:remoteRepository id="central" url="${mvn.repo}"/> |
| 248 | <artifact:remoteRepository id="apache" url="${apache.repo}"/> |
| 249 | |
| 250 | <!-- Pom file information --> |
| 251 | <artifact:pom id="pom" |
| 252 | groupId="${thrift.groupid}" |
| 253 | artifactId="${thrift.artifactid}" |
| 254 | version="${version}" |
| 255 | url="http://thrift.apache.org" |
| 256 | name="Apache Thrift" |
| 257 | description="Thrift is a software framework for scalable cross-language services development." |
| 258 | packaging="pom" |
| 259 | > |
| 260 | <remoteRepository refid="central"/> |
| 261 | <remoteRepository refid="apache"/> |
| 262 | <license name="The Apache Software License, Version 2.0" url="${license}"/> |
| 263 | <scm connection="scm:svn:http://svn.apache.org/repos/asf/thrift/trunk/" |
| 264 | developerConnection="scm:svn:http://svn.apache.org/repos/asf/thrift/trunk/" |
| 265 | url="http://svn.apache.org/viewcvs.cgi/thrift" |
| 266 | /> |
| 267 | <!-- Thrift Developers --> |
| 268 | <developer id="mcslee" name="Mark Slee"/> |
| 269 | <developer id="dreiss" name="David Reiss"/> |
| 270 | <developer id="aditya" name="Aditya Agarwal"/> |
| 271 | <developer id="marck" name="Marc Kwiatkowski"/> |
| 272 | <developer id="jwang" name="James Wang"/> |
| 273 | <developer id="cpiro" name="Chris Piro"/> |
| 274 | <developer id="bmaurer" name="Ben Maurer"/> |
| 275 | <developer id="kclark" name="Kevin Clark"/> |
| 276 | <developer id="jake" name="Jake Luciani"/> |
| 277 | <developer id="bryanduxbury" name="Bryan Duxbury"/> |
| 278 | <developer id="esteve" name="Esteve Fernandez"/> |
| 279 | <developer id="todd" name="Todd Lipcon"/> |
| 280 | <developer id="geechorama" name="Andrew McGeachie"/> |
| 281 | <developer id="molinaro" name="Anthony Molinaro"/> |
| 282 | <developer id="roger" name="Roger Meier"/> |
Jake Farrell | 4b8faf9 | 2011-04-19 21:11:54 +0000 | [diff] [blame^] | 283 | <developer id="jfarrell" name="Jake Farrell"/> |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 284 | |
| 285 | <!-- Thrift dependencies list --> |
| 286 | <dependency groupId="org.slf4j" artifactId="slf4j-api" version="1.5.8"/> |
| 287 | <dependency groupId="org.slf4j" artifactId="slf4j-log4j12" version="1.5.8"/> |
| 288 | <dependency groupId="commons-lang" artifactId="commons-lang" version="2.5"/> |
| 289 | <dependency groupId="junit" artifactId="junit" version="4.4"/> |
| 290 | <dependency groupId="javax.servlet" artifactId="servlet-api" version="2.5"/> |
| 291 | <dependency groupId="org.apache.httpcomponents" artifactId="httpclient" version="4.0.1"/> |
| 292 | </artifact:pom> |
| 293 | |
| 294 | <!-- Generate the pom file --> |
| 295 | <artifact:writepom pomRefId="pom" file="${pom.xml}"/> |
| 296 | |
| 297 | <!-- Download the dependencies --> |
| 298 | <artifact:dependencies filesetId="build-dependency-jars" pomRefId="pom"/> |
| 299 | |
| 300 | <!-- Copy the dependencies to the build/lib dir --> |
| 301 | <copy todir="${build.dir}/lib"> |
| 302 | <fileset refid="build-dependency-jars"/> |
| 303 | <mapper type="flatten"/> |
| 304 | </copy> |
| 305 | |
| 306 | <property name="mvn.finished" value="true"/> |
Bryan Duxbury | 547edc7 | 2010-03-28 21:02:38 +0000 | [diff] [blame] | 307 | </target> |
| 308 | |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 309 | <macrodef name="signAndDeploy"> |
| 310 | <!-- Sign and deploy jars to apache repo --> |
| 311 | <attribute name="file"/> |
| 312 | <attribute name="classifier" default=""/> |
| 313 | <attribute name="packaging" default="jar"/> |
| 314 | <sequential> |
| 315 | <artifact:mvn fork="true"> |
| 316 | <arg value="org.apache.maven.plugins:maven-gpg-plugin:1.1:sign-and-deploy-file"/> |
| 317 | <arg value="-DrepositoryId=${maven-repository-id}"/> |
| 318 | <arg value="-Durl=${maven-repository-url}"/> |
| 319 | <arg value="-DpomFile=${pom.xml}"/> |
| 320 | <arg value="-Dfile=@{file}"/> |
| 321 | <arg value="-Dclassifier=@{classifier}"/> |
| 322 | <arg value="-Dpackaging=@{packaging}"/> |
| 323 | <arg value="-Pgpg"/> |
| 324 | </artifact:mvn> |
| 325 | </sequential> |
| 326 | </macrodef> |
Bryan Duxbury | 547edc7 | 2010-03-28 21:02:38 +0000 | [diff] [blame] | 327 | |
Bryan Duxbury | 55f7ffe | 2011-03-24 17:24:27 +0000 | [diff] [blame] | 328 | <target name="publish" depends="clean,init,test,dist,javadoc,pack.src"> |
| 329 | <!-- Compile, package, test and then send release to apache maven repo --> |
| 330 | <!-- run with: ant -Drelease=true publish--> |
| 331 | <signAndDeploy file="${pom.xml}" packaging="pom" classifier=""/> |
| 332 | <signAndDeploy file="${jar.file}" packaging="jar" classifier=""/> |
| 333 | <signAndDeploy file="${javadoc.jar.file}" packaging="jar" classifier="javadoc"/> |
| 334 | <signAndDeploy file="${source.tar.gz}" packaging="src" classifier="tar.gz"/> |
Bryan Duxbury | 547edc7 | 2010-03-28 21:02:38 +0000 | [diff] [blame] | 335 | </target> |
Mark Slee | 83c52a8 | 2006-06-07 06:51:18 +0000 | [diff] [blame] | 336 | </project> |