<?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-operate-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>platform-dal</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.lyms.core</groupId>
<artifactId>platform-biz-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.lyms.core</groupId>
<artifactId>platform-biz-patient-service</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>
<encoding>${maven.compiler.encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding><!-- 指定编码格式,否则在DOS下运行mvn命令时当发生文件资源copy时将使用系统默认使用GBK编码 -->
</configuration>
</plugin>
</plugins>
<finalName>platform-operate-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>