├── .dockerignore ├── .gitattributes ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── LICENSES.md ├── NOTICES.md ├── README.md ├── docker-compose.yml └── resources ├── plugins.sh ├── plugins.txt ├── sonar.properties.tmpl └── sonar.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | *.md 3 | *.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Accenture/adop-sonar/HEAD/.gitattributes -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Accenture/adop-sonar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Accenture/adop-sonar/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Accenture/adop-sonar/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Accenture/adop-sonar/HEAD/LICENSES.md -------------------------------------------------------------------------------- /NOTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Accenture/adop-sonar/HEAD/NOTICES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Accenture/adop-sonar/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Accenture/adop-sonar/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /resources/plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Accenture/adop-sonar/HEAD/resources/plugins.sh -------------------------------------------------------------------------------- /resources/plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Accenture/adop-sonar/HEAD/resources/plugins.txt -------------------------------------------------------------------------------- /resources/sonar.properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Accenture/adop-sonar/HEAD/resources/sonar.properties.tmpl -------------------------------------------------------------------------------- /resources/sonar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Accenture/adop-sonar/HEAD/resources/sonar.sh --------------------------------------------------------------------------------