<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.otcframework</groupId>
  <artifactId>otc</artifactId>
  <version>1.1</version>
  <packaging>pom</packaging>
  
  	<name>${project.groupId}:${project.artifactId}</name>
	<description>Deprecated - do not use this</description>
	<url>http://www.otcframework.org</url>

	<licenses>
		<license>
			<name>GNU General Public License, v3.0</name>
			<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
		</license>
	</licenses>

	<developers>
		<developer>
			<name>Franklin Abel</name>
			<email>frank.a.otc@gmail.com</email>
			<organization>OTC Framework</organization>
			<organizationUrl>http://www.otcframework.org</organizationUrl>
		</developer>
	</developers>

	<scm>
		<connection>scm:git:git://github.com/frankjjava/otcframework.git</connection>
		<developerConnection>scm:git:ssh://github.com:frankjjava/otcframework.git</developerConnection>
		<url>https://github.com/frankjjava/otcframework</url>
	</scm>

	<distributionManagement>
		<snapshotRepository>
			<id>ossrh</id>
			<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<repository>
			<id>ossrh</id>
			<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>

    <issueManagement>
        <system>Github Issue</system>
        <url>https://github.com/frankjjava/otcf-issues/issues</url>
    </issueManagement>

	<properties>
		<nexus-maven.version>1.6.8</nexus-maven.version>
		<maven-javadoc-plugin.version>3.3.0</maven-javadoc-plugin.version>
		<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
	</properties>

	<build>
		<plugins>
			<plugin>
				<groupId>org.sonatype.plugins</groupId>
				<artifactId>nexus-staging-maven-plugin</artifactId>
				<version>1.6.7</version>
				<extensions>true</extensions>
				<configuration>
					<serverId>ossrh</serverId>
					<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
					<autoReleaseAfterClose>true</autoReleaseAfterClose>
				</configuration>
			</plugin>
			
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.5</version>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

  <modules>
  	<module>otc-core</module>
  </modules>
</project>