/xml配置文件/其他配置/linux集群配置/solrCloud配置/pom.xml
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.me</groupId>
<artifactId>pyg-parent</artifactId>
<version>0.0.2-SNAPSHOT</version>
</parent>
<artifactId>pyg-sellergoods-service</artifactId>
<packaging>war</packaging>
<properties>
<myenv>dev</myenv>
</properties>
<profiles>
<profile>
<id>dev</id>
<properties>
<myenv>dev</myenv>
</properties>
</profile>
<profile>
<id>pro</id>
<properties>
<myenv>pro</myenv>
</properties>
</profile>
</profiles>
<dependencies>
...
</dependencies>
<build>
...
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
</project>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.me</groupId>
<artifactId>pyg-parent</artifactId>
<version>0.0.2-SNAPSHOT</version>
</parent>
<artifactId>pyg-sellergoods-service</artifactId>
<packaging>war</packaging>
<properties>
<myenv>dev</myenv>
</properties>
<profiles>
<profile>
<id>dev</id>
<properties>
<myenv>dev</myenv>
</properties>
</profile>
<profile>
<id>pro</id>
<properties>
<myenv>pro</myenv>
</properties>
</profile>
</profiles>
<dependencies>
...
</dependencies>
<build>
...
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
</project>