forked from openmrs/openmrs-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
properties.xml
39 lines (32 loc) · 1.93 KB
/
properties.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
<?xml version="1.0" encoding="UTF-8"?>
<!--
This Source Code Form is subject to the terms of the Mozilla Public License,
v. 2.0. If a copy of the MPL was not distributed with this file, You can
obtain one at http://mozilla.org/MPL/2.0/. OpenMRS is also distributed under
the terms of the Healthcare Disclaimer located at http://openmrs.org/license.
Copyright (C) OpenMRS Inc. OpenMRS is a registered trademark and the OpenMRS
graphic logo is a trademark of OpenMRS Inc.
-->
<project name="properties">
<!-- Webapp properties -->
<property name="webapp.name" value="openmrs" />
<property name="webapp.version" value="${openmrs.version}" />
<property name="webapp.display.name" value="OpenMRS" />
<property name="webapp.description" value="An Open-Source EMR System" />
<!-- Properties for running unit tests and webapp [un]deploy with tomcat -->
<property name="tomcat.home" value="${env.CATALINA_HOME}"/>
<property name="catalina.home" value="${env.CATALINA_HOME}"/>
<property name="tomcat.server" value="localhost" />
<property name="tomcat.port" value="8080" />
<property name="tomcat.manager.url" value="http://${tomcat.server}:${tomcat.port}/manager" />
<property name="tomcat.username" value="test" />
<property name="tomcat.password" value="test" />
<!-- Documentation settings -->
<property name="doc.title" value="${ant.project.name} API" />
<property name="doc.bottom"
value="<em><small>Generated ${timestamp}. NOTE - these libraries are in active development and subject to change</small></em>"/>
<property name="doc.header"
value="<a href="http://www.openmrs.org" target=_top><img src="/doc/openmrs-logo-small.gif" border=0/></a>"/>
<property name="doc.footer"
value="<a href="http://www.openmrs.org" target=_top>${ant.project.name}</a>"/>
</project>