<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>
	<artifactId>callback-lib</artifactId>
	<name>Standalone Callback Client Library</name>
	<description>Separated callback library, intended for use in VMCentre, Access Manager and LogonBox.</description>
	<groupId>com.nervepoint</groupId>
	<version>1.0.4-SNAPSHOT</version>
	<packaging>jar</packaging>

	<properties>
		<build.application.version>${project.version}</build.application.version>
		<build.application.version.withBuildNumber>${project.version}-${buildNumber}</build.application.version.withBuildNumber>

		<maven.compiler.target>1.8</maven.compiler.target>
		<maven.compiler.source>1.8</maven.compiler.source>

		<!-- Should be set by Jenkins when building for specific major version -->
		<stagingRepositoryLocation>${basedir}/staging</stagingRepositoryLocation>
		<stagingRepositoryTarget>testing99</stagingRepositoryTarget>

	</properties>
	<dependencies>

		<dependency>
			<groupId>com.sshtools</groupId>
			<artifactId>forker-client</artifactId>
			<version>1.7-SNAPSHOT</version>
		</dependency>

		<dependency>
			<groupId>com.sshtools</groupId>
			<artifactId>forker-services</artifactId>
			<version>1.7-SNAPSHOT</version>
		</dependency>
	</dependencies>
	<scm>
		<connection>scm:svn:http://127.0.0.1/dummy</connection>
		<developerConnection>scm:svn:https://127.0.0.1/dummy</developerConnection>
		<tag>HEAD</tag>
		<url>http://127.0.0.1/dummy</url>
	</scm>

	<distributionManagement>
		<repository>
			<uniqueVersion>false</uniqueVersion>
			<id>public-releases</id>
			<name>Public Releases</name>
			<url>http://artifactory.javassh.com/public-releases</url>
			<layout>default</layout>
		</repository>
		<snapshotRepository>
			<uniqueVersion>true</uniqueVersion>
			<id>public-snapshots</id>
			<name>Public Snapshots</name>
			<url>http://artifactory.javassh.com/public-snapshots</url>
			<layout>default</layout>
		</snapshotRepository>
		<site>
			<id>nervepoint-site</id>
			<url>${siteDeploymentLocation}/${project.artifactId}/</url>
		</site>
	</distributionManagement>

	<repositories>
		<!-- Central Maven repository -->
		<repository>
			<id>repo1</id>
			<url>http://repo1.maven.org/maven2</url>
			<releases>
				<enabled>true</enabled>
			</releases>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>

		<!-- Nervepoint private repository (non open-source stuff) -->
		<repository>
			<id>nervepoint-releases</id>
			<url>http://artifactory.javassh.com/nervepoint-releases/</url>
			<releases/>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
		<repository>
			<id>nervepoint-snapshots</id>
			<url>http://artifactory.javassh.com/nervepoint-snapshots/</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots/>
		</repository>

		<!-- SSHTools own private repository (non open-source stuff) -->

		<repository>
			<id>libs-releases</id>
			<url>http://artifactory.javassh.com/libs-releases-local/</url>
			<releases/>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
		<repository>
			<id>libs-snapshots</id>
			<url>http://artifactory.javassh.com/libs-snapshots-local/</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots/>
		</repository>

		<!-- Other third party libraries we hold in our Artifactory -->
		<repository>
			<id>ext-releases</id>
			<url>http://artifactory.javassh.com/ext-releases-local/</url>
			<releases/>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
		<repository>
			<id>ext-snapshots</id>
			<url>http://artifactory.javassh.com/ext-snapshots-local/</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots/>
		</repository>

		<!-- Open source hosted at sshtools repository -->

		<repository>
			<id>public-releases</id>
			<url>http://artifactory.javassh.com/public-releases</url>
			<releases/>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
		<repository>
			<id>public-snapshots</id>
			<url>http://artifactory.javassh.com/public-snapshots</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots/>
		</repository>

		<!-- Opensource releases hosted at sshtools -->

		<repository>
			<id>opensource-releases</id>
			<url>http://artifactory.javassh.com/opensource-releases</url>
			<releases/>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
		<repository>
			<id>opensource-snapshots</id>
			<url>http://artifactory.javassh.com/opensource-snapshots</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
		</repository>

		<!-- For Identity4J snapshots -->
		<repository>
			<id>sonatype-oss-snapshots</id>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots/>
			<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
		</repository>

	</repositories>

	<pluginRepositories>

		<!-- Central Maven plugin repository. -->

		<pluginRepository>
			<id>repo1</id>
			<url>http://repo1.maven.org/maven2</url>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</pluginRepository>

		<!-- Sonatype OSS Snapshots repository. -->

		<pluginRepository>
			<id>oss-shapshots</id>
			<url>https://oss.sonatype.org/content/groups/public</url>
			<snapshots/>
			<releases>
				<enabled>false</enabled>
			</releases>
		</pluginRepository>

		<!-- Other third party plugins (e.g. the DEB plugin. -->

		<pluginRepository>
			<id>ext-releases</id>
			<url>http://artifactory.javassh.com/ext-releases-local
			</url>
			<releases/>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</pluginRepository>
		<pluginRepository>
			<id>ext-snapshots</id>
			<url>http://artifactory.javassh.com/ext-snapshots-local
			</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots/>
		</pluginRepository>

		<pluginRepository>
			<id>plugins-releases</id>
			<url>http://artifactory.javassh.com/plugins-releases-local/</url>
			<releases/>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</pluginRepository>
		<pluginRepository>
			<id>plugins-snapshots</id>
			<url>http://artifactory.javassh.com/plugins-snapshots-local/</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots/>
		</pluginRepository>

		<pluginRepository>
			<id>opensource-releases</id>
			<url>http://artifactory.javassh.com/opensource-releases</url>
			<releases/>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</pluginRepository>
		<pluginRepository>
			<id>opensource-snapshots</id>
			<url>http://artifactory.javassh.com/opensource-snapshots</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots/>
		</pluginRepository>

	</pluginRepositories>
</project>