The System Rules library is available from the Maven repository.

Download

Use in Maven

<dependency>
  <groupId>com.github.stefanbirkner</groupId>
  <artifactId>system-rules</artifactId>
  <version>1.19.0</version>
  <scope>test</scope>
</dependency>

Use in Buildr

test.with 'com.github.stefanbirkner:system-rules:jar:1.19.0'

Use in Ivy

<dependency org="com.github.stefanbirkner" name="system-rules" rev="1.19.0" conf="test">
  <artifact name="system-rules" type="jar"/>
</dependency>

Use in Groovy Grape

@Grapes(
  @Grab(group='com.github.stefanbirkner', module='system-rules', version='1.19.0')
)

Use in Gradle or Grails

testCompile 'com.github.stefanbirkner:system-rules:1.19.0'

Use in SBT

libraryDependencies += "com.github.stefanbirkner" % "system-rules" % "1.19.0" % "test"