-
Notifications
You must be signed in to change notification settings - Fork 33
/
settings.example.xml
62 lines (57 loc) · 2.93 KB
/
settings.example.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
<?xml version="1.0" encoding="ISO-8859-1"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>C:/development/m2repository</localRepository>
<profiles>
<profile>
<id>jahia-mysql</id>
<properties>
<jahia.configure.databaseType>mysql</jahia.configure.databaseType>
<jahia.configure.databaseUrl>jdbc:mysql://localhost/jahia?useUnicode=true&characterEncoding=UTF-8&useServerPrepStmts=false</jahia.configure.databaseUrl>
<jahia.configure.databaseUsername>root</jahia.configure.databaseUsername>
<jahia.configure.databasePassword>password</jahia.configure.databasePassword>
</properties>
</profile>
<profile>
<id>jahia-postgresql</id>
<properties>
<jahia.configure.databaseType>postgresql</jahia.configure.databaseType>
<jahia.configure.databaseUrl>jdbc:postgresql://localhost:5432/jahia</jahia.configure.databaseUrl>
<jahia.configure.databaseUsername>jahia</jahia.configure.databaseUsername>
<jahia.configure.databasePassword>jahia</jahia.configure.databasePassword>
</properties>
</profile>
<profile>
<id>jahia-derby-embedded</id>
<properties>
<jahia.configure.databaseType>derby_embedded</jahia.configure.databaseType>
<jahia.configure.databaseUrl>jdbc:derby:directory:jahia;create=true</jahia.configure.databaseUrl>
<jahia.configure.databaseUsername></jahia.configure.databaseUsername>
<jahia.configure.databasePassword></jahia.configure.databasePassword>
</properties>
</profile>
<profile>
<id>jahia-tomcat</id>
<properties>
<jahia.deploy.targetServerType>tomcat</jahia.deploy.targetServerType>
<jahia.deploy.targetServerDirectory>C:/development/apache-tomcat-7.0.52</jahia.deploy.targetServerDirectory>
<!-- Uncomment these lines if you wish deploy Jahia into e.g. /jahia and not ROOT context (by default)
<jahia.deploy.war.dirName>jahia</jahia.deploy.war.dirName>
<jahia.deploy.war.contextPath>/jahia</jahia.deploy.war.contextPath>
-->
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>jahia-mysql</activeProfile>
<activeProfile>jahia-tomcat</activeProfile>
<!--
<activeProfile>eclipse-integration</activeProfile>
-->
</activeProfiles>
<pluginGroups>
<pluginGroup>org.jahia.server</pluginGroup>
</pluginGroups>
</settings>