Skip to content
This repository has been archived by the owner on Feb 21, 2020. It is now read-only.

Lint fixes + plugin now supports a custom repo #92

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,11 @@ spec/fixtures/modules/
## Puppet module
pkg/
coverage/
Puppetfile.lock

## Librarian-puppet
.tmp/
.librarian/

## gem
Gemfile.lock
267 changes: 0 additions & 267 deletions Gemfile.lock

This file was deleted.

13 changes: 0 additions & 13 deletions Puppetfile.lock

This file was deleted.

9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ The `sonarqube::plugin` defined type can be used to install SonarQube plugins. N
class { 'maven::maven': }
->
class { 'sonarqube': }

sonarqube::plugin { 'sonar-javascript-plugin':
groupid => 'org.sonarsource.javascript',
artifactid => 'sonar-javascript-plugin',
version => '2.10',
notify => Service['sonar'],
}


## Security Configuration

Expand All @@ -87,6 +87,11 @@ The `sonarqube` class provides an easy way to configure security with LDAP, Crow
groupid => 'org.sonarsource.ldap',
artifactid => 'sonar-ldap-plugin',
version => '1.5.1',
repo => {
url => 'http://repo1.maven.org/maven2',
username => 'user',
password => 'password'
},
notify => Service['sonar'],
}

Expand Down
Loading