
<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>com.sshtools</groupId>
		<artifactId>maverick-synergy-group</artifactId>
		<version>3.1.2</version>
	</parent>
	<artifactId>maverick-synergy-common</artifactId>
	<name>Common API</name>
	<description>The core components shared between the Maverick Synergy Client and Maverick Synergy Server SSH APIs</description>

	<dependencies>
		<dependency>
			<groupId>com.sshtools</groupId>
			<artifactId>maverick-base</artifactId>
			<version>${project.version}</version>
		</dependency>
	</dependencies>
	
	<build>
		<plugins>
			<plugin>
				<groupId>org.sshtools</groupId>
				<artifactId>codeswitcher-maven-plugin</artifactId>
				<version>2.0.1-SNAPSHOT</version>
				<executions>
					<execution>
						<id>enterprise-build</id>
						<phase>generate-sources</phase>
						<goals>
							<goal>pre-process</goal>
						</goals>
						<configuration>
							<changeBuildSourceDirectory>true</changeBuildSourceDirectory>
							<temporaryDirectory>target/enterprise-src</temporaryDirectory>
							<comment>false</comment>
							<workOnCopy>true</workOnCopy>
							<timestampToken>/* RELEASE_DATE */</timestampToken>
							<tokens>
								<token>
									<key>SOFTWARE_VERSION_COMMENTS</key>
									<value>MaverickSynergy_${project.version}</value>
								</token>
								<token>
									<key>/* VERSION */</key>
									<value>${project.version}</value>
								</token>
							</tokens>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	
	<pluginRepositories>
		<pluginRepository>
			<id>public-snapshots</id>
			<url>https://artifactory.jadaptive.com/public-snapshots</url>
			<snapshots/>
			<releases>
				<enabled>false</enabled>
			</releases>
		</pluginRepository>
		<pluginRepository>
			<id>ext-snapshots-local</id>
			<url>https://artifactory.jadaptive.com/ext-snapshots-local</url>
			<snapshots/>
			<releases>
				<enabled>false</enabled>
			</releases>
		</pluginRepository>
		<pluginRepository>
			<id>opensource-snapshots</id>
			<url>https://artifactory.jadaptive.com/opensource-snapshots</url>
			<snapshots/>
			<releases>
				<enabled>false</enabled>
			</releases>
		</pluginRepository>
	</pluginRepositories>
</project>