This repository has been archived by the owner on Dec 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
924b3ec
commit 08da6df
Showing
5 changed files
with
50 additions
and
12 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 |
---|---|---|
|
@@ -3,23 +3,42 @@ | |
<parent> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>plugin</artifactId> | ||
<version>1.427</version><!-- which version of Hudson is this plugin built against? --> | ||
<relativePath>../pom.xml</relativePath> | ||
<version>1.515</version><!-- which version of Hudson is this plugin built against? --> | ||
</parent> | ||
|
||
<groupId>com.etsy.jenkins</groupId> | ||
<artifactId>MasterProject</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
<packaging>hpi</packaging> | ||
|
||
<name>Jenkins Master Project Plugin</name> | ||
<description> | ||
This plugin provides a new project type. In this new project type you can select a list of sub-projects which should be executed in one logical master project. | ||
</description> | ||
<scm> | ||
<connection>scm:git:ssh://github.com/etsy/jenkins-master-project.git</connection> | ||
<developerConnection>scm:git:[email protected]/etsy/jenkins-master-project.git</developerConnection> | ||
<url>https://github.com/etsy/jenkins-master-project.git</url> | ||
</scm> | ||
<!--<url>https://wiki.jenkins-ci.org/display/JENKINS/</url>--> | ||
<developers> | ||
<developer> | ||
<id>jgedarovich</id> | ||
<name>Jimbo</name> | ||
</developer> | ||
</developers> | ||
<repositories> | ||
<repository> | ||
<id>jenkins-public</id> | ||
<url>http://repo.jenkins-ci.org/public/</url> | ||
</repository> | ||
</repositories> | ||
|
||
<!-- get every artifact through the public Jenkins plugin repository --> | ||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>repo.jenkins-ci.org</id> | ||
<url>http://repo.jenkins-ci.org/public/</url> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.jvnet.hudson.plugins</groupId> | ||
|
@@ -40,14 +59,20 @@ | |
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.inject</groupId> | ||
<artifactId>guice</artifactId> | ||
<version>2.0</version> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>mailer</artifactId> | ||
<version>1.8</version> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.sonatype.sisu</groupId> | ||
<artifactId>sisu-guice</artifactId> | ||
<version>3.1.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.inject.extensions</groupId> | ||
<artifactId>guice-assisted-inject</artifactId> | ||
<version>2.0</version> | ||
<groupId>org.sonatype.sisu.inject</groupId> | ||
<artifactId>guice-assistedinject</artifactId> | ||
<version>3.1.0</version> | ||
</dependency> | ||
</dependencies> | ||
</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
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
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
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