diff options
author | Nick Burch <nick@apache.org> | 2015-04-25 01:53:30 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2015-04-25 01:53:30 +0000 |
commit | 947e320ffa43d511bba7cd76416182b7179bf3ae (patch) | |
tree | 19fb9aa91581aebdbd2954dca83f881decbc7f2b /build.xml | |
parent | 03324db920dd203158f5b7dc304e33ccdf24aa82 (diff) | |
download | poi-947e320ffa43d511bba7cd76416182b7179bf3ae.tar.gz poi-947e320ffa43d511bba7cd76416182b7179bf3ae.zip |
#57857 Based on the Apache Tika OSGi bundle and tests, start on a maven-powered build and test for a POI bundle
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675989 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1593,6 +1593,14 @@ under the License. <echo>Use ${dist.dir}/multisign.sh to create md5 checksums and GPG signatures</echo> </target> + <target name="osgi" depends="mvn-install"> + <echo message="Building OSGi bundle via Maven" /> + <mvn:mvn pom="osgi/build.xml"> + <arg value="-Dpoi.version=${version.id}" /> + <arg value="install" /> + </mvn:mvn> + </target> + <target name="dist" depends="clean, compile-all, test-all, site, jar, release-notes, assemble" description="Creates the entire distribution into build/dist, from scratch"> </target> |