Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.51 KB

README.md

File metadata and controls

39 lines (27 loc) · 1.51 KB

Welcome to the Design Tests wiki!

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

Build Status

Instructions to Eclipse users

This project is deployed as an Eclipse project with Maven. In order to import DesignTests properly, consider the following steps:

  1. Clone the project from the official GitHub repository
  2. On Eclipse, install Git.
  3. On Eclipse, install Maven.
  4. On Eclipse, import a Java project of the cloned folder. Eclipse will understand the configuration on the existing project.

Instructions to Maven users

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>

History

For detailed changelog, see Releases.