maven-har-plugin

maven-har-plugin plugin generates Hibernate Archive (HAR) files.
Download

maven-har-plugin Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MPL
  • Price:
  • FREE
  • Publisher Name:
  • Tom Cort
  • Publisher web site:

maven-har-plugin Tags


maven-har-plugin Description

maven-har-plugin plugin generates Hibernate Archive (HAR) files. maven-har-plugin plugin generates Hibernate Archive (HAR) files. It can be used to generate hibernate archives, or HAR files for short.HAR files are used by RedHat's JBoss Application Server to configure Hibernate's object-relational mappings when the app server starts up.Usage:The following document explains the process of setting up a maven project that produces har files using maven-har-plugin. If you want to get up and running quickly, try using maven-archetype-har.File LayoutBelow is an example file layout for a har project. Note, jboss-service.xml is a required resource and must appear in META-INF.. |-- src | `-- main | |-- java | | `-- | | `-- FooPojo.java | `-- resources | |-- META-INF | | `-- jboss-service.xml | `-- | `-- FooPojo.hbm.xml `-- pom.xmlAdd the PluginYou need to reference the plugin in the pom.xml for your project. To do so, add the following to the pom.xml for your project.< project> ... < build> ... < plugins> ... < plugin> < groupId>net.sf.maven-har< /groupId> < artifactId>maven-har-plugin< /artifactId> < version>0.9< /version> < extensions>true< /extensions> < /plugin> ... < /plugins> ... < /build> ...< /project>Set Packaging to harSimply listing maven-har-plugin as a build plugin will not cause it to be executed during packaging. You must explicitly set < packaging/ > to har.< project > ... < packaging>har< /packaging> ...< /project>Generate the harIf < packaging/ > is set to har, then this plugin will be executed executed during the package phase. To execute the plugin manually, use this command: mvn packageThe generated har file will be placed in the target directory.


maven-har-plugin Related Software