<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.17</version>
        <relativePath>../instant-messaging-parent-plugin/pom.xml</relativePath>
    </parent>
    
    <artifactId>jabber</artifactId>
    <packaging>hpi</packaging>
    <name>Jenkins Jabber notifier plugin</name>
    <version>1.21</version>
    <url>http://wiki.jenkins-ci.org/display/JENKINS/Jabber+Plugin</url>
    <developers>
        <developer>
            <id>kutzi</id>
            <name>Christoph Kutzinski</name>
            <email>kutzi@gmx.de</email>
            <timezone>1</timezone>
        </developer>
    </developers>
    
    <licenses>
        <license>
            <name>MIT license</name>
            <comments>All source code is under the MIT license.</comments>
        </license>
    </licenses>
    
    <properties>
  	  <version.instant-messaging.plugin>1.19</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>jivesoftware</groupId>
            <artifactId>smack</artifactId>
            <version>3.2.1</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>jivesoftware</groupId>
            <artifactId>smackx</artifactId>
            <version>3.2.1</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>

    <!-- get every artifact through maven.glassfish.org, which proxies all 
        the artifacts that we need -->
    <repositories>
        <repository>
            <id>m.g.o-public</id>
            <url>http://maven.glassfish.org/content/groups/public/</url>
        </repository>
    </repositories>

  <scm>
    <connection>scm:git:github.com:jenkinsci/jabber-plugin.git</connection>
    <developerConnection>scm:git:git@github.com:jenkinsci/jabber-plugin.git</developerConnection>
    <url>http://fisheye.jenkins-ci.org/browse/Jenkins/trunk/hudson/plugins/jabber</url>
  </scm>
</project>
