<build>
        <finalName>op-balance-job-service</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.7</version>
                <executions>
                    <execution>
                        <id>copy-resources</id>
                        <phase>compile</phase>
                        <goals>
                            <goal>copy-resources</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>
                                ${project.parent.basedir}/op-job-bundler/src/main/webapp/WEB-INF/classes
                            </outputDirectory>
                            <resources>
                                <resource>
                                    <directory>${project.build.outputDirectory}</directory>
                                    <!--<includes>-->
                                        <!--<include>**/com/pingan/isc/**</include>-->
                                    <!--</includes>-->
                                    <excludes>
                                        <exclude>
                                            **/webroot/**
                                        </exclude>
                                        <exclude>
                                            **/META-INF/**
                                        </exclude>
                                        <exclude>
                                            **/com/pab/**
                                        </exclude>
                                    </excludes>
                                </resource>
                            </resources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

  

相关文章:

  • 2021-08-10
  • 2021-11-12
  • 2019-11-09
  • 2021-12-18
猜你喜欢
  • 2022-12-23
  • 2022-01-11
  • 2022-12-23
  • 2022-12-23
  • 2021-05-28
  • 2021-09-07
  • 2021-08-12
相关资源
相似解决方案