java - Maven Multi Module Hot deploy in Jboss -
we have multi-module maven project, has deployed in jboss 7.1.1 server. takes of our time redeploying code changes. have seen use jrebel hot deployment, expense not meet 20 developers.
so there workaround hot deployment of maven-multi-module project in jboss?
here build configuration of our project in pom:
<build> <pluginmanagement> <plugins> <plugin> <groupid>org.apache.maven.plugins</groupid> <artifactid>maven-compiler-plugin</artifactid> <version>2.3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupid>org.jboss.as.plugins</groupid> <artifactid>jboss-as-maven-plugin</artifactid> <version>7.1.0.beta1b</version> <inherited>true</inherited> <configuration> <hostname>localhost</hostname> <port>9999</port> <filename>${project.build.finalname}.ear</filename> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginmanagement> </build>
Comments
Post a Comment