This repository contains utility classes for tests in MEITREX.
In the settings.gradle
file, add the following line:
sourceControl {
gitRepository(uri('https://github.com/MEITREX/common_test')) {
producesModule('de.unistuttgart.iste.meitrex:meitrex-common-test')
}
}
In the build.gradle
file, add the following dependency:
testImplementation('de.unistuttgart.iste.meitrex:meitrex-common-test') {
version {
branch = 'main'
}
}
When this repository has changed, you can update the version in your project by running the following command:
./gradlew build --refresh-dependencies
In IntelliJ, you need to reload the Gradle project by clicking on the refresh button in the Gradle tab.