<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id: pom.xml 39481 2011-05-12 20:14:54Z kutzi $ -->
<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>
    <artifactId>instant-messaging-parent</artifactId>
    <version>1.14</version>
    <relativePath>../instant-messaging-parent/pom.xml</relativePath>
  </parent>
  <artifactId>ircbot</artifactId>
  <packaging>hpi</packaging>
  <version>2.14</version>
  <name>Jenkins IRC Plugin</name>
  <description>A Build status publisher that notifies channels on a IRC server</description>
  <url>http://wiki.jenkins-ci.org/display/JENKINS/IRC+Plugin</url>
  <licenses>
  	<license>
        <name>MIT license</name>
        <comments>All source code is under the MIT license.</comments>
    </license>
  </licenses>
  
  <properties>
  	<version.instant-messaging.plugin>1.17</version.instant-messaging.plugin>
  </properties>
  
  <dependencies>
     <dependency>
     	<groupId>org.jvnet.hudson.plugins</groupId>
     	<artifactId>instant-messaging</artifactId>
     	<version>${version.instant-messaging.plugin}</version>
	    <scope>compile</scope>
     </dependency>
    <dependency>
      <groupId>org.pircbotx</groupId>
      <artifactId>pircbotx</artifactId>
      <version>1.3-Beta-2</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
  
  <build>
	    <plugins>
			<plugin>
				<artifactId>maven-release-plugin</artifactId>
				<configuration>
					<goals>deploy</goals>
				</configuration>
			</plugin>
		</plugins>
  </build>
  
  <repositories>
    <!-- Contains the latest version of pircbot -->
  	<repository>
        <id>JA-SIG</id>
        <url>http://developer.jasig.org/repo/content/groups/m2-legacy/</url>
        <releases>
           <enabled>true</enabled>
        </releases>
        <snapshots>
          <enabled>false</enabled>
        </snapshots>
     </repository>
  </repositories>
  
  <developers>
    <developer>
        <id>kutzi</id>
        <name>Christoph Kutzinski</name>
        <email>kutzi@gmx.de</email>
        <timezone>1</timezone>
    </developer>
  </developers>
  
  <scm>
    <connection>scm:git:github.com:jenkinsci/ircbot-plugin.git</connection>
    <developerConnection>scm:git:git@github.com:jenkinsci/ircbot-plugin.git</developerConnection>
    <url>http://fisheye.jenkins-ci.org/browse/Jenkins/trunk/hudson/plugins/ircbot</url>
  </scm>
</project>
