forked from jenkinsci/git-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dotm2_settings.xml
41 lines (37 loc) · 1004 Bytes
/
dotm2_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
41
<!-- In order to build, this should go into your ~/.m2/settings.xml file if you don't have it already -->
<!-- Also be sure to properly export M2_HOME, i.e. `export M2_HOME=/usr/local/apache-maven-2.0.9` -->
<settings>
<profiles>
<profile>
<id>hudson</id>
<activation>
<activeByDefault />
</activation>
<pluginRepositories>
<pluginRepository>
<id>java.net2</id>
<url>http://download.java.net/maven/2</url>
</pluginRepository>
</pluginRepositories>
<repositories>
<repository>
<id>java.net2</id>
<url>http://download.java.net/maven/2</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>hudson</activeProfile>
</activeProfiles>
<pluginGroups>
<pluginGroup>org.jvnet.hudson.tools</pluginGroup>
</pluginGroups>
</settings>