<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>
  
  <groupId>dev.peerat.framework</groupId>
  <artifactId>peer-at-code-framework</artifactId>
  <packaging>jar</packaging>
  <version>1.2.0</version>
  <name>peer-at-code-framework</name>
  <description>Framework du projet Peer@Code</description>
  <url>https://git.peerat.dev/Peer-at-Code/peer-at-code-framework</url>
  
  <licenses>
    <license>
      <name>The MIT License</name>
      <url>https://peerat.dev/lib/licence</url>
      <distribution>manual</distribution>
    </license>
  </licenses>
  
  <scm>
    <url>https://git.peerat.dev/Peer-at-Code/peer-at-code-framework</url>
    <connection>scm:git:https://git.peerat.dev/Peer-at-Code/peer-at-code-framework.git</connection>
    <developerConnection>scm:git:git@git.peerat.dev:Peer-at-Code/peer-at-code-framework.git</developerConnection>
    <tag>HEAD</tag>
  </scm>
  
  <developers>
    <developer>
      <id>jeffcheasey88</id>
      <name>jeffcheasey88</name>
      <email>jeffcheasey88@peerat.dev</email>
      <organization>peerat.dev</organization>
      <organizationUrl>https://peerat.dev</organizationUrl>
    </developer>
  </developers>
  
  <dependencies>
  	<dependency>
    	<groupId>dev.peerat.parser</groupId>
    	<artifactId>peer-at-code-parser</artifactId>
    	<version>1.0.1</version>
	</dependency>
  	<dependency>
    	<groupId>org.bitbucket.b_c</groupId>
    	<artifactId>jose4j</artifactId>
    	<version>0.9.6</version>
	</dependency>
	<dependency>
    	<groupId>com.password4j</groupId>
    	<artifactId>password4j</artifactId>
    	<version>1.8.4</version>
	</dependency>
  </dependencies>
  
    <build>
  	<plugins>
  
    	<plugin>
      	<groupId>org.apache.maven.plugins</groupId>
      	<artifactId>maven-source-plugin</artifactId>
      	<version>3.3.1</version>
      	<executions>
        	<execution>
         	 <id>attach-sources</id>
         	 <goals><goal>jar</goal></goals>
       	 </execution>
     	 </executions>
   	 </plugin>

   	 <plugin>
    	  <groupId>org.apache.maven.plugins</groupId>
    	  <artifactId>maven-javadoc-plugin</artifactId>
    	  <version>3.11.2</version>
    	  <executions>
    	    <execution>
     	     <id>attach-javadocs</id>
    	      <goals><goal>jar</goal></goals>
    	    </execution>
    	  </executions>
    	</plugin>

   	 <plugin>
    	  <groupId>org.apache.maven.plugins</groupId>
    	  <artifactId>maven-gpg-plugin</artifactId>
    	  <version>3.2.7</version>
    	  <executions>
    	    <execution>
    	      <id>sign-artifacts</id>
    	      <phase>verify</phase>
    	      <goals><goal>sign</goal></goals>
    	    </execution>
    	  </executions>
   	 </plugin>

  	</plugins>
  </build>
  
  <distributionManagement>
  	<repository>
    	<id>ossrh</id>
    	<name>OSSRH Releases</name>
    	<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  	</repository>
  	<snapshotRepository>
   	 <id>ossrh</id>
    	<name>OSSRH Snapshots</name>
    	<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
  	</snapshotRepository>
  </distributionManagement>
</project>
