1
지침 here을 따라 갔지만 기본 디렉토리가 아닌 다른 디렉토리에 매핑 된 경우에만 작동합니다. 그래서 내 가정은 내가 뭔가 다른 구성을 무시를 가지고있다maven war 플러그인을 사용하여 대상 디렉토리에서 파일/디렉토리를 제외하려면 어떻게합니까?
<configuration>
<webResources>
<resource>
<directory>${basedir}/src/main/webapp/WEB-INF</directory>
<!-- the below works when uncommented and does exclude *.tmp -->
<!-- <targetPath>test/WEB-INF</targetPath> -->
<!-- the below does not -->
<targetPath>WEB-INF</targetPath>
<excludes>
<exclude>*.tmp</exclude>
</excludes>
</resource>
</webResources>
</configuration>
을 :
는 여기에 내가 시도 샘플입니다. 그러나 이것은 maven을 사용하는 첫 번째 프로젝트이므로 다음에 무엇을 테스트하거나 조사해야할지 모르겠습니다.