forked from jenkinsci/git-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the ~/.m2/settings.xml that I needed on my fresh Linux machine
in order to properly build the plugin standalone
- Loading branch information
R. Tyler Ballance
authored and
Nigel Magnay
committed
Jul 22, 2009
1 parent
127daf5
commit 092e636
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |