Skip to content

Commit

Permalink
Update information on how to include the plugin in a project
Browse files Browse the repository at this point in the history
  • Loading branch information
rubengees committed Nov 28, 2017
1 parent fffc786 commit 0b6285e
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Squit

`Squit` is a `Gradle` plugin for automated testing of `XML` and/or `SOAP` based apis.<br>
`Squit` is a `Gradle` plugin for automated testing of `Xml` and/or `Soap` based apis.<br>
It features high customizability and speed.

## Table of Contents
Expand All @@ -19,24 +19,25 @@ It features high customizability and speed.

## Integration

Add the plugin to your `buildscript`:
Add the [plugin](https://plugins.gradle.org/plugin/de.smartsquare.squit) to your `buildscript`:

```groovy
buildscript {
repositories {
mavenLocal()
maven { url "https://plugins.gradle.org/m2/" }
jcenter()
}
dependencies {
classpath "de.smartsquare:squit-plugin:1.0.0"
classpath "gradle.plugin.de.smartsquare:squit-plugin:1.0.2"
}
}
```

and apply it:

```groovy
apply plugin: 'squit'
apply plugin: "de.smartsquare.squit"
```

## Project structure
Expand Down Expand Up @@ -218,8 +219,12 @@ To do so, you need to set up a [buildSrc](https://docs.gradle.org/current/usergu
Create the `buildSrc` folder and set up a normal project in your preferred JVM language. After that, you add the `Squit` library to your dependencies:

```groovy
repositories {
jcenter()
}
dependencies {
compile 'de.smartsquare:squit-library:1.0.0'
compile 'de.smartsquare:squit-library:1.0.2'
}
```

Expand Down

0 comments on commit 0b6285e

Please sign in to comment.