<?xml version="1.0" encoding="UTF-8"?>
<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>org.platkmframework</groupId>
  <artifactId>platkmframework-util</artifactId>
  <version>2.0.0</version>
  
  <packaging>jar</packaging>
  
  
	<name>org.platkmframework:platkmframework-util</name>
  	<description>platkmframework parent common</description>
  	<url>https://github.com/platkmframework/platkmframework-util</url>
	<licenses>
	  	<license>
	   		<name>The Apache Software License, Version 2.0</name>
	   		<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
	  	</license>
	</licenses>
	<developers>
	  <developer>
	   <name>Eduardo Iglesias</name>
	   <email>eiglesias@platkmframework.org</email>
	   <organization>PLATKMFramework</organization>
	   <organizationUrl>https://www.platkmframework.org</organizationUrl>
	  </developer>
	</developers>  
	<scm>
	  <connection>scm:git:git://github.com/simpligility/ossrh-demo.git</connection>
	  <developerConnection>scm:git:ssh://github.com:simpligility/ossrh-demo.git</developerConnection>
	  <url>http://github.com/simpligility/ossrh-demo/tree/master</url>
	</scm>  
 
	<properties>
  		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 	</properties>	
  
	 <build>
		<plugins>
	      <plugin>
	        <artifactId>maven-compiler-plugin</artifactId>
	        <version>3.8.0</version>
	        <configuration>
	          <release>21</release>
	        </configuration>
	      </plugin>	
	      <plugin>
			<!--  Deploy a "-sources.jar" along with build  -->
			<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>
			<plugin>
		      <groupId>org.sonatype.central</groupId>
		      <artifactId>central-publishing-maven-plugin</artifactId>
		      <version>0.6.0</version>
		      <extensions>true</extensions>
		      <configuration>
		         <publishingServerId>central</publishingServerId>
		         <autoPublish>true</autoPublish>
		      </configuration>
		    </plugin>			 
		</plugins>
	</build>  
	
	<dependencies>
	  	<dependency>
	  		<groupId>commons-validator</groupId>
	  		<artifactId>commons-validator</artifactId>
	  		<version>1.6</version>
	  	</dependency>
		<dependency>
		    <groupId>commons-io</groupId>
		    <artifactId>commons-io</artifactId>
		    <version>2.18.0</version>
		</dependency> 
		<dependency>
		    <groupId>org.apache.commons</groupId>
		    <artifactId>commons-lang3</artifactId>
		    <version>3.17.0</version>
		</dependency> 
		
		<!-- JAKARTA VALIDATOR-->
		<dependency>
		    <groupId>jakarta.validation</groupId>
		    <artifactId>jakarta.validation-api</artifactId>
		    <version>3.0.2</version>
		</dependency>
		
		 <!-- MAPPER OBJETS to object-->
		 <dependency>
			 <groupId>com.github.dozermapper</groupId>
			 <artifactId>dozer-core</artifactId>
			 <version>7.0.0</version>
		 </dependency>	
		 
		 <!-- FTP-->
		 <dependency>
			 <groupId>commons-net</groupId>
			 <artifactId>commons-net</artifactId>
			 <version>3.11.1</version>
		 </dependency>
		 
		<!-- GSON JSON MAPPER-->
		<dependency>
		    <groupId>com.google.code.gson</groupId>
		    <artifactId>gson</artifactId>
		    <version>2.10.1</version>
		</dependency> 
	 	
	</dependencies>
</project>
