<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>io.gitlab.kathirck1</groupId>
	<artifactId>hello-java</artifactId>
	<version>0.0.2</version>
	<packaging>jar</packaging>
	<name>hello-java</name>
	<description>hello-java</description>
	<url>http://github.com/ </url>

	<developers>
		<developer>
			<name>kathir</name>
		</developer>
	</developers>

	<scm>
		<connection>scm:git:git://git@gitlab.com:kathirck1/sample-1.git</connection>
		<developerConnection>scm:git:ssh://git@gitlab.com:kathirck1/sample-1.git</developerConnection>
		<url>https://gitlab.com/kathirck1/sample-1/-/tree/main</url>
	</scm>

	<distributionManagement>
		<snapshotRepository>
			<id>sonatype-nexus-snapshots</id>
			<name>Sonatype Nexus Snapshots</name>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<repository>
			<id>sonatype-nexus-staging</id>
			<name>Nexus Staging Repository</name>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>

	<properties>
		<maven.compiler.source>1.8</maven.compiler.source>
		<maven.compiler.target>1.8</maven.compiler.target>
		<mainclass>ck.hello.HelloJava</mainclass>
	</properties>

	<dependencies>

	</dependencies>
	<licenses>
		<license>
			<name>Apache License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
</project>