forked from kspokas/entando-pam-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildProperties.xml
64 lines (56 loc) · 2.8 KB
/
buildProperties.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<project>
<property name="aps.base.dir" location="." />
<!--
# Note: comment out the previous line and use the following
# if you're going to use another project - e.g. Entando core - as
# a source for your aps.jar
#
# <property name="aps.base.dir" location="../Entando" />
-->
<property name="webappname" value="entando-pam-sample" />
<property name="postgres.hostname" value="localhost" />
<property name="postgres.port" value="5432" />
<property name="postgres.username" value="agile" />
<property name="postgres.password" value="agile" />
<property name="mysql.hostname" value="localhost" />
<property name="mysql.port" value="3306" />
<property name="mysql.username" value="agile" />
<property name="mysql.password" value="agile" />
<!-- Properties definitions for Windows machines START -->
<!--
<property name="tomcat.home.path" value="C:\\tomcat6" />
<property name="postgres.bin.path" location="C:\Programmi\PostgreSQL\8.3\bin" />
<property name="postgres.bin.psql" value="psql.exe" />
<property name="postgres.bin.dump" value="pg_dump.exe" />
<property name="postgres.bin.restore" value="pg_restore.exe" />
<property name="postgres.bin.drop" value="dropdb.exe" />
<property name="postgres.bin.create" value="createdb.exe" />
<property name="mysql.bin.path" location="C:\Programmi\MySQL\5\bin" />
<property name="mysql.bin.dump" value="mysqldump" />
<property name="mysql.bin.restore" value="mysql" />
<property name="mysql.bin.create" value="mysql" />
<property name="mysql.bin.drop" value="mysql" />
<property name="ant-contrib.jar.path" location="C:\ant-contrib\ant-contrib.jar" />
-->
<!-- Properties definitions for Windows machines END -->
<!-- Properties definitions for *nix machines START -->
<property name="tomcat.home.path" value="/opt/tomcat6" />
<property name="postgres.bin.path" location="/usr/bin" />
<property name="postgres.bin.dump" value="pg_dump" />
<property name="postgres.bin.psql" value="psql" />
<property name="postgres.bin.restore" value="pg_restore" />
<property name="postgres.bin.drop" value="dropdb" />
<property name="postgres.bin.create" value="createdb" />
<property name="mysql.bin.path" location="/usr/bin" />
<property name="mysql.bin.dump" value="mysqldump" />
<property name="mysql.bin.restore" value="mysql" />
<property name="mysql.bin.create" value="mysql" />
<property name="mysql.bin.drop" value="mysql" />
<property name="ant-contrib.jar.path" location="/usr/share/java/ant-contrib.jar" />
<!-- Properties definitions for *nix machines END -->
<!-- You should never need to configure the properties below this line -->
<property name="dist.path" location="target" />
<property name="test.marker" value="" />
<property name="tomcat.deploy.path" location="${tomcat.home.path}/webapps" />
<property name="project.src.branch" value="main" />
</project>