Setup
Getting Super Powers
Becoming a super hero is a fairly straight forward process.
Checkout the latest releases on maven central and just add the following to your build tool of choice to get the full feature set:
<dependency>
<groupId>it.skrape</groupId>
<artifactId>skrapeit</artifactId>
<version>1.1.5</version>
</dependency>
Once you're strong enough, let's either scrape the world or make your markup a safer place!
Skrape{it} provides several bindings for some well-known testing-frameworks and HTTP-clients:
Using bleeding edge features before official release 🚀
We are offering snapshot releases by publishing every successful build of a commit that has been pushed to master branch. Thereby you can just install the latest implementation of skrape{it}. Be careful since these are non-official releases and may be unstable as well as breaking changes can occur at any time.
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
...
<dependency>
<groupId>it.skrape</groupId>
<artifactId>skrapeit</artifactId>
<version>0-SNAPSHOT</version>
</dependency>
Last updated
Was this helpful?