-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmaven-example-settings.xml
More file actions
26 lines (22 loc) · 1.25 KB
/
maven-example-settings.xml
File metadata and controls
26 lines (22 loc) · 1.25 KB
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
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0
http://maven.apache.org/xsd/settings-1.1.0.xsd"
>
<!-- This is an example Maven settings.xml file. It contains specific Chon and
megx.net build settings specific for local compute environments. Please copy whole
file or contents to your local Maven settings.xml (default in $HOME/.m2/settings.xml)
file and adjust configuration accordingly. -->
<!-- The configuration for the the megx.net core and the modules have been moved
to config/default.properties. Create a developer specific configuration copy the
default.properties to config/developer/${user.name}.properties and adjust the
configuration values accordingly. -->
<!-- this server is required to create the JCR repository in work directory.
Please ask for user/password -->
<servers>
<server>
<id>dev-dav.megx.net</id>
<username><!-- you need to ask for it --></username>
<password><!-- you need to ask for it --></password>
</server>
</servers>
</settings>