
<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>be.mjosoft</groupId>
  <artifactId>MjoSoft-APNService</artifactId>
  <version>1.0.2</version>
  <packaging>jar</packaging>
  <description>Java library for easy integration into the Apple Push Notification Service in a Java application.</description>

  <name>MjoSoft-APNService</name>
  <url>http://www.mjosoft.eu</url>

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>

  <licenses>
    <license>
      <name>GNU General Public License, version 2</name>
      <url>http://http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <version>1.7.1</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      
      <!-- Plugin de deploiement -->
      <plugin> 
        <artifactId>maven-deploy-plugin</artifactId> 
        <version>2.5</version> 
        <dependencies> 
          <dependency> 
            <groupId>org.apache.maven.wagon</groupId> 
            <artifactId>wagon-webdav</artifactId> 
            <version>1.0-beta-2</version> 
          </dependency> 
        </dependencies> 
      </plugin> 
            
       <!-- Plugin de JavaDoc -->
      <plugin> 
        <groupId>org.apache.maven.plugins</groupId> 
        <artifactId>maven-javadoc-plugin</artifactId> 
        <version>2.7</version> 
        <configuration> 
          <show>private</show> 
          <nohelp>true</nohelp> 
        </configuration> 
        <executions> 
          <execution> 
            <id>javadoc</id> 
            <phase>verify</phase> 
            <goals> 
              <goal>jar</goal> 
            </goals> 
          </execution> 
        </executions> 
      </plugin> 

      <!-- Plugin de code source -->
      <plugin> 
        <groupId>org.apache.maven.plugins</groupId> 
        <artifactId>maven-source-plugin</artifactId> 
        <version>2.1.2</version> 
        <executions> 
          <execution> 
            <id>attach-sources</id> 
            <phase>verify</phase> 
            <goals> 
              <goal>jar-no-fork</goal> 
            </goals> 
          </execution> 
        </executions> 
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.0.2</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.4</version>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>


    </plugins>

        
    <extensions>
      <extension>
        <groupId>org.jvnet.wagon-svn</groupId>
        <artifactId>wagon-svn</artifactId>
        <version>1.9</version>
      </extension>
    </extensions>
  </build>

  <scm>
    <connection>scm:git:http://bitbucket.org/marcjordant/mjosoft-apnservice</connection>
    <developerConnection>scm:git:https://bitbucket.org/marcjordant/mjosoft-apnservice</developerConnection>
    <url>http://bitbucket.org/marcjordant/mjosoft-apnservice</url>
  </scm>
  
  <developers>
    <developer>
      <id>mj</id>
      <name>Marc Jordant</name>
      <email>marc@mjosoft.eu</email>
      <organization>MjoSoft</organization>
      <organizationUrl>http://www.mjosoft.eu</organizationUrl>
    </developer>
  </developers>

</project>