this strongly depends on your build process.
starting with beenerator 0.2 an ant-task is delivered in the distribution.
there is a maven plugin which has some things you have to look for:
- you have check that the following dependencies are available:
<dependency>
<groupId>flopcode</groupId>
<artifactId>beenerator</artifactId>
<version>0.1.5</version>
</dependency>
<dependency>
<groupId>bsh</groupId>
<artifactId>bsh</artifactId>
<version>2.0b1</version>
</dependency>
<dependency>
<groupId>jdom</groupId>
<artifactId>jdom</artifactId>
<version>b9</version>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>1.0-FCS-full</version>
</dependency>
<dependency>
<groupId>saxpath</groupId>
<artifactId>saxpath</artifactId>
<version>1.0-FCS</version>
</dependency>
<dependency>
<groupId>commons-jelly</groupId>
<artifactId>commons-jelly-tags-beanshell</artifactId>
<version>SNAPSHOT</version>
</dependency>
most of them are available via the maven-ibiblio-repository but you will have to copy a current version of beanshell into your own repository by hand.
- you can build a plugin for idea that alows you to play around with simple template-examples (includes are not yet supported).
- perhaps in the future you can download the plugin directly via the plugin manager .. look out for the beenerator plugin :))
Next