Priority
Normal
Type
Bug 
State
Fixed 
Assignee
Anton Makeev 
Subsystem
Maven Integration 
Affected versions
Fixed in
Fixed in build
Next build 
Build
8155
Fixed in build
8442
  • Submitted by   Irina Petrovskaya
    23 months ago (13 Feb 2008 14:10)
  • Updated by   root
    3 weeks ago (17 Jan 2010 19:58)
  • Jira: IDEA-42913
    (history, comments)

IDEA-42913

Maven: if some extra resources are added to project on generate-test-resources phaze, then they are not considered on synchronizing

0
  • for example, if for some reason i set <phaze>generate-test-resources</phaze> for the execution of some plugin that adds some new files/folders to build, then on Synchronize performing these changes are not considered.
For example, with the following code the sources_to_add/test folder never appears as test root in idea module:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>add extra test sources</id>
<phase>generate-test-resources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>sources_to_add/test</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>

Issue was resolved
Comments (0)
 
History (1)
 
Links
 
Issue has no comments