Skip to content
This repository has been archived by the owner on Mar 9, 2023. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bellingard authored Oct 16, 2016
1 parent 1a653f0 commit 3042529
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,28 @@
# NPM module to run SonarQube analyses

Example on how to use it with Gulp:

```javascript
var gulp = require('gulp');
var sonarqubeScanner = require('sonarqube-scanner');

gulp.task('default', function() {
sonarqubeScanner({
serverUrl : "http://localhost:9000",
token : "019d1e2e04eefdcd0caee1468f39a45e69d33d3f",
options : {}
});
});
```

, with the following dependencies added to the `package.json` file:


```javascript
...
"devDependencies": {
"gulp": "^3.9.1",
"sonarqube-scanner": "0.1.0"
}
...
```

0 comments on commit 3042529

Please sign in to comment.