Skip to content
Snippets Groups Projects
Commit bffd02cd authored by tpylak's avatar tpylak
Browse files

screening: project setup

SVN: 13875
parent 83da4fa5
No related branches found
No related tags found
No related merge requests found
#! /bin/bash
ME="$0"
MYDIR=${ME%/*}
cd $MYDIR
ant -lib ../../build_resources/lib/ecj.jar "$@"
<project name="screening" default="ci" basedir="..">
<import file="../../openbis/build/build.xml" />
<import file="../../datastore_server/build/build.xml" />
<project-classpath name="ecp" classes="${classes}" />
<property name="original.dist" value="dist" />
<property name="mainfolder" value="screening" />
<property name="variant" value="-screening"/>
<target name="compile" depends="build-common.compile, clean" />
<!--
// Task for creating distributions
-->
<target name="dist" depends="openbis.make-dist, datastore_server.make-dist"/>
<!--
// Task for continuous integration server.
-->
<target name="ci" depends="build-common.ci, dist, check-dependencies"/>
<!--
// Compiles the javascript using GWT compiler.
-->
<target name="compile-javascript"
depends="prepare-web-client"
description="Compiles the javascript using GWT compiler.">
<antcall target="compile-gwt-module">
<param name="gwt.module.name" value="ch.systemsx.cisd.openbis.plugin.screening.OpenBIS" />
</antcall>
</target>
<!--
// Creates WAR file.
-->
<target name="war" depends="openbis.war" description="Creates project war file.">
<war warfile="${webapp.file}" update="true">
<classes prefix="WEB-INF/classes/screening" dir="source">
<include name="**/*.sql" />
</classes>
<classes dir="../openbis/${sources}">
<include name="**/*.xml" />
<exclude name="**/*.gwt.xml" />
</classes>
<lib dir="${lib}/jaxb">
<include name="*.jar" />
</lib>
<lib dir="${lib}/eodsql">
<include name="*.jar" />
</lib>
</war>
</target>
</project>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment