Change By: Grégory Joseph (28/Jan/14 1:15 PM)
Description: Some developers use JRebel. Rather than configuring jrebel support in the IDEs over and over again, having Maven generate the {{rebel.xml}} seems to help. We need to have this in a profile to ensure those are not distributed with released jars. This should be enough:
{code}
<profile>
      <id>jrebel</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.zeroturnaround</groupId>
            <artifactId>jrebel-maven-plugin</artifactId>
            <version>1.1.5</version>
            <
configuration>
              <addResourcesDirToRebelXml>true</addResourcesDirToRebelXml>
            </configuration>
            <
executions>
              <execution>
                <id>generate-rebel-xml</id>
                <phase>process-resources</phase>
                <goals>
                  <goal>generate</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
{code}
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira



----------------------------------------------------------------
For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <dev-list-unsubscr...@magnolia-cms.com>
----------------------------------------------------------------

Reply via email to