This project contains experiments with design tests using DesignWizard API. This project contains scripts and programs for running design tests for a set of systems that use Hibernate/JPA and it been selected from github.
Continuos Integration with Travis
This project is deployed as an Eclipse project with Maven. In order to import DesignTests properly, consider the following steps:
- Clone the project from the official GitHub repository
- On Eclipse, install Git.
- On Eclipse, install Maven.
- On Eclipse, import a Java project of the cloned folder. Eclipse will understand the configuration on the existing project.
The DesignWizard project has the ASM dependency considered optional in the your pom.xml file. So, to use the DesignWizard API is necessary to inform the following dependencies:
<dependency>
<groupId>org.designwizard</groupId>
<artifactId>designwizard</artifactId>
<version>1.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
<version>3.1</version>
</dependency>
For detailed changelog, see Releases.