This repository contains utility classes for tests in GITS.
In the settings.gradle
file, add the following line:
sourceControl {
gitRepository(uri('https://github.com/IT-REX-Platform/gits-common-test')) {
producesModule('de.unistuttgart.iste.gits:gits-common-test')
}
}
In the build.gradle
file, add the following dependency:
testImplementation('de.unistuttgart.iste.gits:gits-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.