This repository was archived by the owner on Mar 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Artifacts
Stefan Ludwig edited this page Oct 12, 2018
·
16 revisions
You can find all of the following artifacts in the Maven Central Repository.
Current Release Version:
If you want to use the latest SNAPSHOT version of WebTester, you can use the following repository. But be warned, this might at times contain an unstable version with experimental features!
<repository>
<id>oss-sonatype</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<dependencies>
<dependency>
<groupId>info.novatec.testit</groupId>
<artifactId>webtester-core</artifactId>
<version>${webtester.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.novatec.testit</groupId>
<artifactId>webtester-kotlin</artifactId>
<version>${webtester.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.novatec.testit</groupId>
<artifactId>webtester-support-assertj3</artifactId>
<version>${webtester.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.novatec.testit</groupId>
<artifactId>webtester-support-hamcrest</artifactId>
<version>${webtester.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.novatec.testit</groupId>
<artifactId>webtester-support-junit4</artifactId>
<version>${webtester.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.novatec.testit</groupId>
<artifactId>webtester-support-junit5</artifactId>
<version>${webtester.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.novatec.testit</groupId>
<artifactId>webtester-support-spring4</artifactId>
<version>${webtester.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.novatec.testit</groupId>
<artifactId>webtester-support-spring5</artifactId>
<version>${webtester.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
dependencies {
testCompile 'info.novatec.testit:webtester-core:${webtester.version}'
testCompile 'info.novatec.testit:webtester-kotlin:${webtester.version}'
testCompile 'info.novatec.testit:webtester-support-assertj3:${webtester.version}'
testCompile 'info.novatec.testit:webtester-support-hamcrest:${webtester.version}'
testCompile 'info.novatec.testit:webtester-support-junit4:${webtester.version}'
testCompile 'info.novatec.testit:webtester-support-junit5:${webtester.version}'
testCompile 'info.novatec.testit:webtester-support-spring4:${webtester.version}'
testCompile 'info.novatec.testit:webtester-support-spring5:${webtester.version}'
}