Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
-
Environment:maven-war-plugin-1.4, although it is in 1.5-SNAPSHOT too
-
Number of attachments :
Description
due to the use of sourcesPresent to avoid copying the classes directory, and running test:test + java:compile, any resources present in a webapp with no source do not get copied
Can you give me some more detail?
From the plugin:
<j:if test="${sourcesPresent == 'true'}">
<ant:copy todir="${webapp.build.classes}">
<ant:fileset dir="${maven.build.dest}"
includes="${maven.war.classes.includes}"
excludes="${maven.war.classes.excludes}">
</ant:fileset>
</ant:copy>
</j:if>
This is not about copying <resources>, but classes.????