History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEADEV-24763
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Normal Normal
Assignee: Anton Makeev
Reporter: Irina Petrovskaya
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
IDEA: Development

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

Created: 13 Feb 08 14:10   Updated: 06 Jun 08 12:58
Component/s: Maven Integration
Fix Version/s: Diana 8445, Selena 7.0.4

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 8,155
Fixed in build: 8,442


 Description  « Hide
  • 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>


 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.