Skip to content

Commit

Permalink
Depend on Jenkins 1.399
Browse files Browse the repository at this point in the history
  • Loading branch information
btrim committed Apr 30, 2011
1 parent 644327e commit 13c16c1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
20 changes: 14 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<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>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.319</version>
<version>1.399</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>cvs-tag</artifactId>
Expand All @@ -17,14 +17,22 @@
</licenses>
<url>http://wiki.jenkins-ci.org/display/JENKINS/CVS+Tagging+Plugin</url>

<dependencies>
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>cvs</artifactId>
<version>1.3</version>
</dependency>
</dependencies>

<scm>
<connection>scm:git:ssh://github.com/jenkinsci/cvs-tag-plugin.git</connection>
<developerConnection>scm:git:ssh://[email protected]/jenkinsci/cvs-tag-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/cvs-tag-plugin</url>
<connection>scm:git:git://github.com/jenkinsci/cvs-tag-plugin.git</connection>
<developerConnection>scm:git:[email protected]/jenkinsci/cvs-tag-plugin.git</developerConnection>
<url>http://github.com/jenkinsci/cvs-tag-plugin</url>
</scm>

<developers>
<developer>
<developer>
<id>btrim</id>
<name>Brad Trimby</name>
<email>[email protected]</email>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/hudson/plugins/cvs_tag/CvsTagPublisher.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import hudson.model.BuildListener;
import hudson.Extension;
import hudson.Launcher;
import hudson.scm.Messages;
import hudson.scm.cvs.Messages;
import hudson.tasks.BuildStepDescriptor;
import hudson.tasks.BuildStepMonitor;
import hudson.tasks.Recorder;
Expand All @@ -54,7 +54,7 @@
* @author Brendt Lucas
*/
public class CvsTagPublisher extends Recorder {
/**
/**
* The tag name
*/
private String tagName;
Expand Down

0 comments on commit 13c16c1

Please sign in to comment.