Details
-
New Feature
-
Resolution: Fixed
-
Neutral
-
None
-
None
-
-
Empty show more show less
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:
<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>
<alwaysGenerate>true</alwaysGenerate>
</configuration>
<executions>
<execution>
<id>generate-rebel-xml</id>
<phase>process-resources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Checklists
Acceptance criteria
Attachments
Issue Links
- mentioned in
-
Wiki Page Loading...