Skip to content

Commit

Permalink
move sources to github
Browse files Browse the repository at this point in the history
  • Loading branch information
imod committed Jan 23, 2011
1 parent e59baa4 commit 605f30c
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
/work
/target
39 changes: 38 additions & 1 deletion pom.xml
@@ -1,4 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jvnet.hudson.plugins</groupId>
Expand Down Expand Up @@ -46,6 +47,42 @@ In future it will also allow to deploy artifacts to the same repo.</description>
</pluginRepository>
</pluginRepositories>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0</version>
<configuration>
<goals>deploy</goals>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:git:git://github.com/hudson/repository-connector-plugin.git</connection>
<developerConnection>scm:git:git@github.com:hudson/repository-connector-plugin.git</developerConnection>
<url>http://github.com/hudson/repository-connector-plugin</url>
</scm>
<distributionManagement>
<repository>
<id>java.net-m2-repository</id>
<url>http://maven.hudson-labs.org:8081/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<!-- prevent accidental deployment of SNAPSHOTS to repository -->
<id>local.repository</id>
<url>file:/tmp/dummy-repo</url>
</snapshotRepository>
</distributionManagement>

<dependencies>
<dependency>
<groupId>org.ops4j.pax.url</groupId>
Expand Down

0 comments on commit 605f30c

Please sign in to comment.