-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.xml
40 lines (36 loc) · 1.06 KB
/
settings.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
<!-- Maven settings.xml -->
<settings>
<profiles>
<profile>
<id>my-css-settings</id>
<properties>
<!-- Configure either a composite repo
or a local repository, not both!
-->
<!-- Path to your composite repo -->
<!--
<csstudio.composite.repo>/path/to/my_comp_repo</csstudio.composite.repo>
-->
<!-- Path to your local repo -->
<csstudio.local.repo>/Users/wu049/.m2/repository/p2</csstudio.local.repo>
<!-- Setting this property DISABLES
downloads from
download.controlsystemstudio.org,
so you use only your
local or composite repo
-->
<cs-studio>dummy_value</cs-studio>
<!-- Issue warnings instead of aborting on error -->
<baselineMode>warn</baselineMode>
<jgit.dirtyWorkingTree>warning</jgit.dirtyWorkingTree>
<!-- Skip unit tests -->
<maven.test.skip>true</maven.test.skip>
<skipTests>true</skipTests>
</properties>
</profile>
</profiles>
<!-- Enable the above settings -->
<activeProfiles>
<activeProfile>my-css-settings</activeProfile>
</activeProfiles>
</settings>