maven打包处理自定义目录
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <fileset dir="${project.build.directory}/${project.build.finalName}/WEB-INF/conf/" defaultexcludes="true" />
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? </delete>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <!-- 拷贝新的配置文件夹 -->
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <copy todir="${project.build.directory}/${project.build.finalName}/WEB-INF/conf">
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <fileset dir="${app_config_path}" />
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? </copy>
? ? ? ? ? ? ? ? ? ? ? ? ? ? </tasks>
? ? ? ? ? ? ? ? ? ? ? ? </configuration>
? ? ? ? ? ? ? ? ? ? </execution>
? ? ? ? ? ? ? ? </executions>
? ? ? ? ? ? </plugin>
? ? ? ? </plugins>
? ? </build>
? ? <profiles>
? ? ? ? <profile>
? ? ? ? ? ? <id>dev</id>
? ? ? ? ? ? <properties>
? ? ? ? ? ? ? ? <app_config_path>src/main/conf/dev</app_config_path>
? ? ? ? ? ? </properties>
? ? ? ? ? ? <activation>
? ? ? ? ? ? ? ? <activeByDefault>true</activeByDefault>
? ? ? ? ? ? </activation>
? ? ? ? </profile>
? ? ? ? <profile>
? ? ? ? ? ? <id>test</id>
? ? ? ? ? ? <properties>
? ? ? ? ? ? ? ? <app_config_path>src/main/conf/test</app_config_path>
? ? ? ? ? ? </properties>
? ? ? ? </profile>
? ? ? ? <profile>
? ? ? ? ? ? <id>online</id>
? ? ? ? ? ? <properties>
? ? ? ? ? ? ? ? <app_config_path>src/main/conf/online</app_config_path>
? ? ? ? ? ? </properties>
? ? ? ? </profile>
? ? </profiles>