forked from ghostm/lift-omniauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
22 lines (19 loc) · 879 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<project name="Lift-Omniauth" default="dist" basedir=".">
<description>
simple example build file
</description>
<!-- set global properties for this build -->
<property name="src" location="src/main/scala"/>
<property name="build" location="target/scala_2.8.1/classes/"/>
<property name="dist" location="liftModuleJars"/>
<property name="lift_version" value="2.3"/>
<property name="scala_version" value="2.8.1"/>
<property name="build_version" location="0.3"/>
<target name="dist"
description="generate the distribution" >
<!-- Create the distribution directory -->
<mkdir dir="${dist}"/>
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
<jar jarfile="${dist}/Lift-Omniauth_${scala_version}-${lift_version}.jar" basedir="${build}" includes="omniauth/*, omniauth/*/*"/>
</target>
</project>