<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>
	<parent>
		<groupId>br.com.esec.icpm</groupId>
		<artifactId>icpm-mss-parent</artifactId>
		<version>1.8.4</version>
	</parent>
	
	<artifactId>mss-ws-client</artifactId>
	
	<name>Mobile Signature Server Web Service Client (Certillion Signature Server)</name>
	<description>This library is used to make integration with Certillion Signature Server.</description>
	<url>http://www.certillion.com/index.php/desenvolvedor</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>Alex Oliveira</name>
			<email>aoliveira@esec.com.br</email>
			<organization>E-Sec Segurança de Dados</organization>
			<organizationUrl>http://www.esec.com.br</organizationUrl>
		</developer>
		<developer>
			<name>Caio Cristo</name>
			<email>caiocristo@esec.com.br</email>
			<organization>E-Sec Segurança de Dados</organization>
			<organizationUrl>http://www.esec.com.br</organizationUrl>
		</developer>
		<developer>
			<name>Cristiano Cristo</name>
			<email>ccristo@esec.com.br</email>
			<organization>E-Sec Segurança de Dados</organization>
			<organizationUrl>http://www.esec.com.br</organizationUrl>
		</developer>
		<developer>
			<name>Marcos Gordinho</name>
			<email>mgodinho@esec.com.br</email>
			<organization>E-Sec Segurança de Dados</organization>
			<organizationUrl>http://www.esec.com.br</organizationUrl>
		</developer>
		<developer>
			<name>Tales Porto</name>
			<email>tporto@esec.com.br</email>
			<organization>E-Sec Segurança de Dados</organization>
			<organizationUrl>http://www.esec.com.br</organizationUrl>
		</developer>
	</developers>
	
	<dependencies>
	
		<!-- WS Client Common -->
		<dependency>
			<groupId>br.com.esec.icpm</groupId>
			<artifactId>icpm-ws-client-common</artifactId>
			<version>${project.version}</version>
		</dependency>
		
		<!-- Commons Logging -->
		<dependency>
			<groupId>commons-logging</groupId>
			<artifactId>commons-logging</artifactId>
			<scope>provided</scope>
		</dependency>
		
	</dependencies>
		
	<build>
		<plugins>
			<!-- SOURCE PLUGIN -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>

			<!-- JAVADOC PLUGIN -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	
	<distributionManagement>
		<repository>
			<id>jcenter</id>
			<url>https://api.bintray.com/maven/e-sec/Certillion/mss-ws-client/;publish=1</url>
		</repository>

		<snapshotRepository>
			<id>nexus</id>
			<url>http://esec-server:8080/nexus/content/repositories/snapshots/</url>
		</snapshotRepository>
	</distributionManagement>
</project>
