forked from molgenis/molgenis_apps-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_lifelinesresearchportal.xml
48 lines (41 loc) · 1.9 KB
/
build_lifelinesresearchportal.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="lifelinesresearchportal">
<!-- this name is used to name the war file -->
<property name="app_name" value="lifelines_researchportal" />
<!-- this holds all the settings for the generator -->
<property name="app_properties" value="apps/lifelinesresearchportal/org/molgenis/lifelinesresearchportal/lifelinesresearchportal.properties"/>
<!-- this determines what handwritten modules should be loaded -->
<path id="app.class.path">
<pathelement location="apps/lifelinesresearchportal" />
<pathelement location="apps/lifelinesresearchportalimporter" />
<pathelement location="modules/_deprecated" />
<pathelement location="modules/datamodel" />
<pathelement location="modules/auth" />
<pathelement location="modules/file" />
<pathelement location="apps/catalogue" />
<pathelement location="modules/xgap" />
<pathelement location="modules/webserver" />
<pathelement location="modules/datatable" />
<pathelement location="modules/decorators/core" />
<pathelement location="modules/decorators/auth" />
<pathelement location="modules/decorators/data" />
<pathelement location="modules/import" />
<pathelement location="modules/settings" />
<pathelement location="modules/pheno" />
<pathelement location="modules/search" />
<pathelement location="modules/matrix" />
<pathelement location="modules/feedback" />
<pathelement location="publicdata" />
</path>
<target name="runOn" description="Start the application">
<java maxmemory="128m" classname="boot.RunStandalone" fork="yes" failonerror="true">
<arg value="${port}"/>
<classpath>
<path refid="molgenis.classpath" />
<path location="${build.dir}" />
</classpath>
</java>
</target>
<!-- import all tasks from build_common: clean, generate, compile, test, war, standalone-jar -->
<import file="build_common.xml" />
</project>