-
Notifications
You must be signed in to change notification settings - Fork 399
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from jcarsique/master
Also trigger jobs with GitHub repositories configured via MultipleSCMs plugin
- Loading branch information
Showing
2 changed files
with
90 additions
and
67 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 |
---|---|---|
|
@@ -6,59 +6,65 @@ | |
<version>1.445</version> | ||
</parent> | ||
|
||
<groupId>com.coravy.hudson.plugins.github</groupId> | ||
<artifactId>github</artifactId> | ||
<packaging>hpi</packaging> | ||
<version>1.1-SNAPSHOT</version> | ||
<name>GitHub plugin</name> | ||
<url>http://wiki.jenkins-ci.org/display/JENKINS/Github+Plugin</url> | ||
<groupId>com.coravy.hudson.plugins.github</groupId> | ||
<artifactId>github</artifactId> | ||
<packaging>hpi</packaging> | ||
<version>1.1-SNAPSHOT</version> | ||
<name>GitHub plugin</name> | ||
<url>http://wiki.jenkins-ci.org/display/JENKINS/Github+Plugin</url> | ||
|
||
<repositories> | ||
<repository> | ||
<id>jgit-repository</id> | ||
<name>Eclipse JGit Repository</name> | ||
<url>http://download.eclipse.org/jgit/maven</url> | ||
</repository> | ||
</repositories> | ||
<repositories> | ||
<repository> | ||
<id>jgit-repository</id> | ||
<name>Eclipse JGit Repository</name> | ||
<url>http://download.eclipse.org/jgit/maven</url> | ||
</repository> | ||
</repositories> | ||
|
||
<developers> | ||
<developer> | ||
<id>kohsuke</id> | ||
<name>Kohsuke Kawaguchi</name> | ||
</developer> | ||
<developer> | ||
<id>juretta</id> | ||
<name>Stefan Saasen</name> | ||
</developer> | ||
</developers> | ||
<developers> | ||
<developer> | ||
<id>kohsuke</id> | ||
<name>Kohsuke Kawaguchi</name> | ||
</developer> | ||
<developer> | ||
<id>juretta</id> | ||
<name>Stefan Saasen</name> | ||
</developer> | ||
</developers> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>github-api</artifactId> | ||
<version>1.16</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jenkinsci.plugins</groupId> | ||
<artifactId>git</artifactId> | ||
<version>1.1.12</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jmock</groupId> | ||
<artifactId>jmock-junit4</artifactId> | ||
<version>2.5.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.jgit</groupId> | ||
<artifactId>org.eclipse.jgit</artifactId> | ||
<version>0.12.1</version> | ||
</dependency> | ||
</dependencies> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>github-api</artifactId> | ||
<version>1.16</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jenkinsci.plugins</groupId> | ||
<artifactId>git</artifactId> | ||
<version>1.1.12</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jmock</groupId> | ||
<artifactId>jmock-junit4</artifactId> | ||
<version>2.5.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.jgit</groupId> | ||
<artifactId>org.eclipse.jgit</artifactId> | ||
<version>0.12.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>multiple-scms</artifactId> | ||
<version>0.2</version> | ||
<optional>true</optional> | ||
</dependency> | ||
</dependencies> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/jenkinsci/github-plugin.git</connection> | ||
<developerConnection>scm:git:[email protected]:jenkinsci/github-plugin.git</developerConnection> | ||
<url>https://github.com/jenkinsci/github-plugin</url> | ||
</scm> | ||
<scm> | ||
<connection>scm:git:git://github.com/jenkinsci/github-plugin.git</connection> | ||
<developerConnection>scm:git:[email protected]:jenkinsci/github-plugin.git</developerConnection> | ||
<url>https://github.com/jenkinsci/github-plugin</url> | ||
</scm> | ||
</project> |
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