<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>
	<parent>
		<groupId>com.jalalkiswani</groupId>
		<artifactId>jk-framework</artifactId>
		<version>7.0.0-M2</version>
	</parent>
	<artifactId>jk-app</artifactId>
	<packaging>pom</packaging>
	<properties>
		<jk-framework.version>7.0.0-M2-SNAPSHOT</jk-framework.version>
	</properties>
	<description>This is the parent app used to build Java.</description>
	<dependencies>
		<dependency>
			<groupId>com.jalalkiswani</groupId>
			<artifactId>jk-framework-core</artifactId>
			<version>${jk-framework.version}</version>
		</dependency>
	</dependencies>
	<build>
		<finalName>app</finalName>
	</build>
	<modules>
		<module>jk-app-web</module>
	</modules>
	<repositories>
		<repository>
			<id>oss.sonatype.org-snapshot</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
		</repository>
	</repositories>
</project>