Project.Beenerator.Integration

How can i integrate the beenerator into my projects

this strongly depends on your build process.

ANT

starting with beenerator 0.2 an ant-task is delivered in the distribution.

Maven

there is a maven plugin which has some things you have to look for:
    <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.

Idea

Eclipse


Next