Skip to content
jitwxs edited this page May 4, 2022 · 5 revisions

01 Import Dependency

1.1 Maven dependency

<dependency>
  <groupId>io.github.jitwxs</groupId>
  <artifactId>easydata</artifactId>
  <version>${latest-version}</version>
  <scope>test</scope>
</dependency>

1.2 Gradle

dependencies {
    testImplementation "io.github.jitwxs:easydata:${latest-version}"
}

02 Build Requirements

  • Java 1.8+ (tested with jdk8)
  • Maven 3.0+ (tested with maven 3.6.3)

Once these are in place you can build easydata with all tests with:

$ mvn clean install

If you don't have Docker running locally, you can skip tests with the -DskipTests flag set to true:

$ mvn clean install -DskipTests=true

03 Contributing

If you would like to contribute code you can do through GitHub by forking the repository and sending a pull request into the master branch.