<?xml version="1.0" encoding="UTF-8"?>

<!-- ===========================================================================
// REFCODES.ORG
// =============================================================================
// This code is copyright (c) by Siegfried Steiner, Munich, Germany and licensed
// under the following (see "http://en.wikipedia.org/wiki/Multi-licensing")
// licenses:
// =============================================================================
// GNU General Public License, v3.0 ("http://www.gnu.org/licenses/gpl-3.0.html")
// together with the GPL linking exception applied; as being applied by the GNU
// Classpath ("http://www.gnu.org/software/classpath/license.html")
// =============================================================================
// Apache License, v2.0 ("http://www.apache.org/licenses/LICENSE-2.0")
// =============================================================================
// Please contact the copyright holding author(s) of the software artifacts in
// question for licensing issues not being covered by the above listed licenses,
// also regarding commercial licensing models or regarding the compatibility
// with other open source licenses.
// ========================================================================= -->

<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>

	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- ARTIFACT                                                            -->
	<!-- /////////////////////////////////////////////////////////////////// -->

	<groupId>org.refcodes</groupId>
	<artifactId>refcodes-parent</artifactId>
	<version>1.1.9</version>
	<name>${project.groupId}:${project.artifactId}</name>
	<packaging>pom</packaging>
	
	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- PROPERTIES                                                          -->
	<!-- /////////////////////////////////////////////////////////////////// -->
	
	<properties>
		<com.amazonaws.sdk.version>1.9.25</com.amazonaws.sdk.version>
		<com.h2database.version>1.4.184</com.h2database.version>
		<com.fasterxml.jackson>2.9.2</com.fasterxml.jackson>
		<com.mashape.unirest.version>1.4.9</com.mashape.unirest.version>
		<com.mysql.jdbc.version>5.1.34</com.mysql.jdbc.version>
		<edu.vt.middleware.vt-crypt.version>2.2</edu.vt.middleware.vt-crypt.version>
		<java.source.version>1.8</java.source.version>
		<java.target.version>1.8</java.target.version>
		<jline.version>2.14.5</jline.version>
		<org.apache.commons.beanutils.version>1.8.3</org.apache.commons.beanutils.version>
		<org.apache.commons.codec.version>1.10</org.apache.commons.codec.version>
		<org.apache.commons.collection.version>3.2.2</org.apache.commons.collection.version>
		<org.apache.commons.configuration.version>1.10</org.apache.commons.configuration.version>
		<org.apache.commons.dbcp.version>1.4</org.apache.commons.dbcp.version>
		<org.apache.commons.io.version>2.4</org.apache.commons.io.version>
		<org.apache.commons.lang.version>2.6</org.apache.commons.lang.version>
		<org.apache.httpcomponents.httpclient.version>4.5.2</org.apache.httpcomponents.httpclient.version>
		<org.apache.httpcomponents.httpcore.nio.version>4.4.5</org.apache.httpcomponents.httpcore.nio.version>
		<org.apache.log4j.version>1.2.17</org.apache.log4j.version>
		<org.apache.maven.plugins.compiler.version>3.6.1</org.apache.maven.plugins.compiler.version>
		<org.apache.maven.plugins.shade.version>2.4.3</org.apache.maven.plugins.shade.version>
		<org.apache.maven.plugins.surefire.version>2.19.1</org.apache.maven.plugins.surefire.version>
		<org.apache.maven.plugins.source.version>3.0.1</org.apache.maven.plugins.source.version>
		<org.apache.xmlgraphics.batik.transcoder.version>1.8</org.apache.xmlgraphics.batik.transcoder.version>
		<org.apache.xmlgraphics.commons.version>2.0</org.apache.xmlgraphics.commons.version>
		<org.fusesource.jansi.version>1.13</org.fusesource.jansi.version>
		<com.google.code.gson.version>2.7</com.google.code.gson.version>
		<org.hibernate.c3p0.version>5.2.1.Final</org.hibernate.c3p0.version>
		<org.hibernate.core.version>4.3.7.Final</org.hibernate.core.version>
		<org.hsqldb.version>2.3.4</org.hsqldb.version>
		<org.jasypt.version>1.9.2</org.jasypt.version>
		<org.json.version>20170516</org.json.version>
		<org.junit.platform.version>1.0.1</org.junit.platform.version>
		<org.junit.jupiter.version>5.0.1</org.junit.jupiter.version>
		<org.junit.vintage.version>4.12.1</org.junit.vintage.version>
		<org.slf4j.version>1.7.12</org.slf4j.version>
		<org.sonatype.plugins.nexus.staging.version>1.6.7</org.sonatype.plugins.nexus.staging.version>
		<org.springframework.version>4.1.4.RELEASE</org.springframework.version>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- META-DATA                                                           -->
	<!-- /////////////////////////////////////////////////////////////////// -->
	
	<url>https://bitbucket.org/refcodes/${project.artifactId}</url>
	<description>
		Artifact containing information for all refcodes artifacts such as
		third party artifacts and their versions being used by refcodes 
		artifacts as well as the licensing agreements for refcodes artifacts.
	</description>
	
	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- LICENSES                                                            -->
	<!-- /////////////////////////////////////////////////////////////////// -->

	<licenses>
		<license>
			<name>GNU General Public License (GPL), Version 3.0</name>
			<url>http://www.gnu.org/licenses/gpl-3.0.html</url>
			<distribution>repo</distribution>
			<comments>See "http://en.wikipedia.org/wiki/Multi-licensing"</comments>
		</license>
		<license>
			<name>Apache License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0</url>
			<distribution>repo</distribution>
			<comments>See "http://en.wikipedia.org/wiki/Multi-licensing"</comments>
		</license>
		<license>
			<name>Other License Agreement</name>
			<url>${org.refcodes.url}</url>
			<distribution>manual</distribution>
			<comments>
				Please contact the copyright holding author(s) of the software 
				artifacts in question for licensing issues not being covered by 
				the above listed licenses, also regarding commercial licensing 
				models or regarding the compatibility with other open source 
				licenses.
			</comments>
		</license>
	</licenses>

	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- DEVELOPERS                                                          -->
	<!-- /////////////////////////////////////////////////////////////////// -->

	<developers>
		<developer>
			<name>Siegfried Steiner</name>
			<email>steiner@refcodes.org</email>
			<url>http://www.refcodes.org</url>
		</developer>
	</developers>

	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- SCM                                                                 -->
	<!-- /////////////////////////////////////////////////////////////////// -->

	<scm>
		<connection>scm:git:git@bitbucket.org:refcodes/${project.artifactId}.git</connection>
		<developerConnection>scm:git:git@bitbucket.org:refcodes/${project.artifactId}.git</developerConnection>
		<url>https://bitbucket.org/refcodes/${project.artifactId}</url>
  	</scm>

	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- DISTRIBUTION MANAGEMENT                                             -->
	<!-- /////////////////////////////////////////////////////////////////// -->

	<!--
		<distributionManagement>
			<snapshotRepository>
				<id>refcodes-snapshots</id>
				<name>REFCODES.ORG Snapshots</name>
				<url>git:snapshots://git@bitbucket.org:refcodes/refcodes-maven-repository.git</url>
			</snapshotRepository>
			<repository>
				<id>refcodes-releases</id>
				<name>REFCODES.ORG Releases</name>
				<url>git:releases://git@bitbucket.org:refcodes/refcodes-maven-repository.git</url>
			</repository>
			<site>
				<id>refcodes-site</id>
				<name>REFCODES.ORG Site</name>
				<url>git:site://git@bitbucket.org:refcodes/refcodes-maven-repository.git</url>
			</site>
		</distributionManagement>
	-->

	<distributionManagement>
		<snapshotRepository>
			<id>ossrh</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<repository>
			<id>ossrh</id>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>

	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- REPOSITORIES                                                        -->
	<!-- /////////////////////////////////////////////////////////////////// -->

	<repositories>
		<repository>
			<id>sonatype-nexus-snapshots</id>
			<name>Sonatype Nexus Snapshots</name>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
		</repository>
		<repository>
			<id>sonatype-nexus-releases</id>
			<name>Sonatype Nexus Releases</name>
			<url>https://oss.sonatype.org/content/repositories/releases</url>
			<releases>
				<enabled>true</enabled>
			</releases>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
		<repository>
			<id>refcodes-snapshots</id>
			<name>REFCODES.ORG Snapshots</name>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
			<!-- distributionManagement url was <url>git:your-branch://git@bitbucket.org:yourbitbucketusername/your-bitbucket-repo.git</url> -->
			<url>https://api.bitbucket.org/1.0/repositories/refcodes/refcodes-maven-repository/raw/snapshots</url>
		</repository>
		<repository>
			<id>refcodes-releases</id>
			<name>REFCODES.ORG Releases</name>
			<releases>
				<enabled>true</enabled>
			</releases>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
			<!-- distributionManagement url was <url>git:your-branch://git@bitbucket.org:yourbitbucketusername/your-bitbucket-repo.git</url> -->
			<url>https://api.bitbucket.org/1.0/repositories/refcodes/refcodes-maven-repository/raw/releases</url>
		</repository>
	</repositories>

	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- DEPENDENCIES                                                        -->
	<!-- /////////////////////////////////////////////////////////////////// -->

	<dependencies>
		<dependency>
			<groupId>org.refcodes</groupId>
			<artifactId>refcodes-licensing</artifactId>
		</dependency>
		<dependency>
	            <groupId>org.junit.platform</groupId>
	            <artifactId>junit-platform-runner</artifactId>
	            <scope>test</scope>
	        </dependency>
		<dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter-engine</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <scope>test</scope>
        </dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- BUILD                                                               -->
	<!-- /////////////////////////////////////////////////////////////////// -->

	<build>

		<!-- /////////////////////////////////////////////////////////////// -->
		<!-- PLUGINS                                                         -->
		<!-- /////////////////////////////////////////////////////////////// -->

		<plugins>
			<plugin>
				<groupId>org.sonatype.plugins</groupId>
				<artifactId>nexus-staging-maven-plugin</artifactId>
				<extensions>true</extensions>
				<configuration>
					<serverId>ossrh</serverId>
					<nexusUrl>https://oss.sonatype.org/</nexusUrl>
					<autoReleaseAfterClose>true</autoReleaseAfterClose>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<configuration>
					<preparationGoals>clean install</preparationGoals>
				</configuration>
			</plugin>

			<!--
				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>cobertura-maven-plugin</artifactId>
					<executions>
						<execution>
							<id>clean</id>
							<phase>clean</phase>
							<goals>
								<goal>clean</goal>
							</goals>
						</execution>
						<execution>
							<phase>install</phase>
							<goals>
								<goal>cobertura</goal>
							</goals>
						</execution>
					</executions>
				</plugin>
			-->

		</plugins>
		
		<!-- /////////////////////////////////////////////////////////////// -->
		<!-- EXTENSIONS                                                      -->
		<!-- /////////////////////////////////////////////////////////////// -->

		<!--
			<extensions>
				<extension>
					<groupId>ar.com.synergian</groupId>
					<artifactId>wagon-git</artifactId>
					<version>${wagongit.version}</version>
				</extension>
			</extensions>
		-->

		<!-- /////////////////////////////////////////////////////////////// -->
		<!-- PLUGIN MANAGEMENT                                               -->
		<!-- /////////////////////////////////////////////////////////////// -->

		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.sonatype.plugins</groupId>
					<artifactId>nexus-staging-maven-plugin</artifactId>
					<version>${org.sonatype.plugins.nexus.staging.version}</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-shade-plugin</artifactId>
					<version>${org.apache.maven.plugins.shade.version}</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-source-plugin</artifactId>
					<version>${org.apache.maven.plugins.source.version}</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-surefire-plugin</artifactId>
					<version>${org.apache.maven.plugins.surefire.version}</version>
					<!-- <configuration>
						<argLine>-XX:-UseSplitVerifier</argLine>
					</configuration> -->
					<dependencies>
			        	<dependency>
				            <groupId>org.junit.platform</groupId>
				            <artifactId>junit-platform-surefire-provider</artifactId>
				            <version>${org.junit.platform.version}</version>
				        </dependency>
				    </dependencies>
				</plugin>
				<plugin>
					<artifactId>maven-compiler-plugin</artifactId>
					<version>${org.apache.maven.plugins.compiler.version}</version>
					<configuration>
						<fork>true</fork>
						<source>${java.source.version}</source>
						<target>${java.target.version}</target>
						<testSource>${java.source.version}</testSource>
                    	<testTarget>${java.target.version}</testTarget>
                    	<encoding>UTF-8</encoding>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-jar-plugin</artifactId>
					<configuration>
						<archive>
							<addMavenDescriptor>false</addMavenDescriptor>
							<manifest>
								<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
								<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
							</manifest>
						</archive>
					</configuration>
					<executions>
						<execution>
							<goals>
								<goal>test-jar</goal>
							</goals>
						</execution>
					</executions>
				</plugin>
				
			</plugins>
		</pluginManagement>
	</build>

	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- REPORTING                                                           -->
	<!-- /////////////////////////////////////////////////////////////////// -->

	<reporting>

		<!-- /////////////////////////////////////////////////////////////// -->
		<!-- PLUGINS                                                         -->
		<!-- /////////////////////////////////////////////////////////////// -->

		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<configuration>
					<detectOfflineLinks>false</detectOfflineLinks>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-pmd-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jxr-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>versions-maven-plugin</artifactId>
				<reportSets>
					<reportSet>
						<reports>
							<report>dependency-updates-report</report>
							<report>property-updates-report</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>
		</plugins>
	</reporting>

	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- PLUGIN REPOSITORIES                                                 -->
	<!-- /////////////////////////////////////////////////////////////////// -->

	<pluginRepositories>
		<!-- <pluginRepository>
			<id>glassfish</id>
			<name>Glassfish</name>
			<url>http://download.java.net/maven/glassfish</url>
		</pluginRepository> -->
		<!-- <pluginRepository>
			<id>java.net</id>
			<name>java.net</name>
			<url>http://download.java.net/maven/2</url>
		</pluginRepository> -->
		<!-- <pluginRepository>
			<id>mvnrepository.com</id>
			<name>MVNrepository</name>
			<url>http://mvnrepository.com/artifact</url>
		</pluginRepository> -->
		<pluginRepository>
			<id>repo1</id>
			<name>Repo1</name>
			<url>http://repo1.maven.org/maven2</url>
		</pluginRepository>

		<!--
			<pluginRepository>
				<id>synergian-repo</id>
				<url>https://raw.github.com/synergian/wagon-git/releases</url>
			</pluginRepository>
		-->
	</pluginRepositories>

	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- DEPENDENCY MANAGEMENT                                               -->
	<!-- /////////////////////////////////////////////////////////////////// -->

	<dependencyManagement>

		<!-- /////////////////////////////////////////////////////////////// -->
		<!-- DEPENDENCIES                                                    -->
		<!-- /////////////////////////////////////////////////////////////// -->

		<dependencies>
			<dependency>
				<groupId>com.fasterxml.jackson.core</groupId>
				<artifactId>jackson-databind</artifactId>
				<version>${com.fasterxml.jackson}</version>
			</dependency>
			<dependency>
				<groupId>com.fasterxml.jackson.dataformat</groupId>
				<artifactId>jackson-dataformat-xml</artifactId>
				<version>${com.fasterxml.jackson}</version>
			</dependency>
			<dependency>
				<groupId>com.fasterxml.jackson.dataformat</groupId>
				<artifactId>jackson-dataformat-yaml</artifactId>
				<version>${com.fasterxml.jackson}</version>
			</dependency>
			<dependency>
				<groupId>commons-dbcp</groupId>
				<artifactId>commons-dbcp</artifactId>
				<version>${org.apache.commons.dbcp.version}</version>
			</dependency>
			<dependency>
				<groupId>org.hsqldb</groupId>
				<artifactId>hsqldb</artifactId>
				<version>${org.hsqldb.version}</version>
			</dependency>
			<dependency>
				<groupId>com.google.code.gson</groupId>
				<artifactId>gson</artifactId>
				<version>${com.google.code.gson.version}</version>
			</dependency>
			<dependency>
				<groupId>org.apache.httpcomponents</groupId>
				<artifactId>httpcore-nio</artifactId>
				<version>${org.apache.httpcomponents.httpcore.nio.version}</version>
			</dependency>
			<dependency>
				<groupId>com.mashape.unirest</groupId>
				<artifactId>unirest-java</artifactId>
				<version>${com.mashape.unirest.version}</version>
			</dependency>
			<dependency>
				<groupId>org.apache.xmlgraphics</groupId>
				<artifactId>xmlgraphics-commons</artifactId>
				<version>${org.apache.xmlgraphics.commons.version}</version>
			</dependency>
			<dependency>
				<groupId>org.apache.xmlgraphics</groupId>
				<artifactId>batik-transcoder</artifactId>
				<version>${org.apache.xmlgraphics.batik.transcoder.version}</version>
			</dependency>
			<dependency>
				<groupId>com.amazonaws</groupId>
				<artifactId>aws-java-sdk</artifactId>
				<version>${com.amazonaws.sdk.version}</version>
			</dependency>
			<dependency>
				<groupId>log4j</groupId>
				<artifactId>log4j</artifactId>
				<version>${org.apache.log4j.version}</version>
			</dependency>
			<dependency>
				<groupId>log4j</groupId>
				<artifactId>apache-log4j-extras</artifactId>
				<version>${org.apache.log4j.version}</version>
			</dependency>
			<dependency>
	            <groupId>org.junit.platform</groupId>
	            <artifactId>junit-platform-runner</artifactId>
	            <version>${org.junit.platform.version}</version>
	        </dependency>
			<dependency>
				<groupId>org.junit.jupiter</groupId>
				<artifactId>junit-jupiter-engine</artifactId>
				<version>${org.junit.jupiter.version}</version>
			</dependency>
			<dependency>
	            <groupId>org.junit.jupiter</groupId>
	            <artifactId>junit-jupiter-api</artifactId>
	            <version>${org.junit.jupiter.version}</version>
	        </dependency>
			<dependency>
				<groupId>org.junit.vintage</groupId>
				<artifactId>junit-vintage-engine</artifactId>
				<version>${org.junit.vintage.version}</version>
			</dependency>
			<dependency>
				<groupId>org.hibernate</groupId>
				<artifactId>hibernate-core</artifactId>
				<version>${org.hibernate.core.version}</version>
			</dependency>
			<dependency>
				<groupId>mysql</groupId>
				<artifactId>mysql-connector-java</artifactId>
				<version>${com.mysql.jdbc.version}</version>
			</dependency>
			<dependency>
				<groupId>org.slf4j</groupId>
				<artifactId>jcl-over-slf4j</artifactId>
				<version>${org.slf4j.version}</version>
			</dependency>
			<dependency>
				<groupId>org.slf4j</groupId>
				<artifactId>slf4j-nop</artifactId>
				<version>${org.slf4j.version}</version>
			</dependency>
			<dependency>
				<groupId>org.slf4j</groupId>
				<artifactId>slf4j-api</artifactId>
				<version>${org.slf4j.version}</version>
			</dependency>
			<dependency>
			<groupId>org.slf4j</groupId>
				<artifactId>jul-to-slf4j</artifactId>
				<version>${org.slf4j.version}</version>
			</dependency>
			<dependency>
				<groupId>org.slf4j</groupId>
				<artifactId>slf4j-jdk14</artifactId>
				<version>${org.slf4j.version}</version>
			</dependency>
			<dependency>
				<groupId>com.h2database</groupId>
				<artifactId>h2</artifactId>
				<version>${com.h2database.version}</version>
			</dependency>
			<dependency>
				<groupId>org.hibernate</groupId>
				<artifactId>hibernate-c3p0</artifactId>
				<version>${org.hibernate.c3p0.version}</version>
				</dependency>
			<dependency>
				<groupId>org.springframework</groupId>
				<artifactId>spring-beans</artifactId>
				<version>${org.springframework.version}</version>
			</dependency>
			<dependency>
				<groupId>org.springframework</groupId>
				<artifactId>spring-orm</artifactId>
				<version>${org.springframework.version}</version>
			</dependency>
			<dependency>
				<groupId>org.springframework</groupId>
				<artifactId>spring-core</artifactId>
				<version>${org.springframework.version}</version>
			</dependency>
			<dependency>
				<groupId>org.springframework</groupId>
				<artifactId>spring-web</artifactId>
				<version>${org.springframework.version}</version>
			</dependency>
			<dependency>
				<groupId>org.springframework</groupId>
				<artifactId>spring-webmvc</artifactId>
				<version>${org.springframework.version}</version>
			</dependency>
			<dependency>
				<groupId>org.springframework</groupId>
				<artifactId>spring-context</artifactId>
				<version>${org.springframework.version}</version>
			</dependency>
			<dependency>
				<groupId>org.springframework</groupId>
				<artifactId>spring-test</artifactId>
				<version>${org.springframework.version}</version>
			</dependency>
			<dependency>
				<groupId>org.springframework</groupId>
				<artifactId>spring-tx</artifactId>
				<version>${org.springframework.version}</version>
			</dependency>
			<dependency>
				<groupId>org.springframework</groupId>
				<artifactId>spring-aop</artifactId>
				<version>${org.springframework.version}</version>
			</dependency>
			<dependency>
				<groupId>commons-beanutils</groupId>
				<artifactId>commons-beanutils</artifactId>
				<version>${org.apache.commons.beanutils.version}</version>
			</dependency>
			<dependency>
				<groupId>commons-configuration</groupId>
				<artifactId>commons-configuration</artifactId>
				<version>${org.apache.commons.configuration.version}</version>
			</dependency>
			<dependency>
				<groupId>commons-collections</groupId>
				<artifactId>commons-collections</artifactId>
				<version>${org.apache.commons.collection.version}</version>
			</dependency>
			<dependency>
				<groupId>org.apache.httpcomponents</groupId>
				<artifactId>httpclient</artifactId>
				<version>${org.apache.httpcomponents.httpclient.version}</version>
			</dependency>
			<dependency>
				<groupId>commons-lang</groupId>
				<artifactId>commons-lang</artifactId>
				<version>${org.apache.commons.lang.version}</version>
			</dependency>
			<dependency>
				<groupId>commons-io</groupId>
				<artifactId>commons-io</artifactId>
				<version>${org.apache.commons.io.version}</version>
			</dependency>
			<dependency>
				<groupId>commons-codec</groupId>
				<artifactId>commons-codec</artifactId>
				<version>${org.apache.commons.codec.version}</version>
			</dependency>
			<dependency>
				<groupId>edu.vt.middleware</groupId>
				<artifactId>vt-crypt</artifactId>
				<version>${edu.vt.middleware.vt-crypt.version}</version>
			</dependency>
			<dependency>
				<groupId>org.jasypt</groupId>
				<artifactId>jasypt</artifactId>
				<version>${org.jasypt.version}</version>
			</dependency>
			<dependency>
				<groupId>org.json</groupId>
				<artifactId>json</artifactId>
				<version>${org.json.version}</version>
			</dependency>
			<dependency>
				<groupId>org.fusesource.jansi</groupId>
				<artifactId>jansi</artifactId>
				<version>${org.fusesource.jansi.version}</version>
			</dependency>
			<dependency>
				<groupId>jline</groupId>
				<artifactId>jline</artifactId>
				<version>${jline.version}</version>
			</dependency>

			<!-- /////////////////////////////////////////////////////////// -->
			<!-- REFCODES                                                    -->
			<!-- /////////////////////////////////////////////////////////// -->

			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-interceptor</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-batch</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-boulderdash</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-checkerboard</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-checkerboard-alt</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-checkerboard-alt-javafx</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-checkerboard-ext-javafx</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-checkerboard-ext-javafx-boulderdash</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-checkerboard-ext-javafx-chess</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-codec</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-command</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-component</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-component-ext</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-component-ext-observer</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-configuration</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-configuration-ext</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-console</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-console-alt</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-console-alt-jopt</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-controlflow</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-criteria</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-data</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-data-ext</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-data-ext-boulderdash</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-data-ext-chess</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-data-ext-checkers</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-data-ext-corporate</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-data-ext-symbols</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-daemon</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-entity</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-eventbus</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-exception</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-factory</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-factory-alt</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-factory-alt-spring</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-filesystem</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-filesystem-alt</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-filesystem-alt-s3</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-forwardsecrecy</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-forwardsecrecy-alt</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-forwardsecrecy-alt-filesystem</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-generator</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-graphical</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-graphical-ext</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-graphical-ext-javafx</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-io</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-io-ext</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-io-ext-observable</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-jobbus</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-licensing</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-logger</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-logger-alt</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-logger-alt-async</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-logger-alt-console</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-logger-alt-io</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-logger-alt-slf4j</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-logger-alt-spring</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-logger-ext</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-logger-ext-slf4j</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-matcher</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-microservice</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-mixin</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-net</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-numerical</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-observer</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-remoting</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-remoting-ext</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-remoting-ext-observer</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-rest</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-runtime</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-security</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-security-alt</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-security-alt-chaos</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-security-ext</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-security-ext-chaos</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-security-ext-spring</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-serviceboard</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-serviceboard-alt</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-serviceboard-alt-rdbms</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-servicebus</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-servicebus-alt</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-servicebus-alt-spring</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-structure</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-tabular</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-tabular-alt</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-tabular-alt-forwardsecrecy</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-textual</artifactId>
				<version>${project.version}</version>
			</dependency>
			<dependency>
				<groupId>org.refcodes</groupId>
				<artifactId>refcodes-time</artifactId>
				<version>${project.version}</version>
			</dependency>
		</dependencies>
	</dependencyManagement>
	
	<!-- /////////////////////////////////////////////////////////////////// -->
	<!-- PROFILES                                                            -->
	<!-- /////////////////////////////////////////////////////////////////// -->

	<profiles>
		<profile> 
			<id>release</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-source-plugin</artifactId>
						<executions>
							<execution>
								<id>attach-sources</id>
								<goals>
									<goal>jar-no-fork</goal>
								</goals>
							</execution>
						</executions>
					</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>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-gpg-plugin</artifactId>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>
