Commit 3521c558 by Tuukka Kivilahti

Merge branch 'feature/exploded-ear' into 'master'

Feature/exploded ear

Add maven profile, that when enabled in IntelliJ IDEA, allows using the ear:exploded artifact to get hot deploy on glassfish.

See merge request !193
2 parents c7abafdc cd967aab
Showing with 19 additions and 0 deletions
......@@ -65,4 +65,22 @@
<relativePath>../moya-parent/pom.xml</relativePath>
<version>1.0</version>
</parent>
<profiles>
<profile>
<id>exploded</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<unpackTypes>war,ejb</unpackTypes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!