<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>org.ligoj.api</groupId>
		<artifactId>plugin-parent</artifactId>
		<version>4.3.1</version>
		<relativePath />
	</parent>

	<groupId>org.ligoj.plugin</groupId>
	<artifactId>plugin-prov</artifactId>
	<version>4.0.0</version>
	<packaging>jar</packaging>
	<name>Ligoj - Plugin Provisioning</name>
	<url>https://github.com/ligoj/plugin-prov</url>

	<scm>
		<connection>scm:git:https://github.com/ligoj/plugin-prov</connection>
		<developerConnection>scm:git:https://github.com/ligoj/plugin-prov</developerConnection>
		<url>https://github.com/ligoj/plugin-prov.git</url>
	</scm>
	<properties>
		<awaitility.version>4.2.0</awaitility.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>org.awaitility</groupId>
			<artifactId>awaitility</artifactId>
			<version>${awaitility.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.awaitility</groupId>
			<artifactId>awaitility-proxy</artifactId>
			<version>3.1.6</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<profiles>
		<profile>
			<id>github</id>
			<distributionManagement>
				<repository>
					<id>github-ligoj</id>
					<name>GitHub Packages</name>
					<url>https://maven.pkg.github.com/ligoj/plugin-prov</url>
				</repository>
			</distributionManagement>
		</profile>
	</profiles>
</project>