pom.xml 2.6 KB
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
<?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>