forked from molgenis/molgenis_apps-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_filemanager.xml
23 lines (19 loc) · 930 Bytes
/
build_filemanager.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<project name="filemanager">
<!-- this name is used to name the war file -->
<property name="app_name" value="filemanager"/>
<!-- this holds all the settings for the generator -->
<property name="app_properties" value="apps/${app_name}/org/molgenis/${app_name}/${app_name}.properties" />
<!-- this determines what handwritten modules should be loaded -->
<path id="app.class.path">
<pathelement location="apps/${app_name}" />
<pathelement location="modules/datamodel" />
<pathelement location="modules/webserver"/>
<pathelement location="modules/auth"/>
<pathelement location="modules/file"/>
<pathelement location="modules/decorators/core" />
<pathelement location="modules/decorators/pheno" />
<pathelement location="modules/decorators/auth" />
</path>
<!-- import all tasks from build_common: clean, generate, compile, test, war, standalone-jar -->
<import file="build_common.xml"/>
</project>