<?xml version="1.0" encoding="UTF-8"?>
<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">
	<parent>
		<groupId>com.lyms.core</groupId>
		<artifactId>regional-platform</artifactId>
		<version>1.0.1</version>
	</parent>
	<modelVersion>4.0.0</modelVersion>
	<packaging>war</packaging>
	<artifactId>platform-report-api</artifactId>

	<dependencies>
		
		<dependency>
			<groupId>com.lyms.core</groupId>
			<artifactId>platform-common</artifactId>
			<version>${project.version}</version>
		</dependency>
	<!--	<dependency>
			<groupId>com.lyms.core</groupId>
			<artifactId>permission-service</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>com.lyms.core</groupId>
			<artifactId>permission-dal</artifactId>
			<version>${project.version}</version>
		</dependency>-->
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
				</configuration>
			</plugin>
		</plugins>
		<finalName>platform-report-api</finalName>
	</build>
	<!-- 
	<profiles>
		<profile>
			<id>mysql</id>
			<properties>
				<deploy.type>mysql</deploy.type>
			</properties>
			<activation>
				<activeByDefault>true</activeByDefault>
			</activation>
			<dependencies>
				<dependency>
					<groupId>com.lyms.core</groupId>
					<artifactId>permission-dal-mysql</artifactId>
					<version>${project.version}</version>
				</dependency>
			</dependencies>
		</profile>
		<profile>
			<id>mongo</id>
			<properties>
				<deploy.type>mongo</deploy.type>
			</properties>
			<dependencies>
				<dependency>
					<groupId>com.lyms.core</groupId>
					<artifactId>permission-dal-mongo</artifactId>
					<version>${project.version}</version>
				</dependency>
			</dependencies>
		</profile>
	</profiles>-->
</project>