<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
	
	<modelVersion>4.0.0</modelVersion>
	<groupId>io.cellulant</groupId>
	<artifactId>CheckoutEncryption</artifactId>
	<version>0.0.1</version>
	<name>CheckoutEncryption</name>
	<description>Checkout Encryption</description>
	<url>https://cellulant.io</url>
  
	<licenses>
	 <license>
	   <name>The Apache License, Version 2.0</name>
	   <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
	 </license>
	</licenses>
	
	 <developers>
	  <developer>
	    <name>Rakesh Soni</name>
	    <email>rakesh.soni@cellulant.io</email>
	    <organization>Cellulant</organization>
	    <organizationUrl>https://cellulant.io</organizationUrl>
	  </developer>
	</developers>

	<properties>
		<java.version>8</java.version>
	    <maven.compiler.source>1.8</maven.compiler.source>
	    <maven.compiler.target>1.8</maven.compiler.target>	    
	    <jackson.version>2.12.1</jackson.version>    
	</properties>
		
	<scm>
	  <connection>scm:git:git://thanos.cellulant.africa/cellulant-public/tingg-global-merchants/libraries/java/checkout-java-encryption.git</connection>
	  <developerConnection>scm:git:git://thanos.cellulant.africa/cellulant-public/tingg-global-merchants/libraries/java/checkout-java-encryption.git</developerConnection>
	  <url>https://thanos.cellulant.africa/cellulant-public/tingg-global-merchants/libraries/java/checkout-java-encryption</url>
	</scm>
	
	<dependencies>    
		
		<dependency>
		    <groupId>com.fasterxml.jackson.core</groupId>
		    <artifactId>jackson-annotations</artifactId>
		    <version>${jackson.version}</version>
		</dependency>
		
		<dependency>  
		     <groupId>com.fasterxml.jackson.core</groupId>  
		     <artifactId>jackson-databind</artifactId>  
		     <version>${jackson.version}</version>
		</dependency>  		
		
	</dependencies>  	
	
	<!-- Distribution Management and Authentication  -->
	<distributionManagement>
	  <snapshotRepository>
	    <id>ossrh</id>
	    <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
	  </snapshotRepository>
	</distributionManagement>
	<build>
	  <plugins>
	    <plugin>
	      <groupId>org.sonatype.plugins</groupId>
	      <artifactId>nexus-staging-maven-plugin</artifactId>
	      <version>1.6.7</version>
	      <extensions>true</extensions>
	      <configuration>
	        <serverId>ossrh</serverId>
	        <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
	        <autoReleaseAfterClose>true</autoReleaseAfterClose>
	      </configuration>
	    </plugin>
	    <!-- Sources Attachments  -->
	    <plugin>
	      <groupId>org.apache.maven.plugins</groupId>
	      <artifactId>maven-source-plugin</artifactId>
	      <version>2.2.1</version>
	      <executions>
	        <execution>
	          <id>attach-sources</id>
	          <goals>
	            <goal>jar-no-fork</goal>
	          </goals>
	        </execution>
	      </executions>
	    </plugin>
	    <!-- Javadoc  -->
	    <plugin>
	      <groupId>org.apache.maven.plugins</groupId>
	      <artifactId>maven-javadoc-plugin</artifactId>
	      <version>2.9.1</version>
	      <executions>
	        <execution>
	          <id>attach-javadocs</id>
	          <goals>
	            <goal>jar</goal>
	          </goals>
	        </execution>
	      </executions>
	    </plugin>
	    
	    <!-- GPG Signed Components  -->
	   	<plugin>
	      <groupId>org.apache.maven.plugins</groupId>
	      <artifactId>maven-gpg-plugin</artifactId>
	      <version>1.5</version>
	      <executions>
	        <execution>
	          <id>sign-artifacts</id>
	          <phase>verify</phase>
	          <goals>
	            <goal>sign</goal>
	          </goals>
	        </execution>
	      </executions>
	    </plugin>
	    
	  </plugins>
	</build>
  
</project>