Skip to content

Commit

Permalink
Add the ~/.m2/settings.xml that I needed on my fresh Linux machine
Browse files Browse the repository at this point in the history
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.
41 changes: 41 additions & 0 deletions dotm2_settings.xml
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>

0 comments on commit 092e636

Please sign in to comment.